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

24
votes
6answers
57k views

undefined reference to pthread_create in linux (c programming)

I'm interested in learning to write C programs which use threads. I picked up the following demo off the web from https://computing.llnl.gov/tutorials/pthreads/ #include <pthread.h> #include ...
22
votes
5answers
18k views

shell - get exit code of background process

I have a command CMD called from my main bourne shell script that takes forever. I want to modify the script as follows: Run the command CMD in parallel as a background process ($CMD &). In ...
18
votes
2answers
4k views

How do I programatically disable hardware prefetching?

I would like to programatically disable hardware prefetching. From Optimizing Application Performance on Intel® Core™ Microarchitecture Using Hardware-Implemented Prefetchers and How to Choose ...
12
votes
5answers
7k views

React on global hotkey in a Java program on Windows/Linux/Mac?

A Java6 application sits in the system tray. It needs to be activated using a hotkey (e.g. Super-G or Ctrl-Shift-L etc) and do something (e.g. showing an input box). How do I do that on: Windows ...
18
votes
6answers
8k views

PHP passing $_GET in linux command prompt

Say we usually access via http://localhost/index.php?a=1&b=2&c=3 How do we execute the same in linux command prompt? php -e index.php But what about passing the $_GET variables? Maybe ...
14
votes
8answers
10k views

How can I programmatically manage iptables rules on the fly?

I need to query existing rules, as well as being able to easily add and delete rules. I haven't found any API's for doing this. Is there something that I'm missing? The closest I've come to a ...
12
votes
6answers
3k views

Embed data in a C++ program

I've got a C++ program that uses SQLite. I want to store the SQL queries in a separate file -- a plain-text file, not a source code file -- but embed that file in the executable file like a resource. ...
15
votes
8answers
13k views

How do I clear the console in BOTH Windows and Linux using C++

I need a cross platform solution for clearing the console in both Linux and Windows written in C++. Are there any functions in doing this? Also make note that I don't want the end-user programmer to ...
10
votes
5answers
14k views

How to capture Control+D signal?

I want to capture the Control+D signal in my program and write a signal handler for it. How can I do that? I am working on C and using a linux system.
9
votes
10answers
4k views

Need text to speech and speech recognition tools for Linux

I'm planning on writing a program for Linux that uses text to speech and speech recognition. What are the best tools/libraries for this? Should I use Windows instead to be able to use better tools? ...
11
votes
8answers
11k views

Compling C++ on remote Linux machine - “clock skew detected” warning

I'm connected to my Universities small Linux cluster via PuTTY and WinSCP, transferring files using the latter and compiling and running them with the former. My work so far as all been in the Uni ...
7
votes
4answers
7k views

Game programming on Objective-C and linux

I'd like to give Objective-C a try in game programming. The problem is I'd need some tools and libraries for this. First thing that comes into mind I need is the GUI and graphics library. What ...
6
votes
2answers
1k views

Is rename() without fsync() safe?

Is it safe to call rename(tmppath, path) without calling fsync(tmppath_fd) first? I want the path to always point to a complete file. I care mainly about Ext4. Is the rename() promised to be safe in ...
6
votes
4answers
3k views

How to force my application to open one exe only? qt, linux

I want my application to open only one process, i.e. if the one process is already opened and the user want to open the exe again - it won't open another process. how can I do it in Qt - linux? 10x! ...
19
votes
4answers
8k views

How to instruct cron to execute a job every second week?

