recently I made a backup 120 GB disk image using dd:
dd if=/dev/sda of=backup.img
Now I have a new 320 GB hard disk and want to restore that backup image to that new disk. Will running
dd if=backup.img of=/dev/sdb
do what I want? Will I be able to use remaining 200 GB of new disk?
(/dev/sda - old 120 GB disk, /dev/sdb - new 320 GB disk, backup.img - image file of 120 GB disk)