Tagged Questions
0
votes
1answer
30 views
How can i perform my exe file from boot.local
I've written a code for boosting priority of a process on my openSuSE 12.2 system.
#include <stdio.h>
#include <sched.h>
#include <unistd.h>
int printUsage(void)
{
...
-2
votes
1answer
47 views
How to change audio volume of a particular application in Linux [closed]
I wanted to adjust volume of a particular application(Not the entire system volume) in Linux using my c code.
Please suggest how can we do this in Linux.
2
votes
2answers
248 views
Application crashes, but no core dump generated
I have an issue where my application keeps on dumping core after few day/weeks, but unfortunately, generates no core dump.
We tried to set ulimit -c unlimited with no success, so we incorporated ...
0
votes
0answers
309 views
openSuSe no acceptable c compiler error
I'm trying to install svn server on an openSuSe 12.1 computer. While doing so, I got the "no acceptable c compiler found in $PATH" error. After some internet research, I found that it's a common ...
0
votes
0answers
99 views
C - Memory allocation under openSuse
I am coming to you with a problem that drives me crazy. I am writing this packet bouncer in C. It works perfectly fine under Ubuntu but a very weird thing happens with openSuse. In a part of the code ...
0
votes
1answer
563 views
Gcc can't find wine libs
When compiling LMMS I get these errors:
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: cannot find -lshell32
...
1
vote
1answer
737 views
Sample program for “openSuse and openGL” environment
I have written a sample code like this in OpenSuse 11.3 (a very new installation) for openGL (installed all the libs that came up in search for openGL from the Software Manager of Yast2).
**File: ...
2
votes
3answers
2k views
ether_ntoa pointers cast problem
I am trying to print the MAC address by using ether_ntoa. When i try to do
printf("MAC (src): %s\n",ether_ntoa((struct ether_addr *)&eheader->ether_shost));
I get a segmentation fault, so I ...