LINUX下,怎么检查硬件损坏的情况

如题所述

第1个回答  推荐于2018-07-25
查看/var/log/message

dmesg |egrep "sd|eth/memory/disk"

cat /var/log/messages |grep -i fail

dmesg |grep -i err

检查硬盘是否正常

smartctl简单用法
smartctl -A /dev/sda 查看硬盘的详细信息

smartctl -a <device> 检查该设备是否已经打开SMART技术。

smartctl -s on <device> 如果没有打开SMART技术,使用该命令打开SMART技术。

smartctl -t short <device> 后台检测硬盘,消耗时间短;

smartctl -t long <device> 后台检测硬盘,消耗时间长;

smartctl -C -t short <device> 前台检测硬盘,消耗时间短;

smartctl -C -t long <device> 前台检测硬盘,消耗时间长。其实就是利用硬盘SMART的自检程序。

smartctl -X <device> 中断后台检测硬盘。

smartctl -l selftest <device> 显示硬盘检测日志。

smartctl -l error <device> 显示硬盘错误汇总。

内存可以看这个日志

/var/log下的mcelog

如果内存有问题就会出现下面的日志信息

Corrected error
MCi_MISC register valid
MCi_ADDR register valid
MCA: MEMORY CONTROLLER RD_CHANNELunspecified_ERR
Transaction: Memory read error
Memory read ECC erro本回答被提问者和网友采纳
相似回答