{"id":2928,"date":"2023-04-27T09:37:56","date_gmt":"2023-04-27T09:37:56","guid":{"rendered":"https:\/\/tryrdp.com\/blog\/?p=2928"},"modified":"2026-05-24T06:26:37","modified_gmt":"2026-05-24T06:26:37","slug":"check-kernel-version-in-linux-in-command-line","status":"publish","type":"post","link":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/","title":{"rendered":"How to Check Kernel Version in Linux in Command Line?"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png\" alt=\"Check Kernel Version in Linux in Command Line\" class=\"wp-image-3019\" width=\"675\" height=\"315\" srcset=\"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png 675w, https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6-300x140.png 300w, https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6-150x70.png 150w\" sizes=\"auto, (max-width: 675px) 100vw, 675px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">Linux is an exceptional operating system that offers an extensive array of features and functionalities. At its core, the kernel plays a vital role in managing system resources such as memory, processing power, and input\/output devices.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Checking the kernel version is a crucial aspect of understanding the state of the operating system and assessing its compatibility with different software applications and hardware devices.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout this article, we will explore various techniques for<strong> checking the kernel version in Linux using the command line<\/strong>. These methods are both straightforward and practical, providing valuable insights for system administration and troubleshooting purposes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understanding the Kernel in Linux<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The kernel is a software component that serves as a critical link between the hardware and software layers of a computer system. It has the essential task of managing various system resources such as memory, CPU time, input\/output devices, and file systems. Additionally, the kernel provides an interface for applications and user-level programs to interact with the underlying hardware.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the case of Linux, the kernel is an open-source software that is continually being updated and enhanced by a diverse community of developers worldwide. These updates bring forth new kernel versions, often accompanied by fresh features and advancements in system performance and security. As a result, Linux users can experience improved reliability, stability, and functionality with each new kernel release.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Checking Kernel Version Using uname Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The uname command is a useful tool for checking the kernel version in Linux. This command displays information about the operating system, including the kernel version, hostname, operating system release, and processor type.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using uname, simply open a terminal window and enter the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ uname -r<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This command will display the kernel version in use on your system. For example, if the output of the command is &#8220;5.11.0-27-generic&#8221;, this indicates that your system is running the 5.11.0 version of the Linux kernel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Finding Distribution-Specific Kernel Version<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you are using a Linux distribution such as Ubuntu or Fedora, you may find that the uname command does not provide detailed information about the kernel version. In this case, you can use distribution-specific commands to check the kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, on Ubuntu, you can use the following command to check the kernel version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ dpkg -l linux-image-\\* | grep ^ii<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This command will display a list of installed kernel images, along with their version numbers. The kernel version is included in the package name, so you can easily identify the version you are running.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On Fedora, you can use the following command to check the kernel version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rpm -q kernel<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This command will display the version number of the currently installed kernel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Checking Kernel Version with \/proc\/version<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">An alternative method for checking the kernel version in Linux is to access the \/proc\/version file. This file provides details about the kernel version and the GCC compiler version that was utilized to construct the kernel.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To view the contents of the \/proc\/version file, execute the following command within a terminal window:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cat \/proc\/version<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Executing this command will exhibit the contents of the \/proc\/version file, providing details regarding the kernel version and other pertinent information.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using ls Command to View Kernel Image<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Another method to check the kernel version in Linux is to use the ls command to view the kernel image. The kernel image is the binary file that contains the Linux kernel and is typically stored in the \/boot directory.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To view the kernel image, open a terminal window and enter the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ ls -l \/boot\/vmlinuz*<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This command will display a list of kernel images stored in the \/boot directory, along with their file sizes and modification dates. The kernel version is included in the file name, so you can easily identify the version you are running.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the lsb_release Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The lsb_release command can also be used to check the kernel version in Linux. This command displays LSB (Linux Standard Base) information about the system, including the distribution name, release, and description.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the lsb_release command, open the terminal and type the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lsb_release -a<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This will print detailed information about the system, including the kernel version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the hostnamectl Command<\/strong><\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/Untitled-design-3-1024x512-1.png\" alt=\"Using the hostnamectl Command\" class=\"wp-image-3024\" srcset=\"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/Untitled-design-3-1024x512-1.png 1024w, https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/Untitled-design-3-1024x512-1-300x150.png 300w, https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/Untitled-design-3-1024x512-1-768x384.png 768w, https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/Untitled-design-3-1024x512-1-150x75.png 150w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">The hostnamectl command is used to query and change the hostname and related settings in Linux. This command can also be used to check the kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the hostnamectl command, open the terminal and type the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>hostname<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the dmesg Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The dmesg command displays the system message buffer, which contains information about the kernel and other system events. This command can be used to check the kernel version in Linux.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the dmesg command, open the terminal and type the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dmesg | grep Linux<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This will print the kernel version along with other system information.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the Hard Info Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The hardinfo command is a graphical tool that provides detailed system information about various hardware components and software packages, including the kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the hardinfo command, open the terminal and type the following command to install the tool:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install hardinfo<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Once the installation is complete, open the hardinfo tool from the Applications menu and navigate to &#8220;Operating System&#8221; -&gt; &#8220;Kernel Modules&#8221; to view the kernel version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the System Profiler Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The system_profiler command is a command-line tool that provides detailed system information about hardware and software components, including the kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the system_profiler command, open the terminal and type the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>system_profiler SPSoftwareDataType<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This will print detailed information about the system, including the kernel version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the inxi Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The inxi command is a powerful tool that provides detailed information about the system, including the kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the inxi command, open the terminal and type the following command to install the tool:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install inxi<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Once the installation is complete, type the following command to view the kernel version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>inxi -S<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Using the neofetch Command<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The neofetch command is a tool that displays system information in the terminal, including the kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check the kernel version using the neofetch command, open the terminal and type the following command to install the tool:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install neofetch<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Once the installation is complete, type the following command to view the system information:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>neofetch<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Tips<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It is highly recommended that you consistently update your kernel with the latest versions to address any existing bugs, security concerns, and to take advantage of the newest features available. Keeping your kernel current not only ensures optimal performance and security but also provides access to the most up-to-date enhancements.<\/li>\n\n\n\n<li>When considering an upgrade to your kernel, exercise prudence and remain vigilant. While the latest kernel versions offer enticing benefits such as new capabilities and refinements, they may also pose compatibility problems with your existing hardware and software. Prior to the upgrade, take the necessary precautions such as backing up critical data and conducting thorough assessments of your hardware and software to identify any potential roadblocks.<\/li>\n\n\n\n<li>Employ a package manager to handle your kernel. The majority of Linux distributions come with a built-in package manager that simplifies the installation, updates, and removal of packages, including the kernel. By utilizing a package manager, you can guarantee that your kernel is installed and configured accurately, and upgrading or downgrading your kernel becomes a much more straightforward process.<\/li>\n\n\n\n<li>Verify compatibility with third-party software and drivers. It is imperative to ensure that third-party software and drivers are compatible with your desired kernel version. Some third-party drivers and software may not be compatible with certain kernel versions, which can lead to issues during the upgrade process or afterward. Before upgrading your kernel, thoroughly check for any compatibility problems with your existing third-party drivers or software.<\/li>\n\n\n\n<li>Participate in the Linux community. The Linux community is a beneficial resource for gaining knowledge about the kernel and resolving any problems that may arise. By joining a Linux user group or online community, you can stay current with the latest advancements and engage with other Linux users to exchange ideas and gain assistance.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Remember, the Linux kernel is a powerful and complex system, but with a little knowledge and practice, you can become comfortable working with it and get the most out of your Linux system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQ<\/strong><\/h2>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1680440382519\"><strong class=\"schema-faq-question\"><strong>What is the significance of the kernel in Linux, and why is it important to check its version?<\/strong><\/strong> <p class=\"schema-faq-answer\">The kernel is a fundamental component of the Linux operating system that serves as an interface between hardware and software, managing system resources and providing a platform for applications to operate. Checking the kernel version can provide valuable information about the stability, security, and compatibility of the system.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1680440396911\"><strong class=\"schema-faq-question\"><strong>Is it possible to check the kernel version in Linux using graphical user interface (GUI) tools?<\/strong><\/strong> <p class=\"schema-faq-answer\">Yes, various GUI tools are available in Linux that can be used to check the kernel version. For instance, in Ubuntu, users can navigate to System Settings and select the Details option to view the kernel version. Nevertheless, using the command line is typically quicker and more convenient, particularly for experienced users.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1680440415516\"><strong class=\"schema-faq-question\"><strong>What distinguishes the \/proc\/sys\/kernel\/osrelease file from the hostnamectl command for checking the kernel version?<\/strong><\/strong> <p class=\"schema-faq-answer\">The \/proc\/sys\/kernel\/osrelease file is a system file that holds the kernel version information, including the major and minor version numbers and the patch level. The hostnamectl command, on the other hand, is a utility tool that can be used to display various system details, including the kernel version. Although both methods provide the same information, the hostnamectl command also shows additional system information, such as the hostname and operating system version.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1680440433463\"><strong class=\"schema-faq-question\"><strong>How can I determine if my Linux system is running a stable or development version of the kernel?<\/strong><\/strong> <p class=\"schema-faq-answer\">In general, stable kernel versions have an even number for the second digit of the version number, while development versions have an odd number. For example, version 5.2 is a stable version, while version 5.3 is a development version. However, it is essential to check official release notes and documentation for more detailed information as this may not always be the case.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1680440452410\"><strong class=\"schema-faq-question\"><strong>Is it possible to update the kernel version in Linux using the command line?<\/strong><\/strong> <p class=\"schema-faq-answer\">Yes, it is possible to update the kernel version in Linux using the command line. However, this process can be complicated and risky, especially for novice users. It is advisable to follow official documentation and guides meticulously and backup essential data before attempting to update the kernel.<\/p> <\/div> <\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In conclusion, the kernel version is an important parameter to keep track of when working with Linux systems. It can help you troubleshoot issues, ensure compatibility with software packages, and stay up to date with the latest features and improvements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this article, we have shown you several methods for checking the kernel version in Linux using the command line. These methods are easy to use and can provide valuable information about your system&#8217;s kernel version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are new to Linux or are not comfortable using the command line, there are also graphical tools available for checking the kernel version. These tools are typically included with your Linux distribution and can provide a user-friendly interface for viewing system information.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux is an exceptional operating system that offers an extensive array of features and functionalities. At its core, the kernel plays a vital role in managing system resources such as memory, processing power, and input\/output &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Check Kernel Version in Linux in Command Line?\" class=\"read-more button\" href=\"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#more-2928\" aria-label=\"More on How to Check Kernel Version in Linux in Command Line?\">Read more<\/a><\/p>\n","protected":false},"author":7,"featured_media":3019,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[51],"tags":[],"class_list":["post-2928","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"featured_image_src":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png","author_info":{"display_name":"Tithi Mukherjee","author_link":"https:\/\/tryrdp.com\/blog\/author\/tithi\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Check Kernel Version in Linux in Command Line?<\/title>\n<meta name=\"description\" content=\"Learn how to easily check the kernel version in Linux using the command line. This step-by-step guide will help you find the information you need in just a few simple steps.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check Kernel Version in Linux in Command Line?\" \/>\n<meta property=\"og:description\" content=\"Learn how to easily check the kernel version in Linux using the command line. This step-by-step guide will help you find the information you need in just a few simple steps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/\" \/>\n<meta property=\"og:site_name\" content=\"TryRDP Blog\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/profile.php?id=100003803338568\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-27T09:37:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-24T06:26:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png\" \/>\n\t<meta property=\"og:image:width\" content=\"675\" \/>\n\t<meta property=\"og:image:height\" content=\"315\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Tithi Mukherjee\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tithi Mukherjee\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/\"},\"author\":{\"name\":\"Tithi Mukherjee\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#\\\/schema\\\/person\\\/6987ffd35a3b8930dfc6f1ce18128881\"},\"headline\":\"How to Check Kernel Version in Linux in Command Line?\",\"datePublished\":\"2023-04-27T09:37:56+00:00\",\"dateModified\":\"2026-05-24T06:26:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/\"},\"wordCount\":1870,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/pasted-image-0-6.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#respond\"]}]},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/\",\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/\",\"name\":\"How to Check Kernel Version in Linux in Command Line?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/pasted-image-0-6.png\",\"datePublished\":\"2023-04-27T09:37:56+00:00\",\"dateModified\":\"2026-05-24T06:26:37+00:00\",\"description\":\"Learn how to easily check the kernel version in Linux using the command line. This step-by-step guide will help you find the information you need in just a few simple steps.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440382519\"},{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440396911\"},{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440415516\"},{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440433463\"},{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440452410\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#primaryimage\",\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/pasted-image-0-6.png\",\"contentUrl\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/pasted-image-0-6.png\",\"width\":675,\"height\":315,\"caption\":\"Check Kernel Version in Linux in Command Line\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Check Kernel Version in Linux in Command Line?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/\",\"name\":\"TryRDP Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#organization\",\"name\":\"TryRDP Blog\",\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/cropped-logolight-1.png\",\"contentUrl\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/cropped-logolight-1.png\",\"width\":300,\"height\":60,\"caption\":\"TryRDP Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/#\\\/schema\\\/person\\\/6987ffd35a3b8930dfc6f1ce18128881\",\"name\":\"Tithi Mukherjee\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23f9430b19f9ee3482116460ac7e06397667bf8203e47007bd2879755eda318c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23f9430b19f9ee3482116460ac7e06397667bf8203e47007bd2879755eda318c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23f9430b19f9ee3482116460ac7e06397667bf8203e47007bd2879755eda318c?s=96&d=mm&r=g\",\"caption\":\"Tithi Mukherjee\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=100003803338568\",\"https:\\\/\\\/www.instagram.com\\\/tithiimukherjee_\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/sulagna-mukherjee-tithi\\\/\",\"https:\\\/\\\/www.youtube.com\\\/@NoobieTechsTithi_mukherjee\"]},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440382519\",\"position\":1,\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440382519\",\"name\":\"What is the significance of the kernel in Linux, and why is it important to check its version?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The kernel is a fundamental component of the Linux operating system that serves as an interface between hardware and software, managing system resources and providing a platform for applications to operate. Checking the kernel version can provide valuable information about the stability, security, and compatibility of the system.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440396911\",\"position\":2,\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440396911\",\"name\":\"Is it possible to check the kernel version in Linux using graphical user interface (GUI) tools?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Yes, various GUI tools are available in Linux that can be used to check the kernel version. For instance, in Ubuntu, users can navigate to System Settings and select the Details option to view the kernel version. Nevertheless, using the command line is typically quicker and more convenient, particularly for experienced users.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440415516\",\"position\":3,\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440415516\",\"name\":\"What distinguishes the \\\/proc\\\/sys\\\/kernel\\\/osrelease file from the hostnamectl command for checking the kernel version?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The \\\/proc\\\/sys\\\/kernel\\\/osrelease file is a system file that holds the kernel version information, including the major and minor version numbers and the patch level. The hostnamectl command, on the other hand, is a utility tool that can be used to display various system details, including the kernel version. Although both methods provide the same information, the hostnamectl command also shows additional system information, such as the hostname and operating system version.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440433463\",\"position\":4,\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440433463\",\"name\":\"How can I determine if my Linux system is running a stable or development version of the kernel?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"In general, stable kernel versions have an even number for the second digit of the version number, while development versions have an odd number. For example, version 5.2 is a stable version, while version 5.3 is a development version. However, it is essential to check official release notes and documentation for more detailed information as this may not always be the case.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440452410\",\"position\":5,\"url\":\"https:\\\/\\\/tryrdp.com\\\/blog\\\/check-kernel-version-in-linux-in-command-line\\\/#faq-question-1680440452410\",\"name\":\"Is it possible to update the kernel version in Linux using the command line?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Yes, it is possible to update the kernel version in Linux using the command line. However, this process can be complicated and risky, especially for novice users. It is advisable to follow official documentation and guides meticulously and backup essential data before attempting to update the kernel.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check Kernel Version in Linux in Command Line?","description":"Learn how to easily check the kernel version in Linux using the command line. This step-by-step guide will help you find the information you need in just a few simple steps.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/","og_locale":"en_US","og_type":"article","og_title":"How to Check Kernel Version in Linux in Command Line?","og_description":"Learn how to easily check the kernel version in Linux using the command line. This step-by-step guide will help you find the information you need in just a few simple steps.","og_url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/","og_site_name":"TryRDP Blog","article_author":"https:\/\/www.facebook.com\/profile.php?id=100003803338568","article_published_time":"2023-04-27T09:37:56+00:00","article_modified_time":"2026-05-24T06:26:37+00:00","og_image":[{"width":675,"height":315,"url":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png","type":"image\/png"}],"author":"Tithi Mukherjee","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tithi Mukherjee","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#article","isPartOf":{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/"},"author":{"name":"Tithi Mukherjee","@id":"https:\/\/tryrdp.com\/blog\/#\/schema\/person\/6987ffd35a3b8930dfc6f1ce18128881"},"headline":"How to Check Kernel Version in Linux in Command Line?","datePublished":"2023-04-27T09:37:56+00:00","dateModified":"2026-05-24T06:26:37+00:00","mainEntityOfPage":{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/"},"wordCount":1870,"commentCount":0,"publisher":{"@id":"https:\/\/tryrdp.com\/blog\/#organization"},"image":{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/","url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/","name":"How to Check Kernel Version in Linux in Command Line?","isPartOf":{"@id":"https:\/\/tryrdp.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#primaryimage"},"image":{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png","datePublished":"2023-04-27T09:37:56+00:00","dateModified":"2026-05-24T06:26:37+00:00","description":"Learn how to easily check the kernel version in Linux using the command line. This step-by-step guide will help you find the information you need in just a few simple steps.","breadcrumb":{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#breadcrumb"},"mainEntity":[{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440382519"},{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440396911"},{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440415516"},{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440433463"},{"@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440452410"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#primaryimage","url":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png","contentUrl":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2023\/04\/pasted-image-0-6.png","width":675,"height":315,"caption":"Check Kernel Version in Linux in Command Line"},{"@type":"BreadcrumbList","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tryrdp.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Check Kernel Version in Linux in Command Line?"}]},{"@type":"WebSite","@id":"https:\/\/tryrdp.com\/blog\/#website","url":"https:\/\/tryrdp.com\/blog\/","name":"TryRDP Blog","description":"","publisher":{"@id":"https:\/\/tryrdp.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tryrdp.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tryrdp.com\/blog\/#organization","name":"TryRDP Blog","url":"https:\/\/tryrdp.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tryrdp.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2021\/08\/cropped-logolight-1.png","contentUrl":"https:\/\/tryrdp.com\/blog\/wp-content\/uploads\/2021\/08\/cropped-logolight-1.png","width":300,"height":60,"caption":"TryRDP Blog"},"image":{"@id":"https:\/\/tryrdp.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/tryrdp.com\/blog\/#\/schema\/person\/6987ffd35a3b8930dfc6f1ce18128881","name":"Tithi Mukherjee","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/23f9430b19f9ee3482116460ac7e06397667bf8203e47007bd2879755eda318c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/23f9430b19f9ee3482116460ac7e06397667bf8203e47007bd2879755eda318c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23f9430b19f9ee3482116460ac7e06397667bf8203e47007bd2879755eda318c?s=96&d=mm&r=g","caption":"Tithi Mukherjee"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=100003803338568","https:\/\/www.instagram.com\/tithiimukherjee_","https:\/\/www.linkedin.com\/in\/sulagna-mukherjee-tithi\/","https:\/\/www.youtube.com\/@NoobieTechsTithi_mukherjee"]},{"@type":"Question","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440382519","position":1,"url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440382519","name":"What is the significance of the kernel in Linux, and why is it important to check its version?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"The kernel is a fundamental component of the Linux operating system that serves as an interface between hardware and software, managing system resources and providing a platform for applications to operate. Checking the kernel version can provide valuable information about the stability, security, and compatibility of the system.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440396911","position":2,"url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440396911","name":"Is it possible to check the kernel version in Linux using graphical user interface (GUI) tools?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Yes, various GUI tools are available in Linux that can be used to check the kernel version. For instance, in Ubuntu, users can navigate to System Settings and select the Details option to view the kernel version. Nevertheless, using the command line is typically quicker and more convenient, particularly for experienced users.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440415516","position":3,"url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440415516","name":"What distinguishes the \/proc\/sys\/kernel\/osrelease file from the hostnamectl command for checking the kernel version?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"The \/proc\/sys\/kernel\/osrelease file is a system file that holds the kernel version information, including the major and minor version numbers and the patch level. The hostnamectl command, on the other hand, is a utility tool that can be used to display various system details, including the kernel version. Although both methods provide the same information, the hostnamectl command also shows additional system information, such as the hostname and operating system version.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440433463","position":4,"url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440433463","name":"How can I determine if my Linux system is running a stable or development version of the kernel?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"In general, stable kernel versions have an even number for the second digit of the version number, while development versions have an odd number. For example, version 5.2 is a stable version, while version 5.3 is a development version. However, it is essential to check official release notes and documentation for more detailed information as this may not always be the case.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440452410","position":5,"url":"https:\/\/tryrdp.com\/blog\/check-kernel-version-in-linux-in-command-line\/#faq-question-1680440452410","name":"Is it possible to update the kernel version in Linux using the command line?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Yes, it is possible to update the kernel version in Linux using the command line. However, this process can be complicated and risky, especially for novice users. It is advisable to follow official documentation and guides meticulously and backup essential data before attempting to update the kernel.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/posts\/2928","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/comments?post=2928"}],"version-history":[{"count":1,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/posts\/2928\/revisions"}],"predecessor-version":[{"id":4170,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/posts\/2928\/revisions\/4170"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/media\/3019"}],"wp:attachment":[{"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/media?parent=2928"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/categories?post=2928"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tryrdp.com\/blog\/wp-json\/wp\/v2\/tags?post=2928"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}