I use dd command to backup a disk.
# dd if=/dev/sda of=/dev/sdb
but when I boot from the backup disk, I got a error message check filesystem failed!
I do not know how to settle this problem. I thought the sdb is a copy of sda, so it can be booted. Then why it turns out this error message?
blockdev --getsz /dev/sda /dev/sdbOr volumes get mounted via /dev/disk/by-id/ which cannot work any more as the disk ID has changed. – Hauke Laging Mar 04 '13 at 02:35sfdisk --unit S -l /dev/sda /dev/sdb? – Hauke Laging Mar 04 '13 at 13:51