Akagi201
12/22/2014 - 1:03 PM

openwrt-info.md

OpenWRT查看CPU,RAM,Flash信息参数

1 2 3 4 5 1.查看Flash容量大小(存储空间,可以理解为电脑的硬盘)

root@OpenWrt:/# dmesg |grep spi |grep Kbytes #查看Flash容量 [ 0.680000] m25p80 spi0.0: w25q128 (16384 Kbytes) #16384/1024=16M 既是16M的Flash

1 2 3 4 5 6 7 8 9 10 11 12 13 2.查看RAM容量大小(可以理解为电脑的内存条)

root@OpenWrt:/# cat /proc/meminfo |grep MemTotal #查看RAM大小 MemTotal: 61592 kB

root@OpenWrt:/# free -h |grep Mem | awk -F ' ' '{print $2}' #查看RAM大小 (单位kB) 61592

root@OpenWrt:/# free -h |grep Mem | awk -F ' ' '{print $3}' #已使用的RAM大小(单位kB) 25520

root@OpenWrt:/# free -h |grep Mem | awk -F ' ' '{print $4}' #空闲可用的RAM大小(单位kB) 35920

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3.CPU内存主频型号信

root@OpenWrt:/# dmesg |grep Clocks |awk -F ' ' '{print $4}' #查看CPU主频 CPU:400.000MHz,

root@OpenWrt:/# dmesg |grep Clocks |awk -F ',' '{print $2}' #查看内存主频 DDR:400.000MHz

root@OpenWrt:/# cat /proc/cpuinfo |grep 'system type' #查看系统类型 system type: Atheros AR9330 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-WR720N v3