美国服务器上可以使用DOS命令来查看美国服务器的配置。比如:1。查询美国服务器CPU数量“cat /proc/cpuinfo | grep physical | sort -n | uniq | wc –l”;2。查看美国服务器当前操作系统内核信息“uname –a”;3。查看当前美国服务器的物理内存“# grep MemTotal /proc/meminfo”等相关命令。
具体内容如下:
1。查询美国服务器CPU数量
cat /proc/cpuinfo | grep physical | sort -n | uniq | wc –l
2。查询美国服务器的型号
dmidecode -s system-product-name
3。查看美国服务器CPU核数
cat /proc/cpuinfo | grep physical | sort -n | uniq –c
4。查看美国服务器CPU型号
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq
5。查看 美国服务器CPU运行位数
# getconf LONG_BIT
如果当前美国服务器CPU运行在32bit模式下, 并不代表美国服务器CPU不支持64bit
# cat /proc/cpuinfo | grep flags | grep 'lm' | wc -l
如果结果大于0。 说明支持64bit计算。 lm指long mode,。支持lm则是64bit
6。查看美国服务器当前操作系统内核信息
uname –a
7。查看美国服务器当前操作系统发行版信息
lsb_release -
8。查看美国服务器网卡速率
ethtool eth0
9。查看美国服务器内存的插槽数
dmidecode|grep -P -A5 'Memorys+Device' | grep Size |grep -v Range | cat –
10。查看美国服务器内存的频率
dmidecode|grep -A16 'Memory Device'|grep 'Speed' | cat –
11。查看美国服务器出厂编号。只适用于DELL
dmidecode -s chassis-serial-number
12。查看当前美国服务器的物理内存
# grep MemTotal /proc/meminfo
本文地址:https://gpu.xuandashi.com/64255.html,转载请说明来源于:渲大师
声明:本站部分内容来自网络,如无特殊说明或标注,均为本站原创发布。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。分享目的仅供大家学习与参考,不代表本站立场!