12345678910111213 |
- #!/bin/sh
- echo ""
- echo "Please follow the following wiki for Nvidia graphics on debian:"
- echo " https://wiki.debian.org/NvidiaGraphicsDrivers"
- echo ""
- echo "Add \"contrib\", \"non-free\" and \"non-free-firmware\" components to \"/etc/apt/sources.list\""
- echo ""
- read -rp "Press enter to continue..."
- apt update
- apt install nvidia-driver firmware-misc-nonfree
|