Last active
April 20, 2024 17:18
-
-
Save jeffa/9f7bc20b089d4124bd402e3b9fcc4f92 to your computer and use it in GitHub Desktop.
Provision Ubuntu with system apps and set group
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
sudo sed -i "/#\$nrconf{restart} = 'i';/s/.*/\$nrconf{restart} = 'a';/" /etc/needrestart/needrestart.conf | |
sudo apt-get update -y | |
sudo apt-get install gcc -y | |
sudo apt-get install make -y | |
sudo apt-get install zip -y | |
sudo apt-get install docker.io -y | |
sudo apt-get install tree -y | |
sudo usermod -aG docker ubuntu | |
newgrp docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment