1、centos 下檢視硬體資訊內容非常全面。
centos常用命令檢視cpu
more /proc/cpuinfo | grep 「model name」
grep 「model name」 /proc/cpuinfo
[root@localhost /]# grep 「cpu」 /proc/cpuinfo
model name : intel(r) pentium(r) dual cpu e2180 @ 2.00ghz
model name : intel(r) pentium(r) dual cpu e2180 @ 2.00ghz
2、centos常用命令檢視記憶體
grep memtotal /proc/meminfo grep memtotal /proc/meminfo | cut -f2 -d: free -m |grep 「mem」
3、使用centos常用命令檢視cpu是32位還是64位
檢視cpu位數(32 or 64)
getconf long_bit
4、使用centos常用命令檢視當前linux的版本
more /etc/redhat-release
cat /etc/redhat-release
5、使用centos常用命令檢視核心版本
uname -r
uname -a
6、使用centos常用命令檢視硬碟和分割槽
df -h fdisk -l 也可以檢視分割槽
du -sh 可以看到全部占用的空間
du /etc -sh 可以看到這個目錄的大小
7、使用centos常用命令檢視安裝的軟體包
檢視系統安裝的時候裝的軟體包
cat -n /root/install.log
more /root/install.log | wc -l
8、使用centos常用命令檢視鍵盤布局
cat /etc/sysconfig/keyboard
cat /etc/sysconfig/keyboard | grep keytable | cut -f2 -d=
9、使用centos常用命令檢視selinux情況
sestatus
sestatus | cut -f2 -d:
cat /etc/sysconfig/selinux
10、使用centos常用命令檢視ip,mac位址
在ifcfg-eth0 檔案裡你可以看到mac,閘道器等資訊。 ifconfig cat /etc/sysconfig/network-scripts/ifcfg-eth0 | grep ipaddr cat /etc/sysconfig/network-scripts/ifcfg-eth0 | grep ipaddr | cut -f2 -d= ifconfig eth0 |grep 「inet addr:」 |awk 『』|cut -c 6- ifconfig | grep 『inet addr:』| grep -v 』127.0.0.1′ | cut -d: -f2 | awk 『』 檢視閘道器 cat /etc/sysconfig/network 檢視dns cat /etc/resolv.conf 十二:使用centos常用命令查
看預設語言
echo $lang $language
cat /etc/sysconfig/i18n
11、使用centos常用命令檢視所屬時區和是否使用utc時間
cat /etc/sysconfig/clock
12、使用centos常用命令檢視主機名
cat /etc/sysconfig/network
修改主機名就是修改這個檔案,同時最好也把host檔案也修改。
13:使用centos常用命令檢視開機執行時間
uptime
09:44:45 up 67 days, 23:32, …
14、檢視主機板資訊
dmidecode |more
centos 下檢視硬體資訊
centos 下檢視硬體資訊 一 使用centos常用命令檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo root localhost grep cpu proc cpuinfo model name inte...
Centos 6 5 檢視硬體資訊
測試機器的硬體資訊 檢視cpu資訊 型號 cat proc cpuinfo grep name cut f2 d uniq c 8 intel r xeon r cpu e5410 2.33ghz 看到有8個邏輯cpu,也知道了cpu型號 cat proc cpuinfo grep physical...
檢視硬體資訊
測試機器的硬體資訊 檢視cpu資訊 型號 cat proc cpuinfo grep name cut f2 d uniq c 8 intel r xeon r cpu e5410 2.33ghz 看到有8個邏輯cpu,也知道了cpu型號 cat proc cpuinfo grep physical...