zoukankan      html  css  js  c++  java
  • 怎么查看redhat的版本

    hostnamectl 命令:

    原文: https://linuxconfig.org/how-to-check-redhat-version

    How to check Redhat version

    ----------------------------------

    Objective

    The objective of this guide is to provide you with some hints on how to check system version of your Redhat Enterprise Linux (RHEL). There exist multiple ways on how to check the system version, however, depending on your system configuration, not all examples described below may be suitable. For a CentOS specific guide visit How to check CentOS version guide.

    Requirements

    Privileged access to to your RHEL system may be required.

    Difficulty

    EASY

    Conventions

    • # - requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
    • $ - requires given linux commands to be executed as a regular non-privileged user

    To check a version of other Linux distributions visit our how to check Linux version guide.

    Instructions

    Using hostnamectl

    hostnamectl is most likely the first and last command you need to execute to reveal your RHEL system version:

    $ hostnamectl 
       Static hostname: localhost.localdomain
    Transient hostname: status
             Icon name: computer-vm
               Chassis: vm
            Machine ID: d731df2da5f644b3b4806f9531d02c11
               Boot ID: 384b6cf4bcfc4df9b7b48efcad4b6280
        Virtualization: xen
      Operating System: Red Hat Enterprise Linux Server 7.3 (Maipo)
           CPE OS Name: cpe:/o:redhat:enterprise_linux:7.3:GA:server
                Kernel: Linux 3.10.0-514.el7.x86_64
          Architecture: x86-64
    
    

    Query Release Package

    Use rpm command to query Redhat's release package:

    RHEL 7
    $ rpm --query redhat-release-server
    redhat-release-server-7.3-7.el7.x86_64
    RHEL 8
    $ rpm --query redhat-release
    redhat-release-8.0-0.34.el8.x86_64
    

    Common Platform Enumeration

    Check Common Platform Enumeration source file:

    $ cat /etc/system-release-cpe 
    cpe:/o:redhat:enterprise_linux:7.3:ga:server
    

    LSB Release

    Depending on whether a redhat-lsb package is installed on your system you may also use lsb_release -d command to check Redhat's system version:

    $ lsb_release -d
    Description:	Red Hat Enterprise Linux Server release 7.3 (Maipo)
    

    Alternatively install redhat-lsb package with:

    # yum install redhat-lsb
    

    SUBSCRIBE TO NEWSLETTER
    Subscribe to our NEWSLETTER and receive latest Linux news, jobs, career advice and tutorials.


    Check Release Files

    There are number of release files located in the /etc/ directory. Namely os-releaseredhat-release and system-release:

    $ ls /etc/*release
    os-release  redhat-release  system-release
    

    Use cat to check the content of each file to reveal your Redhat OS version. Alternatively, use the below for loop for an instant check:

    $ for i in $(ls /etc/*release); do echo ===$i===; cat $i; done
    

    Depending on your RHEL version, the output of the above shell for loop may look different:

    ===os-release===
    NAME="Red Hat Enterprise Linux Server"
    VERSION="7.3 (Maipo)"
    ID="rhel"
    ID_LIKE="fedora"
    VERSION_ID="7.3"
    PRETTY_NAME="Red Hat Enterprise Linux Server 7.3 (Maipo)"
    ANSI_COLOR="0;31"
    CPE_NAME="cpe:/o:redhat:enterprise_linux:7.3:GA:server"
    HOME_URL="https://www.redhat.com/"
    BUG_REPORT_URL="https://bugzilla.redhat.com/"
    
    REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
    REDHAT_BUGZILLA_PRODUCT_VERSION=7.3
    REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
    REDHAT_SUPPORT_PRODUCT_VERSION="7.3"
    ===redhat-release===
    Red Hat Enterprise Linux Server release 7.3 (Maipo)
    ===system-release===
    Red Hat Enterprise Linux Server release 7.3 (Maipo)
    

    Grub Config

    The least reliable way on how to check Redhat's OS version is by looking at Grub configuration. Grub configuration may not produce a definitive answer, but it will provide some hints on how the system booted.

    The default locations of grub config files are /boot/grub2/grub.cfg and /etc/grub2.cfg. Use grep command to check for menuentry keyword:

    # grep -w menuentry /boot/grub2/grub.cfg /etc/grub2.cfg
    

    An another alternative is to check the value of the "GRUB Environment Block":

    # grep saved_entry /boot/grub2/grubenv 
    saved_entry=Red Hat Enterprise Linux Server (3.10.0-514.el7.x86_64) 7.3 (Maipo)
  • 相关阅读:
    SQLserver 连接+开窗函数+视图+事务
    SQLServer学习笔记系列8
    SQLServer学习笔记系列7
    SQLServer学习笔记系列6
    如何保护.net中的dll文件(防破解、反编译)
    idea项目运行正常,但是类出现红色波浪线
    eclipse出现An internal error occurred during: "Repository registry initialization". Array index out of
    ul列表事件($(this).data('value') 这个是什么意思?)
    vue学习
    两段简单的JS代码防止SQL注入
  • 原文地址:https://www.cnblogs.com/oxspirt/p/15039147.html
Copyright © 2011-2022 走看看