Linux中命令列下檢視硬體資訊及系統版本
1、檢視當前作業系統核心和版本
[root@sms ~]# uname -a
[root@sms ~]# cat /etc/issue
[root@sms ~]# cat /etc/redhat-release(針對redhat系列)
2、檢視系統為32位還是64位:
[root@sms ~]# getconf LONG_BIT
[root@sms ~]# getconf WORD_BIT
(32位的系統中int型別和long型別一般都是4位元組,64位的系統中int型別還是4位元組的,但是long已變成了8位元組inux系
統中可用"getconf WORD_BIT"和"getconf LONG_BIT"獲得word和long的位數。64位系統中應該分別得到32和64)
[root@sms ~]# uname -a
(如果有x86_64就是64位的,沒有就是32位的)
[root@sms ~]# file /sbin/init
(32-bit即是32位的 linux, 如是64位的, 顯示的是 64-bit)
3、檢視伺服器硬體資訊(全部資訊):
[root@sms ~]# dmidecode | more
4、檢視伺服器型號:
[root@sms ~]# dmidecode | grep "Product Name"
5、檢視網路卡型號:
[root@sms ~]# lspci | grep Ethernet
6、檢視CPU資訊:
[root@sms ~]# grep name /proc/cpuinfo
[root@sms ~]# lscpu
7、檢視記憶體資訊:
[root@sms ~]# grep -P "MemTotal|SwapTotal" /proc/meminfo
[root@sms ~]# grep -E "MemTotal|SwapTotal" /proc/meminfo
[root@sms ~]# free -m
[root@sms ~]# top
8、檢視硬碟資訊:
[root@sms ~]# df -h
[root@sms ~]# fdisk -l
別人寫的檢視系統的指令碼:
[root@sms ~]# uname -a
[root@sms ~]# cat /etc/issue
[root@sms ~]# cat /etc/redhat-release(針對redhat系列)
2、檢視系統為32位還是64位:
[root@sms ~]# getconf LONG_BIT
[root@sms ~]# getconf WORD_BIT
(32位的系統中int型別和long型別一般都是4位元組,64位的系統中int型別還是4位元組的,但是long已變成了8位元組inux系
統中可用"getconf WORD_BIT"和"getconf LONG_BIT"獲得word和long的位數。64位系統中應該分別得到32和64)
[root@sms ~]# uname -a
(如果有x86_64就是64位的,沒有就是32位的)
[root@sms ~]# file /sbin/init
(32-bit即是32位的 linux, 如是64位的, 顯示的是 64-bit)
3、檢視伺服器硬體資訊(全部資訊):
[root@sms ~]# dmidecode | more
4、檢視伺服器型號:
[root@sms ~]# dmidecode | grep "Product Name"
5、檢視網路卡型號:
[root@sms ~]# lspci | grep Ethernet
6、檢視CPU資訊:
[root@sms ~]# grep name /proc/cpuinfo
[root@sms ~]# lscpu
7、檢視記憶體資訊:
[root@sms ~]# grep -P "MemTotal|SwapTotal" /proc/meminfo
[root@sms ~]# grep -E "MemTotal|SwapTotal" /proc/meminfo
[root@sms ~]# free -m
[root@sms ~]# top
8、檢視硬碟資訊:
[root@sms ~]# df -h
[root@sms ~]# fdisk -l
別人寫的檢視系統的指令碼:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26194851/viewspace-713249/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux 系統下檢視硬體資訊命令大全Linux
- 在Linux下檢視系統版本資訊命令總結Linux
- linux硬體資訊檢視命令(ZT)Linux
- Linux系統檢視硬體具體型號資訊Linux
- 檢視Linux系統版本資訊Linux
- linux檢視系統版本資訊Linux
- linux 檢視硬體資訊Linux
- 通過Linux系統檢視硬體裝置資訊Linux
- linux系統資訊檢視命令Linux
- Linux系統如何檢視版本資訊Linux
- Linux檢視系統版本命令Linux
- 檢視Linux系統版本的命令Linux
- 檢視linux系統版本命令Linux
- 【資訊採集】IBM AIX系統硬體資訊檢視命令(shell指令碼)IBMAI指令碼
- kudzu命令檢視及設定網路卡等硬體資訊
- Linux系統資訊檢視命令大全Linux
- 常用檢視Linux系統資訊命令Linux
- linux系統資訊檢視命令(收藏)Linux
- LINUX 檢視硬體配置命令Linux
- LINUX檢視硬體配置命令Linux
- 關於在Solairs下檢視版本及硬體型號AI
- 利用命令檢視Win10系統硬體配置資訊的方法Win10
- linux 檢視核心、系統版本命令Linux
- 檢視linux系統版本號的命令Linux
- Linux下如何檢視版本資訊Linux
- 在Linux中,如何檢視當前系統的版本資訊?Linux
- Linux系統glibc庫版本資訊檢視Linux
- AIX系統檢視硬體配置常用命令AI
- 快速檢視LINUX 系統硬體的指令碼Linux指令碼
- LINUX檢視系統版本Linux
- Linux中常用的檢視系統資訊的命令Linux
- 檢視 Linux 系統資訊Linux
- 檢視 linux 版本資訊Linux
- 檢視Linux硬體的一些命令Linux
- 檢視UNIX的版本資訊,硬體狀況,Solaris與Sunos
- Linux 系統檢視命令Linux
- linux系統檢視命令Linux
- linux檢視cpu、記憶體、版本資訊Linux記憶體