参考:志强系列CPU天梯图
查看服务器型号、序列号:文章源自玩技e族-https://www.playezu.com/24290.html
- dmidecode|grep "System Information" -A9|egrep "Manufacturer|Product|Serial"
- cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
- /**以上两种都可以不是同时复制**/
Linux 查看内存的插槽数,已经使用多少插槽.每条内存多大:文章源自玩技e族-https://www.playezu.com/24290.html
- dmidecode|grep -A5 "Memory Device"|grep Size|grep -v Range
Linux 查看内存的频率:文章源自玩技e族-https://www.playezu.com/24290.html
- dmidecode|grep -A16 "Memory Device"|grep 'Speed'
在linux查看内存型号的命令:文章源自玩技e族-https://www.playezu.com/24290.html
- dmidecode -t memory
查看主板型号:文章源自玩技e族-https://www.playezu.com/24290.html
- dmidecode |grep -A16 "System Information$"
内存槽及内存条:文章源自玩技e族-https://www.playezu.com/24290.html
- dmidecode |grep -A16 "Memory Device$"
硬盘:文章源自玩技e族-https://www.playezu.com/24290.html
- fdisk -l
- smartctl -a /dev/sda
网卡:文章源自玩技e族-https://www.playezu.com/24290.html
- mii-tool
- dmidecode|grep -P 'Maximum\s+Capacity' //最大支持几G内存
- # cat /proc/cpuinfo //查看cpu个数与频率
- # dmidecode |grep "Product Name" //查看服务器品牌和型号
- # dmidecode|grep -P -A5 "Memory\s+Device"|grep Size|grep -v Range //总共几个插槽,已使用几个插槽
查看CPU型号:文章源自玩技e族-https://www.playezu.com/24290.html
- cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
评论