0

I need to install Ubuntu on my Laptop which had windows 8 pre-installed when I bought it. After an update now it is running windows 10.

I tried following a lot of guides, and used several tools but none of them have worked for me.

These are the steps I followed so far: -I used RUFUS, unetbootin, and universal-USB-installer to make a live USB disc with an image of a 64 bit AMD installer for Ubuntu Desktop 16.04LTS. I used default recommended settings (Fat32 file system, GPT partition, UEFI settings). -I made a partition of 50 GB of my main hard drive (Though I think this is irrelevant to my problem). -My Win10 specs say it was installed in UEFI mode. Therefore I disabled Secure Boot, Fast Boot, and enabled Legacy Mode/BIOS compatibility.

So when the system starts I choose to boot the USB and then GRUB 2.0 starts. When I choose install Ubuntu or try Ubuntu, it loads the splash screen which says Ubuntu, and some dots flashing in order. The system freezes in this screen and i'm forced to hard restart my laptop.

My specs are: -Laptop: HP Pavillion Notebook 15 ab-114la -BIOS:F.13-08/06/2015 -RAM: 12GB -Processor: AMD A10-8700P Radeon R6, 10Cores 4C+6G.

By the way. I am able to run Ubuntu 16.04 64 bit on a virtual machine inside windows.

  • 1
    Have you re download the Ubuntu file? I had a curropt file that caused problems once. – adobesmurf Apr 17 '17 at 02:37
  • Yes, I also tried to download Ubuntu 17.04 without success, the same problem: when on the splash screen (which, I think, loads the OS to the RAM) the system freezes. – Luis Germán Apr 17 '17 at 07:25

1 Answers1

1

My Win10 specs say it was installed in UEFI mode. Therefore I disabled Secure Boot, Fast Boot, and enabled Legacy Mode/BIOS compatibility.

Enabling BIOS/CSM/legacy mode on a system you want to dual-boot with Windows installed in EFI/UEFI mode was a mistake. See this page of mine for all the gory details. The short explanation is that enabling BIOS boot support makes it possible to install Ubuntu in BIOS mode, which will then complicate dual-booting with Windows in EFI mode. You want both OSes to be installed in the same mode, and with Windows already installed in EFI mode, that means doing an EFI-mode install of Ubuntu, too. That said, even if you ended up booting your installer in BIOS mode, it should not have hung in the way you describe. OTOH, there are occasional problems with video displays and other hardware that vary with boot mode, so there's a small chance that switching to an EFI-mode boot will fix your problem.

Also, disabling Secure Boot is probably unnecessary. Ubuntu supports Secure Boot and should boot and install with Secure Boot active. Secure Boot provides some protection against pre-boot malware, so it's best to leave it enabled unless you have good reason to think it's actually causing you problems. That said, there are some rare computers with flaky Secure Boot implementations that don't work properly with Ubuntu, so disabling Secure Boot is sometimes necessary. I don't recommend doing so unless you think you're running into Secure Boot problems, and those are usually pretty obvious -- you typically get a message saying that the installer couldn't be booted because of a security violation. That said, disabling Secure Boot is not, by itself, likely to make it harder to install Ubuntu, so this isn't the sort of thing that's likely to have led to the problem you're experiencing.

When I choose install Ubuntu or try Ubuntu, it loads the splash screen which says Ubuntu, and some dots flashing in order. The system freezes in this screen and i'm forced to hard restart my laptop.

This problem can sometimes be overcome by adding the nomodeset kernel option. You can do this by using one of the options in GRUB menu.

It's also possible that the kernel in the 16.04 release of Ubuntu is lacking hardware support required to boot your computer, particularly if it's a relatively new model. If you're trying to boot 16.04 GA (the version released in April of 2016) or 16.04.1, instead try 16.04.2, which comes with an updated kernel. You might also want to try 17.04, which comes with the most recent kernel of any Ubuntu.

By the way. I am able to run Ubuntu 16.04 64 bit on a virtual machine inside windows.

This is irrelevant, since it uses virtualized/emulated hardware, not the computer's real hardware. Don't spend more time chasing this distinction, since it would be a dead end.

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