I would like to run a job through cron that will be executed every second Tuesday at given time of day. For every Tuesday is easy: 0 6 * * Tue But how to make it on "every second Tuesday" (or if ...
17
votes
10answers
3k views

How to simulate memory allocation errors

My C application uses 3rd libraries, which do their own memory management. In order to be robust, my application has code to deal with failures of library functions due to lack of free memory. I ...
5
votes
5answers
11k views

How to get the ip of the computer on linux through Java?

How to get the ip of the computer on linux through Java ? I searched the net for examples, I found something regarding NetworkInterface class, but I can't wrap my head around how I get the Ip ...
4
votes
2answers
1k views

Limit jvm process memory on ubuntu

I know there are same questions like this one been asked and answered. I am not satisfied with the answers so let me put into more detail messages here. I try to start my application with JVM OPTs: ...
5
votes
2answers
332 views

On OS X, simple C++ program gives incorrect results (which are a result of command-line options 'c++03' vs 'c++11')

This simple program (when compiled on Linux) will CORRECTLY give two different answers based on whether it's compiled with -std=c++0x or not. Problem: I cannot reproduce the same thing on OS X ...
0
votes
5answers
875 views

Problem usage memory in C

Please help :) OS : Linux Where in " sleep(1000);", at this time "top (display Linux tasks)" wrote me 7.7 %MEM use. valgrind : not found memory leak. I understand, wrote correctly and all malloc ...
8
votes
2answers
3k views

strtok function thread safety

I have been spending some time in debugging a programme which gives segmentation fault. The bug is quite indeterministic and intermittent, which is annoying. I narrowed it down to the calling of ...
3
votes
1answer
928 views

C++ standard library and Boehm garbage collector

