Ubuntu 20.10, codenamed Groovy Gorilla, will be released on October 22, 2020. This tutorial will be showing you 2 ways to upgrade Ubuntu 20.04 to Ubuntu 20.10. The first method uses the graphical update manager and the second method uses the command line. Usually, you use the graphical update manager to upgrade Ubuntu desktop and use the command line to upgrade Ubuntu server, but the command-line method also works for desktops.

Note that Ubuntu 20.04 is a long term support (LTS) release, which will be supported for 5 years. Ubuntu 20.10 is a non-LTS release, which means it will be supported for 9 months only, until July 2021. If you prefer stability over bleeding edge, then stick with Ubuntu 20.04. But if you are the other way around, you can follow this tutorial to upgrade from Ubuntu 20.04 to Ubuntu 20.10.

Ubuntu 20.10 New Features

  • Linux kernel 5.8. You will also get all the new features from kernel 5.5, 5.6, and 5.7, such as VirtualBox folder sharing, Thunderbolt 3 and USB4 support, Apple USB fast charge, EFI mixed mode booting, full support for exFAT, which is a file system optimized for flash memory that allows file size larger than 4GB.
  • GNOME 3.38
  • Wi-Fi hotspot sharing with QR code
  • Fingerprint login allows you to unlock and log into your computer with your finger if your computer has a fingerprint reader.
  • The Ubiquity installer now has Active Directory (AD) integration.
  • High-precision touchpad scrolling in Firefox 81.
  • Thunderbird 78, which now has built-in calendar and OpenPGP encryption support.
  • Nginx 1.18, PHP7.4, Ruby 2.7, Python 3.8 and 3.9, OpenJDK 8, 11, 13, 14, and 15.

Note:  Before doing the upgrade, you can use the systemback program to create a bootable ISO image from your current OS. If the upgrade fails, you can easily restore your OS with the bootable ISO. Everything on your OS including software and files will be intact.  If you are using a laptop, please connect your power source.

Upgrade Ubuntu 20.04 to Ubuntu 20.10 with the Graphical Update Manager

First of all, open software updater (aka update manager) from your application menu. It will update software package information. If there’s updates available, click the Install Now button and enter your password to install updates.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

If a new version of the Linux kernel is installed, then the update manager will tell you to restart your computer. Click Restart Now.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Then open Software & Updates from your application menu.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Select the Updates tab and then at the bottom of the window, change notification settings from For long-term support version to For any new version. You will be asked to enter your password for the change to take effect. Then close this window.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Next, open up a terminal window and issue the following command in the terminal.

update-manager

After checking for updates, the update manager will tell you that Ubuntu 20.10 is now available. Click the Upgrade button.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Then enter your password. The release notes window appears. Click Upgrade.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

The distribution upgrade window will open up. If you are notified that some third-party sources are disabled, accept it. You can re-enable them after the upgrade is finished. (The window says “upgrading Ubuntu to version 20.04”. Actually it’s upgrading Ubuntu to version 20.10.)

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

In a few moments, you will be asked if you want to start the upgrade. Click the Start Upgrade button.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Wait for the upgrade process to finish. The update manager may ask you if you want to restart services during packages upgrade without asking. Tick it on and click Next button.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

After new versions of packages are installed, the update manager may ask you if you want to remove obsolete packages. I always select Remove.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Obsolete packages are software packages whose name can’t be found in the software repository of the new Ubuntu release. The cause of obsolete packages are the following:

  • The upstream developer stops maintaining this package and there is no other person willing to take over. So the Ubuntu package maintainer decides to drop this package from the Ubuntu repository.
  • The package becomes an orphan package, which means there’s no other package that depends on it and there are very few users of this package. So the Ubuntu package maintainer decides to drop this package from the Ubuntu repository.
  • The package has a new name in the software repository of the new Ubuntu release.

After obsolete packages are removed from your system. Restart your computer and check your Ubuntu version with the following command.

lsb_release -a

Output:

No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 20.10
Release:	20.10
Codename:	groovy

Upgrade From Ubuntu 20.04 to Ubuntu 20.10 Using Command Line

You can use the command line to upgrade Ubuntu desktop or a headless server. If you use SSH to log into your Ubuntu server, it’s a good idea to keep your OpenSSH session alive by adding the following line in the /etc/ssh/sshd_config file on your server.

ClientAliveInterval 60

Save and close the file. Then restart the SSH daemon.

sudo systemctl restart ssh

To upgrade to Ubuntu 20.10, first run the following command to update existing software packages.

sudo apt update && sudo apt dist-upgrade

Please note that if a new kernel is installed while running the above command, you need to reboot the system (sudo shutdown -r now) in order to continue the upgrade process.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Then make sure you have update-manager-core package installed.

sudo apt install update-manager-core

Next, edit /etc/update-manager/release-upgrades file with a command-line text editor like Nano.

sudo nano /etc/update-manager/release-upgrades

Change the value of prompt from lts to normal.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

To save a file in Nano text editor, press Ctrl O, then press Enter to confirm. To exit, press Ctrl X. After that, run the following command to begin the upgrade process.

do-release-upgrade

Then follow the on-screen instruction to upgrade to Ubuntu 20.10. Basically, you need to press y to answer the questions.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

The update manager may ask you if you want to restart services during packages upgrade without asking. Press the Tab key to select Yes and press Enter.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

If you are upgrading a server, you will probably see messages like below. I recommend choosing N to keep your current version. The updated version will be available at the same directory. You can check it out later.

2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 20.10 (GUI & Terminal) linux ubuntu Ubuntu Desktop Ubuntu Server

Once the upgrade is finished, reboot your Ubuntu desktop or server. To check your Ubuntu version, run:

lsb_release -a

Output:

No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 20.10
Release:	20.10
Codename:       groovy

How to Re-Enable Third-Party Repositories

Third-party repositories are defined in the .list files under /etc/apt/sources.list.d/ directory. First, re-enable third-party repositories with the following command, which will remove the # character in lines that begin with deb.

sudo sed -i '/deb/s/^#//g' /etc/apt/sources.list.d/*.list

Then change all instances of focal to groovy.

sudo sed -i 's/focal/groovy/g' /etc/apt/sources.list.d/*.list

Update package repository index.

sudo apt update

Some third-party repositories don’t have an entry for Ubuntu 20.10, so you will likely to see errors like:

E: The repository 'http://linux.dropbox.com/ubuntu focal Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

You will need to edit these repository files one by one and disable them. For example, I edit the Dropbox repository file.

sudo nano /etc/apt/sources.list.d/dropbox.list

Disable this repository by adding the # character at the beginning of the line.

# deb [arch=i386,amd64] http://linux.dropbox.com/ubuntu focal main # disabled on upgrade to focal

Save and close the file. You need to wait for those repositories to add support for Ubuntu 20.10. Some software packages in third-party repositories might be included in 20.10. For example, Ubuntu 20.10 repository contains the nextcloud-desktop package, so I don’t need the Nextcloud PPA anymore. I can delete the Nextcloud PPA.

sudo rm /etc/apt/sources.list.d/nextcloud-client.list*

Wrapping Up

That’s it! I hope this tutorial helped you upgrade to Ubuntu 20.10 from Ubuntu 20.04. As always, if you found this post useful, then subscribe to our free newsletter to get new tutorials. Take care 🙂

Rate this tutorial

[Total: 1 Average: 5]