Ubuntu update 19.10 -> 20.04?

I have an Ubuntu 19.10 system (I'm typing on it now). I want to upgrade it to 20.04 (released over a week ago). $ sudo do-release-upgrade Checking for a new Ubuntu release No new release found. The Ubuntu Software's GUI Software Updater also sees nothing. A Quick look at the /etc/apt/sources.list suggests that I'm using ca.archive.ubuntu.com. Does anyone know why I don't see 20.04? Odd observation: Software Update said that there were no updates. But as I typed this message, with no button pushing by me, has changed its mind and decided that there is now an Nvidia driver settings update.

My understanding is that Canonical maintains two branches of releases. The even numbers are the LTS releases, the odd are the other ones (I'm not sure what they call them). When you're on a LTS version, do-release-upgrade will by default only look for a newer LTS versions. Similarly, when you're on an odd version, do-release-upgrade will only look for another odd numbered version. You can override this behavior, though. I recall seeing some instructions for doing this through the GUI in the 20.04 release announcement a few weeks ago. A quick internet search seems to indicate that to upgrade from 19.10 to 20.04, you can run `update-manager -d`. The man pages indicate that `do-release-upgrade` has the same flag. I've always run the LTS versions, so I've never personally done this. So, there may be nuances that I don't understand. In any case, you should do a bit of research before executing a shell command that some random person posted to a mailing list. Hope this helps.
On May 2, 2020 10:43 AM D. Hugh Redelmeier via talk <talk@gtalug.org> wrote:
I have an Ubuntu 19.10 system (I'm typing on it now). I want to upgrade it to 20.04 (released over a week ago).
$ sudo do-release-upgrade Checking for a new Ubuntu release No new release found.
The Ubuntu Software's GUI Software Updater also sees nothing.
A Quick look at the /etc/apt/sources.list suggests that I'm using ca.archive.ubuntu.com.
Does anyone know why I don't see 20.04?
Odd observation: Software Update said that there were no updates. But as I typed this message, with no button pushing by me, has changed its mind and decided that there is now an Nvidia driver settings update. --- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

| From: Tom Low-Shang via talk <talk@gtalug.org> | I don't use Ubuntu but a quick search indicates that | | sudo apt-get update | sudo apt-get upgrade | | and a reboot are necessary before running do-release-upgrade. | | Have you done those steps? Yes, I had done this. Thanks for the suggestion. | From: Stefan Kloppenborg via talk <talk@gtalug.org> | | My understanding is that Canonical maintains two branches of releases. | The even numbers are the LTS releases, the odd are the other ones (I'm | not sure what they call them). When you're on a LTS version, | do-release-upgrade will by default only look for a newer LTS versions. | Similarly, when you're on an odd version, do-release-upgrade will only | look for another odd numbered version. You can override this behavior, | though. I recall seeing some instructions for doing this through the GUI | in the 20.04 release announcement a few weeks ago. Years ago, the even year . 04 versions seemed to only be blessed as "LTS" after a few months. So version upgrades would not happen until then. All releases were considered 6-month releases. As they were. Maybe that changed at some point. I cannot find any specific name for the non-LTS releases. Surely the term, if there were one, would show up in release notes. <https://wiki.ubuntu.com/EoanErmine/ReleaseNotes> | A quick internet search seems to indicate that to upgrade from 19.10 to | 20.04, you can run `update-manager -d`. The man pages indicate that | `do-release-upgrade` has the same flag. Probably -d is the thing. But the documentation for both commands says: -d, --devel-release Check if upgrading to the latest devel release is possible I'm pretty sure that I don't want to upgrade to the lastest devel release. There's also a -c for the update manager that seems relevant. It isn't available with do-release-upgrade, probably because it is implied: -c, --check-dist-upgrades Check if a new distribution release is available

I recently did a similar upgrade. (Kubuntu, but same rules). You can only upgrade to 20.04 directly from either 18.04 LTS or 19.10, so first you have to get to one of those depending on whether you're on the LTS path or not. Also make sure that those are at their most current before upgrading using *apt-get update* and *apt-get upgrade*, and you have to reboot if your update involved the kernel or libc. Remove old kernels with *apt --purge autoremove* Make sure that 'update-manager-core' is installed and current. If the above is done then *do-release-upgrade* should do it A more detailed version of the process is at https://www.cyberciti.biz/faq/upgrade-ubuntu-18-04-to-20-04-lts-using-comman... ... I followed it and my upgrade went painlessly. - Evan On Sat, 2 May 2020 at 14:57, D. Hugh Redelmeier via talk <talk@gtalug.org> wrote:
| From: Tom Low-Shang via talk <talk@gtalug.org>
| I don't use Ubuntu but a quick search indicates that | | sudo apt-get update | sudo apt-get upgrade | | and a reboot are necessary before running do-release-upgrade. | | Have you done those steps?
Yes, I had done this.
Thanks for the suggestion.
| From: Stefan Kloppenborg via talk <talk@gtalug.org> | | My understanding is that Canonical maintains two branches of releases. | The even numbers are the LTS releases, the odd are the other ones (I'm | not sure what they call them). When you're on a LTS version, | do-release-upgrade will by default only look for a newer LTS versions. | Similarly, when you're on an odd version, do-release-upgrade will only | look for another odd numbered version. You can override this behavior, | though. I recall seeing some instructions for doing this through the GUI | in the 20.04 release announcement a few weeks ago.
Years ago, the even year . 04 versions seemed to only be blessed as "LTS" after a few months. So version upgrades would not happen until then.
All releases were considered 6-month releases. As they were.
Maybe that changed at some point. I cannot find any specific name for the non-LTS releases. Surely the term, if there were one, would show up in release notes.
<https://wiki.ubuntu.com/EoanErmine/ReleaseNotes>
| A quick internet search seems to indicate that to upgrade from 19.10 to | 20.04, you can run `update-manager -d`. The man pages indicate that | `do-release-upgrade` has the same flag.
Probably -d is the thing. But the documentation for both commands says:
-d, --devel-release Check if upgrading to the latest devel release is possible
I'm pretty sure that I don't want to upgrade to the lastest devel release.
There's also a -c for the update manager that seems relevant. It isn't available with do-release-upgrade, probably because it is implied:
-c, --check-dist-upgrades Check if a new distribution release is available
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk
-- Evan Leibovitch, Toronto Canada @evanleibovitch or @el56

On 2020-05-03 7:13 a.m., Evan Leibovitch via talk wrote:
You can only upgrade to 20.04 directly from either 18.04 LTS or 19.10 [snip] If the above is done then *do-release-upgrade* should do it
A more detailed version of the process is at https://www.cyberciti.biz/faq/upgrade-ubuntu-18-04-to-20-04-lts-using-comman...
That page has the same information I've seen elsewhere (including from the Ubuntu website). It doesn't work. The do-release-upgrade stage always says: An upgrade from 'cosmic' to 'eoan' is not supported with this tool. I have one server running 18.10 and it would be nice to stop seeing the following every time I login: New release '19.10' available. Run 'do-release-upgrade' to upgrade to it. I'll go to the Ubuntu IRC channel and see what information I can get from there on how to upgrade from 18.10 to 19.10. -- Cheers! Kevin. http://www.ve3syb.ca/ | "Nerds make the shiny things that https://www.patreon.com/KevinCozens | distract the mouth-breathers, and | that's why we're powerful" Owner of Elecraft K2 #2172 | #include <disclaimer/favourite> | --Chris Hardwick

On 2020-05-03 7:13 a.m., Evan Leibovitch via talk wrote:
… If the above is done then *do-release-upgrade* should do it
Like Hugh, I got the "No new release found" for my 19.10 laptop even after following all of that. The only thing that got it to do what I wanted was: sudo do-release-upgrade -d If [1] is to be believed, you don't automatically get offered the upgrade, you get the chance when Ubuntu sees fit: #####> As already mentioned above, upgrades from 19.10 will not be enabled until a few days after 20.04's release and upgrades from 18.04 LTS will not be enabled until a few days after the 20.04.1 release which is expected in late July 2020. Kind of annoying, but my laptop's almost done with the 20.04 installation. cheers, Stewart [1] https://linuxconfig.org/how-to-upgrade-ubuntu-to-20-04-lts-focal-fossa

On Sat, May 02, 2020 at 10:43:44AM -0400, D. Hugh Redelmeier via talk wrote:
I have an Ubuntu 19.10 system (I'm typing on it now). I want to upgrade it to 20.04 (released over a week ago).
$ sudo do-release-upgrade Checking for a new Ubuntu release No new release found.
The Ubuntu Software's GUI Software Updater also sees nothing.
A Quick look at the /etc/apt/sources.list suggests that I'm using ca.archive.ubuntu.com.
Does anyone know why I don't see 20.04?
I don't use Ubuntu but a quick search indicates that sudo apt-get update sudo apt-get upgrade and a reboot are necessary before running do-release-upgrade. Have you done those steps? -- Tom Low-Shang 416 857 7013

On 2020-05-02 10:43 a.m., D. Hugh Redelmeier via talk wrote:
I have an Ubuntu 19.10 system (I'm typing on it now). I want to upgrade it to 20.04 (released over a week ago).
$ sudo do-release-upgrade Checking for a new Ubuntu release No new release found. [snip] Does anyone know why I don't see 20.04?
I'm in a similar situation but the machine I want to update is running the older 18.10 version. The result I get amounts to being told "you can't get there from here". It won't update from comsic to eaon. -- Cheers! Kevin. http://www.ve3syb.ca/ | "Nerds make the shiny things that https://www.patreon.com/KevinCozens | distract the mouth-breathers, and | that's why we're powerful" Owner of Elecraft K2 #2172 | #include <disclaimer/favourite> | --Chris Hardwick
participants (6)
-
D. Hugh Redelmeier
-
Evan Leibovitch
-
Kevin Cozens
-
Stefan Kloppenborg
-
Stewart C. Russell
-
Tom Low-Shang