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.

learn more… | top users | synonyms | linux jobs

67
votes
9answers
55k views

Are there any standard exit status codes in Linux?

A process is considered to have completed correctly in Linux if its exit status was 0. I've seen that segmentation faults often result in an exit status of 11, though I don't know if this is simply ...
26
votes
12answers
17k views

Tool to trace local function calls in Linux

I am looking for a tool like ltrace or strace that can trace locally defined functions in an executable. ltrace only traces dynamic library calls and strace only traces system calls. For example, ...
37
votes
4answers
98k views

How do I change the number of open files limit in Linux? [closed]

When running my application I sometimes get an error about too many files open. Running ulimit -a reports that the limit is 1024. How do I increase the limit above 1024? Edit ulimit -n 2048 ...
54
votes
5answers
151k views

ld cannot find an existing library

I am attempting to link an application with g++ on this Debian lenny system. ld is complaining it cannot find specified libraries. The specific example here is ImageMagick, but I am having similar ...
25
votes
7answers
10k views

C/C++ with GCC: Statically add resource files to executable/library

Does anybody have an idea how to statically compile any resource file right into the executable or the shared library file using GCC? For example I'd like add image files that never change (and if ...
36
votes
9answers
8k views

How can I run an untrusted C program in a sandbox in Linux?

I was wondering if there exists a way to run an untrusted C program under a sandbox in linux. Something that would prevent the program from opening files, or network connections, or forking, exec, ...
26
votes
3answers
18k views

Linux Kernel: System call hooking example

I'm trying to write some simple test code as a demonstration of hooking the system call table. "sys_call_table" is no longer exported in 2.6, so I'm just grabbing the address from the System.map ...
25
votes
9answers
5k views

How do YOU manage Perl modules when using a package manager?

A recent question here on SO got me thinking. On most Linux distributions that I tried, some Perl modules would be available through the package manager. Others, of course, not. For quite a while I ...
21
votes
10answers
7k views

Is there a way to change another process's environment variables?

On Unix, is there any way that one process can change another's environment variables (assuming they're all being run by the same user)? A general solution would be best, but if not, what about the ...
36
votes
10answers
5k views

Why does malloc initialize the values to 0 in gcc?

Maybe it is different from platform to platform, but when I compile using gcc and run the code below, I get 0 every time in my ubuntu 11.10. #include <stdio.h> #include <stdlib.h> int ...
32
votes
10answers
9k views

what does malloc(0) return?

What does malloc(0) returns? Would the answer be same for realloc(malloc(0),0) ? #include<stdio.h> #include<malloc.h> int main() { printf("%p\n", malloc(0)); ...
17
votes
16answers
3k views

Is it wise to use PHP for a daemon?

I wish to create a background process and I have been told these are usually written in C or something of that sort. I have recently found out PHP can be used to create a daemon and I was hoping to ...
17
votes
9answers
7k views

Hide password input on terminal

I want to mask my password while writing it with '*'. I use Linux GCC fro this code. I know one solution is to use getch() function like this #include <conio.h> int main() { char ...
6
votes
4answers
5k views

What is the equivalent to Posix popen() in the Win32 API?

Is there a rough equivalent to the Linux/Unix stdio.h popen() function in the Win32 API? If so, where can I find it? Edit: I need to know this to patch an omission in the D standard library. Any ...
365
votes
42answers
268k views

What can I use as a Notepad++ alternative in Linux (Ubuntu)? [closed]

I got addicted to Notepad++ on Windows and I've recently moved to Ubuntu. I'm missing a tool as such. What is a good alternative?
67
votes
17answers
7k views

Pre-installed Linux for Web Developers?

