[Linux tips] use the tar-G parameter for incremental + differential backup and Restoration

Source: Internet
Author: User

Author: gnuhpc
Source: http://www.cnblogs.com/gnuhpc/

Full backup:

# Create a test path and file
Mkdir Test
Touch test/{a, B, c}
Generate three files under test

# Complete backup
Tar-G snapshot-zcf backup_full.tar.gz Test

# Viewing tarball content
Tar ztf backup_full.tar.gz
Test/
Test/
Test/B
Test/C

Differential + Incremental Backup:

# Add a new file and modify the File Content
Touch test/E
Echo 123> test/

# Perform the second Incremental Backup (note the tarball file name)
Tar-G snapshot-zcf backup_incremental_2.tar.gz Test

# Viewing tarball content
Tar ztf backup_incremental_2.tar.gz
Test/
Test/
Test/E

Restore backup data:

# Clear test materials
Rm-RF Test

# Start data restoration
Tar zxf backup_full.tar.gz
Tar zxf backup_incremental_1.tar.gz
Tar zxf backup_incremental_2.tar.gz

# View test materials
Ls Test
A B C D E

 

Author: gnuhpc
Source: http://www.cnblogs.com/gnuhpc/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.