How to Check Your Ubuntu Version: A Guide
Last Updated :
23 Jul, 2025
Ubuntu is a Linux distribution built on Debian that is mostly comprised of software that is open-source and free. Ubuntu is officially available in three editions: Desktop, Server, and Core for IoT devices and robots. Canonical, a British corporation, and a group of other developers work on the operating system under a meritocratic governance paradigm. The most recent release as of October 2023 is 23.10 ("Mantic Minotaur"), and the present long-term support release is 22.04 ("Jammy Jellyfish").
Why you need to check your Ubuntu version:
1. Software Compatibility:
- Compatibility Verification: To ensure that newly installed software works seamlessly with your system, Software developers often specify compatible Ubuntu versions, and downloading incompatible software can cause errors or malfunctions.
- Package Updates and Dependencies: Knowing your version aids in finding the correct packages and dependencies to install or update software effectively.
2. Troubleshooting:
- Accurate Assistance: When seeking technical support for system-related issues, providing your Ubuntu version is crucial for accurate diagnosis and tailored solutions.
3. Security Updates:
- Staying Protected: Ubuntu releases regular security updates to address vulnerabilities and patch potential exploits.
4. Determining Available Features:
- Functionality Awareness: Different Ubuntu versions offer varying features and functionalities. Checking your version helps you understand what's available on your system and whether you can utilize certain features or tools.
5. Managing Systems and Servers:
- Efficient Administration: System administrators often manage multiple Ubuntu systems or servers. Knowing the specific version of each system is essential for proper software deployment, configuration, and maintenance.
6. Tracking Ubuntu Release Cycle:
- Planning and Upgrades: Keeping up with Ubuntu's release cycle helps you plan for future updates or upgrades.
How to Check Your Ubuntu Version?
Here are some of the methods that you can follow to check the version of your installed Ubuntu Operating System.
For checking the version of your Ubuntu using command line, you need to open the terminal first.
To open the terminal:
- Press Ctrl + Alt + T shortcut key.
- Or, you can open the applications menu and search for terminal and open by clicking the icon.
1. Using lsb_release -a command:
- Open the terminal.
- then execute the below command:
lsb_release -a

The lsb_release -a command is a Linux command used to display information about the Linux distribution on which it is run. It stands for "Linux Standard Base release." When you run this command with the -a option, it provides detailed information about the distribution.
Also Read: 25 Basic Linux Commands For Beginners [2025]
2. Using hostnamectl command:
- Open the terminal.
- execute the command given below:
hostnamectl

The hostnamectl command in Linux is used to control the system hostname and change its related settings1. This command provides a proper API to change the hostname without actually locating and editing the /etc/hostname file on a given system1.
3. Using cat /etc/issue command:
- Open the terminal.
- Execute the command given below:
cat /etc/issue

The cat /etc/issue command in Linux is used to display the contents of the /etc/issue file. This file typically contains information about the Linux distribution, release, and other details.
4. Using GUI (Graphical User Interface):
If you want to check the version of your Ubuntu through the GUI, you can follow the steps below:
- Click on the Show Applications button on the buttom, it will show you the list of all the applications.
- Here click on the searchbar and search for settings.
-1024.png)
- Click on the settings icon.
- Now click on the About option.
Checking Ubuntu VersionAlso Read:
Conclusion:
Ubuntu is a debian based free and open source operating system which is widely used for server computers and also for personal usage. You should regularly check ubuntu version for following reasons: Compatibility Verification, Package and Dependencies Updates, Troubleshooting, Functionality Awareness and Security updates and Bug fixes.
You can use both CLI(command line interface) and GUI(Graphical User Interface) to check the installed Ubuntu version:
- Using lsb_release -a command
- Using hostnamectl command
- cat /etc/issue
- In settings, About section.
Similar Reads
How to Check Your PostgreSQL Version Knowing the specific version of PostgreSQL is vital for maintaining compatibility and utilizing new features. In this article, we will explain several methods to check our PostgreSQL version using the command line, the SQL shell, and the psql client. Also, it addresses common errors such as the "Com
5 min read
How to Check Your WordPress Version? Checking the WordPress version is important for maintaining the security and functionality of our website. Knowing the security version helps you determine if you need to update to the latest version which can include new features, bug fixes, and security patches. To check your WordPress version you
2 min read
How to Check Your Ethereum Transaction? Checking your Ethereum transaction status is crucial for tracking the success and details of your transactions on the Ethereum blockchain. Whether youâre confirming a payment, monitoring a transfer, or just keeping an eye on your activity, knowing how to check your transaction can save you time and
8 min read
How to Check Apache Version? Determining the Apache version is pivotal for maintaining a secure, stable, and optimized web server environment. By identifying the Apache version, administrators can assess security vulnerabilities, ensure compatibility with software components, and leverage performance enhancements. Understanding
2 min read
How To Check The Version Of GitLab? GitLab is a web-based DevOps platform that provides development teams with the tools to collaborate, automate repetitive tasks and build faster and better software. In this article, we will explore how to check the version of GitLab.There are multiple ways to check the version of GitLab installed on
2 min read
How to Install apt-show-versions package on Ubuntu? If you are using any Linux Distributions like Ubuntu OS, you should know the process to Manage & Verify Installed Packages there. And for that purpose, the Apt-Show-Versions Package on Ubuntu will be the best. With the Ubuntu Apt-Show-Versions Package, you can list down the Ubuntu Packages prese
4 min read