Code Sample |
# backup (as root) cd /; tar -T ~/.filetool.lst -cvf /path/to/backup.tar # restore (as root) cd /; tar -xvf /path/to/backup.tar |
Code Sample |
# fast_backup echo backing up.. tar -C / -T /opt/.filetool.lst -X /opt/.xfiletool.lst -cf /mnt/hdc1/backups/mybackup.tar echo syncing.. sync echo done # fast_restore tar -C / -xf /mnt/hdc1/backups/mybackup.tar |
Quote (humpty @ Jan. 02 2008,22:15) |
echo syncing.. sync |