本文共 724 字,大约阅读时间需要 2 分钟。
Attic 是一个拥有重复数据删除技术的备份软件
$ pip install attic
过程 76.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.
原文出处:Netkiller 系列 手札
本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。