验证 Linux 服务器上的内核版本

在本文和相关视频中,我们将讨论如何在 Ubuntu 和 CentOS Linux 中检查内核版本。 以下命令适用于所有 Linux 发行版,例如 Red Hat、CentOS、Debian 和 Ubuntu。 它也适用于其他类 UNIX 操作系统,例如 HPUX、FreeBSD、OpenBSD、Solaris 等。使用以下命令检查您的服务器当前运行的 Linux 内核版本。

这是从命令行运行的代码。

uname -r
您应该会收到类似于以下内容的结果。

2.6.32-431.11.2.el6.x86_64

上面的内核版本输出可以用以下键解释:
2.6.32-431.11.2.el6.x86_64
2 = 主内核版本
6 = 主要修订
32 = 小修订
431.11.2.el6 = 次要修复/修订细节

有关更多信息和选项,我们可以查看 uname 的手册页(或简称手册页)。 手册页提供了以下附加信息。

NAME: uname - print system information
SYNOPSIS: uname [OPTION]...
DESCRIPTION: Print certain system information. With no OPTION, same as -s.
-a, --all
print all information, in the following order, except omit -p and -i if unknown:
-s, --kernel-name
print the kernel name
-n, --nodename
print the network node hostname
-r, --kernel-release
print the kernel release
-v, --kernel-version
print the kernel version
-m, --machine
print the machine hardware name
-p, --processor
print the processor type (non-portable)
-i, --hardware-platform
print the hardware platform (non-portable)
-o, --operating-system
print the operating system
--help display this help and exit
--version
output version information and exit
Full documentation at: <https://www.gnu.org/software/coreutils/uname>
or available locally via: info '(coreutils) uname invocation'

如果您对如何获取内核版本或有关服务器的任何其他信息有任何想法或疑问,请咨询您的网络托管支持团队。 如果您是 Liquid Web 客户,只需发送电子邮件至 [email protected] 与我们联系,拨打 800-580-4985 联系我们,或打开 聊天 与我们一起与我们的一位 3 级支持管理员交谈。 如果您不是客户,请立即联系解决方案顾问!

贾斯汀·帕尔默创作的视频。