Last active
November 19, 2019 15:21
-
-
Save linuxfemale/5f7f57365adb0aad3aa0a607a779c82d to your computer and use it in GitHub Desktop.
Thins to do after install Ubuntu 18.04 LTS
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
#Video Tutorial: | |
https://www.youtube.com/watch?v=IUtw84jH1VQ | |
#!/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