确定Linux版本

确定Linux版本

如何通过查看此提取来确定 RHEL 版本,我只能知道它是 el7 中的 RHEL7,但确切的版本是什么?

Command: /bin/uname -a
====================================================
Linux xxxxxxxxx 3.10.0-957.12.2.el7.x86_64 #1 SMP Fri Apr 19 21:09:07 
UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

答案1

在Fedora/RHEL/CentOS系列中,您可以使用:

cat /etc/*-release

这会给你确切的版本。

作为 root,您还可以安装redhat-lsb-core和使用:

lsb_release -a

相关内容