For questions that are specific to the GNU/Linux operating system. If your question has nothing to do with Linux APIs or Linux-specific behaviour then do not use this tag, even if you are running on Linux.
13
votes
2answers
10k views
Could you recommend some guides about Epoll on Linux
I need to know about Epoll On linux System.
Could you recommend manual or guides about epoll library?
need more detailed guides. it's better to have some examples.
help me. and Thank you for ...
10
votes
6answers
14k views
Clearing output of a terminal program Linux C/C++
I'm interested in clearing the output of a C program produced with printf statements, multiple lines long.
My initial guess was to use
printf("output1\n");
printf("output2\n");
rewind(stdout);
...
8
votes
3answers
10k views
Linux static linking is dead?
In fact, -static gcc flag on Linux doesn't work now. Let me cite from the GNU libc FAQ:
2.22. Even statically linked programs need some shared libraries
which is not acceptable for me. What
...
4
votes
5answers
13k views
Seeking and reading large files in a Linux C++ application
I am running into integer overflow using the standard ftell and fseek options inside of G++, but I guess I was mistaken because it seems that ftell64 and fseek64 are not available. I have been ...
26
votes
11answers
26k views
How to know what the errno means ?
When calling execl(...) I get an errno=2. What does it mean ? How can I know the meaning of this errno ?
17
votes
8answers
8k views
Linux C++: how to profile time wasted due to cache misses?
I know that I can use gprof to benchmark my code.
However, I have this problem -- I have a smart pointer that has an extra level of indirection (think of it as a proxy object).
As a result, I have ...
14
votes
3answers
2k views
What should Linux/Unix 'make install' consist of?
I've written a C++ program (command line, portable code) and I'm trying to release a Linux version at the same time as the Windows version. I've written a makefile as follows:
ayane: *.cpp *.h
...
13
votes
4answers
6k views
C++ Socket Server - Unable to saturate CPU
I've developed a mini HTTP server in C++, using boost::asio, and now I'm load testing it with multiple clients and I've been unable to get close to saturating the CPU. I'm testing on a Amazon EC2 ...
7
votes
3answers
5k views
Taking website screenshot, server-side, on a Linux rented server, free
Ok so, right now I can't really afford to pay for any service. I want to be able to take screenshots using my rented server, which is Linux based, and output them on the screen.
I know there are a ...
6
votes
6answers
9k views
Using Windows DLL from Linux
We need to interface to 3rd party app, but company behind the app doesn't disclose message protocol and provides only Windows DLL to interface to.
Our application is Linux-based so I cannot directly ...
33
votes
11answers
77k views
What is the best subversion client for Linux? [closed]
I like Subclipse when working within eclipse, but would like to find something better when working on files outside of Eclipse.
I'm currently using RapidSVN. Is there anything better?
12
votes
4answers
22k views
Converting jiffies to milli seconds
How do I manually convert jiffies to milliseconds and vice versa in Linux? I know kernel 2.6 has a function for this, but I'm working on 2.4 (homework) and though I looked at the code it uses lots of ...
9
votes
6answers
3k views
How to create a single instance application in C
What would be your suggestion in order to create a single instance application? File lock, mutex or what?
8
votes
4answers
6k views
format of /dev/input/event*?
What is the "format" of the character devices located in /dev/input/event* ? In other words, how can I decode the character stream? A python example would be greatly appreciated.
I've been googling ...
6
votes
8answers
8k views
how could I intercept linux sys calls?
Besides the LD_PRELOAD trick , and Linux Kernel Modules that replace a certain syscall with one provided by you , is there any possibility to intercept a syscall ( open for example ) , so that it ...
41
votes
12answers
33k views
How do you find the age of a long-running Linux process and then kill it?
I have a problem with some zombie-like processes on a certain server that need to be killed every now and then. How can I best identify the ones that have run for longer than an hour or so?
19
votes
5answers
8k views
Pipe buffer size is 4k or 64k?
I read in multiple places that the default buffer size for a pipe is 4kB (for instance, here), and my ulimit -a tends to confirm that statement:
$ ulimit -a
core file size (blocks, -c) 0
...
16
votes
5answers
20k views
How to set socket timeout in C when making multiple connections?
I'm writing a simple program that makes multiple connections to different servers for status check. All these connections are constructed on-demand; up to 10 connections can be created simultaneously. ...
6
votes
3answers
4k views
Adding a new system call in Linux kernel 3.3
I am very new to this kernel thing. What I want to do is just add a new system call to the kernel. I was following this guideline: http://hekimian-williams.com/?p=20.
The problem is there used to ...
15
votes
5answers
8k views
Bash script that kills a child process after a given timeout
I have a bash script that launches a child process that crashes (actually, hangs) from time to time and with no apparent reason (closed source, so there isn't much I can do about it). As a result, I ...
12
votes
3answers
8k views
WaitForSingleObject and WaitForMultipleObjects equivalent in linux
I am migrating an applciation from windows to linux.
I am facing problem w.r.t WaitForSingleObject and WaitForMultipleObjects interfaces
In my application I spawn multiple threads where all threads ...
10
votes
1answer
1k views
Piping data to Linux program which expects a TTY (terminal)
I have a program in Linux which refuses to run if its stdin/stdout is not a TTY (terminal device). Is there an easy-to-use tool which will create a PTY, start the program with the newly created TTY, ...
10
votes
3answers
33k views
Send and Receive a file in socket programming in Linux with C/C++ (GCC/G++)
I have a client-server architecture, where I want both the client and the server to send and receive files. How do I do that using sockets programming, on Linux, using C/C++? Is there a library that ...
11
votes
5answers
4k views
Convert to PDF/A and check compliance under Linux [closed]
I am working on an online portal, where researchers can upload their research papers. One requirement is, that all PDFs are stored in PDF/A-format. As I can't rely on the users to generate PDF/A ...
9
votes
5answers
1k views
How to disable socket creation for a Linux process, for sandboxing?
I'm considering several options for sandboxing a Linux process. Using clone() with CLONE_NEWNET (etc.) is one of the options. CLONE_NEWNET ensures that the the sandboxed process cannot make or accept ...
8
votes
4answers
565 views
Loading raw code from C program
I'm writing a program that loads and executes code from file.
But i got a problem: "write" syscall does not work.
Code successfully loads and executes, but does not display any text on the screen.
...
8
votes
3answers
2k views
Segmentation Fault With Char Array and Pointer in C on Linux
So I have the following program:
int main(){
char* one = "computer";
char two[] = "another";
two[1]='b';
one[1]='b';
return 0;
}
It segfaults on the line "one[1]='b'" which makes sense ...
6
votes
9answers
800 views
What is the safest way to run an executable on Linux?
I am trying to run a program compiled from C code from an unknown source. I want to make sure that the program does not harm my system in anyway. Like for instance, the program might have soemthing ...
5
votes
3answers
9k views
using C code to get same info as ifconfig
Is there a way in Linux, using C code, to get the same information that "ifconfig eth0" would return? I'm interested in things like IP address, link status, and MAC address.
Here's sample output ...
4
votes
1answer
841 views
ioctl vs netlink vs memmap to communicate between kernel space and user space
Got some statistics information of our custom hardware to be displayed whenever user asks for using a command in the Linux user space. This implementation is currently uses PROC interface. We started ...
19
votes
3answers
5k views
CPU Affinity
Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
10
votes
8answers
15k views
How do I output my host’s IP addresses from a C program?
I need to display all the IP addresses from my local computer, using the C language. How can this be done?
Thanks.
3
votes
4answers
4k views
PHP session timeout callback?
I'm running a PHP + APACHE + CENTOS Linux combination.
I have implemented a login & logout on the website.
My question is, how can I know when the php session has timed-out (User has closed his ...
10
votes
5answers
5k views
How to find the real user home directory using python?
I see that if we change the HOME(linux) or USERPROFILE(windows) environmental variable and run a python script, it returns the new value as the user home when I tried,
os.environ['HOME']
os.exp
Is ...
6
votes
3answers
10k views
Linking 32-bit library to 64-bit program
I have a 32-bit .so binary-only library and I have to generate 64-bit program that uses it.
Is there a way to wrap or convert it, so it can be used with 64-bit program?
5
votes
2answers
981 views
How can I make this JButton visible? When I have progressive scan background JWindow()?
How can I make the JButton visible?
1) When no progressive background is turned on: JButton is showing
2) When no progressive background is turned on, JButton is pressed still showing no flicker:
...
5
votes
2answers
6k views
Boost static linking
I am using the Boost library in Linux, GCC. After installing and building the Boost, I found that programs using Regex and Thread use shared Boost libraries. For my purposes, I need static linking.
...
4
votes
3answers
3k views
Should I cross-compile in Linux or Windows?
To create a .exe in Linux using Qt SDK, should I cross compile my application in Linux or cross-compile my application in Windows?
3
votes
3answers
1k views
How to clear directory contents in c++ on Linux (basically, i want to do 'rm -rf <directorypath>/*'
I am writing a c++ program on Linux (Ubuntu). I would like to delete the contents of a directory. It can be loose files or sub-directories.
Essentially, i would like to do something equivalent to
...
7
votes
4answers
3k views
Samsung Galaxy 7" (GT-P6210) not detecting for USB debugging?
I am using ubuntu Linux 10.04 Pc in that my Samsung Galaxy 7" (GT-P6210) homeycomb 3.2 is not detecting for development its showing in eclipse as
DeviceMonitor] Failed to start monitoring ...
6
votes
2answers
2k views
Are file descriptors shared when fork()ing?
Let's say I open a file with open(). Then I fork() my program.
Will father and child now share the same offset for the file descriptor?
I meanm if I do a write in my father, the offset will be ...
5
votes
9answers
4k views
Does Linux guarantee the contents of a file is flushed to disc after close()?
When a file is closed using close() or fclose() (for example), does Linux guarantee that the file is written back to (persistent) disc?
What I mean is, if close() returns 0 and then immediately ...
3
votes
2answers
761 views
how to call function in executable from my library?
I have an executable and a dynamic library (.so). The library exports some symbols and executable calls it successfully. But I want to make possible to library call executable's functions. I've tried ...
2
votes
1answer
366 views
C# (mono) Linux web server hosting with consistent static variables across threads
Does anybody know of a C# (mono) Linux web server hosting configuration that enables consistent static variables across threads (ie not the CGI model of an instance per thread)?
Details
I have some ...
2
votes
3answers
429 views
Invalid read/write sometimes creates segmentation fault and sometimes does not
Example code:
int main ()
{
char b[] = {"abcd"};
char *c = NULL;
printf("\nsize: %d\n",sizeof(b));
c = (char *)malloc(sizeof(char) * 3);
memcpy(c,b,10); // here invalid read and invalid ...
0
votes
7answers
3k views
About the pid of the process
I've a somewhat silly question, if i have a series of processes that are created ... these are not necessarily some sort of inheritance, the pid of the processes have to be numbers continuous or ...
56
votes
11answers
18k views
How should I get started with Android Development?
I am interested in trying some Android Development and I've not had much luck getting started. I'm not much of a Linux person but I have an Ubuntu box setup that I attempted to install the android SDK ...
58
votes
9answers
57k views
How to use strace?
A collegue told me once that the last option when everything has failed to debug on linux was to use strace.
I tried to learn the science there is behind this strange tool but I am not a system admin ...
22
votes
12answers
7k views
Ensuring a single instance of an application in Linux
I'm working on a GUI application in WxPython, and I am not sure how I can ensure that only one copy of my application is running at any given time on the machine. Due to the nature of the application, ...
17
votes
2answers
5k views
What is the best way to run ServiceStack on Linux / Mono?
Listed on the ServiceStack website it shows that ServiceStack can run on Mono with either:
XSP
mod_mono
FastCgi
Console
What are these different configurations and which is preferred for Web ...