Categories: TutorialsUbuntu

How to Check Kernel Version in Ubuntu 20.04

A kernel is a computer program and it provides an interface between software and hardware of a computer system. One of the core responsibilities of Kernel is to pass commands or instructions from applications to the underlying hardware of the CPU and return the result. You can read more about the kernel on the Wikipedia page.

In today’s tutorial, I am focusing on several ways of checking the kernel version in Ubuntu 20.04.

Let’s begin!

Prerequisites

  • Ubuntu 20.04 machine
  • sudo privileges

Checking Kernel Version in Ubuntu 20.04

Method # 1: Using uname command

Uname prints the system information including operating system name, kernel release and version etc.

Sponsored

Execute the uname command with -r option,

uname -r

Method # 2: Using hostnamectl command

Execute the following and look for the ‘Kernel’ as shown below in the screenshot,

hostnamectl

Method # 3: Using /proc/version file

You can check the kernel version by viewing the content of the/proc/version file. Execute the following,

Sponsored
cat /proc/version

Method # 4: Using dmesg command

Dmesg command is used to print kernel related messages on the terminal.

Run the dmesg command along with grep to extract the kernel version from the output.

sudo dmesg | grep -i linux

Conclusion

That’s all for this guide. See you again in the next post.

If you are interested in updating your kernel in Linux Mint 20, follow this article.

Ubuntu Server Admin

Recent Posts

What our users make with Ubuntu Pro – Episode 2

How Vaultara achieved FedRAMP compliance with Ubuntu Pro Ubuntu Pro helps businesses worldwide to innovate…

8 hours ago

How To Install Zabbix Server 7.4 On Ubuntu 22.04

Zabbix is smart monitoring system on your network. This software written by php mysql. So…

14 hours ago

How To Install Zabbix Server 7.2 On Ubuntu 22.04

Zabbix is smart monitoring system on your network. This software written by php mysql. So…

14 hours ago

SuperTuxKart 1.5 RC2 added GUI option to Choose Vulkan or DirectX 9

SuperTuxKart, the 3D kart racing game, announced the second release candidate for the next 1.5…

14 hours ago

What’s the state of open source adoption in Europe?

New research suggests 86% of European organizations believe open source is valuable for the future…

1 day ago

What are dependencies, and how do you secure them?

Open source software is everywhere. Research shows that around 97% of codebases contain open source…

1 day ago