1 Centos查看系统版本和Linux内核版本

查看系统版本
首先安装yum install -y redhat-lsb
然后输入cat /etc/redhat-release


centos查看系统版本命令(centos查看内核系统版本)(1)

查看Linux内核版本
输入命令:
cat /proc/version


centos查看系统版本命令(centos查看内核系统版本)(2)

2 Ubuntu查看系统版本和Linux内核版本

查看系统版本
切换到root用户,su root
然后输入命令:
lsb_release -a


centos查看系统版本命令(centos查看内核系统版本)(3)

查看Linux内核版本,这个命令和centos中的命令一样
cat /proc/version


centos查看系统版本命令(centos查看内核系统版本)(4)