I recently just built a desktop and want to run Linux on it, I've been using my laptop with Linux and have had no issues at all. I've done clean installs of Linux three times with the desktop. Everytime I install the Nvidia drivers and restart, it always fails to get to the login menu. I'm trying it with an RTX 2080 ti, does anybody know a solution to this? I don't want to have to do another Linux install but j also don't want to be using the open source drivers
Asked
Active
Viewed 5,068 times
1 Answers
2
I am hoping from the tag that you are trying to install Ubuntu 20.04. It appears that the desktop GUI environment is not properly configured. You can try the following steps once booted into ubuntu.
- Press
Ctrl+Alt+F1/F2/F3
to get to a terminal. sudo apt-get purge nvidia*
to clean previous nvidia drivers.sudo apt-get install nvidia-driver-440
to fresh install the latest drivers.sudo apt-get install gdm
to reinstall Gnome desktop environment (or any other DE of your choice).sudo dpkg-reconfigure gdm
sudo reboot
to restart.

rahduro
- 119