Is apt dist-upgrade not necessary anymore
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
. The weird for me was that sudo apt dist-upgrade
has no effect at all: 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?
apt package-management upgrade updates update-manager
add a comment |
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
. The weird for me was that sudo apt dist-upgrade
has no effect at all: 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?
apt package-management upgrade updates update-manager
I'll be curious to see the full answer, but this seems to indicate that you are correct: askubuntu.com/questions/81585/…
– rm-vanda
Jan 24 at 16:40
add a comment |
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
. The weird for me was that sudo apt dist-upgrade
has no effect at all: 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?
apt package-management upgrade updates update-manager
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
. The weird for me was that sudo apt dist-upgrade
has no effect at all: 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?
apt package-management upgrade updates update-manager
apt package-management upgrade updates update-manager
edited Jan 24 at 17:16
TDK
22212
22212
asked Jan 24 at 16:35
singriumsingrium
1,177424
1,177424
I'll be curious to see the full answer, but this seems to indicate that you are correct: askubuntu.com/questions/81585/…
– rm-vanda
Jan 24 at 16:40
add a comment |
I'll be curious to see the full answer, but this seems to indicate that you are correct: askubuntu.com/questions/81585/…
– rm-vanda
Jan 24 at 16:40
I'll be curious to see the full answer, but this seems to indicate that you are correct: askubuntu.com/questions/81585/…
– rm-vanda
Jan 24 at 16:40
I'll be curious to see the full answer, but this seems to indicate that you are correct: askubuntu.com/questions/81585/…
– rm-vanda
Jan 24 at 16:40
add a comment |
2 Answers
2
active
oldest
votes
apt-get upgrade
vs apt upgrade
vs apt full-upgrade
apt-get upgrade
only upgrades the apps, tools, and utilities. It does not install new Linux kernel of the OS.
apt upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. However, it never removes old packages.
apt full-upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. It also removes old packages if needed for the upgrade.
It looks to me apt full-upgrade
does the same thing as apt-get dist-upgrade
. That is to say the full-upgrade
will check for and install a new kernel if available and removes old packages if the removal is necessary for the upgrade.
kernels are the fundamental part of the OS. For this reason the the old version of the kernel is never replaced by the new version when you run apt upgrade
or apt full-upgrade
. The new version of kernel is installed and the existing version is kept as is. The configuration in the grub is changed to boot from the new version by default during the upgrade process. If the new kernel does not work for some reason one can boot from the old kernel from the advanced grub menu.
Note, apt full-upgrade
does not remove older versions of kernels as it installs the newest version. To remove these one must use apt autoremove
.
Why change the name from dist-upgrade
to full-upgrade
?
- If you use
apt-get
then you need to usedist-upgrade
- If you use
apt
then you need to usefull-upgrade
I think the dist-upgrade
was a bit confusing. For example, this does not upgrade from Ubuntu 16.04 to Ubuntu 18.04. It only upgrade the kernel, and other stuff, within Ubuntu 16.04.
I think full-upgrade
is more intuitive than dist-upgrade
.
See What is "dist-upgrade" and why does it upgrade more than "upgrade"? for more details.
Full disclosure: I am just an user of Ubuntu I didn't make the decision to change it. These are my personal views.
Hope this helps
1
+1, but to be pedant, from the manpage ofapt
itself:upgrade
never removes existing packages, whilefull-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also,apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).
– Mr Shunz
Jan 24 at 17:22
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
apt upgrade
andapt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…
– mook765
Jan 24 at 17:34
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
1
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
|
show 1 more comment
dist-upgrade
has been superseded in Ubuntu by full-upgrade
.
Older users of Ubuntu remember when dist-upgrade
was indeed used regularly to install kernel packages. Kernel package names change with the version, making them ineligible for normal upgrade
. full-upgrade
was added to safely meet this need of the Ubuntu package flow.
The original purpose of dist-upgrade
is to migrate between releases of Debian (roughly equivalent to Ubuntu's do-release-upgrade
.) So there is a bit less protection from unanticipated consequences. Read the proposed changes carefully before agreeing.
Using dist-upgrade
instead of full-upgrade
probably won't hurt a healthy system. Millions of users over a decade have worked a lot of the bugs out of the apt workflow. However, dist-upgrade
may have unexpected results on a system with held broken packages or other unresolved problems.
+1 for the original purpose ofdist-upgrade
. One would have to fiddle with thesources.list
to use it this way I guess.
– user68186
Jan 24 at 17:37
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1112555%2fis-apt-dist-upgrade-not-necessary-anymore%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
apt-get upgrade
vs apt upgrade
vs apt full-upgrade
apt-get upgrade
only upgrades the apps, tools, and utilities. It does not install new Linux kernel of the OS.
apt upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. However, it never removes old packages.
apt full-upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. It also removes old packages if needed for the upgrade.
It looks to me apt full-upgrade
does the same thing as apt-get dist-upgrade
. That is to say the full-upgrade
will check for and install a new kernel if available and removes old packages if the removal is necessary for the upgrade.
kernels are the fundamental part of the OS. For this reason the the old version of the kernel is never replaced by the new version when you run apt upgrade
or apt full-upgrade
. The new version of kernel is installed and the existing version is kept as is. The configuration in the grub is changed to boot from the new version by default during the upgrade process. If the new kernel does not work for some reason one can boot from the old kernel from the advanced grub menu.
Note, apt full-upgrade
does not remove older versions of kernels as it installs the newest version. To remove these one must use apt autoremove
.
Why change the name from dist-upgrade
to full-upgrade
?
- If you use
apt-get
then you need to usedist-upgrade
- If you use
apt
then you need to usefull-upgrade
I think the dist-upgrade
was a bit confusing. For example, this does not upgrade from Ubuntu 16.04 to Ubuntu 18.04. It only upgrade the kernel, and other stuff, within Ubuntu 16.04.
I think full-upgrade
is more intuitive than dist-upgrade
.
See What is "dist-upgrade" and why does it upgrade more than "upgrade"? for more details.
Full disclosure: I am just an user of Ubuntu I didn't make the decision to change it. These are my personal views.
Hope this helps
1
+1, but to be pedant, from the manpage ofapt
itself:upgrade
never removes existing packages, whilefull-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also,apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).
– Mr Shunz
Jan 24 at 17:22
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
apt upgrade
andapt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…
– mook765
Jan 24 at 17:34
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
1
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
|
show 1 more comment
apt-get upgrade
vs apt upgrade
vs apt full-upgrade
apt-get upgrade
only upgrades the apps, tools, and utilities. It does not install new Linux kernel of the OS.
apt upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. However, it never removes old packages.
apt full-upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. It also removes old packages if needed for the upgrade.
It looks to me apt full-upgrade
does the same thing as apt-get dist-upgrade
. That is to say the full-upgrade
will check for and install a new kernel if available and removes old packages if the removal is necessary for the upgrade.
kernels are the fundamental part of the OS. For this reason the the old version of the kernel is never replaced by the new version when you run apt upgrade
or apt full-upgrade
. The new version of kernel is installed and the existing version is kept as is. The configuration in the grub is changed to boot from the new version by default during the upgrade process. If the new kernel does not work for some reason one can boot from the old kernel from the advanced grub menu.
Note, apt full-upgrade
does not remove older versions of kernels as it installs the newest version. To remove these one must use apt autoremove
.
Why change the name from dist-upgrade
to full-upgrade
?
- If you use
apt-get
then you need to usedist-upgrade
- If you use
apt
then you need to usefull-upgrade
I think the dist-upgrade
was a bit confusing. For example, this does not upgrade from Ubuntu 16.04 to Ubuntu 18.04. It only upgrade the kernel, and other stuff, within Ubuntu 16.04.
I think full-upgrade
is more intuitive than dist-upgrade
.
See What is "dist-upgrade" and why does it upgrade more than "upgrade"? for more details.
Full disclosure: I am just an user of Ubuntu I didn't make the decision to change it. These are my personal views.
Hope this helps
1
+1, but to be pedant, from the manpage ofapt
itself:upgrade
never removes existing packages, whilefull-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also,apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).
– Mr Shunz
Jan 24 at 17:22
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
apt upgrade
andapt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…
– mook765
Jan 24 at 17:34
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
1
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
|
show 1 more comment
apt-get upgrade
vs apt upgrade
vs apt full-upgrade
apt-get upgrade
only upgrades the apps, tools, and utilities. It does not install new Linux kernel of the OS.
apt upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. However, it never removes old packages.
apt full-upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. It also removes old packages if needed for the upgrade.
It looks to me apt full-upgrade
does the same thing as apt-get dist-upgrade
. That is to say the full-upgrade
will check for and install a new kernel if available and removes old packages if the removal is necessary for the upgrade.
kernels are the fundamental part of the OS. For this reason the the old version of the kernel is never replaced by the new version when you run apt upgrade
or apt full-upgrade
. The new version of kernel is installed and the existing version is kept as is. The configuration in the grub is changed to boot from the new version by default during the upgrade process. If the new kernel does not work for some reason one can boot from the old kernel from the advanced grub menu.
Note, apt full-upgrade
does not remove older versions of kernels as it installs the newest version. To remove these one must use apt autoremove
.
Why change the name from dist-upgrade
to full-upgrade
?
- If you use
apt-get
then you need to usedist-upgrade
- If you use
apt
then you need to usefull-upgrade
I think the dist-upgrade
was a bit confusing. For example, this does not upgrade from Ubuntu 16.04 to Ubuntu 18.04. It only upgrade the kernel, and other stuff, within Ubuntu 16.04.
I think full-upgrade
is more intuitive than dist-upgrade
.
See What is "dist-upgrade" and why does it upgrade more than "upgrade"? for more details.
Full disclosure: I am just an user of Ubuntu I didn't make the decision to change it. These are my personal views.
Hope this helps
apt-get upgrade
vs apt upgrade
vs apt full-upgrade
apt-get upgrade
only upgrades the apps, tools, and utilities. It does not install new Linux kernel of the OS.
apt upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. However, it never removes old packages.
apt full-upgrade
upgrades the apps, tools, and utilities and installs new Linux kernel of the OS. It also removes old packages if needed for the upgrade.
It looks to me apt full-upgrade
does the same thing as apt-get dist-upgrade
. That is to say the full-upgrade
will check for and install a new kernel if available and removes old packages if the removal is necessary for the upgrade.
kernels are the fundamental part of the OS. For this reason the the old version of the kernel is never replaced by the new version when you run apt upgrade
or apt full-upgrade
. The new version of kernel is installed and the existing version is kept as is. The configuration in the grub is changed to boot from the new version by default during the upgrade process. If the new kernel does not work for some reason one can boot from the old kernel from the advanced grub menu.
Note, apt full-upgrade
does not remove older versions of kernels as it installs the newest version. To remove these one must use apt autoremove
.
Why change the name from dist-upgrade
to full-upgrade
?
- If you use
apt-get
then you need to usedist-upgrade
- If you use
apt
then you need to usefull-upgrade
I think the dist-upgrade
was a bit confusing. For example, this does not upgrade from Ubuntu 16.04 to Ubuntu 18.04. It only upgrade the kernel, and other stuff, within Ubuntu 16.04.
I think full-upgrade
is more intuitive than dist-upgrade
.
See What is "dist-upgrade" and why does it upgrade more than "upgrade"? for more details.
Full disclosure: I am just an user of Ubuntu I didn't make the decision to change it. These are my personal views.
Hope this helps
edited Jan 25 at 14:43
answered Jan 24 at 17:19
user68186user68186
15.8k84769
15.8k84769
1
+1, but to be pedant, from the manpage ofapt
itself:upgrade
never removes existing packages, whilefull-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also,apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).
– Mr Shunz
Jan 24 at 17:22
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
apt upgrade
andapt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…
– mook765
Jan 24 at 17:34
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
1
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
|
show 1 more comment
1
+1, but to be pedant, from the manpage ofapt
itself:upgrade
never removes existing packages, whilefull-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also,apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).
– Mr Shunz
Jan 24 at 17:22
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
apt upgrade
andapt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…
– mook765
Jan 24 at 17:34
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
1
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
1
1
+1, but to be pedant, from the manpage of
apt
itself: upgrade
never removes existing packages, while full-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also, apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).– Mr Shunz
Jan 24 at 17:22
+1, but to be pedant, from the manpage of
apt
itself: upgrade
never removes existing packages, while full-upgrade
will remove currently installed packages if this is needed to upgrade the system as a whole. Also, apt dist-upgrade
looks like to work ok on my systems (probably for backwards compatibility).– Mr Shunz
Jan 24 at 17:22
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
@MrShunz I know this is what the man page says. It is also mentioned in the other answer I will add as reference.
– user68186
Jan 24 at 17:27
apt upgrade
and apt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…– mook765
Jan 24 at 17:34
apt upgrade
and apt-get upgrade
handle the thing different, see hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-apt-command/…– mook765
Jan 24 at 17:34
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
@mook765 Thanks! I will edit my answer based on your reference.
– user68186
Jan 24 at 17:43
1
1
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
"I think the dist-upgrade was a bit confusing." I swear this is the understatement of the century regarding apt. Is there anything about apt that is not confusing?! Like what does the name "apt" or "aptitude" have to do with package management in the first place? Why are there 3 variations of apt? Why does apt-get modify my system? Why does "update" not update my system? Why does "upgrade" not upgrade my system? Why shouldn't it just update its internal cache before upgrading automatically like a sane OS? Why does purge uninstall a package instead of purging it from the cache? etc....
– Mehrdad
Jan 25 at 1:41
|
show 1 more comment
dist-upgrade
has been superseded in Ubuntu by full-upgrade
.
Older users of Ubuntu remember when dist-upgrade
was indeed used regularly to install kernel packages. Kernel package names change with the version, making them ineligible for normal upgrade
. full-upgrade
was added to safely meet this need of the Ubuntu package flow.
The original purpose of dist-upgrade
is to migrate between releases of Debian (roughly equivalent to Ubuntu's do-release-upgrade
.) So there is a bit less protection from unanticipated consequences. Read the proposed changes carefully before agreeing.
Using dist-upgrade
instead of full-upgrade
probably won't hurt a healthy system. Millions of users over a decade have worked a lot of the bugs out of the apt workflow. However, dist-upgrade
may have unexpected results on a system with held broken packages or other unresolved problems.
+1 for the original purpose ofdist-upgrade
. One would have to fiddle with thesources.list
to use it this way I guess.
– user68186
Jan 24 at 17:37
add a comment |
dist-upgrade
has been superseded in Ubuntu by full-upgrade
.
Older users of Ubuntu remember when dist-upgrade
was indeed used regularly to install kernel packages. Kernel package names change with the version, making them ineligible for normal upgrade
. full-upgrade
was added to safely meet this need of the Ubuntu package flow.
The original purpose of dist-upgrade
is to migrate between releases of Debian (roughly equivalent to Ubuntu's do-release-upgrade
.) So there is a bit less protection from unanticipated consequences. Read the proposed changes carefully before agreeing.
Using dist-upgrade
instead of full-upgrade
probably won't hurt a healthy system. Millions of users over a decade have worked a lot of the bugs out of the apt workflow. However, dist-upgrade
may have unexpected results on a system with held broken packages or other unresolved problems.
+1 for the original purpose ofdist-upgrade
. One would have to fiddle with thesources.list
to use it this way I guess.
– user68186
Jan 24 at 17:37
add a comment |
dist-upgrade
has been superseded in Ubuntu by full-upgrade
.
Older users of Ubuntu remember when dist-upgrade
was indeed used regularly to install kernel packages. Kernel package names change with the version, making them ineligible for normal upgrade
. full-upgrade
was added to safely meet this need of the Ubuntu package flow.
The original purpose of dist-upgrade
is to migrate between releases of Debian (roughly equivalent to Ubuntu's do-release-upgrade
.) So there is a bit less protection from unanticipated consequences. Read the proposed changes carefully before agreeing.
Using dist-upgrade
instead of full-upgrade
probably won't hurt a healthy system. Millions of users over a decade have worked a lot of the bugs out of the apt workflow. However, dist-upgrade
may have unexpected results on a system with held broken packages or other unresolved problems.
dist-upgrade
has been superseded in Ubuntu by full-upgrade
.
Older users of Ubuntu remember when dist-upgrade
was indeed used regularly to install kernel packages. Kernel package names change with the version, making them ineligible for normal upgrade
. full-upgrade
was added to safely meet this need of the Ubuntu package flow.
The original purpose of dist-upgrade
is to migrate between releases of Debian (roughly equivalent to Ubuntu's do-release-upgrade
.) So there is a bit less protection from unanticipated consequences. Read the proposed changes carefully before agreeing.
Using dist-upgrade
instead of full-upgrade
probably won't hurt a healthy system. Millions of users over a decade have worked a lot of the bugs out of the apt workflow. However, dist-upgrade
may have unexpected results on a system with held broken packages or other unresolved problems.
answered Jan 24 at 17:27
user535733user535733
8,34222943
8,34222943
+1 for the original purpose ofdist-upgrade
. One would have to fiddle with thesources.list
to use it this way I guess.
– user68186
Jan 24 at 17:37
add a comment |
+1 for the original purpose ofdist-upgrade
. One would have to fiddle with thesources.list
to use it this way I guess.
– user68186
Jan 24 at 17:37
+1 for the original purpose of
dist-upgrade
. One would have to fiddle with the sources.list
to use it this way I guess.– user68186
Jan 24 at 17:37
+1 for the original purpose of
dist-upgrade
. One would have to fiddle with the sources.list
to use it this way I guess.– user68186
Jan 24 at 17:37
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1112555%2fis-apt-dist-upgrade-not-necessary-anymore%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'll be curious to see the full answer, but this seems to indicate that you are correct: askubuntu.com/questions/81585/…
– rm-vanda
Jan 24 at 16:40