查看Linux系统版本信息

一、查看Linux内核版本命令(2种方法):

1、cat /proc/version 2、uname -a 二、查看Linux系统版本的命令(3种方法): 1、lsb_release -a,即可列出所有版本信息: 这个命令适用于所有的Linux发行版,包括RedHat、SUSE、Debian…等发行版。 (但有的系统没有安装lsb_release命令,后附:lsb_release命令安装) 2、cat /etc/redhat-release,这种方法只适合Redhat系的Linux: 3、cat /etc/issue 经测试不适合centos7的,找到其他不适合的再补充。

附:lsb_release命令安装 1、查找哪个源包含这个命令 yum provides */lsb_release
2、从上面的输出可以看到redhat-lsb-core-4.1-27.el7.centos.1.x86_64这个package包含这个命令,那就安装这个包。 [root@localhost ~]# yum install -y redhat-lsb-core-4.1-27.el7.centos.1.x86_64 3、测试: