2
votes
How to rename all folders and files to lowercase on Linux?
The previously posted will work perfectly out of the box or with a few adjustments for simple cases, but there are some situations you might want to take into account before running the batch renam …
1
vote
What is the difference between gcc optimization levels?
Sidenote:
It's quite hard to predict exactly what flags are turned on by the global -O directives on the gcc command line for different versions and platforms, and all document …
1
vote
Apache configuration help — Why are different processes “in” different time zones?
Are you by any chance using ntpd and the peers against which you synchronize are flaky?
…
1
vote
Writing data over RxTx using usbserial?
(perhaps slightly off-topic, but here goes)
I'm not familiar with that particular library, but I can assure you from dire experience (I work in the security systems (as in: hardwar …
2
votes
0
votes
last-modified header and linux file system
If you dualboot with Windows, you must make sure your Linux system is configured to not think the BIOS keeps the clock in GMT (or UTC), but in local time. Otherwise your Linux system's clo …
2
votes
MySQL++ library doesn’t work after upgrading GCC
After upgrading the C++ standard library from GCC 3.3 to GCC 3.4 you must recompile all libraries linking against it if your program uses them and at the same time also links direc …
7
votes
Is there an equivalent to the .Net FileSystemWatcher in the Linux world?
That would be Gamin the File Alteration Monitor or Inotify.
…
1
vote
Linux permission denied after chmod a=rwx
The file system hosting your script might be mounted with the noexec flag. Check your /etc/fstab entry for that file system and if there's a noexec there try removing it t …
3
votes
Linux permission denied after chmod a=rwx
I just noticed the error message references the name of the directory hosting your file:
eval: 1: /home/user1/MyApp/bin/wrapper: Permission denied
…
1
vote
Return code when OS kills your process
What signal was used to kill the processes?
Exit codes between 0 and 127, inclusive, can be used freely, and codes above 128 indicate that the process was terminated by a signal, where the …
18
votes
How can I reverse the lines in a file?
Also worth mentioning: tac (the, ahem, reverse of cat). Part of coreutils.
…
1
vote
How to make binary distribution of Qt application for Linux
Not an answer as such (sybreon covered that), but please note that you are not allowed to distribute your binary if it is statically linked against Qt, unless you have bought a com …
