Linux下如何查看版本信息

Linux下如何查看版本信息, 包括位数、版本信息以及CPU内核信息、CPU具体型号等等,整个CPU信息一目了然。

1
2
3
4
5
6
uname -a   #(Linux查看版本当前操作系统内核信息)
cat /proc/version #(Linux查看当前操作系统版本信息)
cat /etc/issue 或cat /etc/redhat-release #(Linux查看版本当前操作系统发行版信息)
cat /proc/cpuinfo #(Linux查看cpu相关信息,包括型号、主频、内核信息等)
getconf LONG_BIT #(Linux查看版本说明当前CPU运行在32bit模式下, 但不代表CPU不支持64bit)
lsb_release -a x #(查看linux系统内核信息)

查看linux系统内核信息,输入命令 lsb_release -a,如果提示不存在,可以安装一下lsb_release

1
yum install redhat-lsb

安装过程yes,完成安装,输入lsb_release -a,即输出系统版本信息

1
2
3
4
5
6
[root@localhost ~]# lsb_release -a x
LSB Version::core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID:RedHatEnterpriseServer
Description:Red Hat Enterprise Linux Server release 7.6 (Maipo)
Release:7.6
Codename:Maipo
--------------本文结束 感谢您的阅读--------------