其中一个比较通用的方法:使用 ls /etc/*release命令,找到当前系统的release versions,之后使用 cat /etc/xxx-release方法进行查看。

ubuntu、centOS

1. 查看系统distribution信息

lsb_release -a

该命令的作用为print distribution-specific information,ubuntu、centOS都可使用。

eg:
各Linux系统版本信息查看方法_版本信息
各Linux系统版本信息查看方法_其他_02

2. 查看内核版本

uname -r #查看内核版本
uname -a #查看内核相关的所有信息
cat /proc/version

3. CentOS 查看版本信息

可以使用上述的 lsb_release -a命令,也可以使用下面的命令:

cat /etc/centos-release

也可以使用cat /etc/redhat-release命令获取版本信息

执行结果为:CentOS Linux release 7.6.1810 (Core)
各Linux系统版本信息查看方法_ubuntu_03

Redhat系统

  • hostnamectl
  • cat /etc/redhat-release
    • cat /etc/redhat-release
      各Linux系统版本信息查看方法_linux_04