first commit
This commit is contained in:
7
content/deepin折腾笔记/第四章/4.2.md
Executable file
7
content/deepin折腾笔记/第四章/4.2.md
Executable file
@@ -0,0 +1,7 @@
|
||||
# 4.2 硬盘或分区克隆及恢复
|
||||
推荐使用Clonezilla(再生龙):http://www.clonezilla.org/
|
||||
dd命令底层低效,仅供备用:
|
||||
备份:`sudo dd if=/dev/sda1 of=~/elf.bak status=progress`
|
||||
还原:`sudo dd if=~/elf.bak of=/dev/sda1 status=progress`
|
||||
压缩备份:`sudo dd if=/dev/sda1 status=progress | gzip -c > ~/elf.bak`
|
||||
压缩还原:`gunzip -c ~/elf.bak | sudo dd of=/dev/sda1 status=progress`
|
||||
Reference in New Issue
Block a user