Is using sudo apt-get update the same as using the GUI update on the desktop?
Asked
Active
Viewed 566 times
3
Fabby
- 35,017
David Hall
- 31
1 Answers
2
If you do the command line updates, there are a couple of extra steps:
sudo apt-get update updates the libraries such that your computer can tell what packages are outdates
sudo apt-get upgrade upgrades most packages
sudo apt-get dist-upgrade upgrades packages which require greater system modification.
A combination of ... update followed by ... dist-upgrade and then sudo reboot is the same as the gui
There is a very good link to the apt-get upgrade commands here
Charles Green
- 21,859