I was trying to install a program to play (Lutris) and it asked me to install the nvidia drivers manually, I think the problem is that I disable the Nouveau nvidia driver in Ubuntu, This was one of the steps I followed to install (Lutris):
------
How to disable Nouveau nvidia driver on Ubuntu 18.04 Bionic Beaver Linux.
Instructions
Blacklist Nvidia nouveau driver
Open up terminal and enter the following linux commands:
Code:
$ sudo bash -c "echo blacklist nouveau> /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
Code:
$ sudo bash -c "echo options nouveau modeset = 0 >> /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
Confirm the content of the new modprobe config file:
Code:
$ cat /etc/modprobe.d/blacklist-nvidia-nouveau.conf
it should show something like this:
blacklist nouveau
options nouveau modeset = 0
Update kernel initramfs
Enter the following linux command to regenerate initramfs:
Code:
$ sudo update-initramfs -u
Reboot
All should be ready now. Reboot your system:
-----
I comment that whenever my ubuntu is updated I have to manually download an nvidia driver to the PC and run something like this:
Code:
sudo apt-get purge nvidia *
Code:
sudo apt-get autoremove
Code:
sudo sh ./NVIDIA-Linux-x86_64-460.56.run
----
I would like that when ubuntu is updated that does not happen, before it did not happen, I am not interested (Lutris).
Help.
Bookmarks