I had to set up a webcam, in my case a Canyon CNR-WCAM413. Set up atrpms repo (if not set up before). Use yum to set up the driver: Should work without rebooting.
Local SVN + Trac + SSL How-to

Objective: svn and trac up and running on a local virtual host Purpose: local development environment on intranet Valid: Fedora 8, Fedora 9, Fedora 10 Adapted from this article. Before making the below, generate ssl certificate files (if you have…
Change Grub Picture at Boot
The below will change the grub splash image at boot time. Requires Imagemagick. Do it at your own risk! Prepare your picture in any format. sudo cp /boot/grub/splash.xpm.gz ./splash.xpm.gz.bak convert -resize 640×480 -colors 14 YOUR_PICTURE.jpg splash.xpm gzip splash.xpm sudo cp…
Self-Signed SSL Certificate
Adapted from this article. sudo yum -y install mod_ssl openssl openssl-devel sudo mkdir /usr/share/ssl sudo openssl genrsa -des3 -out server.key 1024 sudo openssl req -new -key server.key -out server.csr sudo cp server.key server.key.org sudo openssl rsa -in server.key.org -out server.key…
Local Yum Rpm Repository
YUM is the default package manager provided with most RPM distros, especially Fedora and Redhat based distros. It is similar to APT of the Debian based distros. Admittedly, it is not the best package manager in term of performance, I…
Securing MySQL after Installation
If you just installed Linux or, separately, MySQL server, you need to undertake some simple routines to make it a little more secure. The below will set a password for a superuser account, remove anonymous user account and do some…
True type fonts in Linux
Installing true type fonts for system-wide use in Gnome, KDE, etc.: Become root: su – As root, create the fonts directory: mkdir /usr/share/fonts/ttf Copy the font files in, cd into the fonts directory: cp [fontfiles] /usr/share/fonts/ttf cd /usr/share/fonts/ttf Make fonts.dir:…