I am having problems installing nvidia-modprobe in a fresh install of Ubuntu 16.04. Please help with directions as I have no idea how to do this.
I cant even see where the download link is on https://launchpad.net/ubuntu/+source/nvidia-modprobe
I am having problems installing nvidia-modprobe in a fresh install of Ubuntu 16.04. Please help with directions as I have no idea how to do this.
I cant even see where the download link is on https://launchpad.net/ubuntu/+source/nvidia-modprobe
There's no need to manually download anything, since that package is available in the Ubuntu software repositories. (In general, it's preferable to install packages from the repositories instead of manually downloading and installing them separately, unless you have a compelling reason to do it the second way.)
First open a terminal window (Alt+Ctrl+T).
Now we'll make sure the "multiverse" repository is enabled. Type the following into the terminal window:
sudo apt-add-repository multiverse
And refresh the system's package lists from the Ubuntu servers by typing:
sudo apt update
Now you should be all set to install the "nvidia-modprobe" package, which can be accomplished by typing:
sudo apt install nvidia-modprobe
Note: If you are prompted for a sudo password, type your own user password for Ubuntu.
Please let me know if this was helpful or if you ran into any problems.