硬件系统信息收集-1-系统信息

1、查看系统信息

//发行版系统的简要信息 
cat /etc/issue
//redhat系列Linux版本号 
cat /etc/redhat-release
//更详细的内核系统版本信息,由lsb包提供 
lsb_release -a
//内核版本号 
uname -r

2、查看当前系统负载

//一分钟五分钟,十分钟负载 
uptime

//uptime其实就是读取了这个文件的信息
cat /proc/loadavg

3、查看机器型号

//读取bios中的设备厂商信息 
dmidecode | grep "Product Name"

4、查看当前加载到内存中的内核版本

cat /proc/version 

5、查看文件系统以及挂载

mount | column -t 

6、查看系统周边

//查看系统usb设备 
lsusb -tv
//查看系统pci设备 
lspci -tv
//加载到内核中的模块 
lsmod
//当前生效环境变量 
env
//系统信息 
dmidecode -t system
//键盘和鼠标设备 
cat /proc/bus/usb/devices
//查看中断设备 
cat /proc/interrupts
//查看机器硬件综合信息 
lshw

7、查看linux重启记录

cat /var/log/boot.log|grep syslog 

last |grep reboot

你可能感兴趣的:(linux,硬件信息,系统信息)