Question: You are going to clone the partition / dev / sdb 1 into / dev / sdb 2 , that is , an exact copy.

You are going to clone the partition /dev/sdb1 into /dev/sdb2, that is, an exact copy. First, free the destination by executing umount /dev/sdb2. Then, execute the cloning command, dd if=/dev/sdb1 of=/dev/sdb2 bs=1M. Finally, create the mount point /mnt/copy and mount it again with mount /dev/sdb2/mnt/copy. Both should be identical as per the output of ls /mnt/data /mnt/copy. Show all operations.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!