Ubuntu 14.04 installer doesn’t show existing partitions

installationmulti-bootpartitioningubuntu 14.04

I am trying to install Ubuntu 14.04 alongside Windows 7. I have a 500 GB hard disk split into 3 partitions. I am installing Ubuntu from a live USB drive. But I am stuck at the "Installation type" stage. This is what I see:

enter image description here

My three partitions aren't shown. What do I do?

Best Answer

I had the same problem. Opening terminal and running the command

sudo gdisk -l /dev/sda

indicated that I have both MBR and GPT tables present. This happened because I had originally Windows 8 pre-installed on my computer. Windows 8 uses GPT scheme. I installed windows 7 over it. Windows 7 is using MBR and finally my disk end up being MBR with some stray GPT data on it.

This is a known problem and can be fixed using FixParts

fixparts /dev/sda

The program will detect the problem automatically and propose solution. More details here if you're interested.

The program is readily available within Ubuntu 14.04 live usb.

Related Question