Trouble booting and installing Linux - Broken BIOS suspected?

I have tried installing Ubuntu on my PC (msi PE60 6QE, Specs: nvidia GTX960M, i7, 16GB DDR4, Windows 10) via USB Drive. I have been trying for the past 3 days but it doesn't seem to work at all. The ISO file I am using is the 15.10 Ubuntu 64-bit version, works fine on my other PC.

When I enter the BIOS menu where I'm supposed to choose a device to boot from, I choose my USB stick with the Ubuntu 15.10 iso on it. I know that the USB stick works, since I had no trouble booting Ubuntu on my other PC (Lenovo). After choosing the stick, the menu pops up, where I am asked if I want to install the OS. I choose to install and multiple error messages pop up and the booting process is frozen.

    Ignoring BGRT: invalid status 0 (expected 1)
    ACPI : EC: Fail in evaluating the _REG object of EC device. Broken bios is suspected
    nouveau E[   PIBUS][0000:01:00.0] HUBO: 0x6013d4 0x00005700 (0x1c
    nouveau E[   PIBUS][0000:01:00.0] HUBO: 0x10ecc0 0xffffffff (0x1d

It has also occurred, that the Ubuntu pre-installation loading screen popped up and froze, but in every case these error messages popped up beforehand. I have tried changing the BIOS settings (UEFI with CSM, Disabling Fastbood, etc., tried quite every possible combinations) but nothing seemed to work. The PC either froze when the error messages popped up or after a few seconds in the loading screen. I also tried to add the command "set idle=nowait" in the grub, this was recommended on another thread with a similar issue, didn't work for me either.

It's the same scenario when I choose to try Ubuntu without installing. I also tried booting with a DVD, same problem. I have also updated my BIOS but that didn't help either, I get the same error messages. I hope someone can help me, so that I can finally enjoy using Ubuntu on my new PC.


So this could be the issue. Please setup the nomodeset before the installer starts doing anything. Adding the nomodeset parameter instructs the kernel to not load video drivers and use BIOS modes instead until X is loaded. For more details refer to this thread

Once the install is done you have to follow these steps(mine is also GTX 960M) In the terminal (press Ctrl+Alt+T to open it or Ctrl+Alt+F1 till F6) run this

sudo apt-get purge nvidia*  
sudo reboot 

This will remove any installed nvidia drivers.

Then install the new drivers

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-361
sudo reboot