bs=446

All posts tagged bs=446

To copy the partition table and MBR from a disk to create the same definition of partitions as in other, you have to copy the first 512 blocks from the header of the disks like with the next command to copy it to another disk for mirroring two disks without create the partition in both disks: # dd if=/dev/sda of=/dev/sdb bs=512 count=1 This is correct for EXACTLY the same partition sizes. In the case you want the MBR only on a drive that has a root partition of a different size then issue the same Read more...