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