Im trying to setup dual booting. The laptop came with Windows 8 pre installed and UEFI and quick Boot enabled. In the Ubuntu UEFI documentation it tells us to create a EFI partition in the beginning of the disk. But if we do this, the Windows 8 won't boot right?
2 Answers
The EFI System Partition (ESP) is intended to be shared across OSes, so you should be able to use the one that already exists. It's also legal to create multiple ESPs on a single disk, but this can be confusing, so I recommend against it. AFAIK, Windows will boot with multiple ESPs, but Windows 7's installer becomes confused by such configurations. I don't know if the Windows 8 installer (or repair utilities) become confused in a similar way. If they do, creating a second ESP is inadvisable for this reason alone.
- 45,120
- 7
- 66
- 108
During the Ubuntu installation, when setting the mount points for the partitions under the Something Else option; in the pull down for the mount point for the /Boot partition, select EFI from the available options.
On my W8 installation, Windows 8 certainly still boots with this configuration:
For your reference, this is how I achieved dual boot with vendor (HP) installed Windows 8 / Ubuntu 12.10 on the machine that’s in the linked data sheet, with manufacturing date 08/12:
http://www.shopping.hp.com/shopping/pdf/c2h70ua.pdf
The chipset=HM77. MoBo=HP C181. "BIOS" (UEFI)=F.13
In UEFI (F10 menu):
• •Disable Secure Boot. I could not achieve boot in any configuration with it on. • •UEFI boot scheme (not Legacy BIOS). I tried Legacy mode, and can boot from disk, but not from an installation on the hard drive. UEFI flies right by it during boot every way I tried with it on.
In Ubuntu: • •/Boot=EFI, /=EXT4, /Home=EXT4, SWAP=swap.
With this configuration I can boot with user intervention during the boot sequence: 1) During the boot sequence, select F9 to obtain Boot options in UEFI (BIOS) 2) In UEFI / BIOS, select the available Ubuntu Linux 2.6.32-21 option and proceed. 3) Ubuntu GRUB boot option screen is now available. Select preferred option and proceed. 4) I'm in.
- 81