added a commented-out option on how to install the specific version build you'd like to run manually (helpful when you need to rollback or need to pass a specific version instead)
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
#This script will add the Ubuntu-targeted NVIDIA drivers repo, run an update
|
|
#And then install the recommended package for this machine.
|
|
#Written by: William Russell for public use.
|
|
#updated 2/19/2021
|
|
|
|
#Ensure no pending updates:
|
|
apt-get update && apt upgrade -y
|
|
sleep 1
|
|
clear
|
|
|
|
#add the repository for ubuntu-drivers and select recommended:
|
|
sudo apt-get install ubuntu-drivers-common \
|
|
&& sudo ubuntu-drivers autoinstall
|
|
|
|
#comment out the above if you want to modify the version you get and un-comment the below to select during install:
|
|
#sudo ubuntu drivers-devices #list the available builds
|
|
#sudo apt install <driver-version> -y ##example: sudo apt install nvidia-driver-470 -y
|
|
|
|
|
|
#sudo ubuntu-drivers devices
|
|
|
|
#blacklist the Nouveau driver so it doesn't initialize:
|
|
sudo bash -c "echo blacklist nouveau > /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
|
|
sudo bash -c "echo options nouveau modeset=0 >> /etc/modprobe.d/blacklist-nvidia-nouveau.conf"
|
|
sleep 1
|
|
cat /etc/modprobe.d/blacklist-nvidia-nouveau.conf
|
|
sleep 1
|
|
clear
|
|
|
|
#update the kernel to reflect changes:
|
|
echo "updating initramfs..."
|
|
sleep 1
|
|
sudo update-initramfs -u
|
|
clear
|
|
|
|
#end of script output
|
|
echo "Script completed - NVIDIA drivers installed"
|
|
echo "please restart your machine to initialize correctly"
|