Linux, Web Hosting, and Everything Else in Between
Linux, Web Hosting, and Everything Else in Between

How to Check Ubuntu Version

check ubuntu version

This article shows how to check which version of Ubuntu you are running. This information is often required when you need to describe any issue that you’ve been having on your system, and want to request help on online forums. It also helps when you want to write about any specific feature that is only present in the release that you are using.

We are going to show two methods of checking the Ubuntu version:

CLI (Terminal) Method – for Servers and Desktops

To check the release version (numbers only) of your system, use the following command :

lsb_release -r

Sample output:

pulkit@hostname:~$ lsb_release -r
Release: 18.04

If you want to get even more information about your Ubuntu version, like the codename of the release, enter this command:

lsb_release -a

Sample output:

pulkit@hostname:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
pulkit@hostname:~$

This command should suffice in getting all the required release information.

You can test this command out on an Ubuntu server at Vultr.

GUI Method – for Desktops

Now comes the graphical method to get this information. The advantage of this method is that it also provides system information, such as the amount of RAM installed, CPU name, storage capacity, etc.

To get this information, proceed as follows:

  1. Open ‘Settings’
  2. Go into the ‘Details‘ sub-category

The window that will open next will give you all the required system information.

Information displayed by Settings in Ubuntu
The information displayed by Settings in Ubuntu.

Conclusion

Viewing release information is fairly simple on Ubuntu, and the settings even show the system properties if you require that. Just a note, if you report any issue to online user forums, make sure to provide your release version, and required system properties. If you do not, it will be tough for the community to figure out a solution for your issue.

Let us know if you have any questions in the comments below.

Leave a comment

Your email address will not be published. Required fields are marked *