Install Ubuntu 20.04 on Asus G15
Solution 1:
So these are the steps I follow to install Ubuntu 20.04 on Asus G15. The culprit is the graphics driver.
- install without checking "Install third-party software".
- boot in recovery mode
- enable Networking
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt install nvidia-prime
sudo apt update && sudo apt upgrade
- create
/etc/modprobe.d/blacklist-nvidia-nouveau.conf
blacklist nouveau
options nouveau modeset=0
- edit
/etc/default/grub
and appendnomodeset
afterquite splash
sudo update-grub
sudo reboot now
Notes:
- I'm not sure if any commands above can be ignored.
- Since you are logging in as a root shell,
sudo
is not required (because you are already aroot
user). - There are possibilities to install proprietary drivers
sudo ubuntu-drivers install
or
sudo apt install nvidia-driver-460
but I did not take risks.
- I have seen stuff like this or this, which may be helpful, but probably not mandatory. It is still good to know though.