Linux下查看系统版本信息

来源:互联网 发布:js获取frame 编辑:程序博客网 时间:2024/06/07 20:54

       在Linux环境下做开发的同学经常会遇到查看系统版本的问题,包括查看Linux内核版本号,系统的类型等。虽然很简单,但是时隔三日之后已经不记得是什么命令了,即使有印象也难免很清晰的知道命令的具体用法。索性就记录下来,方便日后再次碰到时快速查阅。


一、查看Linux内核版本信息

方法1、cat /proc/version

      [root@localhost ~]# cat /proc/version 
      Linux version 3.10.0-514.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC) ) #1 SMP Tue Nov 22 16:42:41 UTC  2016
      [root@localhost ~]#

方法2、uname -a

      [root@localhost ~]# uname -a
      Linux localhost.localdomain 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
      [root@localhost ~]#


二、查看Linux系统版本信息

方法1、lsb_release -a 前提是lsb_release已正确安装

       这个命令适用于所有的Linux发行版,包括Redhat、SuSE、Debian等版本,即可列出所有版本信息

       [root@localhost ~]# lsb_release -a
       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: CentOS
       Description: CentOS Linux release 7.3.1611 (Core)
       Release: 7.3.1611

       Codename: Core

       [root@localhost ~]#

方法2、cat /etc/redhat-release

       这种方法只适合Redhat系列的Linux版本


方法3、cat /etc/issue

       此命令也适用于所有的Linux发行版本

      [root@localhost ~]# cat /etc/issue
       \S

       Kernel \r on an \m

      [root@localhost ~]#







原创粉丝点击