0
votes
How do you determine the amount of Linux system RAM in C++?
Even top (from procps) parses /proc/meminfo, see …
10
votes
In unix/linux how to you find out what group a given user is in via command line?
groups
or
groups user
…
3
votes
Making Python default to another version installed on a shared host.
Create a symlink and prepend the path to your PATH variable:
ln -s /usr/bin/python2.4 $HOME/bin/python
export PATH="$HOME/bin:$PATH"
…
0
votes
Is there an acceptable GUI client for git-svn?
You can use any GUI client for Git that you want to use. You only have to revert to the command line when you want to interface with the Subversion server (e.g. for committing and updating).
…
7
votes
Why is “echo foo | read a ; echo $a” not working as expected?
Due to the piping the read is executed in its own subshell.
echo foo | while read a; do echo $a; done
will do what you expect it to.
…
7
votes
Choosing between multiple executables with same name (linux)
You need to prepend “$HOME/usr/bin” to your path, like so:
export PATH="$HOME/usr/bin:$PATH"
…
4
votes
Bash Shell - What is equivalent of DOS shell F8 ?
My Gentoo is configured in a way that I can press PgUp and PgDn to scroll through those commands in the command history that start with what’s currently in my command line.
# cd< …
1
vote
Is there a file descriptor leak when using sockets on a linux platform?
You may also want to check /proc/<pid>/fd, the directory will contain all of your currently opened file descriptors. If a file disappears after you closed the socket you will not …
1
vote
How do I unlock a folder/file under Linux
fuser will show you which processes are accessing a file or directory.
…
-4
votes
Setting up the default script interpreter in Apache on Linux
There is no registry under Linux. Also, I doubt you will get Perl.exe running under Linux.
…
0
votes
Bugzilla error after installation: “TEST-FAILED Web Server is not executing CGI files”
You might try to read the Apache documentation, it should contain everything you need.
…
0
votes
Linux: Fastest way to draw
How many FPS can I expect on 1024x768?
The answer to that question is dependent on so many factors that it’s impossible to tell.
…
4
votes
Try/Catch a segmentation fault on Linux
Initialize your pointer to NULL. If after some processing it is still NULL it’s invalid, otherwise it’s valid.
…
0
votes
What is a reasonable amount of inotify watches with Linux?
100 billions trillions gazillions would be too many, probably. Kernel Korner - Intro to inotify mentions “thousands of watches” …
1
vote
How to remove some blocks from a sparse file on a ext2/ext3 filesystem
Filesystems only allocate blocks for those parts of the sparse file that do in fact have any content. Removing those blocks would be pretty stupid because that’s your data. The other block …
