Github: https://github.com/restic/restic
文档:https://restic.readthedocs.io/en/latest
下载:https://github.com/restic/restic/releases/latest
安装
-
Windows: 下载解压后加入 path 或
%SystemRoot%\System32
- 更新:
restic self-update
- 版本查看:
restic version
- 帮助:
restic --help
- 更新:
配置存储库
-
备份到本地:
restic init --repo d:\\backup
输入密码 以下操作均需要密码
备份
- 本地备份:
//备份文件夹 d://note
restic -r d:\\backup --verbose backup d://note
//备份文件 d://log.txt
restic -r d:\\backup --verbose backup d://log.txt
查看备份列表
restic -r d:\\backup snapshots
恢复备份
1 . 恢复本地备份:
//恢复备份文件 log.txt
restic -r d:\\backup restore id --target d://note
删除备份
restic -r d:\\backup forget id
指定密码文件
//rps 为密码存储的文件名
restic -r d:\\backup snapshots -p rps
网友评论