如何查看CentOS的版本号

时间:2019-08-20 17:58:14  来源:igfitidea点击:

如何在CentOS 7系列上找到CentOS Linux realase版本。
在以前的CentOS版本中,有一个文件“/etc/issue”显示了CentOS Linux版本的详细信息。

现在查看CentOS7 Linux版本,使用redhat-release文件。这也适用于Red Hat Enterprise Linux 7.

[root@localhost ~]# ls -l /etc/issue
-rw-r--r--. 1 root root 23 Jul  4 07:00 /etc/issue
[root@localhost ~]# 
[root@localhost ~]# cat /etc/issue
\S
Kernel \r on an \m

[root@localhost ~]# 
[root@localhost ~]# cat /etc/redhat-release 
CentOS Linux release 7.8.2003 (Core)
[root@localhost ~]# 
[root@localhost ~]#