0

I know this topic was discussed here a lot but I didn't manage to work dualboot on my laptop. I have HP laptop with pre-installed Windows 8.1. Today I tried to install Ubuntu to partition.

I followed this guide: Installing Ubuntu Alongside a Pre-Installed Windows with UEFI

I followed it exactly as it is but now when I start the computer, there is no GRUB.

  1. Secureboot is turned OFF
  2. FastStartup in Windows is turned OFF
  3. Ubuntu installation didn't find any other Operation system (even though Windows 8.1 is installed). So I choosed Something else, then I splitted my unallocated space to 4 parts:
    • "/"
    • swap
    • "/home"
    • efi
  4. I tried using boot-repair on my LiveUSB ubuntu but without success.

Here are my results: http://paste2.org/O93OtjOk

Can somebody give me a clue what I did wrong or how to fix it?

1 Answers1

1

bootup your live cd install boot-repair by sudo add-apt-repository ppa:yannubuntu/boot-repair sudo sed 's/trusty/saucy/g' -i /etc/apt/sources.list.d/yannubuntu-boot-repair-trusty.list sudo apt-get update sudo apt-get install -y boot-repair && (boot-repair &)

install grub via following instructions in there

biozalp
  • 635