<< XEmacs Survival Guide | Journals | Artipax Disks >>
See also Fedora Ubuntu Notes
Ubuntu
- https://help.ubuntu.com/community/BinaryDriverHowto/ATI
- http://www.ubuntugeek.com/howto-upgrade-kernel2622-9-generic-in-feisty-fawn.html
Apache
Unix
- How to determine your kernel version
$ uname -r
- Delete files Recursively
find /path_to_search -type f -name "*the_patern*" -lsfind /path_to_search -type f -name "*the_patern*" -delete - More uses of
find - xargs with spaces in filenames
Unix: spaces in filenames with find, xargs Spaces in filenames can be a problem when using find | xargs combination. To solve this, use: find . -print0 | xargs -0 <command> This tells find and xargs to use the ASCII NUL character instead of space to end (separate) the filenames.
- Entry for .htaccess to get around the 30 seconds limit to execute PHP
php_value max_execution_time 6000
In the sample I got on the internet, 600 was the value set which is 100 minutes or 1 hour 40 minutes. But sometimes, Gallery can take longer than this to create thumbnails for photos if you're adding local files.