2

I purchased a new Dell 15R laptop which came with pre installed windows 8 64 bit and ueifi boot. I made a ubuntu 12.10 dvd and loaded it. When i started installing my installer could not recognise any other windows 8 or any other OS installed. When i moved to advanced partition tool, i could see my free space, my windows partitions. But i did not proceed. can anyone help.

3 Answers3

3

I had a similar problem with my Dell XPS 8500 desktop. I found the following bug report helpful:

https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1079056

The workaround suggested there worked for me. Run ubiquity (the Ubuntu installer) with the following command:

$ WINOSDATA=true ubiquity

Slightly more detailed instructions, if they are needed:

  1. Boot your computer from the Ubuntu Live CD (or USB), and select the option "Try Ubuntu without installing".

  2. Open a terminal window, e.g. by pressing Ctrl+ALt+T.

  3. Enter the command $ WINOSDATA=true ubiquity

The Ubuntu installer should then detect your Windows 8 installation (it did for me).

The problem appears to be with os-prober, the command used by ubiquity to detect installed operating systems. You can test this by running first $ sudo os-prober, and then $ sudo WINOSDATA=true os-prober. You may find that in the first case, no OS is detected, but in the second, Windows 8 is detected. (Substituting any non-zero value for "true" works equally well. Don't ask me why.)

camsolo
  • 1,071
0

Yes, go to the boot options when the machine starts and disable the UEFI!

user1770649
  • 121
  • 5
0

I had a similar problem with my laptop that came with Windows 8. It turned out there were both GPT and MBR partition tables, which was confusing the installed (and gparted). Follow these steps:

Boot Live CD, don't choose the install option, choose test out Ubuntu.

Open a shell and type

sudo sgdisk --zap /dev/sda

Where sda is the disk with the Windows partition. It'll complain about partition problems, but this is ok.

Proceed with your Ubuntu installation.

source here

Eliran Malka
  • 1,205
  • 18
  • 36
Maley
  • 11