restic 备份工具

2020-09-15  本文已影响0人  星塵子

Github: https://github.com/restic/restic

文档:https://restic.readthedocs.io/en/latest

下载:https://github.com/restic/restic/releases/latest

安装

配置存储库

  1. 备份到本地: restic init --repo d:\\backup

    输入密码 以下操作均需要密码

备份

  1. 本地备份:
//备份文件夹 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
上一篇下一篇

猜你喜欢

热点阅读