Last active
March 22, 2023 17:58
-
-
Save vaibhavmule/dacd604851a9125090c2 to your computer and use it in GitHub Desktop.
First Thing To Do After Installing Any Linux OS.
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
echo "Updating" && | |
sudo apt-get update | |
echo "Upgrading" && | |
sudo apt-get dist-upgrade | |
echo "Cleaning Up" && | |
sudo apt-get -f install && | |
sudo apt-get autoremove && | |
sudo apt-get -y autoclean && | |
sudo apt-get -y clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment