<iframe style="width: 170px; height: 30px;" src="http://ghbtns.com/github-btn.html?user=netkiller&repo=netkiller.github.com&type=watch&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30"></iframe> | <iframe style="width: 170px; height: 30px;" src="http://ghbtns.com/github-btn.html?user=netkiller&repo=netkiller.github.com&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30"></iframe> | <iframe style="width: 240px; height: 30px;" src="http://ghbtns.com/github-btn.html?user=netkiller&type=follow&count=true&size=large" frameborder="0" scrolling="0" width="240" height="30"></iframe> |
Attic 是一个拥有重复数据删除技术的备份软件
过程 9.4. Attic 快速开始
-
初始化仓库
$ attic init /somewhere/my-repository.attic
-
备份目录~/src 和 ~/Documents归档名称Monday
$ attic create /somwhere/my-repository.attic::Monday ~/src ~/Documents
-
一次类推下一份叫做Tuesday
$ attic create --stats /somwhere/my-repository.attic::Tuesday ~/src ~/Documents
--stats 参数将显示备份过程的状态
-
列出库中的所有档案
$ attic list /somewhere/my-repository.attic
-
列出周一归档文件的内容
$ attic list /somewhere/my-repository.attic::Monday
-
通过手动删除周一存档恢复磁盘空间
$ attic delete /somwhere/my-backup.attic::Monday
Attic is quiet by default. Add the -v or --verbose option to get progress reporting during command execution.