Created
February 3, 2018 19:28
-
-
Save accessomnath/e01e3d1e2fd9a144267142437280857d to your computer and use it in GitHub Desktop.
clean up
This file contains hidden or 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
du -sh /var/cache/apt/archives | |
//clean the apt cache | |
sudo apt-get clean | |
//way to remove old kernels in Ubuntu | |
sudo apt-get autoremove --purge | |
//To remove a specific app by name | |
sudo apt-get remove package-name1 package-name2 | |
//packages and dependencies which are newer versions have replaced them | |
sudo apt-get autoremove |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment