0
votes
Maximum number of inodes in a directory?
Maximum directory size is filesystem-dependent, and thus the exact limit varies. However, having very large directories is a bad practice.
You should consider making your directories smalle …
4
votes
Bare-metal virtualisation for the desktop
As suggested elsewhere, VMWare ESXi is what's available in terms of free-of-charge bare-metal hypervisors, where "bare metal" impli …
13
votes
Problem with Bash output redirection
Redirecting from a file through a pipeline back to the same file is unsafe; if file.txt is overwritten by the shell when setting up the last stage of the pipeline before tail …
1
vote
Problem reading from a device with libusb
I haven't used libusb in quite some time -- but the sysfs error indicates that this is likely to be a kernel problem rather than a libusb one, so I'd start by trying to track that one down. (Not mu …
19
votes
Is Linux ruining my chance at a good software engineering career?
I'm part of a UNIX systems engineering group, and every last one of our senior engineers is heavily headhunted.
There's no shortage of demand; indeed, if you're in the Austin area, get in t …
15
votes
Ensuring a single instance of an application in Linux
The Right Thing is advisory locking using flock(LOCK_EX); in Python, this is found in the fcnl module …
14
votes
Fake X11 display?
The underlying question here is how to run Java applications without an X server; providing a "fake" X server is only one option. In Java 1.4 and up, you can do the following:
java …
2
votes
Linux cross-compilation for ARM architecture
Buildroot is a tool I've had reasonably good luck with for building a custom uClibc-based toolchain from scratch. It's very customizable, a …
3
votes
Insert Command into Bash Shell
You can do this, but only if the shell runs as a subprocess of your Python program; you can't feed content into the stdin of your parent process. (If you could, UNIX would have a host of related se …
8
votes
How do I test if a variable is a number in bash?
One approach is to use a regular expression, like so:
if ! [[ "$yournumber" =~ ^[0-9]+$ ]] ; then
exec >&2; echo "error: Not a number"; exit 1
fi
If the …
8
votes
display message on command “cd production”
Don't do it that way. :)
What you really want to know isn't whether the user just got into the 'production' directory via a cd command; what you really want to know is if you're modifying p …
1
vote
Hide a bash function internals..
Run type env at your bash prompt, and provide the output; for me, this indicates that env is /usr/bin/env, a separate executable; such executables have no way to know anyt …
