Many times I have seen people upgrading the packages on their system, and I have noticed that some of them specifically run:
sudo apt-get upgrade
Before running:
sudo apt-get dist-upgrade
Is this really necessary? Doesn't running dist-upgrade
cover what upgrade
does and more? Or is there some real reason to run the upgrade
command before the dist-upgrade
command?
apt-get update
should be run beforeapt-get dist-upgrade
. It is easy to get confused between all these updates and upgrades. – user68186 Sep 09 '15 at 18:36apt-get
should have a built in command that runsupdate
and thendist-upgrade
. – Sep 09 '15 at 18:44