一、linux centos 如何查看操作系统版本信息?

一、操作系统版本说明:

CentOS release 6.6(64bit)

otp_src_20.3.tar.gz

rabbitmq-server-generic-unix-3.6.10.tar.xz

本文介绍常用的四种查看linux下查看系统版本信息的方法:

一、uname -a


[root@es03 sbin]# uname -a

Linux es03 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux


二、cat /proc/version


[root@es03 sbin]# cat /proc/version

Linux version 2.6.32-504.el6.x86_64 ([email protected]) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) ) #1 SMP Wed Oct 15 04:27:16 UTC 2014


一和二显示结果都是linux内核的版本号,只是方法二中多了redhat信息

三、cat /etc/issue


[root@es03 sbin]# cat /etc/issue

CentOS release 6.6 (Final)

Kernel \r on an \m


四、cat /etc/redhat-release


[root@es03 sbin]# cat /etc/redhat-release

CentOS release 6.6 (Final)


三和四显示的都是系统安装时centos默认的发行版本信息,通常安装好系统后文件内容不会发生变化。

你可能感兴趣的:(一、linux centos 如何查看操作系统版本信息?)