CentOS是哪个版本 CentOS版本信息查看技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS是哪个版本 CentOS版本信息查看技巧相关的知识,希望对你有一定的参考价值。

参考技术A 方法:  1)[root@localhost ~]# cat /proc/version  Linux version 2) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Fri Apr 2 14:58:14 EDT 2010  2)  [root@localhost ~]# uname -a  Linux localhost.localdomain 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:14 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux  3)  [root@localhost ~]# uname -r  2.6.18-194.el5  2. 查看linux版本:  1) 列出所有版本信息,  [root@localhost ~]# lsb_release -a  LSB Version: :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch  Distributor ID: CentOS  Description: CentOS release 5.5 (Final)  Release: 5.5  Codename: Final  注:这个命令适用于所有的linux,包括RedHat、SUSE、Debian等发行版。  2) 执行cat /etc/issue,例如如下:  [root@localhost ~]# cat /etc/issue  CentOS release 5.5 (Final)  Kernel r on an m  3) 执行cat /etc/redhat-release ,例如如下:  [root@localhost ~]# cat /etc/redhat-release  CentOS release 5.5 (Final)  查看系统是64位还是32位:  1、getconf LONG_BIT or getconf WORD_BIT  [root@localhost ~]# getconf LONG_BIT  64  2、file /bin/ls  [root@localhost ~]# file /bin/ls  /bin/ls: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped  3、lsb_release -a  [root@localhost ~]# lsb_release -a  LSB Version: :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch  Distributor ID: CentOS  Description: CentOS release 5.5 (Final)  Release: 5.5  Codename: Final  4、或者是使用查看文件的方法。  vim /ect/issue  上面就是查看CentOS版本信息的介绍了,除了能够知道你使用的是哪个版本外,还能够查看你所使用的CentOS系统是32位还是64位的。

如何查看CentOS 7.x版本信息

前言
由于CentOS 7 和之前的6以下的版本查看系统版本及查看机器位数x86-64的方法不一样,部分命令差异也比较大,现就如在CentOS 7下查询版本信息

首先要清楚什么样标识是32位的,什么样的是64位的。

    PC server X86 系列

    I386--I686 都是32位

    x86_64 是 64位

查看位数命令

命令实在是不要太多,为了防止选择性障碍,一致选择第一种方式,后面的仅作为补充。
方法1:

[[email protected] ~]# uname -a
Linux linuxidc 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

方法2:显示系统程序信息
[[email protected] ~]# file /bin/ls
/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=aa7ff68f13de25936a098016243ce57c3c982e06, stripped

方法3:
[[email protected] ~]# cat /proc/version
Linux version 3.10.0-327.18.2.el7.x86_64 ([email protected]) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Thu May 12 11:03:55 UTC 2016

方法4:

(32位的系统中int类型和long类型一般都是4字节,64位的系统中int类型还是4字节的,但是long已变成了8字节inux系统中可用"getconf WORD_BIT"和
    "getconf LONG_BIT"获得word和long的位数。64位系统中应该分别得到32和64。)

[[email protected] ~]# getconf LONG_BIT
64

查看系统版本

方法1:
[[email protected] ~]#  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.2.1511 (Core)
Release:    7.2.1511
Codename:   Core


方法2:
[[email protected] ~]# cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel Fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
RedHat_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

方法3(主要是查看centos具体版本信息):
[[email protected] ~]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)

方法4:
[[email protected] ~]# rpm -q centos-release
centos-release-7-2.1511.el7.centos.2.10.x86_64

查看内核版本
方法1:
[[email protected] ~]# cat /proc/version
Linux version 3.10.0-327.18.2.el7.x86_64 ([email protected]) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Thu May 12 11:03:55 UTC 2016

方法2:
[[email protected] ~]# uname -a
Linux linuxidc 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

以上是关于CentOS是哪个版本 CentOS版本信息查看技巧的主要内容,如果未能解决你的问题,请参考以下文章

CentOS是哪个版本 CentOS版本信息查看技巧

CentOS是哪个版本 CentOS版本信息查看技巧

centos的版本和内核查看

Centos 7 安装多版本 php

查看CentOS-rehat-ubuntu是哪个版本

centos6.9有几个版本,分别有啥区别