如何确定RHEL(红帽企业Linux)版本?
时间:2020-01-09 14:16:39 来源:igfitidea点击:
如何确定RHEL版本?
如何从putty.exe创建的ssh会话中找出RHEL内核版本?
简介为企业客户创建的Red Hat Enterprise Linux操作系统。
由于长期的支持,稳定性和高质量的开源软件,它在企业用户和系统管理员中非常受欢迎。
该页面显示了如何从命令行中查找RHEL版本。
如何确定RHEL版本?
要显示Red Hat Enterprise Linux版本,请使用以下任一命令/方法:
- 要确定RHEL版本,请执行:
cat/etc/redhat-release
- 执行命令以找到RHEL版本:
more/etc/issue
- 使用命令行显示RHEL版本,符文:
less/etc/os-release
- RHEL 7.x或更高版本的用户可以使用hostnamectl命令获取RHEL版本
让我们详细查看所有命令。
如何检查RHEL/Redhat版本
执行以下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-rhel8 Icon name: computer-vm Chassis: vm Machine ID: 1a790a3f931c4936a2cb8dba207d19aa Boot ID: 58ebfde48864425ea754814b4ac54432 Virtualization: kvm Operating System: Red Hat Enterprise Linux 8.0 Beta (Ootpa) CPE OS Name: cpe:/o:redhat:enterprise_linux:8.0:beta Kernel: Linux 4.18.0-32.el8.x86_64 Architecture: x86-64
其他命令找出RHEL版本
可以使用rpm命令:
rpm --query redhat-release-server
输出示例:
redhat-release-server-7.5-8.el7.x86_64
另一种选择是运行lsb_release命令。
但是,解决方法:您需要使用yum命令安装名为redhat-lsb-core的软件包,如下所示
sudo yum install redhat-lsb-core ## now get RHEL version ## lsb_release -d lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch Distributor ID: RedHatEnterprise Description: Red Hat Enterprise Linux release 8.0 Beta (Ootpa) Release: 8.0 Codename: Ootpa