Last active
September 9, 2019 21:19
-
-
Save yaredc/d9d46233f577e44976a7b38e9c10c2d4 to your computer and use it in GitHub Desktop.
Provisioning shell script for Debian 10.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt install -y tmux screen git mc vim docker docker-compose keepassx yubikey-manager \ | |
htop vlc nvidia-detect chromium chromium-l10n gimp inkscape audacity && | |
sudo apt update -y && | |
sudo apt upgrade -y && | |
sudo apt autoremove -y && | |
sudo usermod -a -G docker $(whoami) | |
#CHECK WHICH DRIVERS ARE RECOMMENDED | |
nvidia-detect | |
#IN MY CASE, THIS WAS RECOMMENDED | |
sudo apt install nvidia-driver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment