美文网首页
restic 备份工具

restic 备份工具

作者: 星塵子 | 来源:发表于2020-09-15 21:59 被阅读0次

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

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

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

安装

  • Windows: 下载解压后加入 path 或 %SystemRoot%\System32

    1. 更新: restic self-update
    2. 版本查看: restic version
    3. 帮助:restic --help

配置存储库

  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

相关文章

网友评论

      本文标题:restic 备份工具

      本文链接:https://www.haomeiwen.com/subject/pxjqyktx.html