zoukankan      html  css  js  c++  java
  • Linux学习总结(十一)—— Linux常用命令:版本信息查看(RedHat、CentOS、Debian、Ubuntu、Fedora、Oracle)...

    这篇文章收集了CentOS、Oracle、RedHat等系统查看发行版本、内核版本、位数的方法,欢迎补充。

    系统 发行版本 -- 内核版本、位数
    RedHat cat /etc/issue cat /etc/redhat-release lsb_release -a
    CentOS cat /etc/issue cat /etc/centos-release cat /proc/version
    Debian cat /etc/issue cat /etc/debian_version cat /proc/version
    Ubuntu cat /etc/issue cat /etc/lsb_release cat /proc/version
    Oracle cat /etc/issue cat /etc/oracle-release lsb_release -a

    RedHat

    查看系统发行版本

    [root@getlnx05 ~]# cat /etc/issue
    Red Hat Enterprise Linux Server release 5.7 (Tikanga)
    Kernel 
     on an m

    通过cat /etc/redhat-release也查到看到相关的信息。

    查看系统内核版本、位数

    [root@getlnx05 ~]# lsb_release -a
    LSB Version:    :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch
    Distributor ID: RedHatEnterpriseServer
    Description:    Red Hat Enterprise Linux Server release 5.7 (Tikanga)
    Release:        5.7
    Codename:      Tikanga

    LSB Version项显示的是系统的内核版本,其中amd64表示系统是64位的。

    CentOS

    查看系统发行版本 cat /etc/issue

    [chenyurong@localhost local]$ cat /etc/issue
    CentOS release 6.5 (Final)
    Kernel 
     on an m

    通过cat /etc/centos-release也可以查询到一样的信息。

    查看系统内核版本、位数 more /proc/version

    [chenyurong@localhost local]$ cat /proc/version
    Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013

    Linux version 2.6.32-431.el6.x86_64显示了Linux的版本,x86_64显示了是64位的系统。通过uname -r也可以查到相关信息。

    Oracle Linux

    查看系统发行版本

    [root@DB-Server ~]# cat /etc/issue
    Oracle Linux Server release 5.7
    Kernel 
     on an m

    通过cat /etc/oracle-release也可以查询到相关信息。

    查看系统内核版本、位数

    [root@DB-Server ~]# lsb_release -a
    LSB Version:    :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch
    Distributor ID: EnterpriseEnterpriseServer
    Description:    Enterprise Linux Enterprise Linux Server release 5.7 (Carthage)
    Release:        5.7
    Codename:      Carthage

    LSB Version显示的是系统的内核版本,其中amd64表示系统是64位的。

    所有命令适用范围总结

    查看系统发行版本

    命令 适用范围
    lsb_release -a 所有Linux发行版
    cat /etc/redhat-release RedHat系Linux
    cat /etc/issue 所有Linux发行版

    查看系统内核位数

    命令 适用范围
    uname -a、uname -r 所有Linux发行版
    cat /proc/version 所有Linux发行版

    参考资料

    转载于:https://www.cnblogs.com/chanshuyi/p/linux_sys_info.html

  • 相关阅读:
    Azure PowerShell (2) 修改Azure订阅名称
    Windows Azure Platform Introduction (11) 了解Org ID、Windows Azure订阅、账户
    Azure PowerShell (3) 上传证书
    Azure PowerShell (1) PowerShell入门
    Windows Azure Service Bus (2) 队列(Queue)入门
    Windows Azure Service Bus (1) 基础
    Windows Azure Cloud Service (10) Role的生命周期
    Windows Azure Cloud Service (36) 在Azure Cloud Service配置SSL证书
    Android studio 使用心得(一)—android studio快速掌握快捷键
    android 签名、混淆打包
  • 原文地址:https://www.cnblogs.com/twodog/p/12140760.html
Copyright © 2011-2022 走看看