This question could be related to this older question (on C++ Garbage Collection over multiple threads using Boehm GC) I want to develop a multi-threaded C++ application (where eventually most of the ...
2
votes
4answers
16k views

get command output in pipe, C for Linux

I need to run a Linux CLI command and get its stdout output from C. I can use pipe() to create a pipe, then fork/exec, redirecting child's stdout descriptor into the pipe before calling exec(), and ...
105
votes
15answers
71k views

How do I convert DOS files to Linux files in vim?

If I open files I created in Windows, the lines all end with ^M. How do I delete them all in once?
77
votes
8answers
89k views

how to find out which processes are swapping in linux? [closed]

Under Linux, how do I find out which process is using the swap space more? Any scripts/links appreciated..
114
votes
10answers
21k views

How do I use sudo to redirect output to a location I don't have permission to write to?

I've been given sudo access on one of our development RedHat linux boxes, and I seem to find myself quite often needing to redirect output to a location I don't normally have write access to. The ...
97
votes
25answers
37k views

C++ gdb GUI

Briefly: Does anyone know of a GUI for gdb that brings it on par or close to the feature set you get in the more recent version of Visual C++? In detail: As someone who has spent a lot of time ...
31
votes
5answers
15k views

How do Linux binary installers (.bin, .sh) work?

Some software (for ex. the NetBeans IDE) ship the Linux installers in .sh files. Curious about how exactly they 'package' a whole IDE into a 'shell script', I opened the file in an editor. I saw some ...
55
votes
6answers
16k views

Linux equivalent of the Mac OS X “open” command

I've found the "open" command in Mac OS X very handy in the command line. From "man open": The open command opens a file (or a directory or URL), just as if you had double-clicked the file's ...
29
votes
4answers
9k views

How to make a python, command-line program autocomplete arbitrary things NOT interpreter

I am aware of how to setup autocompletion of python objects in the python interpreter (on unix). Google shows many hits for explanations on how to do this. Unfortunately, there are so many ...
40
votes
3answers
7k views

What is the status of POSIX asynchronous I/O (AIO)?

There are pages scattered around the web that describe POSIX AIO facilities in varying amounts of detail. None of them are terribly recent. It's not clear what, exactly, they're describing. For ...
15
votes
7answers
15k views

Compare two images the python/linux way

Trying to solve a problem of preventing duplicate images to be uploaded. I have two JPGs. Looking at them I can see that they are in fact identical. But for some reason they have different file size ...
36
votes
5answers
43k views

Open a new tab in gnome-terminal using command line

gnome-terminal --tab at the terminal, I expect it to open a new tab in the same terminal window. But it opens a new window instead. I found out that its intention is to open a new tab in a new ...
32
votes
7answers
33k views

Virtual Serial Port for Linux

I need to test a serial port application on Linux, however, my test machine only has one serial port. Is there a way to add a virtual serial port to Linux and test my application by emulating a ...
7
votes
4answers
15k views

Any way to run shell commands on android programmatically?

Is there any way to run terminal commands on my application and then access the data on my UI? Specifically top.
44
votes
14answers
85k views

How do I mount a remote Linux folder in Windows through SSH? [closed]

I'm a blind student currently in a system admin/shell programming class. Although ssh works fine for executing commands like ls, pwd, etc editors do not work well with my screen reader and an ssh ...
10
votes
1answer
3k views

Want to know whether enough memory is free on a linux machine to deploy a new application

I have got a linux machine whose memory snapshot when I do /proc/meminfo is : MemTotal: 16413388 kB **MemFree: 48296 kB** Buffers: 193600 kB Cached: 1986448 kB SwapCached: ...
28
votes
7answers
8k views

Cross-platform space remaining on volume using python

I need a way to determine the space remaining on a disk volume using python on linux, Windows and OS X. I'm currently parsing the output of the various system calls (df, dir) to accomplish this - is ...
22
votes
4answers
13k views

fcntl, lockf, which is better to use for file locking?

Looking for information regarding the advantages and disadvantages of both fcntl and lockf for file locking. For example which is better to use for portability? I am currently coding a linux daemon ...
19
votes
7answers
48k views

How to find all serial devices (ttyS, ttyUSB, ..) on Linux without opening them?

What is the proper way to get a list of all available serial ports/devices on a Linux system? In other words, when I iterate over all devices in /dev/, how do I tell which ones are serial ports in ...
37
votes
7answers
8k views

Is `errno` thread-safe?

In errno.h, this variable is declared as extern int errno; so my question is, is it safe to check errno value after some calls or use perror() in multi-threaded code. Is this a thread safe variable? ...
31
votes
4answers
19k views

What is the linux equivalent to DOS pause?

I have a bash shell script in which I would like to pause execution until the user presses a key. In DOS, this is easily accomplished with the "pause" command. Is there a linux equivalent I can use in ...
19
votes
6answers
22k views

Files and scripts that execute on boot

If I want to make something run on startup on Linux, where is the preferred place to put things? I would like a description of each script or file that is executed at boot, and that script or file's ...
16
votes
7answers
8k views

Waitpid equivalent with timeout?

Imagine I have a process that starts several child processes. The parent needs to know when a child exits. I can use waitpid, but then if/when the parent needs to exit I have no way of telling the ...
33
votes
4answers
12k views

Register file extensions / mime types in Linux

I'm developing a Linux application that has its own file format. I want my app to open when you double-click on those files. How can I register a file extension and associate it with my application ...
17
votes
4answers
7k views

Rails sends 0 byte files using send_file

I can't get send_file(Model.attachment.path) to work. It doesn't fail, instead, it sends a 0 byte size file to the client, the file names are correct though. This problem started happening after I ...
40
votes
8answers
15k views

Ruby 1.9.2 and Rails 3 cannot open rails console

[gkaykck@main myApplication]$ rails console /usr/local/lib/ruby/1.9.1/irb/completion.rb:9:in `require': no such file to load -- readline (LoadError) from ...
23
votes
4answers
16k views

How to use /dev/random or urandom in C?

I want to use /dev/random or /dev/urandom in C - how can i do it ? I don't know how can i handle them in C, if someone knows please tell me how. Thank you.
31
votes
9answers
16k views

What is a good easy to use profiler for C++ on Linux?

I need to profile some code running C++ on Linux. Can you guys recommend some profilers?
14
votes
6answers
31k views

What linux shell command returns a part of a string?

I want to find a linux command that can return a part of the string. In most programming languages, it's the substr() function. Does bash have any command that can be used for this purpose. I want to ...

1 2 3 4 5 102