Before Ubuntu 18.04 was available, I was using Ubuntu 16.04. And I was using sudo apt-get update
, sudo apt-get upgrade
and sudo apt-get dist-upgrade
to do the update and upgrade stuff.
With Ubuntu 18.04, I changed to to use apt
instead of apt-get
. What was weird for me is that sudo apt dist-upgrade
has no effect anymore: I do the update and upgrade using sudo apt update
and sudo apt upgade
, but when I run sudo apt dist-upgrade
, nothing happens contrary to when I was using sudo apt-get dist-upgrade
.
When I used sudo apt-get dist-upgrade
some packages were removed and others were installed. However when I run sudo apt dist-upgrade
, nothing happened at all.. All what I get is:
sudo apt dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
And this happens every time since I started using apt
instead of apt-get
.
Is it something related to apt
(i.e sudo apt upgrade
replaces both upgrade
and dist-upgrade
) or what is the issue exactly?