This thread picks up many other threads. There are lots of instructions out there, but at least a fair number are incomplete. So here's what finally worked for me. I present it in step-by-step form for idiots like me, but it should work as well for more advanced life forms:
************************************************** ************************************************** ******
I. Remove the Nouveau kernel driver by adding the following lines to /etc/modprobe.d/blacklist.conf, with spaces between groups as shown:
# Getting rid of nouveau
blacklist nouveau
# Getting rid of NVIDIAfb
blacklist nvidiafb
# Getting rid of vga16fb
blacklist vga16fb
II. Add the edgers repository:
sudo add-apt-repository ppaorg-edgers/ppa -y
III. Update:
sudo-apt update
IV. Update initramfs
sudo update-initramfs -u
# This step is absolutely critical. Most of the instructions I've seen online omit it.
V. Reboot into terminal mode: <Ctrl><F1) at login screen
VI. Check the kernel module that's running
sudo lshw -c video | grep configuration
It should show: configuration: latency=0
Rather than: configuration: driver=nouveau latency=0
VII. Reboot fully
VIII. Start Driver Manager
IX. Select from radio list NVIDIA driver to install and apply
X. Reboot
XI. Check the kernel module that's running
sudo lshw -c video | grep configuration
It should show: configuration: driver= nvidia latency=0
Rather than: configuration: latency=0
************************************************** ************************************************** *
DISCLAIMER: I'm still new enough to Kubuntu (and without enough time to study it fully) that I don't fully understand *why* all this works; I just know that it does.
************************************************** ************************************************** ******
I. Remove the Nouveau kernel driver by adding the following lines to /etc/modprobe.d/blacklist.conf, with spaces between groups as shown:
# Getting rid of nouveau
blacklist nouveau
# Getting rid of NVIDIAfb
blacklist nvidiafb
# Getting rid of vga16fb
blacklist vga16fb
II. Add the edgers repository:
sudo add-apt-repository ppaorg-edgers/ppa -y
III. Update:
sudo-apt update
IV. Update initramfs
sudo update-initramfs -u
# This step is absolutely critical. Most of the instructions I've seen online omit it.
V. Reboot into terminal mode: <Ctrl><F1) at login screen
VI. Check the kernel module that's running
sudo lshw -c video | grep configuration
It should show: configuration: latency=0
Rather than: configuration: driver=nouveau latency=0
VII. Reboot fully
VIII. Start Driver Manager
IX. Select from radio list NVIDIA driver to install and apply
X. Reboot
XI. Check the kernel module that's running
sudo lshw -c video | grep configuration
It should show: configuration: driver= nvidia latency=0
Rather than: configuration: latency=0
************************************************** ************************************************** *
DISCLAIMER: I'm still new enough to Kubuntu (and without enough time to study it fully) that I don't fully understand *why* all this works; I just know that it does.
Comment