Backup

dd if=/dev/sda1 (or just sda for the whole disk) of=/home/user/backup.img


Restore

dd if=/home/user/backup.img of=/dev/sda1


Mount backup image

sudo mount -o loop -t ext4 backup.img mount-point

+ Recent posts