zoukankan      html  css  js  c++  java
  • 查看Linux版本

      1. 查看内核版本命令:

      1) [root@q1test01 ~]# cat /proc/version

      Linux version 2.6.9-22.ELsmp (bhcompile@crowe.devel.redhat.com) (gcc version 3.4.4 20050721 (Red Hat

      3.4.4-2)) #1 SMP Mon Sep 19 18:00:54 EDT 2005

      2) [root@q1test01 ~]# uname -a

      Linux q1test01 2.6.9-22.ELsmp #1 SMP Mon Sep 19 18:00:54 EDT 2005 x86_64 x86_64 x86_64 GNU/Linux

      3) [root@q1test01 ~]# uname -r

      2.6.9-22.ELsmp

      2. 查看linux版本:

      1) 登录到服务器执行 lsb_release -a ,即可列出所有版本信息,例如:

      [root@3.5.5Biz-46 ~]# [root@q1test01 ~]# lsb_release -a

      LSB Version: :core-3.0-amd64:core-3.0-ia32:core-3.0-noarch:graphics-3.0-amd64:graphics-3.0-

      ia32:graphics-3.0-noarch

      Distributor ID: RedHatEnterpriseAS

      Description: Red Hat Enterprise Linux AS release 4 (Nahant Update 2)

      Release: 4

      Codename: NahantUpdate2

      注:这个命令适用于所有的linux,包括Redhat、SuSE、Debian等发行版。

      2) 登录到linux执行cat /etc/issue,例如如下:

      [root@q1test01 ~]# cat /etc/issue

      Red Hat Enterprise Linux AS release 4 (Nahant Update 2)

      Kernel r on an m

      3) 登录到linux执行cat /etc/redhat-release ,例如如下:

      [root@q1test01 ~]# cat /etc/redhat-release

      Red Hat Enterprise Linux AS release 4 (Nahant Update 2)

      注:这种方式下可以直接看到具体的版本号,比如 AS4 Update 1

      4) 登录到linux执行rpm -q redhat-release ,例如如下:

      [root@q1test01 ~]# rpm -q redhat-release

      redhat-release-4AS-3

  • 相关阅读:
    windows中80端口被System占用,PID=4的问题
    SpringBoot中动态加载(热部署)
    eclipse中Cannot change version of project facet Dynamic Web Module to 3.0的问题解决
    Eclipse启动tomcat后404错误
    Eclipse在当前行之上插入一行
    Java中==规则
    简明log4j配置教程
    CentOS7 配置静态IP
    CentOS7 mini安装后没有ifconfig命令的解决办法
    shell编程学习笔记之sed编辑器
  • 原文地址:https://www.cnblogs.com/hua198/p/8253047.html
Copyright © 2011-2022 走看看