如何使用 Linux 测试我的主板是否出现故障?

cat*_*nts 6 motherboard memory linux firefox ubuntu

我一直有奇怪的段错误随机发生在 firefox、qsynth 和 totem 上。主要是火狐。

我已经用 smartctl 和 dd 测试了我的硬盘驱动器,并用 memtest 测试了我的内存,但是我如何测试我的主板?

运行 Ubuntu 12.04。

我还想指出,即使硬件故障不是段错误的原因,我仍然希望能够在 Linux 中运行一些命令并测试我的主板。我在这里的总体目标是获得那部分知识。

谢谢!

rɑː*_*dʒɑ 9

要在 Linux 中检查主板健康状况,您可以以 root 用户身份使用以下命令。

sudo dmidecode |grep -B 2 Stat
Run Code Online (Sandbox Code Playgroud)

它将给出所有外围工作状态的状态。

例如:

[root@Ubuntu ~]# dmidecode |grep -B 2 Stat
Serial Number: .....
Asset Tag:
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
--
Max Speed: 5200 MHz
Current Speed: 2400 MHz
Status: Populated, Enabled
--
On Board Device Information
Type: Ethernet
Status: Enabled
--
On Board Device Information
Type: Sound
Status: Enabled
--
On Board Device Information
Type: Other
Status: Enabled
--
Access Method: Memory-mapped physical 32-bit address
Access Address: 0xFFF81000
Status: Valid, Not Full
--
Handle 0x1800, DMI type 24, 5 bytes.
Hardware Security
Power-On Password Status: Enabled
Keyboard Password Status: Not Implemented
Administrator Password Status: Enabled
Front Panel Reset Status: Not Implemented
--
Cooling Device
Type: Fan
Status: OK
--
Cooling Device
Type: Fan
Status: OK
--
Cooling Device
Type: Fan
Status: OK
--
Handle 0x2000, DMI type 32, 11 bytes.
System Boot Information
Status: No errors detected
Run Code Online (Sandbox Code Playgroud)