1.cpu
查看CPU信息
# 总核数 = 物理CPU个数 X 每颗物理CPU的核数
# 总逻辑CPU数 = 物理CPU个数 X 每颗物理CPU的核数 X 超线程数
# 查看物理CPU个数
cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l
# 查看每个物理CPU中core的个数(即核数)
cat /proc/cpuinfo| grep "cpu cores"| uniq
# 查看逻辑CPU的个数
cat /proc/cpuinfo| grep "processor"| wc -l
# 查看CPU信息(型号)
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
#lscpu命令,查看的是cpu的统计信息.(部分旧版本不支持)
Disk /dev/sda: 64.4 GB, bytes
heads, sectors/track, cylinders
Units = cylinders of * = bytes
Sector size (logical/physical): bytes / bytes
I/O size (minimum/optimal): bytes / bytes
Disk identifier: 0x0000859f Device Boot Start End Blocks Id System
/dev/sda1 * Linux
Partition does not end on cylinder boundary.
/dev/sda2 8e Linux LVM Disk /dev/mapper/vg_qdy-lv_root: 53.7 GB, bytes
heads, sectors/track, cylinders
Units = cylinders of * = bytes
Sector size (logical/physical): bytes / bytes
I/O size (minimum/optimal): bytes / bytes
Disk identifier: 0x00000000
使用#cat /proc/cpuinfo ,可以知道每个cpu信息,如每个CPU的型号,主频等。
2.内存
#free -m # 查看内存使用量和交换区使用量
total used free shared buffers cached
Mem:
-/+ buffers/cache:
Swap:
# cat /proc/meminfo
#dmidecode -t memory 查看内存硬件信息
grep MemTotal /proc/meminfo# 查看内存总量
grep MemFree /proc/meminfo # 查看空闲内存量
lsmod # 列出加载的内核模块
3.磁盘
# lsblk 查看硬盘与分区分而
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda : 60G disk
├─sda1 : 500M part /boot
└─sda2 : .5G part
├─vg_qdy-lv_root (dm-) : 50G lvm /
├─vg_qdy-lv_swap (dm-) : .9G lvm [SWAP]
└─vg_qdy-lv_home (dm-) : .7G lvm /home
sr0 : 1024M rom
#df -h # 查看各分区使用情况
#du -sh # 查看指定目录的大小
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_qdy-lv_root 50G .7G 44G % /
tmpfs .9G .9G % /dev/shm
/dev/sda1 485M 39M 421M % /boot
/dev/mapper/vg_qdy-lv_home .6G 239M .1G % /home
#fdisk -l # 查看所有分区详细信息
Disk /dev/sda: 64.4 GB, bytes
heads, sectors/track, cylinders
Units = cylinders of * = bytes
Sector size (logical/physical): bytes / bytes
I/O size (minimum/optimal): bytes / bytes
Disk identifier: 0x0000859f
Device Boot Start End Blocks Id System
/dev/sda1 * Linux
Partition does not end on cylinder boundary.
/dev/sda2 8e Linux LVM
Disk /dev/mapper/vg_qdy-lv_root: 53.7 GB, bytes
heads, sectors/track, cylinders
Units = cylinders of * = bytes
Sector size (logical/physical): bytes / bytes
I/O size (minimum/optimal): bytes / bytes
Disk identifier: 0x00000000
...... 下方省略!
4.网卡信息
# lspci | grep -i 'eth' 查看网卡硬件信息
# ifconfig -a 查看系统所有网络接口
或 #ip link show
# ethtool eth0 查看某个网络接口的详细信息
5.主板所有硬件槽PCI信息。
#lspci
更详细的lspci -v 或者 lspci -vv
#lscpi -t 设备树
6.查看bios 信息
# dmidecode -t bios
7. 查看系统运行时间、用户数、负载
#uptime
#cat /proc/loadavg # 查看系统负载磁盘和分区
8. 查看挂接的分区状态
#mount | column -t
9. 查看系统负载 磁盘和分区
# cat /proc/loadavg
10.查看所有安装的软件包
#rpm -qa
11. 查看所有进程
# ps -ef
12. 查看所有监听端口
#netstat -lntp
13.查用户与组信息
#cut -d: -f1 /etc/passwd # 查看系统所有用户 cat /etc/passwd |more 显示长系统用户并分页
#cut -d: -f1 /etc/group # 查看系统所有组 cat /etc/group|more 显示长系统所有组并分页
14其它不常用查看信息命令
swapon -s # 查看所有交换分区
iptables -L # 查看防火墙设置
hdparm -i /dev/hda # 查看磁盘参数(仅适用于IDE设备)
dmesg | grep IDE # 查看启动时IDE设备检测状况网络
crontab -l # 查看当前用户的计划任务 服务
chkconfig –list # 列出所有系统服务#
chkconfig –list | grep on # 列出所有启动的系统服务 程序