centos 下檢視硬體資訊
一:使用centos常用命令檢視cpu
more /proc/cpuinfo | grep "model name"
grep "model name" /proc/cpuinfo
[root@localhost ~]# grep "cpu" /proc/cpuinfo
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
model name : intel(r) xeon(r) cpu e5506 @ 2.13ghz
如果覺得需要看的更加舒服
grep "model name" /proc/cpuinfo | cut -f2 -d:
二:使用centos常用命令檢視記憶體、
grep memtotal /proc/meminfo
grep memtotal /proc/meminfo | cut -f2 -d:
free -m |grep "mem"
三:使用centos常用命令檢視cpu是32位還是64位
getconf long_bit
五:使用centos常用命令檢視核心版本
uname -r
uname -a
六:使用centos常用命令檢視當前時間
date
設定系統時間
date -s "20110317 18:30:50" &&hwclock --systohc
同步系統時間
ntpdate 210.72.145.44
0 23 * * * /usr/sbin/ntpdate 210.72.145.44 > /dev/null 2>&1
七:使用centos常用命令檢視硬碟和分割槽
檢視分割槽 fdisk -l
看到全部占用的空間 du -sh
看到這個目錄的大小 du /etc -sh
八:使用centos常用命令檢視安裝的軟體包
檢視系統安裝的時候裝的軟體包
cat -n /root/install.log
more /root/install.log | wc -l
檢視現在已經安裝了那些軟體包
rpm -qa
rpm -qa | wc -l
yum list installed | wc -l
九:使用centos常用命令檢視鍵盤布局
cat /etc/sysconfig/keyboard
cat /etc/sysconfig/keyboard | grep keytable | cut -f2 -d
十:使用centos常用命令檢視selinux情況
sestatus | cut -f2 -d:
cat /etc/sysconfig/selinux
十一:使用centos常用命令檢視ip,mac位址
ifconfig
cat /etc/sysconfig/network-scripts/ifcfg-eth0 | grep ipaddr
cat /etc/sysconfig/network-scripts/ifcfg-eth0 | grep ipaddr | cut -f2
ifconfig eth0 |grep "inet addr:"
檢視閘道器 cat /etc/sysconfig/network
檢視dns cat /etc/resolv.conf
十二:使用centos常用命令檢視預設語言
echo $lang $language
十二:使用centos常用命令檢視所屬時區和是否使用utc時間
cat /etc/sysconfig/clock
十三:使用centos常用命令檢視主機名
cat /etc/sysconfig/network
十四:使用centos常用命令檢視開機執行時間
uptime
檢視主機板資訊
dmidecode |more
CentOS檢視硬體資訊
1 centos 下檢視硬體資訊內容非常全面。centos常用命令檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo root localhost grep cpu proc cpuinfo model name ...
Linux 下 硬體資訊 檢視
在linux環境開發驅動程式,首先要探測到新硬體,接下來就是安裝驅動程式。探測硬體裝置 用硬體檢測程式kuduz探測新硬體 service kudzu start or restart 檢視cpu資訊 cat proc cpuinfo 檢視板卡資訊 cat proc pci 檢視pci資訊 lspc...
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...