我想使用 DD 备份整个磁盘。我有一个 512 GB 的磁盘,有 3 个分区,仅占用 8 GB,其余未使用。
root@routerMARS:~# parted /dev/sda print
Model: ATA MT-512 (scsi)
Disk /dev/sda: 512GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
128 17.4kB 262kB 245kB bios_grub
1 262kB 17.0MB 16.8MB fat16 legacy_boot
2 17.0MB 8000MB 7983MB ext2
我想用类似的东西备份它
dd if=/dev/sda bs=4M conv=noerror | pv | gzip -c > /mnt/backupusb/sda.img.gz
那么,我需要像我想象的那样使用dd
with进行备份吗?count=$(( 8000 / 4 ))
我做了以下事情:
DD_DISK=/dev/sda
SAVE_FILE=/mnt/backupusb/sda.img.gz
DD_BS=4194304 # 4 MB
DISK_LEN=$(parted --script --json ${DD_DISK} unit B print | jq '.disk.partitions | map(.end) | [.[]|rtrimstr("B")|tonumber] | max')
DD_COUNT=$(( (DISK_LEN + DD_BS - 1) / DD_BS )) # "DD_BS - 1" is to round up division
sync
dd if=${DD_DISK} bs=${DD_BS} count=${DD_COUNT} conv=noerror | pv --buffer-size ${DD_BS} --size ${DISK_LEN} --rate-limit 50M | gzip -c > ${SAVE_FILE}
请建议是否正确?