Inhaltsverzeichnis

Festplatten-Partitionierung


Partitionierung >2TB

~# parted /dev/sda
(parted) mkpart primary 1 101
(parted) p
...
Number  Start     End       Size      File system     Name     Flags
 1      0.01MB    101MB     100MB                     primary
...

(parted) set 1 bios_grub on  
(parted) p
...
Number  Start     End       Size      File system     Name     Flags
 1      0.01MB    101MB     100MB                     primary  bios_grub
...

(parted) q


MBR und Partitionstabelle

~# dd if=/dev/sda of=~/sda.mbr bs=512 count=1


~# dd if=~/sda.mbr of=/dev/sda count=1


~# sfdisk -d /dev/sda > ~/partition.out


~# sfdisk /dev/sda < ~/partition.out


Steffen Bornemann 08.11.2018