Ubuntu – In place upgrade from 19.10 to 20.04

19.1020.04upgrade

I have tried to do an in place upgrade from 19.10 to 20.04 but the manager isnt findding any updates it just says my system is up to date. Will the GUI based in place upgrade for 19.10 come in the next few days?

Best Answer

Run the following commands:

sudo apt-get update
sudo apt-get upgrade -y

Then reboot

Make sure the update-manager-core is installed

sudo apt-get install update-manager-core -y

After this issue the following command:

sudo do-release-upgrade

If the command says that there is no new release available and you still want to go ahead with the upgrade to the development release, you can use the the -d option. So enter this into terminal:

sudo do-release-upgrade -d

You should be asked to continue with the upgrade. Follow the prompts and you should upgrade to 20.04!

Related Question