6
votes
How do you find out which version of the GTK Ubuntu is using?
The above suggestion will tell you which minor version of 2.0 is installed. Different major versions will have different package names because they can co-exist on the system (in order to support a …
0
votes
Linux configuration file libraries
If you just want a simple config file, with a list of commands and/or variable settings, then it's very easy to write your own parser, so easy that it's probably not worth using a library. If you n …
0
votes
How do I erase my disk? (In a secure way) (Ubuntu)
In the past there was enough redundancy on the disc that after one pass of erasing it was possible (using special equipment) to recover data. Probably nothing to worry about for most people but if …
1
vote
Linux - Using ldconfig
ldconfig looks inside all shared objects that it finds, to look for the soname. It then creates a link using that soname as the name of the link. It's conventional (but far from universally done) f …
1
vote
Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?
I believe that when Microsoft started using a two byte encoding, characters above 0xffff had not been assigned, so using a two byte encoding meant that no-one had to worry about characters being di …
0
votes
C wrapper to remove users on command “ps”
Not really an answer to your question, but user names are case-sensitive in unix, so capitalising them all probably isn't a good idea. If you want to make them stand out visually then "USER: apache …
0
votes
C wrapper to remove users on command “ps”
This should work:
ps haux --sort user | perl -npe 's/^(\S+)\s+//; if ($user ne $1) {$user=$1; print "user: " . uc($user) . "\n";}'
Based on bmdhacks's answer, but …
1
vote
C wrapper to remove users on command “ps”
You have a number of options depending on how much of it you want to do in C.
The simplest is to use system() to run a shell command (such as the one I posted earlier) to do the whole lot. …
2
votes
Find all storage devices attached to a Linux machine
Modern linux systems will normally only have entries in /dev for devices that exist, so going through hda* and sda* as you suggest would work fairly well.
Otherwise, there may be something …
0
votes
Find all storage devices attached to a Linux machine
libsysfs does look potentially useful, but not directly from a shell script. There's a program that comes with it called systool which will do what you want, though it may be easier to just look in …
4
votes
What Linux shell should I use?
The problem with csh is that it's crap for scripting, as explained here. There's no real reason why you shoul …
19
votes
How does the ‘ls’ command work in Linux/Unix?
ls doesn't fork. The shell forks and execs in order to run any command that isn't built in, and one of the commands it can run is ls.
ls uses opendir() and readdir() to step through all the …
6
votes
primary partition limit on Linux
It isn't a limit of linux, but of the PC partition table format (invented by IBM I think), and therefore is obviously per drive.
Linux actually supports other partition table formats too th …
2
votes
Getting The Full Result from “ps”
There are two different option syntaxes for ps; the standard POSIX one based on SysV, and the BSD one. GNU ps, as used on linux, supports both, which it can do because the POSIX options have dashes …
1
vote
Process text files ftp’ed into a set of directories in a hosted server
The 30 minute limitation is pretty silly really. Starting processes in linux is not an expensive operation, so if all you're doing is checking for new files there's no good reason not to do it more …
