1. CPIO Full backup: [root@localhost /]# find /home/ -print | cpio -oF /root/backup/cpiofull 11 blocks Incremental backup 1: [root@localhost /]# touch /home/newfile1 /home/newfile2 [root@localhost /]# find /home/ -cnewer /root/backup/cpiofull -print /home/newfile1 /home/newfile2 [root@localhost /]# find /home/ -cnewer /root/backup/cpiofull -print | cpio -oF /root/backup/cpioinc1 4 blocks Incremental backup 2: [root@localhost /]# touch /home/newfile3 [root@localhost /]# touch [...]
Link to full article
No comments:
Post a Comment