Hi, I need a replacement for cloning partition tables as I was used to with sfdisk
sfdisk -d /dev/some_disk >master_partition_table sfdisk /dev/another_disk < master_partition_table As far as I can see it, with gtp partition tables the first 17kB are reserved, so will something like this work without side effects? dd if=/dev/some_disk of=master_partition_table bs=1 count=17408 dd if=/dev/master_partition_table of=/dev/another_disk bs=1 count=17408 Thanks in advance, Bernd _______________________________________________ parted-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/parted-devel

