myfreax

如何检查CentOS 版本

首次登录CentOS计算机时或者在进行任何工作之前

3 min read
By myfreax
如何检查CentOS 版本
如何检查CentOS 版本

首次登录CentOS计算机时或者在进行任何工作之前,您可能需要检查系统正在运行的CentOS版本。

在本教程中,我们将向你展示几个不同的命令说明如何检查CentOS系统正在运行的版本。

在撰写本文时,CentOS Linux有三个主要的活动发行分支,CentOS 6,CentOS 7和CentOS 8。

lsb_release 命令查看CentOS 版本

lsb_release命令显示Linux发行版的Linux标准库信息LSB。检查CentOS版本的首选方法是运行lsb_release命令。

无论您运行的是哪种桌面环境或CentOS版本,lsb_release命令都可以使用。要使用lsb_release命令查看CentOS版本号。

请使用Ctrl+Alt+T快捷键或单击终端图标打开终端。然后运行命令lsb_release -a命令打印CentOS版本号。

lsb_release -a

CentOS版本将显示在Description行。从上面的输出可以看到,正在使用CentOS Linux版本7.5.1804。

7是CentOS的主要分支。7.5是CentOS 7的最新次要版本。1804是次要版本的日期代码,1804表示2018年4月。该数字用于指示发布的时间。

如果终端打印消息bash: lsb_release: command not found...,表示CentOS系统未安装软件包redhat-lsb-core

可以使用CentOS的软件包管理器yum安装redhat-lsb-core。运行命令sudo yum install redhat-lsb-core

sudo yum install redhat-lsb-core

rpm 命令检查CentOS版本

rpm是红帽Red Hat系统的软件包管理器,在基于RedHat的Linux发行版都可用,例如CentOS和Fedora。

您可以使用rpm命令查询软件包centos-release的信息,centos-release软件的名称包含CentOS版本。

rpm --query centos-release
centos-release-7-5.1804.4.el7.centos.x86_64

/etc/centos-release文件查看CentOS 版本

/etc/centos-release文件由软件包centos-release提供。要查看CentOS版本号,请运行命令cat /etc/centos-release

cat /etc/centos-release
CentOS Linux release 7.5.1804 (Core)

/etc/os-release文件检查CentOS 版本

/etc/os-release是一个包含操作系统标识数据的文件,只能在运行Systemd版本的CentOS才可以找到此文件。

也就是说在CentOS 7或更高版本时,此方法才有效。要查看CentOS的版本请运行命令cat /etc/os-release

cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="

hostnamectl 命令查看CentOS版本

hostnamectl命令是一个允许您设置主机名的命令,但您也可以使用它来查看CentOS版本号。

hostnamectl
   Static hostname: localhost.localdomain
         Icon name: computer-vm
           Chassis: vm
        Machine ID: 2849f743fbe74706abaa6cb8b2ae5377
           Boot ID: 8259a43c6265465884920ac6d762ed5e
    Virtualization: kvm
  Operating System: CentOS Linux 7 (Core)
       CPE OS Name: cpe:/o:centos:centos:7
            Kernel: Linux 3.10.0-862.9.1.el7.x86_64
      Architecture: x86-64

结论

在本教程中,我们将向你展示几个不同的命令说明如何检查CentOS系统正在运行的版本。

CentOS版本的更多信息,请访问 Wiki CentOS版本页面。如有任何疑问,请随时发表评论。

Related Articles