美國網(wǎng)站服務器用戶在租用的美國網(wǎng)站服務器交付后,可以自行查看美國網(wǎng)站服務器的配置信息,今天美聯(lián)科技小編就帶來使用DOS命令來查看美國網(wǎng)站服務器配置的操作教程。
1、查詢美國網(wǎng)站服務器CPU數(shù)量
cat /proc/cpuinfo | grep physical | sort -n | uniq | wc –l
2、查詢美國網(wǎng)站服務器的型號
dmidecode -s system-product-name
3、查看美國網(wǎng)站服務器CPU核數(shù)
cat /proc/cpuinfo | grep physical | sort -n | uniq –c
4、查看美國網(wǎng)站服務器CPU型號
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq
5、查看美國網(wǎng)站服務器CPU運行位數(shù)
# getconf LONG_BIT
如果當前美國網(wǎng)站服務器CPU運行在32bit模式下, 并不代表美國網(wǎng)站服務器CPU不支持64bit
# cat /proc/cpuinfo | grep flags | grep 'lm' | wc -l
如果結(jié)果大于0, 說明支持64bit計算, lm指long mode,,支持lm則是64bit
6、查看美國網(wǎng)站服務器當前操作系統(tǒng)內(nèi)核信息
uname –a
7、查看美國網(wǎng)站服務器當前操作系統(tǒng)發(fā)行版信息
lsb_release -
8、查看美國網(wǎng)站服務器網(wǎng)卡速率
ethtool eth0
9、查看美國網(wǎng)站服務器內(nèi)存的插槽數(shù)
dmidecode|grep -P -A5 'Memory\s+Device' | grep Size |grep -v Range | cat –
10、查看美國網(wǎng)站服務器內(nèi)存的頻率
dmidecode|grep -A16 'Memory Device'|grep 'Speed' | cat –
11、查看美國網(wǎng)站服務器出廠編號,只適用于DELL
dmidecode -s chassis-serial-number
12、查看當前美國網(wǎng)站服務器的物理內(nèi)存
# grep MemTotal /proc/meminfo
通過以上查看美國網(wǎng)站服務器配置的操作教程,相信可以幫助到美國網(wǎng)站服務器用戶更加便捷的查看到相關(guān)的美國網(wǎng)站服務器信息。