Month: March 2008

Sync Two Folders

Sync two folders using rsync command rsync -rogpav –delete /home/me /backup/folder

Convert all Ico files to Gif

I had a collection of ico files with the ext gif – these are the commands I used to fix…

Install RPM Package

Install a rpm package rpm -ivh package.rpm

5 Column Output

Divide terminal into 5 columns ls /tmp | pr -T5 -W$COLUMNS

Copying a directory

Copying a directory cp -a dir1 dir2

‘date’ and ‘cal’ Commands

Some date finding commands.. date Mon Mar 10 23:52:08 IST 2008 cal March 2008 Su Mo Tu We Th Fr…

Create a Boot Floppy

Create a boot floppy – if you still have a floppy drive? mkbootdisk –device /dev/fd0 `uname -r`

Delete Multiple Folders

Remove two directories and their contents recursively rm -rf dir1 dir2

Remove a Directory Recursively

Remove a directory called ‘dir’ and contents recursively rm -rf dir

Create Compressed Image

Create a compressed iso image of cdrom on disk mkisofs /dev/cdrom | gzip > cd_iso.gz