通用命令
[root@centos68 ~]# more /etc/issue
centos release 6.9 (final)
redhat 系[root@centos68 ~]# cat /etc/redhat-release
centos release 6.9 (final)
檢視系統核心及系統名稱[root@centos68 ~]# uname -a
linux centos68 2.6
.32-696.1
.1.el6.x86_64 #1 smp tue apr 11 17:13:24 utc 2017 x86_64 x86_64 x86_64 gnu/linux
或者[root@centos68 ~]# cat /proc/version
linux version 2.6
.32-696.1
.1.el6.x86_64 ([email protected]
.org) (gcc version 4.4
.720120313 (red hat 4.4
.7-18) (gcc) ) #1 smp tue apr 11 17:13:24 utc 2017
補充說明
/proc檔案系統,它不是普通的檔案系統,而是系統核心的映像,也就是說,該目錄中的檔案是存放在系統記憶體之中的,它以檔案系統的方式為訪問系統核心資料的操作提供介面。而我們使用命令「uname -a」的資訊就是從該檔案獲取的。
[root@centos68 ~]# getconf long_bit
64
[root@centos68 ~]# cat /etc/passwd|grep -v nologin|grep -v halt|grep -v shutdown|awk -f":" ''|more
root|0|0
sync|5|0
wenqiang|500|500
file
檢視系統版本[root@centos68 ~]# file /bin/bash
/bin/bash: elf 64-bit lsb executable, x86-64, version
1 (sysv), dynamically linked (uses shared libs), for gnu/linux 2.6.18, stripped
檢視所有的引數getconf -a
檢視作業系統位數getconf long_bit
Linux檢視系統資訊
1.檢視系統核心 uname a uname r file sbin init 通過file命令判斷系統中的檔案時32位還是64位的 64位cpu系統架構可以安裝32位或64位的系統,而32為的cpu架構只能安裝32位的系統 2.檢視伺服器使用的linux發行版的名稱,版本號及描述資訊等 lsb r...
Linux 檢視系統資訊
摘要 1 輸入 uname a 可顯示電腦以及作業系統的相關資訊。uname alinuxhadoop02.zjl com2.6 32 696.el6.x86 64 1smptuemar2119 29 05utc2017x86 64x86 64x86 64gnu linux2 輸入 cat proc...
linux檢視系統資訊
uname a 檢視核心 作業系統 cpu資訊 cat proc version 檢視核心 cat etc issue 檢視作業系統版本 head n 1 etc issue 檢視作業系統版本 cat proc cpuinfo 檢視cpu資訊 hostname 檢視計算機名 lspci tv 列出所...