Skip to main content
Engineering LibreTexts

06-A.2: Linux Kernel

  • Page ID
    32773
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    The Linux Kernel

    Linux is the world’s largest and most pervasive open source software project in the history of computing. The Linux kernel, developed by contributors worldwide, is a free and open-source, monolithic, modular (i.e., it supports the insertion and removal at runtime of loadable kernel objects), Unix-like operating system kernel.

    It is deployed on a wide variety of computing systems, such as embedded devices, mobile devices (including its use in the Android operating system), personal computers, servers, mainframes, and supercomputers.

    The Linux kernel was conceived and created in 1991 by Linus Torvalds for his personal computer and with no cross-platform intentions, but has since ported to a wide range of computer architectures. Notwithstanding this, the Linux kernel is highly optimized with the use of architecture specific instructions (ISA), therefore portability isn't as easy as it is with other kernels (e.g., with NetBSD, that as of 2019 supports 59 hardware platforms).

    Linux was soon adopted as the kernel for the GNU Operating System, which was created as an open source and free software, and based on UNIX as a by-product of the fallout of the Unix wars. Since then it has spawned a plethora of operating system distributions, commonly also called Linux, although, formally, the term "Linux" refers only to the kernel.

    The uname Command

    The uname command displays the information about the system.

    Syntax:

    uname [ OPTION ]

    Below are examples of the uname command with the -r and -a options. The output of both commands show the kernel version, with the -a (all) option showing much more details.

    pbmac@pbmac-server $ uname -r
    4.15.0-91-generic
    pbmac@pbmac-server $ uname -a
    Linux pbmac-server 4.15.0-91-generic #92-Ubuntu SMP Fri Feb 28 11:09:48 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
    

    What do the other digits mean here? Here is an explanation:

    • 4 – Kernel version
    • 15 – Major revision
    • 0 – Minor revision
    • 91 – Bug fix
    • generic – Distribution-specific string. For Ubuntu, it means I’m using the desktop version. For Ubuntu server edition, it would be ‘server.’

    There is a LOT of other information in this output:

    • Linux – Kernel name. If you run the same command on BSD or macOS, the result will be different.
    • pbmac-server – Hostname.
    • 4.15.0-91-generic – Kernel release (as we saw above).
    • #92-Ubuntu SMP Fri Feb 28 11:09:48 UTC 2020 – This means that Ubuntu has compiled 4.15.0-91-generic 92 times. A timestamp for the last compilation is also there.
    • x86_64 – Machine architecture.
    • x86_64 – Processor architecture.
    • x86_64 – Operating system architecture (you can run a 32-bit OS on a 64-bit processor).
    • GNU/Linux – Operating system (and no, it won’t show the distribution name).

    Linux kernels have different support levels depending on version. E.g., version 5.4 released in November 2019, was declared to have Long-Term Support (LTS). It has 6 years of support that way.

    Version Original release date Current version Maintainer EOL
    5.9 11 October 2020 5.9.16 Greg Kroah-Hartman December 2020
    5.1 13 December 2020 5.10.128 Greg Kroah-Hartman & Sasha Levin December 2026
    5.11 14 February 2021 5.11.22 Greg Kroah-Hartman May 2021
    5.12 25 April 2021 5.12.19 Greg Kroah-Hartman July 2021
    5.13 27 June 2021 5.13.19 Greg Kroah-Hartman & Sasha Levin September 2021
    5.14 29 August 2021 5.14.21 Greg Kroah-Hartman November 2021
    5.15 31 October 2021 5.15.52 Greg Kroah-Hartman & Sasha Levin October 2023
    5.16 9 January 2022 5.16.20 Greg Kroah-Hartman & Sasha Levin April 2022
    5.17 20 March 2022 5.17.15 Greg Kroah-Hartman & Sasha Levin June 2022
    5.18 22 May 2022 5.18.11  12 July 2022 Greg Kroah-Hartman & Sasha Levin  
    5.19-rc6 10 July 2022 5.19-rc6  10 July 2022 Linus Torvalds  

     The table is from Wikipedia, and shows the 5.x.y releases. The Current Version column shows the present version of the version specified in the left most column. Several of the releases show an EOL in the far right column. This stands for End of Life, meaning that particular version is no longer supported.

    Adapted from:
    "Linux kernel" by Multiple ContributorsWikipedia is licensed under CC BY-SA 3.0
    "Linux kernel version history" by Multiple ContributorsWikipedia is licensed under CC BY-SA 3.0
    "3 Ways to Check Linux Kernel Version in Command Line" by Abhishek Prakash, It's FOSS is licensed under CC BY-SA 4.0


    06-A.2: Linux Kernel is shared under a CC BY-SA 4.0 license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?