How to Upgrade From Ubuntu 16.04 to Ubuntu 18.04

Introduction

As Ubuntu 16.04 comes closer to its end of life (April 2021), you may want to consider upgrading to a newer version.

In this tutorial, learn how to upgrade to Ubuntu 18.04 from Ubuntu 16.04.

Important: When upgrading Ubuntu, you cannot skip LTS releases and you cannot upgrade directly from Ubuntu 16.04 to 20.04. Ubuntu only supports upgrades to the next available LTS release.

Upgrade from Ubuntu 16.04 to Ubuntu 18.04.

Prerequisites

  • A system running Ubuntu 16.04
  • Access to a terminal window / command line (Ctrl+Alt+T, search > terminal)
  • A user account with sudo or root privileges

Note: Instead of upgrading the existing system, you can also do a fresh Ubuntu 18.04 installation. That would require you to migrate your existing data to the new system.

Check Ubuntu Version

This installation shows how to upgrade from Ubuntu 16.04 to Ubuntu 18.04. If you aren’t sure whether the system is running the 16.04 release, you should check the Ubuntu version.

The simplest way to do so is running the lsb_release -a command in the terminal window. The output should display Ubuntu 16.04, as in the image below.

Find Ubuntu version from terminal.

Alternatively, you can check the Ubuntu version using the graphical interface.

Option 1: Upgrading to Ubuntu 18.04 via GUI

There are two ways to upgrade a system to a newer Ubuntu release:

  • Using the graphical interface
  • Using the terminal window

If you are a user who prefers using the GUI, you can upgrade to Ubuntu 18.04 with a few simple clicks.

Note: Are you are upgrading from a system already in use? Make sure to backup your data before you start.

Step 1: Updating the System

Before upgrading Ubuntu, ensure you have the latest software running on the system.

1. Open the Ubuntu dash menu and search for Software Updater. Open the Software Updater icon once it appears in the search results.

2. Wait for the program to check for new updates. Once it’s done, click Install Now to update all the software packages.

Update software packages on Ubuntu 16.04 via GUI.

3. Type in your password to confirm the installation and click Authenticate.

Provide password to confirm software update on Ubuntu 16.04.

4. The process of updating may take a couple of minutes. Once it is complete, the output informs you the computer needs a restart to complete updating the software. Click Restart Now.

Restart system to finish installing updates.

Step 2: Setting Ubuntu to Upgrade to Long-Term Support Versions

1. After the system restarts, navigate to Software and Updates. You can find it using the Ubuntu dash menu.

2. Move to the Updates tab and find the Notify me of the new Ubuntu version setting. By default, the drop-down menu is set For long-term support versions. If it has been modified, change it to the initial setting.

Configure Ubuntu to inform you when a new long term support version is available.

3. Close the window and move on to upgrading.

Step 3: Upgrade to Ubuntu 18.04

1. Reopen the Software Updater and wait for it to finish checking for updates.

Ubuntu 16.04 system checking for software updates.

2. Since you already updated the system in Step 1, the output informs you the software is up to date. However, it also informs you there is a new LTS release available. To upgrade to Ubuntu 18.04, Click Upgrade.

Software updater showing Ubuntu 18.04 is available.

3. The Release Notes window pops open with information about the release. Click Upgrade to confirm you want to proceed.

Ubuntu 18.04 release notes.

4. The system provides information, including the number of packages that won’t have support, the number of packages that will be removed and the download size. Click Start Upgrade to continue.

Start upgrade to Ubuntu 18.04.

5. Next, the wizard asks whether to delete obsolete packages. If you have no particular need to keep them, click Remove.

Remove obsolete packages prior to upgrade.

6. Then, restart the system again to complete the upgrade.

Finish Ubuntu 18.04 upgrade.

7. Once the restart completes, you will see your upgraded Ubuntu 18.04.

Ubuntu 18.04 welcome screen.

8. You can use the GUI to check your Ubuntu version by opening the Settings window and navigating to the Details tab. There you will find information such as OS Name and its release number.

Find Ubuntu version from GUI.

Option 2: Upgrade to Ubuntu 18.04 via Command Line

Instead of the GUI, you can upgrade from Ubuntu 16.04 to Ubuntu 18.04 through the command line.

Step 1: Updating and Upgrading the System

Before upgrading to Ubuntu 18.04, make sure to update the available packages, upgrade the existing system, and clean the disk from unnecessary packages.

1. Update the software packages repository list:

sudo apt-get update

2. Then, upgrade already installed packages and let the system handle package dependencies with:

sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y

3. Finally, free up disk space by removing all unnecessary packages:

sudo apt-get autoremove

Press y to confirm you want to remove the packages.

Remove unwanted packages on Ubuntu 16.

Step 2: Setting Up Update Manager

Ubuntu allows you to easily upgrade to a newer LTS version using the Update Manager. If you do not have this package installed on the system, follow the steps below.

1. Run the command for installing Update Manager:

sudo apt-get install update-manager-core

2. Press y and Enter to confirm the installation.

Note: If you already have the Update Manager, the output informs you update-manager-core is already the newest version.

3. Open the configuration file of the upgrade manager to check the configuration for release upgrades:

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

The Prompt option should be set to lts instructing the update manager to only upgrade to long-term supported versions.

screenshot of Updating the manager configuration file

Step 3: Upgrading to Ubuntu 18.04

1. Check whether there are new release upgrades available by running the following command:

sudo do-release-upgrade

2. The output informs you Ubuntu 18.04 is available for download. It also includes information about the upgrade, such as the size and time it takes to complete. Press y to continue.

Continue upgrading to Ubuntu 18.04 from command line.

Note: The output may not give you the option to upgrade. In such a case, you need to reboot the system and try again.

3. Next, confirm you want to remove obsolete packages by pressing y.

4. Press y to complete the upgrade and restart the system.

5. Once the system restarts, Ubuntu 18.04 launches. You will see a welcome screen with a list of new features.

Ubuntu 18.04 welcome screen.

6. Verify your Ubuntu version by running the following command in the terminal window:

lsb_release -a

The output should display you are now using Ubuntu 18.04.

Conclusion

This article has shown you how to upgrade from Ubuntu 16.04 to Ubuntu 18.04. It included two options – upgrading through the GUI or through the command line.

By now, Ubuntu has already released the next LTS version – Ubuntu 20.04. If you want to try the latest Ubuntu release, check out How to Install Ubuntu 20.04 (Focal Fossa).

Was this article helpful?
YesNo
Sofija Simic
Sofija Simic is an experienced Technical Writer. Alongside her educational background in teaching and writing, she has had a lifelong passion for information technology. She is committed to unscrambling confusing IT concepts and streamlining intricate software installations.
Next you should read
How to Update Linux Kernel In Ubuntu
December 7, 2023

The Linux kernel is like the central core of the operating system. It works as...
Read more
How to Check Your Ubuntu Version
July 7, 2019

Finding out which Ubuntu version is running on your system can be important...
Read more
How to Remove Old Kernels on Ubuntu 16.04, 18.04, & 19.04
March 11, 2020

There are several methods to remove old or unused kernels. It's also considered...
Read more
How to Install Ubuntu 20.04 LTS Desktop (Focal Fossa)
May 25, 2020

This article helps you install Ubuntu 20.04 on your machine. The latest Ubuntu Focal...
Read more