Linux系统快照 备份还原
Debian/Ubuntu
apt update -y && apt install -y timeshift
CentOS
yum update -y
yum install -y epel-release
yum install -y timeshift
创建一个备份
timeshift --create
查看可用备份列表
timeshift --list
还原一个备份
timeshift --restore --snapshot "2023-10-23_04-32-02"
删除一个备份
timeshift --delete --snapshot "2023-10-23_04-32-02"
评论
发表评论