openwrt 檢視相應的硬體資訊

2021-07-11 03:35:45 字數 1168 閱讀 2178

1.檢視flash容量大小(儲存空間,可以理解為電腦的硬碟)

root@openwrt:/# dmesg |grep spi |grep kbytes  #檢視flash容量

[    0.660000] m25p80 spi0.0: mx25l12805d (16384 kbytes)

#16384/1024=16m 既是16m的flash

2.檢視ram容量大小(可以理解為電腦的記憶體條)

root@openwrt:/# cat /proc/meminfo |grep memtotal   #檢視ram大小

memtotal:          61348 kb

root@openwrt:/# free -h |grep mem | awk -f ' ' ''  #檢視ram大小 (單位kb)

61348

root@openwrt:/# free -h |grep mem | awk -f ' ' '' #已使用的ram大小(單位kb)

23788

root@openwrt:/# free -h |grep mem | awk -f ' ' '' #空閒可用的ram大小(單位kb)

35376

3.cpu記憶體主頻型號信

root@openwrt:/# dmesg |grep clocks |awk -f ' ' ''  #檢視cpu主頻

cpu:650.000mhz,

root@openwrt:/# dmesg |grep clocks |awk -f ',' '' #檢視記憶體主頻

ddr:421.997mhz

root@openwrt:/# cat /proc/cpuinfo |grep 'system type'  #檢視系統型別

system type             : qualcomm atheros qca9533 rev 1

root@openwrt:/# cat /proc/cpuinfo |grep 'cpu model'  #檢視cpu型號

cpu model               : mips 24kc v7.4

root@openwrt:/# cat /proc/cpuinfo |grep 'machine'   #檢視裝置型號

machine                 : tp-link tl-wr841n/nd v9

Linux檢視CPU資訊 機器型號等硬體資訊

cat proc cpuinfo grep name cut f2 d uniq c 8 intel r xeon r cpu e5410 2.33ghz 看到有8個邏輯cpu,也知道了cpu型號 cat proc cpuinfo grep physical uniq c 4 physical id...

Linux知識 檢視CPU資訊 硬體型號等資訊

測試機器的硬體資訊 檢視cpu資訊 型號 cat proc cpuinfo grep name cut f2 d uniq c 8 intel r xeon r cpu e5410 2.33ghz 看到有8個邏輯cpu,也知道了cpu型號 cat proc cpuinfo grep physical...

Linux 檢視CPU資訊 機器型號等硬體資訊

原文出處 測試機器的硬體資訊 檢視cpu資訊 型號 cat proc cpuinfo grep name cut f2 d uniq c 8 intel r xeon r cpu e5410 2.33ghz 看到有8個邏輯cpu,也知道了cpu型號 cat proc cpuinfo grep phy...