Duplicate Hard Disk

From KlavoWiki
Revision as of 00:30, 23 October 2015 by David (talk | contribs) (Created page with "To Duplicate a hard disk in Linux first verify the sector size of the hard disk. <pre> lsblk -o NAME,PHY-SeC </pre> Once the sector size is known. <pre> dd if=/dev/sda of=/de...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

To Duplicate a hard disk in Linux first verify the sector size of the hard disk.

lsblk -o NAME,PHY-SeC

Once the sector size is known.

dd if=/dev/sda of=/dev/sdb bs=512 conv=noerror,sync