Skip to content

Instantly share code, notes, and snippets.

@DevSecOpsGuy
Last active September 24, 2019 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DevSecOpsGuy/4199b753e1583f3824f4c8823b3f7b2f to your computer and use it in GitHub Desktop.
Save DevSecOpsGuy/4199b753e1583f3824f4c8823b3f7b2f to your computer and use it in GitHub Desktop.
Thins to do after install Ubuntu 18.04 LTS
#!/bin/sh
sudo apt-get update && sudo apt-get upgrade --fix-missing
sudo apt-get install build-essential
sudo apt-get update && sudo apt-get upgrade --fix-missing
sudo apt-get install build-essential checkinstall
sudo apt-get update && sudo apt-get upgrade --fix-missing
sudo apt-get install ubuntu-restricted-extras
sudo apt-get update && sudo apt-get upgrade --fix-missing
sudo apt-get -s autoremove
sudo apt-get update && sudo apt-get upgrade --fix-missing
echo "Cleaning Up" &&
sudo apt-get -f install &&
sudo apt-get autoremove &&
sudo apt-get -y autoclean &&
sudo apt-get -y clean
sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment