Freeze installing Ubuntu 18.04 on OMEN by HP

Solution 1:

Late answer to this question but I had the same problem which I had to figure out by myself. This problem seems to stem from the fact that gaming laptops rely on nvidia graphics cards for the display and so tend to be tied to nvidia graphics drivers so there seems to be a conflict with nvidia graphics drivers and the Ubuntu noveau drivers.

The solution is to black-list the noveau drivers and install the nvidia ones .

  • Disable Secure Boot (change this in BIOS)

  • Go to Grub Ubuntu option (BUT DONT PRESS ENTER) Press e Find the line that starts with: linux then add: modprobe.blacklist=nouveau after: quiet splash.

  • After installation make sure to blacklist noveau at the installed Grub

  • Then install the nvidia drivers;

    sudo add-apt-repository ppa:graphics-drivers/ppa

    sudo apt update

    sudo apt install nvidia-driver-[**your driver version number**]

    sudo reboot

I gleaned this from a solution for MSI laptops as a guide. I had already installed Ubuntu but it was freezing at startup so at the Grub menu I just modified the Ubuntu Entry to blacklist the noveau driver and then proceeded to install nvidia drivers. Note: make sure to use the correct nvidia driver for your card as it may not be the 396 used in the solution mine was 390 for the 1050Ti

Solution 2:

Problem is with ACPI Ubuntu support.
ACPI stands for Advanced Configuration and Power Interface

You can bypass this by holding left shift on device turn on,
wait to see grub menu. . .

Then press key e and add acpi=off

You can see info here
http://ubuntuguide.net/turn-off-acpi-ubuntu-grub2

NOTE: You will need to do this on every system start. Until you fix your drivers. Turning off permanently will affect some devices, like the touchpad and maybe more devices.

Better solution is to update Nvidia drivers
https://linuxconfig.org/how-to-install-the-nvidia-drivers-on-ubuntu-18-04-bionic-beaver-linux

More info you can find here on link
How do I disable ACPI when booting?