| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

数据备份程序:Attic

Attic是一个deduplicating备份程序。Attic的主要目的是提供一种有效和安全的方式来备份数据。使用重复数据删除技术使得Attic适合日常备份,因为只存储有更改的部分。

易于使用

初始化备份库,并创建一个备份存档:

$ attic init /usbdrive/my-backup.attic  $ attic create -v /usbdrive/my-backup.attic::documents ~/Documents

主要特性:

Space efficient storage
Variable block size deduplication is used to reduce the number of bytes stored by detecting redundant data. Each file is split into a number of variable length chunks and only chunks that have never been seen before are compressed and added to the repository.
Optional data encryption
All data can be protected using 256-bit AES encryption and data integrity and authenticity is verified using HMAC-SHA256.
Off-site backups
Attic can store data on any remote host accessible over SSH. This is most efficient if Attic is also installed on the remote host.
Backups mountable as filesystems
Backup archives are mountable as userspace filesystems for easy backup verification and restores.

项目主页:http://www.open-open.com/lib/view/home/1416493633930

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1416493633930.html
Attic 备份工具