GPT partition table warning message during install of ubuntu
Solution 1:
I am answering because the answers here are inadequate. I don't want future viewers of this question to destroy their windows partitions just to install Ubuntu.
To fix your problem, follow these steps:
- Boot the emergency disk (Ubuntu or other linux Live CD) and open a text-mode shell.
- Type
sudo gdisk /dev/sda
(change/dev/sda
to whatever is appropriate to access your hard disk, if necessary). The program is likely to complain that it's found both MBR and GPT data, and will ask which to use. It doesn't matter which you tell it to use. - At the
Command
prompt, typex
to enter the experts' menu. - At the
Expert command
prompt, typez
tozap
(destroy) the GPT data. - Type
y
in response to the confirmation about destroying the GPT. - Type
n
in response to the query about blanking the MBR. Caution: If you answery
here, you'll destroy your Windows partition(s)!
Solution 2:
NO NEED FOR A EMERGENCY DISK!!
Simply boot with ubuntu live CD or USB (I did with USB).
Then open the Terminal.
Type: sudo gdisk
(hit enter)
Type: /dev/sda
(change /dev/sda
to whatever is appropriate to access your hard disk, if necessary).
Then you will probably see that there are MBR and GPT. Tell the computer you want to use the MBR
Then:
At the Command prompt, type x
to enter the experts' menu.
At the Expert command prompt, type z
to "zap" (destroy) the GPT data.
Type y
in response to the confirmation about destroying the GPT.
Type n
in response to the query about blanking the MBR. Caution: If you answer y
here, you'll destroy your Windows partition(s)!
Solution 3:
I've seen a similar problem on my disk when I had a leftover partition from my windows 7 system. Went back to windows 7, and took all the partitions off using disk manager.
Also, make sure the disk is not "dynamic" in disk manager.
After that, I was able to do a clean install of ubuntu 12.1o :)
In case you don't have a system running windows 7, you can boot with a windows 7 dvd and run setup. Choose "advanced" when you get to choosing partition for the installation, and erase all partitions there.