Linux is a Free (libre), Open Source, Unix-like operating system.
218
votes
18answers
80k views
What can I use to profile C++ code in Linux?
I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code? :)
190
votes
13answers
206k views
How to check if a directory exists in a Bash shell script
What command can be used to check if a directory does or does not exist, within a Bash shell script?
148
votes
17answers
62k views
Git GUI client for Linux
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 ...
144
votes
38answers
120k views
What can I use as a Notepad++ alternative in Linux (Ubuntu)?
I got addicted to Notepad++ on Windows and I've recently moved to Ubuntu. I'm missing a tool as such.
142
votes
16answers
48k views
Print in terminal with colors using python?
I want to print in the terminal with colors. How can I do that in python?
Another questions what is the best character that when it is printed it look like a box [brick]?
I want to print colored ...
141
votes
27answers
41k views
How to pretty-print JSON script?
Is there a (*nix) command-line script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
...
136
votes
18answers
99k 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 ...
135
votes
45answers
123k views
C++ IDE for Linux?
I want to expand my programming horizons to Linux. A good, dependable basic toolset is important, and what is more basic than an IDE?
I could find these SO topics:
Lightweight IDE for linux and
...
132
votes
15answers
50k 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 ...
106
votes
7answers
20k views
grep a file, but show several surrounding lines?
I would like to grep for a string, but show the preceding 5 lines and following 5 lines as well as the matched line. I'm scanning for errors in a logfile, and want to see the context.
Any clues for ...
94
votes
12answers
124k views
Split string based on delimiter in bash?
How to split string based on delimiter in bash?
I have this string stored in a variable:
IN="bla@some.com;john@home.com"
Now I would like to split the strings by ';' delimiter so that I have
...
93
votes
36answers
5k views
What Linux/Unix commands are outdated and have powerful alternatives? [closed]
Today I discovered you can make less act like tail -f.
less filename, then press Shift-F to start follow mode.
Just like tail, but you have all the added features of less - like scrolling, ...
89
votes
11answers
7k views
How do I get Windows to go as fast as Linux for compiling C++?
I know this is not so much a programming question but it is relevant.
I work on a fairly large cross platform project. On Windows I use VC++ 2008. On Linux I use gcc. There are around 40k files in ...
82
votes
7answers
3k views
Is it safe to parse a /proc/ file?
Well, this is going to be a short one...
I want to parse /proc/net/tcp/, but is it safe? I mean, how to open and read it and not be afraid, that some other process (or the OS) will be changing it in ...
73
votes
15answers
136k 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?
I've read here that "ps" is not an accurate tool to use for this intent.
Thanks,
Kenneth
72
votes
36answers
4k views
What should a longtime Windows user know when starting to use Linux?
We've finally moved our websites to a decent host, and for the first time we have Shell Access.
I know very little about using Linux, I can navigate through the file system, read files with Vim and ...
72
votes
11answers
9k views
Getting root permissions on a file inside of vi?
Often while editing config files, I'll open one with vi and then when I go to save it realize that I didn't type
sudo vi filename
Is there any way to give vi sudo privileges to save the file? ...
70
votes
9answers
67k views
How do I tell if a file does not exist in bash?
I've used the following script to see if a file exists:
#!/bin/bash
FILE=$1
if [ -f $FILE ];
then
echo "File $FILE exists."
else
echo "File $FILE does not exist."
fi
What's the correct ...
65
votes
4answers
1k views
Why main does not return 0 here?
I was just reading
ISO/IEC 9899:201x Committee Draft — April 12, 2011
in which i found under 5.1.2.2.3 Program termination
..reaching the } that terminates the main function returns a value of ...
63
votes
4answers
5k views
How does this giant regex work?
I recently found the code below in one of my directories, in a file called doc.php. The file functions or links to a file manager. It's quite nicely done. Basically, it lists all the files in the ...
63
votes
25answers
20k 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 ...
62
votes
2answers
16k views
Undo git pull, how to bring repos to old state
Is there any way to revert or undo git pull so that my source/repos will come to old state that was before doing git pull ?
I want to do this because it merged some files which I didn't want to do so, ...
61
votes
14answers
32k views
sudo changes PATH - why?
This is the PATH variable without sudo:
$ echo 'echo $PATH' | sh
/opt/local/ruby/bin:/usr/bin:/bin
This is the PATH variable with sudo:
$echo 'echo $PATH' | sudo sh
...
59
votes
13answers
10k views
How can I get `find` to ignore .svn directories?
I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .svn/text-base/ directories my simple searches ...
59
votes
12answers
74k views
Difference between binary semaphore and mutex
Is there any difference between binary semaphore and mutex or they are essentialy same?
56
votes
21answers
27k views
Linux command to sum integers, one per line?
I am looking for a command that will accept as input multiple lines of text, each line containing a single integer, and output the sum of these integers.
As a bit of background, I have a log file ...
56
votes
9answers
6k 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 ...
53
votes
17answers
3k 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, ...
53
votes
11answers
32k views
How do I iterate over a range of numbers in bash?
How do I iterate over a range of numbers in bash when the range is given by a variable?
I know I can do this:
for i in {1..5}; do echo $i; done
Which gives:
1
2
3
4
5
Yet how can I ...
52
votes
18answers
64k views
How to test Internet connection speed from command line? [closed]
There's plenty of websites for it, but they're all Flash, not of much use for servers without graphics mode. Any tool I can use to test up/down bandwidth from Linux command line?
52
votes
21answers
53k views
Is there a Linux (Ubuntu) svn client that doesn't suck?
Subversion has a superb client on Windows (Tortoise, of course). Everything I've tried on Linux just - well - sucks in comparison....
50
votes
5answers
16k views
49
votes
4answers
3k views
Reloading Flash 17 times causes error #2046 and requires a browser restart
I am encountering some very strange behaviour with a Flex 4.1 app I am writing which gets in the way of testing. It seems that I can reload the app 16 times and then on the 17th, the loading process ...
47
votes
8answers
47k views
How do I prompt for input in a Linux shell script?
I want to pause input in a shell script, and prompt the user for choices. The standard 'Yes, No, or Cancel' type question. How do I accomplish this at a typical bash prompt?
46
votes
13answers
27k views
In the bash script how do I know the script file name?
How can I determine the name of the bash script file inside the script itself?
Like if my script is in file runme.sh, than how would I make it to display "You are running runme.sh" message without ...
46
votes
14answers
12k views
Please recommend a Java profiler
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 ...
45
votes
13answers
2k views
Is the Windows dev environment worth the cost? [closed]
I recently made the move from Linux development to Windows development. And as much of a Linux enthusiast that I am, I have to say - C# is a beautiful language, Visual Studio is terrific, and now ...
45
votes
3answers
20k views
How do I put an already running process under nohup
I have a process that is already running for a long time and don't want to end it.
How do I put it under nohup (i.e. how do I cause it to continue running even if I close the terminal?)
44
votes
3answers
6k views
Trying to fix line-endings with git filter-branch, but having no luck
I have been bitten by the windows/linux line-ending issue with git. It seems, via github, msysgit, and other sources, that the best solution is to have your local repos set to use linux-style line ...
44
votes
16answers
7k views
Is .NET/Mono or Java the better choice for cross-platform development?
How much less libraries are there for Mono than for Java?
I lack the overview over both alternatives but I have pretty much freedom of choice for my next project. I'm looking for hard technical facts ...
43
votes
0answers
831 views
How can I identify the request queue for a linux block device
I am working on this driver that connects the hard disk over the network. There is a bug that if I enable two or more hard disks on the computer, only the first one gets the partitions looked over and ...
43
votes
10answers
43k 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 ...
43
votes
12answers
28k 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 ...
42
votes
17answers
7k views
How do you get by without a Mouse? [closed]
I've been slowly using my mouse less and less over the past few years. As a developer who prefers the command line over IDE bloat: the less I move from my keyboard, the more productive I tend to be. ...
42
votes
14answers
29k 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.
42
votes
10answers
12k views
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 ...
41
votes
19answers
7k views
Is Ubuntu an acceptable distro for running a production server?
I'm not a great Linux expert, but I'm comfortable running my Ubuntu desktop. I've also got a little experience running Ubuntu as a server as well, for my home network.
At work, we're considering ...
41
votes
8answers
9k 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 ...
40
votes
6answers
2k views
I never really understood: what is POSIX?
What is POSIX? I read the Wikipedia article and I read it ever time I encounter the term. Fact is that I never really understood what it is.
Can anyone please explain it to me by explaining "the need ...
40
votes
4answers
48k 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 ...