Can't upgrade from 18.04.1 LTS to 18.10
up vote
1
down vote
favorite
I run the command sudo do-release-upgrade -d
but I get the following message:
upgrades to the development release are only available from the latest supported release
What's the deal? Do I just need to wait a little while longer?
18.10
New contributor
add a comment |
up vote
1
down vote
favorite
I run the command sudo do-release-upgrade -d
but I get the following message:
upgrades to the development release are only available from the latest supported release
What's the deal? Do I just need to wait a little while longer?
18.10
New contributor
1
What do you believe the-d
flag does? If you are unsure, look it up.
– user535733
Nov 16 at 21:45
1
The current development release is Ubuntu 19.04 (not 18.10). Check your 'software & updates' to see if you machine is only checking for long-term-support releases, or any-new-release, because if it's the long-term-support the -d will bump you to 20.04 when it's in development (which will be awhile yet to wait, and no 18.04.1 isn't the latest release; it's 18.10; you need to jump to 18.10 before you go to 19.04 [development release] as error states)
– guiverc
Nov 16 at 22:34
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I run the command sudo do-release-upgrade -d
but I get the following message:
upgrades to the development release are only available from the latest supported release
What's the deal? Do I just need to wait a little while longer?
18.10
New contributor
I run the command sudo do-release-upgrade -d
but I get the following message:
upgrades to the development release are only available from the latest supported release
What's the deal? Do I just need to wait a little while longer?
18.10
18.10
New contributor
New contributor
edited Nov 17 at 10:48
Sravan
86
86
New contributor
asked Nov 16 at 21:17
user3547342
61
61
New contributor
New contributor
1
What do you believe the-d
flag does? If you are unsure, look it up.
– user535733
Nov 16 at 21:45
1
The current development release is Ubuntu 19.04 (not 18.10). Check your 'software & updates' to see if you machine is only checking for long-term-support releases, or any-new-release, because if it's the long-term-support the -d will bump you to 20.04 when it's in development (which will be awhile yet to wait, and no 18.04.1 isn't the latest release; it's 18.10; you need to jump to 18.10 before you go to 19.04 [development release] as error states)
– guiverc
Nov 16 at 22:34
add a comment |
1
What do you believe the-d
flag does? If you are unsure, look it up.
– user535733
Nov 16 at 21:45
1
The current development release is Ubuntu 19.04 (not 18.10). Check your 'software & updates' to see if you machine is only checking for long-term-support releases, or any-new-release, because if it's the long-term-support the -d will bump you to 20.04 when it's in development (which will be awhile yet to wait, and no 18.04.1 isn't the latest release; it's 18.10; you need to jump to 18.10 before you go to 19.04 [development release] as error states)
– guiverc
Nov 16 at 22:34
1
1
What do you believe the
-d
flag does? If you are unsure, look it up.– user535733
Nov 16 at 21:45
What do you believe the
-d
flag does? If you are unsure, look it up.– user535733
Nov 16 at 21:45
1
1
The current development release is Ubuntu 19.04 (not 18.10). Check your 'software & updates' to see if you machine is only checking for long-term-support releases, or any-new-release, because if it's the long-term-support the -d will bump you to 20.04 when it's in development (which will be awhile yet to wait, and no 18.04.1 isn't the latest release; it's 18.10; you need to jump to 18.10 before you go to 19.04 [development release] as error states)
– guiverc
Nov 16 at 22:34
The current development release is Ubuntu 19.04 (not 18.10). Check your 'software & updates' to see if you machine is only checking for long-term-support releases, or any-new-release, because if it's the long-term-support the -d will bump you to 20.04 when it's in development (which will be awhile yet to wait, and no 18.04.1 isn't the latest release; it's 18.10; you need to jump to 18.10 before you go to 19.04 [development release] as error states)
– guiverc
Nov 16 at 22:34
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
Remove all no longer required packages:
$ sudo apt autoremove
Next, open and edit /etc/update-manager/release-upgrades
file and set Prompt=normal to avoid No new release found message. Save the file.
Run:
$ sudo do-release-upgrade
If upgrading before the official 18.10 release date or while the upgrade from 18.04 is still not available use -d to perform upgrade:
$ sudo do-release-upgrade -d
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
add a comment |
up vote
0
down vote
Suppose you are upgrading from version A
to higher version B
. Before you upgrade to B, your system must have updated A, as on present date. So, you should update and upgrade the current version (18.04) before you start an upgrade to 18.10.
Issue the commands given below:
$ sudo apt update
$ sudo apt upgrade
Now you can upgrade as you were doing (and remember what @guiverc mentioned).
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
Remove all no longer required packages:
$ sudo apt autoremove
Next, open and edit /etc/update-manager/release-upgrades
file and set Prompt=normal to avoid No new release found message. Save the file.
Run:
$ sudo do-release-upgrade
If upgrading before the official 18.10 release date or while the upgrade from 18.04 is still not available use -d to perform upgrade:
$ sudo do-release-upgrade -d
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
add a comment |
up vote
1
down vote
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
Remove all no longer required packages:
$ sudo apt autoremove
Next, open and edit /etc/update-manager/release-upgrades
file and set Prompt=normal to avoid No new release found message. Save the file.
Run:
$ sudo do-release-upgrade
If upgrading before the official 18.10 release date or while the upgrade from 18.04 is still not available use -d to perform upgrade:
$ sudo do-release-upgrade -d
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
add a comment |
up vote
1
down vote
up vote
1
down vote
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
Remove all no longer required packages:
$ sudo apt autoremove
Next, open and edit /etc/update-manager/release-upgrades
file and set Prompt=normal to avoid No new release found message. Save the file.
Run:
$ sudo do-release-upgrade
If upgrading before the official 18.10 release date or while the upgrade from 18.04 is still not available use -d to perform upgrade:
$ sudo do-release-upgrade -d
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
Remove all no longer required packages:
$ sudo apt autoremove
Next, open and edit /etc/update-manager/release-upgrades
file and set Prompt=normal to avoid No new release found message. Save the file.
Run:
$ sudo do-release-upgrade
If upgrading before the official 18.10 release date or while the upgrade from 18.04 is still not available use -d to perform upgrade:
$ sudo do-release-upgrade -d
edited Nov 16 at 22:49
answered Nov 16 at 22:43
Carlos Dagorret
1933
1933
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
add a comment |
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
Why the dist-upgrade? What do you expect it to do?
– user535733
Nov 17 at 0:01
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
from man: dist-upgrade in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. So, dist-upgrade command may remove some packages.
– Carlos Dagorret
Nov 17 at 0:03
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
Ah, sorry I was unclear about the point: dist-upgrade is used for release-upgrades in Debian, not Ubuntu. That step is superfluous in Ubuntu, and indeed may confuse some folks. The OP has not yet clarified if they want 18.10 or 19.04, so the answer should be clear about each. These kinds of questions usually crop up when the OP is typing incantations that they don't understand.
– user535733
Nov 17 at 0:10
add a comment |
up vote
0
down vote
Suppose you are upgrading from version A
to higher version B
. Before you upgrade to B, your system must have updated A, as on present date. So, you should update and upgrade the current version (18.04) before you start an upgrade to 18.10.
Issue the commands given below:
$ sudo apt update
$ sudo apt upgrade
Now you can upgrade as you were doing (and remember what @guiverc mentioned).
add a comment |
up vote
0
down vote
Suppose you are upgrading from version A
to higher version B
. Before you upgrade to B, your system must have updated A, as on present date. So, you should update and upgrade the current version (18.04) before you start an upgrade to 18.10.
Issue the commands given below:
$ sudo apt update
$ sudo apt upgrade
Now you can upgrade as you were doing (and remember what @guiverc mentioned).
add a comment |
up vote
0
down vote
up vote
0
down vote
Suppose you are upgrading from version A
to higher version B
. Before you upgrade to B, your system must have updated A, as on present date. So, you should update and upgrade the current version (18.04) before you start an upgrade to 18.10.
Issue the commands given below:
$ sudo apt update
$ sudo apt upgrade
Now you can upgrade as you were doing (and remember what @guiverc mentioned).
Suppose you are upgrading from version A
to higher version B
. Before you upgrade to B, your system must have updated A, as on present date. So, you should update and upgrade the current version (18.04) before you start an upgrade to 18.10.
Issue the commands given below:
$ sudo apt update
$ sudo apt upgrade
Now you can upgrade as you were doing (and remember what @guiverc mentioned).
edited Nov 17 at 4:49
answered Nov 17 at 4:42
Wings
10212
10212
add a comment |
add a comment |
user3547342 is a new contributor. Be nice, and check out our Code of Conduct.
user3547342 is a new contributor. Be nice, and check out our Code of Conduct.
user3547342 is a new contributor. Be nice, and check out our Code of Conduct.
user3547342 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1093573%2fcant-upgrade-from-18-04-1-lts-to-18-10%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
1
What do you believe the
-d
flag does? If you are unsure, look it up.– user535733
Nov 16 at 21:45
1
The current development release is Ubuntu 19.04 (not 18.10). Check your 'software & updates' to see if you machine is only checking for long-term-support releases, or any-new-release, because if it's the long-term-support the -d will bump you to 20.04 when it's in development (which will be awhile yet to wait, and no 18.04.1 isn't the latest release; it's 18.10; you need to jump to 18.10 before you go to 19.04 [development release] as error states)
– guiverc
Nov 16 at 22:34