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?
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?
$ 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
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 '18 at 00:03Suppose 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).
Enable upgrading to non-LTS versions
This time I had to do an extra step:
software-properties-gtk
Then:
TODO how to do it from the command line only?
Then as usual:
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo do-release-upgrade
Without the For any new version
setting, it failed to find the new version with:
No new release found.
Also note that the upgrade is not released at the exact same time as the 18.10 disk comes out, it seems that you have to wait a few days until 18.04.1 is released before upgrading.
For some reason, apt-get
missed one of the upgrades and I got:
Please install all available updates for your release before upgrading."
only apt
worked.
I advise against -d
unless you really know what you are doing as that upgrades to unstable development versions, which is not something that most users want.
-d
flag does? If you are unsure, look it up. – user535733 Nov 16 '18 at 21:45