Is using sudo apt-get update
the same as using the GUI update on the desktop?
Asked
Active
Viewed 554 times
3

Fabby
- 34,259

David Hall
- 31
- 1
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,339
sudo apt-get update
merely refreshes your software list with updates and new packages. The GUI does that same thing, but also tells you about new updates and lets you install them.sudo apt-get upgrade
is what will update your packages. – TheWanderer Oct 25 '15 at 22:05