|
|||||||||||||||
Some notes on gpt versus mbr |
|||||||||||||||
September 21, 2018 |
|||||||||||||||
Below are some notes on GUID Partition Table (gpt) and Master Boot Record (mbr).
To remove gpt and add a new mbr using linux: Boot up into parted magic (linux), with the hard drive to be worked on connected. Use partition editor to find the hard drive's location ( /dev/sda , etc.) Open an xterm, then: > gdisk /dev/sdX If, for example, the hard drive to be worked on is at /dev/sda then: > gdisk /dev/sda x --- command for expert options, then z --- command to zap the GPT table (optional) "Blank out MBR?" --- After completing the GPT removal, the gdisk program exits. Then use partition editor to add a new MBR and then add a new partition.
Using a gparted live disk (running debian), use GParted to find the hard drive's location ( /dev/sda , etc.), then open an x-terminal: > sudo gdisk /dev/sdX ... the rest continues as above: If, for example, the hard drive to be worked on is at /dev/sda then: > gdisk /dev/sda x --- command for expert options, then z --- command to zap the GPT table (optional) "Blank out MBR?" --- After completing the GPT removal, the gdisk program exits. Then use gparted to add a new MBR and then add a new partition.
Its possible to add a GPT partition table using gparted's partition editor.
|
|||||||||||||||