-1

Here is a duplicate of the thread, but I need an answer so I decided to open up another question.

So, here is my problem, I want to install ubuntu alongside windows 8.1. I boot up the ubuntu live demo, and even without it I get the same message. The installation goes great up until the installation type is asked. I connect to the internet, even if I don't, it's all the same. And the screen then freezes. I can't continue the installation. I just get these:

enter image description here

enter image description here

I really need help because I need the ubuntu up and running as soon as possible. Please help me.

EDIT: I did everything as instructed in the links below, and still as if there is not a single hdd connected, can't do anything.

Mark
  • 305
  • 1
  • 2
  • 8

1 Answers1

0

The usual cause of the "empty disk" symptom you're reporting is a partition table that the libparted library doesn't like. On Master Boot Record (MBR) disks, this is often caused by stray GUID Partition Table (GPT) data or other easily-fixed issues; see my Web page on the subject or my FixParts utility, which can often fix such problems automatically.

If you've got a new computer with Windows 8.1 pre-installed, though, chances are it's installed in EFI mode, which means it uses GPT by default, and the usual MBR problems don't apply. You could still have partition table trouble, but the repair will be different. OTOH, if you re-installed Windows 8.1, you could easily have leftover GPT data, which FixParts will remove.

If you need more help, more detailed information is required, such as the output of the following commands (in Linux):

sudo fdisk -l /dev/sda
sudo gdisk -l /dev/sda
sudo parted /dev/sda print

Note that gdisk is not installed in an Ubuntu live CD by default, so you'll need to install it by typing sudo apt-get install gdisk before running the gdisk command.

Rod Smith
  • 44,284
  • 7
  • 63
  • 105