
Jul 2, 2010
Adding Multimedia support on CentOS 5.5
Recently I have been building a new Home server as a Home Digital Server. In the process of using CentOS 5.5 as the Linux distro I ran into the need to Multimedia support. Here is how I accomplished the task. Add the rpmforge repos if not already installed. Type the following commands in the console/terminal For 32-bit installations (i.e. CentOS 5.x 32-bit installed), enter the following into your... read more
Jun 14, 2010
Installing Win32 Codecs on Linux
The following is an example way to install the “all” pack as root and will work on Ubuntu and Fedora. cd /tmp wget http://www.mplayerhq.hu/MPlayer/releases/codecs/all-20100303.tar.bz2 tar -jxvf all-20100303.tar.bz2 su -c ‘mkdir -p /usr/local/lib/codecs’ su -c ‘cp all-20100303/* /usr/local/lib/codecs’ rm -rf /tmp/all-20100303* read more
Jun 13, 2010
Remote Desktop to Windows PC’s from Linux
Being a Systems Administrator for a living there is always the need to have to connect to Windows servers and systems to work. At work this is easy because of using a Windows XP workstation, at home it is a bit different since a majority of the systems are Linux. There is a solution for the issue and that is tsclient aka: Terminal Server Client or Remote Desktop. Installation is easy: Ubuntu $ sudo... read more
Jun 12, 2010
Enabling APC UPS on Ubuntu 9.10
After several years of using an APC UPS I had to replace the system. Previously I never used the plug to the USB from the UPS to my Linux Server. Being the tinkerer that I am I decided it was time to get it to work on the server. Fortunately this was not a hard task. Install APCUPSD by typing $ sudo apt-get install apcupsd apcupsd-cgi Once installation is completed you must configure it and start it up.... read more
Jun 11, 2010
Disable IPV6 on Ubuntu 10.04
Ran into an issue on Ubuntu the other day in which network functions were having issues. Through a little PD found that IPV6 was the culprit. Here is a tip on how to disable IPV6 on Ubuntu 10.04. To check if IPv6 is disabled, run the following command: cat /proc/sys/net/ipv6/conf/all/disable_ipv6 0 means it’s enabled and 1 – disabled. To disable IPv6, you have to add the following lines to... read more