Does anybody know an ISO image of a up-to-date Linux distribution aimed at web developers with one, some or all of the following features: LAMP stack readily set up (Readily installed Apache 2, ...
71
votes
4answers
106k views

How to add a default include path for gcc in linux?

I'd like gcc to include files from $HOME/include in addition to the usual include directories, but there doesn't seem to be an analogue to $LD_LIBRARY_PATH. I know I can just add the include directory ...
83
votes
19answers
79k views

How do I test if a variable is a number in bash?

I just can't figure out how do I make sure an argument passed to my script is a number or not. All I want to do is something like this: test *isnumber* $1 && VAR=$1 || echo "need a number" ...
29
votes
3answers
15k views

Understanding Linux /proc/id/maps

I am trying to understand my embedded linux application's memory use. The /proc/pid/maps utility/file seems to be a good resource for seeing the details. Unfortunately I don't understand all the ...
34
votes
7answers
24k views

Spinlock versus Semaphore

What is the basic differences between Semaphores & Spinlock? & In what best situations or conditions, we can use these.
17
votes
3answers
16k views

Multiple glibc libraries on a single host

Multiple glibc libraries on a single host My linux (SLES-8) server currently has glibc-2.2.5-235, but I have a program which won't work on this version and requires glibc-2.3.3. Is it possible to ...
32
votes
3answers
26k views

Where can I set environment variables that crontab will use?

I have a crontab running every hour. The user running it has environment variabless in the .bash_profile that work when the user runs the job from the terminal, however, obviously these don't get ...
21
votes
7answers
14k views

How can a process intercept stdout and stderr of another process on Linux?

I have some scripts that ought to have stopped running but hang around for ever. Is there some way I can figure out what they're writing to stdout and stderr in a readable way ? I tried, for ...
12
votes
1answer
25k views

how to open, read, and write from serial port in C

I am a little bit confused about reading and writing to a serial port. I have a USB device in Linux that uses the FTDI USB serial device converter driver. When I plug it in, it creates: /dev/ttyUSB1. ...
24
votes
8answers
37k views

Makefiles with source files in different directories

I have a project where the directory structure is like this: $projectroot | +---------------+----------------+ | ...
8
votes
3answers
10k views

Complete C++ i18n gettext() “hello world” example

I am looking for a complete i18n gettext() hello world example. I have started a script based upon A tutorial on Native Language Support using GNU gettext by G. Mohanty. I am using Linux and G++. ...
8
votes
6answers
33k views

Pass arguments into C program from command line

So I'm in Linux and I want to have a program accept arguments when you execute it from the command line. For example, ./myprogram 42 -b -s So then the program would store that number 42 as an int ...
5
votes
4answers
9k views

What is equivalent to getch() & getche() in Linux?

I am not able to find equivalent header file for conio.h in Linux. Is there any option for getch() & getche() function in Linux? I want to make a switch case base menu where the user will give ...
8
votes
4answers
4k views

C++ new operator thread safety in linux and gcc 4

Soon i'll start working on a parallel version of a mesh refinement algorithm using shared memory. A professor at the university pointed out that we have to be very careful about thread safety because ...
24
votes
11answers
94k views

Error: Could not find or load main class

I am having trouble compiling and running my Java code, intended to allow me to interface Java with a shared object for Vensim, a simulation modeling package. The following code compiles without ...
48
votes
7answers
93k views

How to setup a Subversion (SVN) server on GNU/Linux - Ubuntu

I have a laptop running Ubuntu that I would like to act as a Subversion server. Both for myself to commit to locally, and for others remotely. What are the steps required to get this working? Please ...
35
votes
5answers
26k views

Redirect STDERR / STDOUT of a process AFTER it's been started, using command line?

In the shell you can do redirection, > <, etc., but how about AFTER a program is started? Here's how I came to ask this question: a program running in the background of my terminal keeps ...
22
votes
3answers
10k views

How can I listen for 'usb device inserted' events in Linux, in Python?

I'd like to write a Python script for Amarok in Linux to automatically copy the stackoverflow podcast to my player. When I plug in the player, it would mount the drive, copy any pending podcasts, and ...
63
votes
7answers
27k views

Who “Killed” my process and why?

My application runs as a background process on Linux. It is currently started at the command line in a Terminal window. Recently a user was executing the application for a while and it died ...
33
votes
7answers
51k views

How to stop java process gracefully?

How to stop java process gracefully in Linux and Windows? When does Runtime.getRuntime().addShutdownHook gets called, and when it does not? What about finalizers, do they help here? Can I send some ...
43
votes
9answers
23k views

What is the difference between mutex and critical section?

Please explain from Linux, Windows perspectives? I am programming in C#, would these two terms make a difference. Please post as much as you can, with examples and such.... Thanks
52
votes
10answers
45k views

How can I determine whether a specific file is open in Windows? [closed]

One of my favourite tools for linux is lsof - a real swiss army knife! Today I found myself wondering which programs on a WinXP system had a specific file open. Is there any equivalent utility to ...
36
votes
5answers
27k views

What is the difference between vmalloc and kmalloc?

I've googled around and found most people advocating the use of kmalloc, as you're guaranteed to get contiguous physical blocks of memory. However, it also seems as though kmalloc can fail if a ...
54
votes
8answers
18k views

How to get console window width in python

Is there a way in python to programmatically determine the width of the console? I mean the number of characters that fits in one line without wrapping, not the pixel width of the window. Edit ...
14
votes
5answers
9k views

Monitoring certain system calls done by a process

I would like to be able to monitor certain system calls made by a process, primarily file I/O calls. On Linux I can probably get away using strace with suitable parameters, but how can I do this on ...
23
votes
3answers
13k views

How can I link to a specific glibc version?

When I compile something on my Ubuntu Lucid 10.04 PC it gets linked against glibc. Lucid uses 2.11 of glibc. When I run this binary on another PC with an older glibc, the command fails saying there's ...
66
votes
11answers
88k views

Can a shell script set environment variables of the calling shell?

I'm trying to write a shell script that, when run, will set some environment variables that will stay set in the caller's shell. setenv FOO foo in csh/tcsh, or export FOO=foo in sh/bash only set ...
31
votes
10answers
49k views

How can I create directory tree in C++/Linux?

I want an easy way to create multiple directories in C++/Linux. For example I want to save a file lola.file in the directory: /tmp/a/b/c but if the directories are not there I want them to be ...
16
votes
2answers
2k views

What are the thread limitations when working on Linux compared to processes for network/IO-bound apps?

I've heard that under linux on multicore server it would be impossible to reach top performance when you have just 1 process but multiple threads because Linux have some limitations on the IO, so that ...
16
votes
4answers
13k views

Write a signal handler to catch SIGSEGV

I want to write a signal handler to catch SIGSEGV. First , I would protect a block of memory for read or writes using char *buffer; char *p; char a; int pagesize = 4096; " ...
10
votes
6answers
21k views

How to get MAC address of your machine using a C program?

I am working on Ubuntu. How can I get MAC address of my machine or an interface say eth0 using C program.
32
votes
4answers
52k views

Can't connect to MySQL server error 111 [closed]

I installed mysql server on linux box IP = 192.168.1.100 but when i try to connect to this IP it alway error(111). but use localhost and 127.0.0.1 is OK. beer@beer-laptop# ifconfig | grep "inet ...
23
votes
5answers
18k views

Get IP address of an interface on linux

How can I get the IPv4 address of an interface in linux from C code ? e.g. I'd like to get the IP address(if any) assigned to eth0
20
votes
4answers
43k views

C: Run a System Command and Get Output? [duplicate]

Possible Duplicate: How can I run an external program from C and parse its output? i want to run a command in linux, and get the text returned of what it outputs...but i DO NOT want this ...
36
votes
7answers
16k views

Do threads have a distinct heap?

As far as I know each thread gets a distinct stack when the thread is created by the operating system. I wonder if each thread has a heap distinct to itself also?

1 2 3 4 5 102