Wednesday, April 18, 2012

Các công cụ backup phổ biến trên Linux

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

Popular Posts