1

Did anybody figure out how to successfully install Ubuntu 16.04 or 18.04 on a MSI GS65 8RF? After finally installing it (after following the steps in this video), it freezes when I try to log in.

I've already disabled secure boot and set the BIOS to UEFI only.

Does anybody have a solution for this?

Edit: It is not a duplication, MSI GS65 still freezes even after BIOS update

Thomas
  • 141

1 Answers1

2

The problem, that the installation freezes, has been fixed by the Ubuntu 18.04.2 LTS version. It comes with the 4.18 kernel by default and lets you install Ubuntu without any problem. However, after installation, it still freezes after attempting to log in. To fix this, you have to boot your the Linux kernel with the nomodeset option. Here's what you do:

  1. Follow this instruction on how to boot your Linux kernel with the nomodeset option.

  2. Log into your computer (It will be in 800x400 pixel mode)

  3. Enter the terminal with ctrl + T

  4. Install the latest Nvidia driver. It occurred to me, that it's easier to install the driver from the graphics-drivers repository than from Nvidia directly. To find out the latest driver version, go to the Nvidia drivers page and type in your GPU information (GTX1070, Linux-64bit). Right now it is version 430. Then run:

    • sudo add-apt-repository ppa:graphics-drivers/ppa
    • sudo apt-get update
    • sudo apt-get install nvidia-driver-430

(if the last step failed, try sudo apt-get install nvidia-430)

Now reboot your computer and you should be set. Validate the driver installation by running nvidia-smi in a terminal.

Thomas
  • 141