Backup Script
#!/bin/sh # #Make the image mkisofs -o /home/BACKUP.iso /source/mybackupdir/ #Burn the image to a DVD. growisofs -dvd-compat -Z /dev/dvd=BACKUP.iso #Burn the image to a CD. cdrecord --scanbus cdrecord -v dev=1,0,0 -speed 8 driveropts=burnfree fs=32 -eject BACKUP.iso
Then obviously create a CRON to do this when you want……
5 0 * * fri /path/to/script.sh










