如何查看RHEL (Red Hat Enterprise Linux) 的版本
时间:2019-11-20 08:53:33 来源:igfitidea点击:
RHEL (Red Hat Enterprise Linux) 服务器中,如何查看系统内核版本?
如何查看CentOS 的版本
如何查看RHEL/Redhat/CentOS的版本
执行以下cat命令:
cat /etc/redhat-release
输出示例:
Red Hat Enterprise Linux Server release 7.5 (Maipo)
查看RHEL内核版本:
uname -r uname -mrs
如何使用hostnamectl查看RedHat Enterprise Linux版本
只需运行以下hostnamectl命令:
hostnamectl
输出示例:
Static hostname: theitroad Icon name: computer-vm Chassis: vm Machine ID: 0e38ae5f500045f4b8c721a3e630c01a Boot ID: 29670a3f76ff405699a2965ce249d621 Virtualization: vmware Operating System: CentOS Linux 7 (Core) CPE OS Name: cpe:/o:centos:centos:7 Kernel: Linux 3.10.0-1127.el7.x86_64 Architecture: x86-64
查看RHEL版本的其他命令
可以使用rpm命令:
rpm --query redhat-release-server
输出示例:
redhat-release-server-7.5-8.el7.x86_64
使用lsb_release命令
安装redhat-lsb-core软件包:
sudo yum install redhat-lsb-core ## now get RHEL version ## lsb_release -d lsb_release -a