Liunx/centos檢視具體版本及核心資訊
說明
今天突然想檢視一下自己所使用的機器具體版本號,可是敲出了幾個命令都沒有檢視版本,失望,又想起了一個通用的命令lsb_release -a,可是敲出這個後,居然報錯-bash: lsb_release: command not found沒有這個命令,真讓我大吃一驚。看來還是百度一下吧,檢視版本號這些不是經常使用的命令,在此做一個記錄,方便以後翻看,這次rpm -q centos-release這個命令才讓我查到了,感謝linuxidc。
0、辨識標準
首先要清楚什麼樣標識是32位的,什麼樣的是64位的。
PC server X86 系列、I386--I686等386、686都是32位
只有標識x86_64
1、檢視位數命令
命令實在是不要太多,為了防止選擇性障礙,一致選擇第一種方式,後面的僅作為補充。方法1:
[[email protected]~]# uname -a
LinuxJiekeXu 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64x86_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 (usesshared libs), for GNU/Linux 2.6.32,BuildID[sha1]=aa7ff68f13de25936a098016243ce57c3c982e06, stripped
方法3:
[[email protected]~]# cat /proc/version
Linuxversion 3.10.0-327.18.2.el7.x86_64 ([email protected]) (gccversion 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"
[[email protected]~]# getconf LONG_BIT
64
2、檢視系統版本
方法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
DistributorID: CentOS
Description: CentOS Linux release 7.2.1511 (Core)
Release: 7.2.1511
Codename: Core
方法2:
[[email protected]~]# cat /etc/os-release
NAME="CentOSLinux"
VERSION="7(Core)"
ID="centos"
ID_LIKE="rhelFedora"
VERSION_ID="7"
PRETTY_NAME="CentOSLinux 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
CentOSLinux release 7.2.1511 (Core)
方法4:
[[email protected]~]# rpm -q centos-release
centos-release-7-1.1503.el7.centos.2.8.x86_64
3、檢視核心版本
方法1:
[[email protected]~]# cat /proc/version
Linuxversion 3.10.0-327.18.2.el7.x86_64 ([email protected]) (gccversion 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Thu May 12 11:03:55 UTC2016
方法2:
[[email protected]~]# uname -a
LinuxJiekeXu 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64x86_64 x86_64 GNU/Linux
相關推薦
Liunx/centos檢視具體版本及核心資訊
說明今天突然想檢視一下自己所使用的機器具體版本號,可是敲出了幾個命令都沒有檢視版本,失望,又想起了一個通用的命令lsb_release -a,可是敲出這個後,居然報錯-bash: lsb_release
CentOS 7檢視系統版本及檢視機器位數x86-64 & centOS7下實踐查詢版本/CPU/記憶體/硬碟容量等硬體資訊
http://www.linuxidc.com/Linux/2016-11/137550.htm http://blog.csdn.net/dream_broken/article/details/52883883 前言 記下CentOS
檢視npm包某個具體版本及所有版本
檢視該包的所有版本及最新版本 npm info jquery 檢視npmjs伺服器上包的版本資訊: 使用npm view jquery versions;這種方式可以檢視npm伺服器上所有的jquery版本資訊; 使用npm view jquery version;
Centos 檢視CPU個數、核心數等資訊
總核數 = 物理CPU個數 X 每顆物理CPU的核數 總邏輯CPU數 = 物理CPU個數 X 每顆物理CPU的核數 X 超執行緒數 檢視物理CPU個數 cat /proc/cpuinfo| grep “physical id”| sort| uniq| wc
Linux中檢視系統版本(核心和發行)、CPU資訊以及修改主機名
檢視cpu資訊 cat /proc/cpuinfo 檢視系統與核心相關資訊 Uname [選項] &nbs
CentOS 7 檢視系統版本及位數
辨識標準 首先要清楚什麼樣標識是32位的,什麼樣的是64位的。 PC server X86 系列 I386--I686 都是32位 x86_64 是 64位 命令實在是不要太多,為了防止選擇性障礙,一致選擇第一種方式,後面的僅作為補充。 方法1: [[emai
Linux作業系統檢視CPU型號、個數、核數、邏輯CPU數、位數、發行版本、核心資訊、記憶體、伺服器生產廠家
Linux下的CPU資訊全部都在/proc/cpuinfo這個檔案中,可以直接開啟看。 # 總核數 = 物理CPU個數 X 每顆物理CPU的核數 # 總邏輯CPU數 = 物理CPU個數 X 每顆物理CPU的核數 X 超執行緒數 判斷是否開啟了超執行緒: 如果多個邏輯CP
Linux檢視版本和核心資訊
Linux下如何檢視版本資訊, 包括位數、版本資訊以及CPU核心資訊、CPU具體型號等等,整個CPU資訊一目瞭然。 1、# uname -a (Linux檢視版本當前作業系統核心資訊) Linux localhost.loc
Linux下如何檢視CPU型號、個數、核數、邏輯CPU數、位數、發行版本、核心資訊、記憶體、伺服器生產廠家
【原文連結】:http://blog.csdn.net/mdx20072419/article/details/7767809 http://blog.chinaunix.net/uid-22425237-id-3496577.html ---------------
Linux 檢視系統版本和核心
檢視系統核心版本 [[email protected] /]# cat /proc/version Linux version 3.10.0-327.el7.x86_64 ([email protected]) (gcc version 4.8.3 20140911 (Red H
js判斷作業系統版本及瀏覽器資訊
js判斷作業系統版本及瀏覽器資訊 var getOSAndBrowser = function () { var os = navigator.platform; var userAgent = navigator.userAg
git-檢視歷史版本及回滾版本
檢視歷史提交版本: 1.git log 檢視歷史所有版本資訊 2.git log -x 檢視最新的x個版本資訊 3.git log -x filename檢視某個檔案filename最新的x個版本資訊(需要進入該檔案所在目錄) 4.git log --pretty=o
Centos 檢視系統版本
[[email protected] ~]# uname -a Linux bogon 3.10.0-514.26.2.el7.x86_64 #1 SMP Tue Jul 4 15:04:0
檢視具體datatable的錯誤資訊
遇到這個錯誤 Failed to enable constraints. One or more rows contain values violatingnon-null, unique, or foreign-key constraints。 它檢查DataSet中的
檢視ORACLE 資料庫及表資訊
-- 檢視某表屬於哪個使用者 [根據資料表名稱查詢其歸屬] Note:這裡的資料表名稱均應為大寫格式!! select owner from dba_tables where table_nam
Ubuntu下如何檢視GPU版本和使用資訊?
nvidia-smi是用來檢視GPU版本資訊,GPU使用資訊查詢: nvidia-smi 第一欄的Fan:N/A是風扇轉速,從0到100%之間變動,這個速度是計算機期望的風扇轉速,實際情況下如
Ubuntu 14.04 LTS 檢視軟體版本及安裝位置
檢視軟體版本: aptitude show xxx which xxx 也可用apt-show-versions (要先安裝sudo apt-get install apt-show-versi
CentOS 檢視系統版本和位數
檢視系統版本 方法一: cat /etc/redhat-release 方法二: cat /proc/version 方法三: uname -a
CentOS檢視系統版本、CPU、硬碟、記憶體、網路、時間
常用: 看ip:ifconfig(centos7預設沒有,要yum install netstat-tools) 或 ip addr 硬碟分割槽表:fdisk -l 檢視掛載點:df -h 看記憶體:free -m 看目錄大小:du -sh(當前目錄) 或 du
Linux檢視作業系統版本 核心版本等資訊 uname和lsb release
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!