212k views
1 vote
Which dd command is used to restore a disk partition from an image file?

Option 1: dd if=/dev/fd0 of=/home/sam/ conv=notrunc
Option 2: dd if=/home/sam/image.img of=/dev/sdb2 bs=4096 conv=notrunc,noerror
Option 3: dd if=/dev/mem of=/home/sam/ bs=1024
Option 4: dd if=/dev/null of=/dev/sda1

User EAbi
by
8.0k points

1 Answer

1 vote

Final answer:

Option 2: dd if=/home/sam/image.img of=/dev/sdb2 bs=4096 conv=notrunc,noerror

Step-by-step explanation:

The correct dd command to restore a disk partition from an image file is Option 2: dd if=/home/sam/image.img of=/dev/sdb2 bs=4096 conv=notrunc,noerror. This command reads the image file (if=/home/sam/image.img) and writes it to the specified partition (of=/dev/sdb2) with a block size of 4096 bytes (bs=4096). The conv=notrunc,noerror options ensure that the existing data on the partition is not truncated and any errors encountered are ignored.

User Oneklc
by
7.9k points