Tagged Questions
0
votes
0answers
40 views
Issue with lua51 c-shared library
I am trying to compile a simple example program that depends on a shared library (so) that depends on liblua51.so. My source file is example.c and here is the command I am using to compile it (it is ...
0
votes
0answers
26 views
32 bit libc with debug symbols on x64
I am searching how to install 32 bit non-stripped libc on a x64 system. I have already lib32 libc installed but it is stripped, I have libc-2.15.so on my Ubuntu 12.04 x64. Does anyone know the name of ...
0
votes
2answers
119 views
TCP/IP connection between ubuntu (C) and windows (Java)
I'm trying to establish a TCP/IP communication between a server in C running in ubuntu 12.04 and a client in Java (EJS) running in Win7. The server is a thread of a greater program, so it's created ...
0
votes
4answers
83 views
How to remove(Completely Deleting) a file using c program without using remove system call?
I've been curious how rem in linux works and trying to write my own C code that can delete a file but when i searched for the answer, i only got the programs that were using remove() system call.
Is ...
1
vote
1answer
519 views
C compiler cannot create executables in Ubuntu 12.04
I'm trying to configure cpuminer for litecoins and I get
checking whether the C compiler works... no
configure: error: in `/home/username/cpuminer-2.2.3':
configure: error: C compiler cannot create ...
0
votes
3answers
126 views
Source file cannot find the header files
I have looked at these links : This one
and This
and a couple of other similar ones.
None of the answers given here are working methods are working.
I have a two source files a1.c , a2.c and two ...
0
votes
2answers
139 views
Linux header files giving syntax error
On trying to compile a program using gcc I get the following error.
In file included from /usr/include/unistd.h:218:0,
from fcfssched.c:3: ...
1
vote
1answer
249 views
Socket Direct Protocol error: “Address family not supported by protocol”
I thought I would try out SDP on our infiniband hardware.
However, when I try to add AF_INET_SDP as the first argument to socket() I get the following error:
"Address family not supported by ...
1
vote
1answer
394 views
Buffer Overflow - SegFaults in regular user [closed]
Below is my code, both the vulnerable program (stack.c) and my exploit (exploit.c). This code works on a pre-packaged Ubuntu 9 that the prof sent out for windows users (I had a friend test it on his ...
0
votes
3answers
365 views
C: Undefined reference to floor
I am using Eclipse on Ubuntu to write/compile/run C code.
I am trying to build my project.
Following is the output in the Eclipse console.
22:18:31 **** Build of configuration Debug for project ...
1
vote
3answers
109 views
C program no longer compiles in Ubuntu
I made a program in C and I get these errors when I compile using gcc. I did not use to get them until recently and my program has not changed.
In function `_fini':
(.fini+0x0): multiple definition ...
1
vote
4answers
226 views
getenv() Linux/Ubuntu returns NULL
I am trying to get a users home directory using getenv("$HOME"), but it is returning NULL. What am I doing wrong?
int main(void)
{
char * path;
path = getenv("$HOME");
printf ("The ...
0
votes
1answer
167 views
Socket permissions ubuntu
Hi I am new to Linux and have a project related to sockets. The problem I'm facing is that when I run the code with inputs eth0 for interface and ip address of my router i.e
./mycode eth0 192.168.1.1 ...
1
vote
1answer
65 views
GTK3-lib windows are empty in Ubuntu
I want to compile and run examples of how to use the GTK3 library for my C-programs, but when I run them they only consist of a blank empty space (no buttons or text).
I'm running Ubuntu 12.04 with ...
-3
votes
4answers
472 views
Linux console ; CLS not found error [closed]
I am trying to compile a C project that I wrote while I used windows. I am trying to compile same project with same IDE (Code::Blocks) in Linux (Ubuntu 12.04). I have several System("CLS") functions ...
0
votes
1answer
132 views
Installation of the OpenGL AUX library
I am working with Ubuntu 12.04. I want to use the AUX library for OpenGL. Can anybody tell me what steps are involved in getting the AUX library for my system?
0
votes
3answers
298 views
C programming on Ubuntu [closed]
I have problems related to c programming on Ubuntu 12.04. While compiling c program consisting 'pow' I faced difficulties. Then I searched the Internet and got the solution with '-lm'. But that's the ...
1
vote
3answers
47 views
How to interpret this output generated by make command?
On running make command, I get the following output,
g++ -DUNIX -Wall -g -I../include -I. main.o hfpage.o hfp_driver.o test_driver.o db.o new_error.o page.o system_defs.o buf.o ...
2
votes
1answer
454 views
linking error in gtk2 application in ubuntu 12.04
I've a C GUI application (in GTK+2.0) that I used to link as follows :
gcc -O2 -std=gnu99 -pipe -Wall -lm `pkg-congig gtk+-2.0 `pkg-config --libs gtk+-2.0` -o exec a.o b.o c.o
which eventually ...
1
vote
1answer
68 views
Warnings with pointer using .cfg file
I try to setup a c programm using the libconfig. There is example1.c:
int main()
{
const char **channel;
config_t config;
config_init(&config);
config_read_file(&config, ...
0
votes
1answer
65 views
fork()-parent ignores execv() of an except script
The following code calls an except script which copies an file via ftp to a server.
int status;
int child_pnr;
if((child_pnr = fork())==0)
{
printf("Childnr %i\n",child_pnr);
...
0
votes
2answers
135 views
Call expect file from C
I coded a ftp.exp file which sends a log file of a C application to a server.
#!/usr/bin/expect
set timeout -1
spawn ftp xxx.xxx.xxx 21
match_max 100000
expect -re {[2]{2,}[0]{1,}}
send -- "usrxxxx"
...
0
votes
2answers
124 views
Can't work with gloox library in ubuntu 12.04 64-bit
Some time ago I installed gloox library with the command sudo apt-get install libgloox-dev.
But it is not working in netbeans, for example. I noticed that there are only .h files (with only function ...
0
votes
1answer
352 views
ARP reply packet does not update ARP cache on Ubuntu
So after I have played with the Network Spoofer developed by Digitalsquid (http://digitalsquid.co.uk/netspoof/), I have been trying to get a better understanding of its internal working by writing a c ...

