Partclone (简体中文)

From ArchWiki
翻译状态:本文是 Partclone翻译。上次翻译日期:2020-05-01。如果英文版本有所更改,则您可以帮助同步翻译。

Partclone 与众所周知的 Partimage 一样可用于备份和还原分区,同时仅考虑已使用的块。

安装

安装 partclone 包。

对一个 ext4 格式的分区使用 Partclone

不使用压缩

要备份而 不使用 压缩:

$ partclone.ext4 -c -s /dev/sda1 -o ~/image_sda1.pcl

还原它:

$ partclone.ext4 -r -s ~/image_sda1.pcl -o /dev/sda1

使用压缩

进行 压缩备份:

$ partclone.ext4 -c -s /dev/sda1 | gzip -c > ~/image_sda1.pcl.gz
注意: 为获得最大压缩效果,请使用 “gzip -c9”

还原它:

zcat ~/image_sda1.pcl.gz | partclone.ext4 -r -o /dev/sda1