centos檢視系統資訊-centos檢視命令
一:檢視cpu
more /proc/cpuinfo | grep "model name"
grep "model name" /proc/cpuinfo
如果覺得需要看的更加舒服
grep "model name" /proc/cpuinfo | cut -f2 -d:
怎麼樣,linux的命令就要這樣熟悉。
二:檢視記憶體
[root@centos ~]# grep memtotal /proc/meminfo
[root@centos ~]# grep memtotal /proc/meminfo | cut -f2 -d:
[root@centos ~]# free -m |grep "mem" | awk ''
[root@centos ~]# free -m
三:檢視cpu是32位還是64位
檢視cpu位數(32 or 64)
[root@centos ~]# getconf long_bit
[root@centos ~]# echo $hosttype
[root@centos ~]# uname -a
四:檢視當前linux的版本
[root@centos ~]# more /etc/redhat-release
[root@centos ~]# cat /etc/redhat-release
五:檢視核心版本
[root@centos ~]# uname -r
[root@centos ~]# uname -a
六:檢視當前時間
[root@centos ~]# date
七:檢視硬碟和分割槽
[root@centos ~]# df -h
[root@centos ~]# fdisk -l
也可以檢視分割槽
[root@centos home]# du -sh
可以看到全部占用的空間
[root@centos home]# du /var/www -sh
可以看到這個目錄的大小
八:檢視安裝的軟體包
檢視系統安裝的時候裝的軟體包
cat -n /root/install.log
more /root/install.log | wc -l
檢視現在已經安裝了那些軟體包
[root@centos home]# rpm -qa
.......................
.......................
.......................
.......................
.......................
[root@centos home]# rpm -qa | wc -l
[root@centos home]# yum list installed | wc -l
不過很奇怪,我通過rpm,和yum這兩種方式查詢的安裝軟體包,數量並不一樣。沒有找到原因。
九:檢視鍵盤布局
[root@centos home]# cat /etc/sysconfig/keyboard
[root@centos home]# cat /etc/sysconfig/keyboard | grep keytable | cut -f2 -d=
十:檢視selinux情況
[root@centos home]# sestatus
[root@centos home]# sestatus | cut -f2 -d:
[root@centos home]# cat /etc/sysconfig/selinux
在ifcfg-eth0 檔案裡你可以看到mac,閘道器等資訊。
[root@centos home]# ifconfig
[root@centos home]# cat /etc/sysconfig/network-scripts/ifcfg-auto_eth0
[root@centos home]# cat /etc/sysconfig/network-scripts/ifcfg-auto_eth0 | grep ipaddr | cut -f2 -d=
[root@centos home]# ifconfig eth0 |grep "inet addr:" |awk ''|cut -c 6-
[root@centos home]# ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk ''
檢視閘道器
[root@centos home]# cat /etc/sysconfig/network
檢視dns
[root@centos home]# cat /etc/resolv.conf
十二:檢視預設語言
[root@centos home]# echo $lang $language
[root@centos home]# cat /etc/sysconfig/i18n
十三:檢視所屬時區和是否使用utc時間
[root@centos /]# cat /etc/sysconfig/clock
十四:檢視主機名
[root@centos /]# hostname
[root@centos /]# cat /etc/sysconfig/network
修改主機名就是修改這個檔案,同時最好也把host檔案也修改
收藏
CentOS檢視系統資訊 CentOS檢視命令
一 檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo 如果覺得需要看的更加舒服 grep model name proc cpuinfo cut f2 d 怎麼樣,linux的命令就要這樣熟悉。二 檢視內 roo...
CentOS檢視系統資訊
一 檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo 如果覺得需要看的更加舒服 grep model name proc cpuinfo cut f2 d 怎麼樣,linux的命令就要這樣熟悉。二 檢視內 roo...
CentOS怎樣檢視系統資訊
1 登陸centos,啟動終端。2登陸root帳戶,輸入 cat etc redhat release,即可顯示系統版本。3輸入 uname r 可以查詢核心版本。輸入 df h,可以檢視各分割槽的使用情況。其中,從左到右各列的內容依次是 檔案系統 總大小 已使用大小 剩餘大小 使用率 掛載點。2輸...