Linux를 사용하여 마더보드에 오류가 있는지 어떻게 테스트합니까?

Linux를 사용하여 마더보드에 오류가 있는지 어떻게 테스트합니까?

나는 firefox, qsynth 및 totem에 무작위로 이상한 세그폴트가 발생하는 것을 경험했습니다. 주로 파이어폭스.

smartctl 및 dd를 사용하여 하드 드라이브를 테스트하고 memtest를 사용하여 RAM을 테스트했습니다. 그런데 마더보드를 어떻게 테스트합니까?

우분투 12.04를 실행 중입니다.

하드웨어 오류가 세그폴트의 원인이 아니더라도 여전히 Linux에서 일부 명령을 실행하고 마더보드를 테스트할 수 있기를 원합니다. 여기서 나의 전반적인 목표는 그 지식을 얻는 것입니다.

감사해요!

답변1

Linux에서 마더보드 상태를 확인하려면 루트 사용자로 아래 명령을 사용할 수 있습니다.

sudo dmidecode |grep -B 2 Stat

모든 주변 장치 작동 상태를 제공합니다.

예를 들어:

[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

관련 정보