centos7查看系统版本,查看机器位数x86-64

前言

由于不经常使用linux,每当使用的时候就是安装软件,安装软件的时候就要选择安装包平台,是32位的还是64位的。这时候突然发现不知道怎么查,于是百度。虽然轻而易举百度出来,但仍旧没有自己的笔记看起来舒服。所以,还是记录下来。

辨识标准

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

PC server X86 系列

I386--I686 都是32位

x86_64 是 64位

查看位数命令

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

[[email protected] ~]# uname -a
Linux bogon 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:

[[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 bogon 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
时间: 2024-12-25 16:15:46

centos7查看系统版本,查看机器位数x86-64的相关文章

CentOS 7系统查看系统版本和机器位数

前言 由于不经常使用linux,每当使用的时候就是安装软件,安装软件的时候就要选择安装包平台,是32位的还是64位的.这时候突然发现不知道怎么查,于是百度.虽然轻而易举百度出来,但仍旧没有自己的笔记看起来舒服.所以,还是记录下来. 辨识标准 首先要清楚什么样标识是32位的,什么样的是64位的. PC server X86 系列 I386--I686 都是32位 x86_64 是 64位 查看位数命令 命令实在是不要太多,为了防止选择性障碍,一致选择第一种方式,后面的仅作为补充.方法1: [[em

centos系统查看系统版本、内核版本、系统位数、cpu个数、核心数、线程数

centos查看系统版本 cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) 1)查看centos内核的版本: [[email protected] ~]# cat /proc/version Linux version 2.6.18-194.el5 ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Fri Apr 2 14:5

查看系统版本、32位与64位生产场景中的使用及对比

一.查看系统版本 [[email protected] ~]# uname -a #系统版本详细信息 Linux ysolin 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux [[email protected] ~]# uname -r   #内核版本 2.6.32-431.el6.x86_64 [[email protected] ~]# uname -m   #

centos6/7通用查看系统版本的方法

    因为最近要写一个centos的初始化脚本,但是centos6和centos7版本有很多命令都不相同,所以为了让脚本在两个版本之间都可以使用,就需要对centos系统版本进行判断.     通过查找各种资料,我发现基本有下面几种查看系统版本的方法: 方法一:可以用lsb_release -a来查看系统版本 [[email protected] ~]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-a

linux、centos下查看系统版本、bios版本,内存信息等

1.查看系统版本 [[email protected] ~]# more /etc/issueCentOS release 6.2 (Final)Kernel \r on an \m 2.查看CPU信息 : [[email protected] ~]#more  /proc/cpuinfo 3.查看bios版本信息及内存信息.服务器型号 [[email protected] ~]#dmidecode 4.查看主机名: [[email protected] ~]#hostname localhos

Linux内核版本、系统版本查看指令

1 内核版本查看指令 1.1 cat /proc/version 1.2 uname -a 2 系统版本查看指令 2.1 cat /etc/issue 2.2 lsb_release -a 上述图片均是ubuntu系统的测试结果,其他系统可能有些差异. 原文地址:https://www.cnblogs.com/zpchya/p/10857881.html

Oracle Study之--查看Oracle 版本运算字长(32/64位)方法

Oracle Study之--查看Oracle 版本运算字长(32/64位)方法 一.采用sqlplus查看 64位: [[email protected] ~]$ sqlplus '/as sysdba' SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 24 14:14:10 2015 Copyright (c) 1982, 2011, Oracle.  All rights reserved. Connected to:Oracle Da

linux查看系统版本和系统位数 (转)

1. uname -ayou will view kernel name.network node hostname.kernel release.kernel version.machine hardware name.processor type .hardware platform.operating system 2. cat /proc/version his file will not show you the name of the actual OS release, but w

linux查看系统版本和系统位数

1. uname -a you will view  kernel name.network node hostname.kernel release.kernel version.machine hardware name.processor type .hardware platform.operating system 2. cat /proc/version his file will not show you the name of the actual OS release, but