【Linux】查看系统资源及相关信息
查看系统信息:
uname -a # 查看Linux内核版本信息 cat /proc/version # 查看内核版本 cat /etc/issue # 查看系统版本 lsb_release -a # 查看系统版本 需安装 centos-release locale -a # 列出所有语系 locale # 当前环境变量中所有编码 hwclock # 查看时间 who # 当前在线用户 w # 当前在线用户 whoami # 查看当前用户名 logname # 查看初始登陆用户名 uptime # 查看服务器启动时间 sar -n DEV 1 10 # 查看网卡网速流量 dmesg # 显示开机信息 lsmod # 查看内核模块
查看剩余内存:
free -m #-/+ buffers/cache: 6458 1649 #6458M为真实使用内存 1649M为真实剩余内存(剩余内存+缓存+缓冲器) #linux会利用所有的剩余内存作为缓存,所以要保证linux运行速度,就需要保证内存的缓存大小
硬件信息:
more /proc/cpuinfo # 查看cpu信息 lscpu # 查看cpu信息 cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c # 查看cpu型号和逻辑核心数 getconf LONG_BIT # cpu运行的位数 cat /proc/cpuinfo | grep 'physical id' |sort| uniq -c # 物理cpu个数 cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l # 结果大于0支持64位 cat /proc/cpuinfo|grep flags # 查看cpu是否支持虚拟化 pae支持半虚拟化 IntelVT 支持全虚拟化 more /proc/meminfo # 查看内存信息 dmidecode # 查看全面硬件信息 dmidecode | grep "Product Name" # 查看服务器型号 dmidecode | grep -P -A5 "Memory\s+Device" | grep Size | grep -v Range # 查看内存插槽 cat /proc/mdstat # 查看软raid信息 cat /proc/scsi/scsi # 查看Dell硬raid信息(IBM、HP需要官方检测工具) lspci # 查看硬件信息 lspci|grep RAID # 查看是否支持raid lspci -vvv |grep Ethernet # 查看网卡型号 lspci -vvv |grep Kernel|grep driver # 查看驱动模块 modinfo tg2 # 查看驱动版本(驱动模块) ethtool -i em1 # 查看网卡驱动版本 ethtool em1
日志管理命令:
history # 历时命令默认1000条 HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " # 让history命令显示具体时间 history -c # 清除记录命令 cat $HOME/.bash_history # 历史命令记录文件 lastb -a # 列出登录系统失败的用户相关信息 清空二进制日志记录文件 echo > /var/log/btmp last # 查看登陆过的用户信息 清空二进制日志记录文件 echo > /var/log/wtmp 默认打开乱码 who /var/log/wtmp # 查看登陆过的用户信息 lastlog # 用户最后登录的时间 tail -f /var/log/messages # 系统日志 tail -f /var/log/secure # ssh日志
查看当前操作系统内核信息
# uname -a
查看当前操作系统发行版信息
#cat /etc/issue
查看物理cpu颗数
# cat /proc/cpuinfo | grep physical | uniq -c
查看cpu运行模式
# getconf LONG_BIT
查看cpu是否支持64bit
# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
查看cpu信息概要:
#lscpu
查看服务器型号、序列号
dmidecode|grep "System Information" -A9|egrep "Manufacturer|Product|Serial"
查看主板型号:
dmidecode |grep -A16 "System Information$"
查看BIOS:
dmidecode -t bios
查看内存槽及内存条
dmidecode -t memory | head -45 | tail -23
查看网卡信息
dmesg | grep -i Ethernet
查看PCI信息,主板所有硬件槽信息
lspci | head -10
二、查看CPU信息
(1)查看cpu型号
[root@Master ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 40 Intel(R) Xeon(R) CPU E5-2650 v3 @ 2.30GHz
(2)查看系统中实际物理CPU的数量(物理)
[root@Master ~]# grep 'physical id' /proc/cpuinfo | sort | uniq | wc -l 2
(3)系统中实际物理CPU的数量(核数)
[root@Master ~]# cat /proc/cpuinfo |grep 'processor'|wc -l 40
(4)查看每个物理CPU中core的个数(即核数)
[root@Master ~]# cat /proc/cpuinfo |grep "cores"|uniq cpu cores : 10
(5)查看CPU的主频
[root@Master ~]# cat /proc/cpuinfo |grep MHz|uniq cpu MHz : 1200.000 cpu MHz : 2300.000 cpu MHz : 1200.000
(6)查看CPU的详细信息
cat /proc/cpuinfo | head -20
(7)查看CPU的相关信息
[root@Master ~]# lscpu
(8)查看cpu运行模式
[root@Master ~]# getconf LONG_BIT 64
(9)查看cpu是否支持64bit
[root@Master ~]# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l 40
(结果大于0, 说明支持64bit计算. lm指long mode, 支持lm则是64bit)
三、查看内存信息
(1)查看内存硬件信息
root@Master ~]# dmidecode -t memory | head -45 | tail -24
(2)最大支持多少内存
[root@Master ~]# dmidecode|grep -P 'Maximum\s+Capacity'
(3)Linux 查看内存的插槽数,已经使用多少插槽.每条内存多大:
[root@Master ~]# dmidecode|grep -A5 'Memory Device' | grep Size | grep -v Range
(4)Linux 查看内存的频率:
[root@Master ~]# dmidecode|grep -A16 "Memory Device"|grep 'Speed'
(5)Linux 查看内存的详细信息:
[root@Master ~]# cat /proc/meminfo |head -20
(6)Linux 查看内存的使用情况
[root@Master ~]# free -m // -b,-k,-m,-g show output in bytes, KB, MB, or GB
四、查看硬盘信息
(1)查看挂接的分区状态
[root@Master ~]# fdisk -l |grep Disk
(2)查看硬盘和分区分布
[root@Master ~]# lsblk
(3)查看硬盘和分区的详细信息
[root@Master ~]# fdisk -l
(4)查看挂接的分区状态
[root@Master ~]# mount | column -t
(5)查看挂接的分区状态
[root@Master ~]# swapon -s
(6)查看硬盘使用情况
[root@Master ~]# df -hT
(7) 硬盘检测命令smartctl
[root@Master ~]# smartctl -a /dev/sda
五、查看网卡信息
(1)查看网卡硬件信息
[root@Master ~]# lspci | grep -i 'eth'
(2)查看系统的所有网络接口
[root@Master ~]# ifconfig -a [root@Master ~]# ip link show
(3)查看某个网络接口的详细信息,例如eth0的详细参数和指标
[root@Master ~]# ethtool eth0
(4)查看所有网卡的链路状态
[root@Master ~]# for i in `seq 0 9`;do ethtool eth${i} | egrep 'eth|Link';done
六、列出所有PCI设备信息
[root@Master ~]# lspci -tv | more
待续
赠人玫瑰
手留余香
我们曾如此渴望命运的波澜,到最后才发现:人生最曼妙的风景,竟是内心的淡定与从容……我们曾如此期盼外界的认可,到最后才知道:世界是自己的,与他人毫无关系!-杨绛先生
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的