Centos7檢視版本資訊

2021-10-14 14:37:05 字數 1508 閱讀 7808

centos的版本號資訊存放在/etc/目錄下的配置檔案當中,與其版本相關的配置檔案中都有centos關鍵字,我們可以直接搜尋該資料夾下與centos相關的檔案。

/etc為系統配置檔案目錄,該目錄包含系統啟動指令碼、啟動配置檔案、使用者登陸配置檔案、網路配置檔案、httpd 配置檔案和其他檔案等。

執行/etc/*centos*,結果顯示如下:

[smart@centos78test003 ~]$ ll /etc/*centos*

-rw-r--r--. 1 root root 37 4月 8 2020 /etc/centos-release

-rw-r--r--. 1 root root 51 4月 8 2020 /etc/centos-release-upstream

查詢出兩個相關的檔案,其中存放其版本配置資訊的檔案為「centos-release」,因此可以檢視該檔案內容來檢視centos相應的版本資訊。

檢視centos的版本號:cat /etc/centos-release

[smart@centos78test003 ~]$ cat /etc/centos-release

centos linux release 7.8.2003 (core)

檢視核心版本:uname -r
[smart@centos78test003 ~]$ uname -r

3.10.0-1127.el7.x86_64

或者uname -a

[smart@centos78test003 ~]$ uname -a

linux centos78test003 3.10.0-1127.el7.x86_64 #1 smp tue mar 31 23:36:51 utc 2020 x86_64 x86_64 x86_64 gnu/linux

能看到主機名稱為centos78test003,核心版本為3.10.0-1127,64位。

或者cat /proc/version

[smart@centos78test003 ~]$ cat /proc/version 

linux version 3.10.0-1127.el7.x86_64 ([email protected])

(gcc version 4.8.5 20150623 (red hat 4.8.5-39)

(gcc)

) #1 smp tue mar 31 23:36:51 utc 2020

能看到核心版本為3.10.0-1127,64位,gcc版本為4.8.5。

檢視作業系統位數:getconf long_bit

[smart@centos78test003 ~]$ getconf long_bit

64

如何檢視CentOS7的版本資訊

centos的版本號資訊一般存放在配置檔案當中,在centos中,與其版本相關的配置檔案中都有centos關鍵字,該檔案一般存放在 etc 目錄下,所以說我們可以直接在該資料夾下搜尋相關的檔案。ll etc centos 檢視的結果 其中存放其版本配置資訊的檔案為 centos release 翻譯...

CentOS7 如何檢視系統版本資訊

centos的版本號資訊一般存放在配置檔案當中,在centos中,與其版本相關的配置檔案中都有centos關鍵字,該檔案一般存放在 etc 目錄下,所以說我們可以直接在該資料夾下搜尋相關的檔案。ll etc centos 檢視的結果 其中存放其版本配置資訊的檔案為 centos release ce...

CentOS7 檢視作業系統版本資訊

centos 檢視作業系統版本資訊 1 使用cat proc version uname 檢視核心版本 root centos7 cat proc version linux version 3.10.0 957.el7.x86 64 mockbuild kbuilder.bsys.centos.o...