Ubuntu: Mount Encrypted Home Directory (~/.private) From an Ubuntu Live CD

To mount an encrypted home directory (located at ~/.private) from an Ubuntu Live CD, you can use the following steps: Boot your computer using an Ubuntu Live CD. Open a terminal window. Install the ecryptfs-utils package by running the following command: sudo apt-get update && sudo apt-get install ecryptfs-utils Mount the encrypted home directory by … Read more

HowTo: Linux Play Video CD

To play a video CD (VCD) on Linux, you can use any media player that supports the Video CD format, such as VLC or MPlayer. Here are the steps to play a VCD on Linux using VLC: Insert the VCD into your computer’s CD/DVD drive. Open VLC media player. If VLC is not installed on … Read more

Linux: Configure Xorg X11 Window System

To configure the Xorg X11 window system on a Linux system, you can use the following steps: Check which video driver is currently in use by running the following command: lspci -k | grep -A 2 -E “(VGA|3D)” This will display the video card and driver that is currently in use. Edit the Xorg configuration … Read more

Apple OS X: Open .Rar File / Extract rar

To open or extract a .rar file on a Mac running OS X, you can use the following steps: Install a third-party extraction tool that supports RAR files. Two popular options are The Unarchiver and StuffIt Expander. Both of these tools can be downloaded for free from the Mac App Store. Once you have installed … Read more

HowTo: Update Centos Linux 5.4 to 5.5

To update a CentOS 5.4 system to CentOS 5.5, you can use the following steps: Make sure your system is up-to-date with the latest packages by running the following command as root: yum update Once the update process is complete, reboot your system to ensure that any updates that require a reboot are applied. reboot … Read more

Linux Find Out If CPU Support Intel VT/AMD-V Virtualization For KVM

To find out if your Linux system’s CPU supports Intel VT/AMD-V virtualization for KVM, you can use the following commands: Check if your CPU supports virtualization: egrep -c ‘(vmx|svm)’ /proc/cpuinfo If the output is greater than zero, it means that your CPU supports virtualization. Check if the virtualization extensions are enabled in the BIOS: Reboot … Read more