查看CentOS7的版本信息命令
1. 版本号
CentOS的版本号信息一般存放在配置文件当中,在CentOS中,与其版本相关的配置文件中都有centos关键字,该文件一般存放在/etc/目录下,所以说我们可以直接在该文件夹下搜索相关的文件。
1 |
ll /etc/*centos* |
其中存放其版本配置信息的文件为“centos-release”,就是“CentOS的发行版”,可以在这里查看CentOS相应的版本信息。
查看CentOS的版本号:
1 2 |
#cat /etc/centos-release CentOS Linux release 7.4.1708 (Core) |
其他方法还有:
1 2 |
# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
[root@]# 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" |
2. 内核版本
查询操作系统内核版本信息为:
1 2 |
# uname -r 3.10.0-693.2.2.el7.x86_64 |
3. 操作系统位数
1 2 |
# getconf LONG_BIT 64 |