一:使用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
如果覺得需要看的更加舒服
grep "model name" /proc/cpuinfo | cut -f2 -d:
二:使用centos常用命令檢視記憶體
grep memtotal /proc/meminfo grep memtotal /proc/meminfo | cut -f2 -d: free -m |grep "mem" | awk ''
三:使用centos常用命令檢視cpu是32位還是64位
檢視cpu位數(32 or 64)
getconf long_bit
四:使用centos常用命令檢視當前linux的版本
more /etc/redhat-release
cat /etc/redhat-release
五:使用centos常用命令檢視核心版本
uname -r
uname -a
六:使用centos常用命令檢視當前時間
date上面已經介紹如何同步時間了
七:使用centos常用命令檢視硬碟和分割槽
df -h
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
不過很奇怪,我通過rpm,和yum這兩種方式查詢的安裝軟體包,數量並不一樣。沒有找到原因。
九:使用centos常用命令檢視鍵盤布局
cat /etc/sysconfig/keyboard
cat /etc/sysconfig/keyboard | grep keytable | cut -f2 -d=
十:使用centos常用命令檢視selinux情況
sestatus
sestatus | cut -f2 -d:
cat /etc/sysconfig/selinux
在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
十二:使用centos常用命令檢視所屬時區和是否使用utc時間
cat /etc/sysconfig/clock
十三:使用centos常用命令檢視主機名
hostname
cat /etc/sysconfig/network
修改主機名就是修改這個檔案,同時最好也把host檔案也修改。
十四:使用centos常用命令檢視開機執行時間
uptime
09:44:45 up 67 days, 23:32, ...
看來剛才確實是網段的問題,我的機器還是67天前開機的。
#系統資源使用情況
vmstat 1 -s m procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------ r b swpd free buff cache si so bi bo in cs us sy id wa st 0 0 0 233 199 778 0 0 4 25 1 1 3 0 96 0 0 0 0 0 233 199 778 0 0 0 0 1029 856 13 1 86 0 0
整理CentOS常用命令
在電腦常用操作中,我們經常會用到centos常用命令。所以,我們對一些經常使用又很重要的centos常用命令進行了全面的整理。下面,就給大家介紹這些centos常用命令。一 使用centos常用命令檢視cpu more proc cpuinfo grep model name grep model ...
整理CentOS常用命令
centos常用命令在我們的使用中,經常被使用。所以,我們對一些經常使用又很重要的centos常用命令進行了全面的整理。下面,就來介紹這些centos常用命令。一 使用centos常用命令檢視cpu more proc cpuinfo grep model name grep model name ...
整理基礎的CentOS常用命令
centos常用命令在我們的使用中,經常被使用。所以,我們對一些經常使用又很重要的centos常用命令進行了全面的整理。下面,就來介紹這些centos常用命令。一 使用centos常用命令檢視cpu more proc cpuinfo grep model name grep model name ...