参考:志强系列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
原创声明:本文章为原创内容,所有文章均由博主亲自撰写,严格遵循原创原则。我们承诺不使用任何人工智能生成的内容,所发布的每一篇文章都经过深思熟虑,旨在为读者提供真实、有价值的观点和信息。我们坚信原创才是知识分享的根本,致力于为广大读者呈现最具真实性和独特性的文章。感谢您的支持与关注,欢迎持续关注我们的原创内容。