Keeping the system up to date
Updating the system and software
Open your terminal or virtual terminal. (Often, the shortcut for this is Ctrl + Alt + T
. Once there, type the following command:
$ sudo apt-get update && sudo apt-get upgrade
Updating your distribution
If you are looking to upgrade your distribution, you can doing running the following command:
$ sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade
Cleaning old software remains
To clean the system of unnecessary packages, you can run this command:
$ sudo apt-get autoremove
Be advised that you should never simply copy and paste commands from your browser into the terminal, as you can be tricked to run malicious code that may not even be visible due to formatting. The best practice is to type what you see.
Revisions
02/12/2014 - 00:23
04/14/2014 - 04:46
09/04/2014 - 01:56
05/10/2018 - 23:09
06/08/2024 - 13:26