Archive

Archive for December, 2007

Using Rsync over SSH

December 28th, 2007

The following command will synchronize a local folder called “Work” by pulling down any new files from a remote machine over ssh
SSH as a remote destination
rsync -avz -e ssh /home/username/Documents/Work/ username@192.168.1.12:/media/disk/Users/username

admin Linux Tutorials

Creating ISO from DVD or CDs

December 13th, 2007

Create ISO
Make sure your CD or DVD is not mounted and type one of the following commands to create an ISO image

FOR DVD
dd if=/dev/dvd of=dvd.iso # for dvd

FOR CD

dd if=/dev/cdrom of=cd.iso # cd-rom (non SCSI)
dd if=/dev/scd0 of=cd.iso # cd-rom (SCSI)

ISO FROM FOLDER
mkisofs -o /tmp/cd.iso /tmp/directory/

admin Linux Tutorials