Last active
September 9, 2019 21:19
-
-
Save yaredc/088e1a37930956d9a571119ca8c25fe7 to your computer and use it in GitHub Desktop.
Provisioning shell script for Ubuntu 19.04
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-settings chromium-browser firefox gimp inkscape audacity unity-tweak-tool \ | |
unity-control-center ubuntu-drivers-common &&\ | |
sudo apt update -y && | |
sudo apt upgrade -y && | |
sudo apt autoremove -y && | |
sudo usermod -a -G docker $(whoami) | |
#CHECK WHICH DRIVERS ARE RECOMMENDED | |
ubuntu-drivers devices | |
#IN MY CASE, THIS WAS RECOMMENDED | |
sudo apt install nvidia-driver-418 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment