在 Linux 中检查内核版本
内核
是 Linux 操作系统的一个组成部分,它连接计算机硬件和软件进程。Linux 内核的主要职责是资源管理,例如内存、CPU、驱动程序和系统调用。
内核管理内核空间中每个文件的内存和记录,内核空间是内核的工作区。Linux 内核还负责系统安全以及软件和硬件组件之间的通信。
Bash 有很多命令可以找到 Linux 内核,例如 uname -r
、cat /proc/version
和 hostnamectl | grep 内核
。
在 Linux 中使用 uname -r
命令检查内核版本
下面的命令将打印内核名称、内核版本和其他系统信息。
uname -r
输出:
5.4.0-54-generic
输出说明:
$$
5 \to Kernel \ Version\
4 \to Major \ Revision\
0 \to Minor \ Revision\
54 \ \to Patch \ Number\
generic \to Addtional \ information \ of \ Kernel
$$
在 Linux 中使用 Cat
命令检查内核版本
下面的命令将打印内核名称、内核版本、Linux 版本、时间和日期。
cat /proc/version
输出:
Linux version 5.4.0-54-generic (buildd@lcy01-amd64-024) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #60-Ubuntu SMP Fri Nov 6 10:37:59 UTC 2020
在 Linux 中使用 hostname
命令检查内核版本
下面的命令还将打印内核名称、内核版本和其他系统信息。
hostnamectl | grep Kernel
输出:
Kernel: Linux 5.4.0-54-generic
Husnain is a professional Software Engineer and a researcher who loves to learn, build, write, and teach. Having worked various jobs in the IT industry, he especially enjoys finding ways to express complex ideas in simple ways through his content. In his free time, Husnain unwinds by thinking about tech fiction to solve problems around him.
LinkedIn