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.
114
votes
11answers
12k views
UTF-8 all the way through
I'm setting up a new server, and want to support UTF-8 fully in my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO-8859-1.
Where ...
77
votes
8answers
40k views
Why does printf not flush after the call unless a newline is in the format string?
Why does printf not flush after the call unless a newline is in the format string? Is this POSIX behavior? How might I have printf immediately flush every time?
80
votes
4answers
55k views
What is the LD_PRELOAD trick?
I came across a reference to it recently on proggit and (as of now) it is not explained.
I suspect this might be it, but I don't know for sure.
92
votes
14answers
39k views
Please recommend a Java profiler [closed]
I am looking for the Java equivalent of gprof.
I did a little Java profiling using System.getCurrentMillis(),
and saw several GUI tools which seem too much.
A good compromise could be a text-based ...
36
votes
11answers
76k views
Get the IP address of the machine
This Question is almost the same as the previously asked Get the IP Address of local computer-Question. However I need to find the IP address(es) of a Linux Machine.
So: How do I - programmatically ...
246
votes
17answers
136k views
Starting iPhone app development in Linux?
I've heard that you need to get a Mac if you want to develop iPhone apps. Is this true?
Is it possible to develop iPhone apps using Linux? If yes, what do I need and where do I download the ...
173
votes
19answers
273k views
Linux: How to measure actual memory usage of an application or process?
How do you measure the memory usage of an application or process in Linux?
From the blog article of Understanding memory usage on Linux, "ps" is not an accurate tool to use for this intent.
Why ...
64
votes
7answers
27k views
Finding current executable's path without /proc/self/exe
It seems to me that Linux has it easy with /proc/self/exe. But I'd like to know if there is a convenient way to find the current application's directory in C/C++ with cross-platform interfaces. I've ...
40
votes
11answers
62k views
Create Word Document using PHP in Linux
Whats the available solutions for PHP to create word document in linux environment?
60
votes
10answers
12k views
how to find the location of the executable in C
Is there a way in C/C++ to find the location (full path) of the current executed program (the problem with argv[0] is that it does not give the full path)?
255
votes
15answers
96k views
Vim and Ctags tips and tricks [closed]
I have just installed Ctags (to help with C++ development) with my Vim (or rather gVim), and would like to find out your favorite commands, macros, shortcuts, tips that go along with it...
Share your ...
27
votes
8answers
24k views
Take a screenshot via a python script. [Linux]
I want to take a screenshot via a python script and unobtrusively save it.
I'm only interested in the Linux solution, and should support any X based environment.
17
votes
7answers
22k views
Linux API to list running processes?
I need a C/C++ API that allows me to list the running processes on a Linux system, and list the files each process has open.
I do not want to end up reading the /proc/ file system directly.
Can ...
61
votes
6answers
72k views
Maximum number of threads per process in Linux?
What is the maximum number of threads that can be created by a process under Linux?
How (if possible) can this value be modified?
47
votes
7answers
64k views
What is the simplest way to SSH using Python?
What is the absolute simplest way to SSH to a remote server from a local Python (3.0) script, supply a login/password, execute a command and print the output to the Python console? I would rather not ...
31
votes
9answers
34k views
Command line program to create website screenshots (on Linux)
What is a good command line tool to create screenshots of websites on Linux? I need to automatically generate screenshots of websites without human interaction. The only tool that I found was ...
125
votes
19answers
75k views
Why doesn't “cd” work in a bash shell script?
I'm trying to write a small script to change the current directory to my project directory:
#!/bin/bash
cd /home/tree/projects/java
I saved this file as proj, changed the chmod, copied it to ...
64
votes
10answers
57k views
C++: what regex library should I use?
I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.)
QUESTION: What ...
53
votes
15answers
30k views
How to make child process die after parent exits?
Suppose I have a process which spawns exactly one child process. Now when the parent process exits for whatever reason (normally or abnormally, by kill, ^C, assert failure or anything else) I want the ...
22
votes
8answers
21k views
Getting Filename from file descriptor in C
Is it possible to get the filename of a file descriptor in C?
61
votes
11answers
40k views
Is there a way for non-root processes to bind to “privileged” ports (<1024) on Linux?
It's very annoying to have this limitation on my development box, when there won't ever be any users other than me.
I'm aware of the standard workarounds, but none of them do exactly what I want:
...
397
votes
16answers
175k views
Git GUI client for Linux [closed]
Which is the best gui client on Linux for Git.
Update: After checking out all of the GUIs mentioned here,
git cola seems to work well for committing/pushing
gitk seem to work the best for ...
156
votes
13answers
115k views
How to output MySQL query results in csv format?
Is there an easy way to run a MySQL query from the linux command line and output the results in csv format?
Here's what I'm doing now:
mysql -u uid -ppwd -D dbname << EOQ | sed -e 's/ ...
12
votes
11answers
19k views
extracting text from MS word files in python
for working with MS word files in python, there is python win32 extensions, which can be used in windows. How do I do the same in linux?
Is there any library?
29
votes
6answers
14k views
Getting terminal width in C?
I've been looking for a way to get the terminal width from within my C program. What I keep coming up with is something along the lines of:
#include <sys/ioctl.h>
#include <stdio.h>
int ...
8
votes
6answers
4k views
Troubleshooting PHP Mail
How can I check a problem with mail being sent on my server?
I run a simple test:
if(mail($to, $subject, $message)) {
echo 'Mail Sent';
}
which the test outputs the text; but, no mail ever arrives.
...
40
votes
8answers
49k views
What is ultimately a time_t typedef to?
I searched in linux box and saw it being typedef to
typedef __time_t time_t;
But could not find the __time_t definition.
85
votes
12answers
40k views
Threads vs Processes in Linux
I've recently heard a few people say that in Linux, it is almost always better to use processes instead of threads, since Linux is very efficient in handling processes, and because there are so many ...
54
votes
7answers
70k views
generate a core dump in linux
I have a process in linux that's getting a segmentation fault. How can I tell it to generate a core dump when it fails?
28
votes
4answers
15k views
What are the calling conventions for UNIX & Linux system calls on x86-64
Explains both UNIX (BSD flavor) & Linux system call conventions for x86-32:
http://www.int80h.org/bsdasm/#system-calls
...
31
votes
4answers
11k views
How to terminate a python subprocess launched with shell=True
I'm launching a subprocess with the following command:
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)
However, when I try to kill using:
p.terminate()
or
p.kill()
The command ...
22
votes
16answers
48k views
pass password to su/sudo/ssh
I'm writing a C Shell program that will be doing su or sudo or ssh. They all want their passwords in console input rather than stdin.
Does anybody know a solution?
Setting up password-less sudo is ...
28
votes
6answers
39k views
High resolution timer with C++ and Linux?
Under Windows there are some handy functions like QueryPerformanceCounter from mmsystem.h to create a high resolution timer.
Is there something similar for Linux?
11
votes
6answers
19k views
Regex (grep) for multi-line search needed [duplicate]
Possible Duplicate:
How can I search for a multiline pattern in a file ? Use pcregrep
I'm running a grep to find any *.sql file that has the word select followed by the word customerName ...
32
votes
2answers
10k views
gcc - significance of -pthread flag when compiling
In various multi threaded C and C++ projects I've seen the -pthread flag applied to both the compiling and linking stage while others don't use it at all and just pass -lpthread to the linking stage.
...
562
votes
4answers
46k views
What is “:-!!” in C code?
I bumped into this strange macro code in /usr/include/linux/kernel.h:
/* Force a compilation error if condition is true, but also produce a
result (of value 0 and type size_t), so the expression ...
88
votes
13answers
75k views
Linux: Prevent a background process from being stopped after closing SSH client
I'm working on a linux machine through SSH (Putty).
I need to leave a process running during the night, so I thought I could do that by starting the process in background (with an ampersand at the end ...
34
votes
9answers
47k views
Calculating CPU usage of a process in Linux
I want to programatically [in C] calculate CPU usage % for a given process ID in Linux.
How can we get the realtime CPU usage % for a given process ??
To make it further clear -
I should be able ...
44
votes
14answers
15k views
Quick-and-dirty way to ensure only one instance of a shell script is running at a time
What's a quick-and-dirty way to make sure that only one instance of a shell script is running at a given time?
36
votes
4answers
42k views
What's a good C decompiler?
I am searching for a decompiler for a C program. The binary is a 32-bit Linux executable. Objdump works fine, so basically I am searching for something which attempts to reconstruct the C source from ...
4
votes
1answer
1k views
How to access the system call from user-space?
I read some paragraphs in LKD and I just cannot understand the contents below:
Accessing the System Call from User-Space
Generally, the C library provides support for system calls. User ...
68
votes
7answers
33k views
Simulate delayed and dropped packets on Linux
I would like to simulate packet delay and loss for UDP and TCP on Linux to measure the performance of an application. Is there a simple way to do this?
104
votes
17answers
74k views
Best way to kill all child processes
I basically want to kill a whole process tree. What is the best way to do this using any common scripting languages. I am looking for a simple solution.
45
votes
6answers
55k views
Virtual Memory Usage from Java under Linux, too much memory used
I have a problem with a java application running under linux.
When I launch the application, using the default maximum heap size (64mb), I see using the tops application that 240 MB of virtual Memory ...
51
votes
4answers
54k views
C++ Dynamic Shared Library on Linux
This is a follow-up to this question.
I'm trying to create a shared class library in C++ on Linux. I'm able to get the library to compile, and I can call some of the (non-class) functions using the ...
29
votes
4answers
8k views
How it's better to invoke gdb from program to print its stacktrace?
Now I'm using function like this:
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
void print_trace() {
char pid_buf[30];
...
20
votes
8answers
21k views
Run php script as daemon process
I need to run a php script as daemon process (wait for instructions and do stuff). cron job will not do it for me because actions need to be taken as soon as instruction arrives. I know PHP is not ...
23
votes
9answers
35k views
How to get memory usage at run time in c++?
i need to get the mem usage VIRT and RES at run time of my program and display them.
What i tried so far:
getrusage (http://linux.die.net/man/2/getrusage)
int who = RUSAGE_SELF;
struct rusage ...
23
votes
3answers
25k views
How can I run a Perl script as a system daemon in linux?
What's a simple way to get a Perl script to run as a daemon in linux?
Currently, this is on CentOS. I'd want it to start up with the system and shutdown with the system, so some /etc/rc.d/init.d ...
78
votes
5answers
30k views
How do I write stderr to a file while using “tee” with a pipe?
I have the below command line argument which will print the output of aaa.sh to the screen while also writing stdout to bbb.out; however I would also like to write stderr to a file ccc.out. Any ...