Tag: command

Install Recoll

Recoll is a personal full text search tool for Unix/Linux. It is based on the very strong Xapian backend, for…

Compile and Install LAMP Server from Source – PHP5, Apache2, MySQL5

MySQL ./configure –prefix=/usr/local/mysql –localstatedir=/var/lib/mysql –with-mysqld-user=mysql –with-unix-socket-path=/tmp/mysql.sock –without-comment –without-debug –without-bench make make install cp support-files/my-medium.cnf /etc/my.cnf chown root:sys /etc/my.cnf chmod 644…

Shutdown A Windows System from Command Line

ShutDown.EXE [/shutdown][/restart][/poweroff][/logoff][/lockws][/hibernate][/standby][/fshutdown][/frestart][/fpoweroff][/flogoff][/flockws][/fhibernate][/fstandby][/hide][/show] Switch      Description             Available for /shutdown   ShutDown Windows        Windows (all) /restart    Restart Windows         Windows (all) /poweroff   Power Off Windows      …

Remove an existing Kernel

The final numbers(2.6.20.6) is the version of you kernel. You can get this using uname -r (for the current kernel)…

Compiling a 2.6 Linux kernel

Get the latest Kernel from kernel.org Get a default .config file cp /boot/config-`uname -r` ./.config OR make defconfig Then configure…

Sharing an Internet Connection from A Linux System using IPTables

To setup internet connection sharing in Linux system using IPTables Enable IP forwarding Run as root sysctl -w net.ipv4.ip_forward=1 To…

Yum Options

Using yum command usage: yum [options] < upgrade, install, update, info, search > Use the -y option to bypass the…

yum install

Stuff I had to install after doing a Fedora Core 6 Install from DVD Libraries qca-tls Multimedia mplayer vlc xine…

Backup Locally using Rsync

Backup a folder to another local folder using the rsync tool. rsync -av ~/Scripts/ /var/Backup/Rsync/Scripts/ a = Archive Mode v…

Using Subversion – Import, Checkout and Update

Import/New Project svn import <Folder> <Repository> Online Repository Example svn import Nexty https://nexty.svn.sourceforge.net/svnroot/nexty Checkout svn checkout https://nexty.svn.sourceforge.net/svnroot/nexty [<folder>] Update svn…