查看发行版
通常在 /etc
目录中会有有一些名为*-release
的系统文件
使用ls -l
查看下
ls -l /etc/*-release
-rw-r--r-- 1 root root 27 Mar 28 18:25 /etc/centos-release
lrwxrwxrwx 1 root root 14 Apr 15 10:12 /etc/redhat-release -> centos-release
lrwxrwxrwx 1 root root 14 Apr 15 10:12 /etc/system-release -> centos-release
我们cat
查看下centos-release
cat /etc/centos-release
CentOS release 6.9 (Final)
这里我们就看到了当前的发行版
以及对应的型号
还有一个是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="7"
本人操作的是Centos6
的机器,貌似没看到os-release
文件,倒是在Centos7
的机子是看到了,上面的输出是我从Centos7
拷来的
查看内核版本,使用uname
命令
uname -a
Linux localhost.localdomain 2.6.32-696.1.1.el6.x86_64 #1 SMP Tue Apr 11 17:13:24 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux