27
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.
2Thank you, this fixed the problem for me! Two comments though: 1) fixparts
requires root access so I had to run it with sudo
. 2) I have multiple HDs (one SSD & one data drive) so I had to run fixparts
for both sda
and sdb
. – Jesse Webb – 2015-01-02T07:31:48.573
1I am having the when installing Ubuntu alongside Windows 8.1. It is a similar case. gdisk shows both MBR and GPT. When I ran fixparts, it says that some GPT signatures were detected that were probably leftovers from a previous operating system. If I delete them, is there any risk of losing my data in windows? I already created a 40GB partition in Windows. – Alchemist – 2016-02-01T07:44:11.010
2
The first thing to do is to ascertain whether you disk has an all-new GPT partition table, or an old-style one. You should boot Ubuntu, choose Try Ubuntu without installing it, open a terminal, and issue this command:
sudo fdisk -l /dev/sda
If this command generates output about being unable to read/access the disk partition table, then you have a GPT-kind partition table. In this case, the command
sudo gdisk -l /dev/sda
should instead produce a meaningful output, without any complaint about an MBR. This is to confirm that you have a GPT partition table. If you do, you will find help on the Ubuntu Help pages
2
How to fix this issue with Ubuntu 14.04:
1
I think your hard disk is converted to dynamic. You can verify that with Windows built in Disk management.
Now you need to convert your disk from dynamic to basic with help of the How to Convert a Dynamic Disk to a Basic Disk article on SevenForums. (I used minitool partition wizard PROFESSIONAL EDITION). I did not loose any data in this procedure. That did the trick. I faced another problem in the installation which may or may not be related. Still sharing the link: Rod's solution on Unable to satisfy all constraints on the partition when installing Ubuntu from USB at AskUbuntu is enough.
0
I had the same problem.
I Just converted my Disk from MBR to GPT and my problem solved. I used "AOMEI Partition Assistant" application for converting my Disk to GPT.
4Can you expand your answer a little to explain how to accomplish this? You mention the general approach to the solution and a tool you used, but not how to actually solve the problem. Thanks. – fixer1234 – 2015-03-02T15:37:54.283
Related question on AskUbuntu: “Install alongside” option missing. How do I install Ubuntu beside Windows using “Something Else”?
– LiveWireBT – 2014-12-15T09:28:22.700I bet that's an UEFI/GPT problem. – vautee – 2014-04-23T06:26:38.027
So, could you please help – toothie – 2014-04-23T06:28:59.193