Ubuntu 17.04의 CPU 하드웨어 오류


12

누구든지 dmesg를 볼 때 얻은 오류 메시지를 설명 할 수 있습니까? 저는 우분투와 Linux World를 처음 사용합니다.

[ 7.802351] CPU4: Core temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802352] CPU0: Core temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802353] CPU5: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802354] CPU0: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802354] CPU4: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802356] CPU1: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802356] mce: [Hardware Error]: Machine check events logged
[ 7.802362] mce: [Hardware Error]: CPU 4: Machine Check: 0 Bank 128: 00000000880a0003
[ 7.802363] mce: [Hardware Error]: TSC 99561677c
[ 7.802385] mce: [Hardware Error]: PROCESSOR 0:506e3 TIME 1501537538 SOCKET 0 APIC 1 microcode ba
[ 7.802387] mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 128: 00000000880a0003
[ 7.802387] mce: [Hardware Error]: TSC 995616be4
[ 7.802388] mce: [Hardware Error]: PROCESSOR 0:506e3 TIME 1501537538 SOCKET 0 APIC 0 microcode ba
[ 7.802389] CPU2: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802390] CPU6: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802391] CPU3: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.802392] CPU7: Package temperature above threshold, cpu clock throttled (total events = 1)
[ 7.826359] CPU4: Core temperature/speed normal
[ 7.826359] CPU0: Core temperature/speed normal
[ 7.826360] CPU2: Package temperature/speed normal
[ 7.826361] CPU6: Package temperature/speed normal
[ 7.826361] CPU0: Package temperature/speed normal
[ 7.826362] CPU4: Package temperature/speed normal
[ 7.826363] mce: [Hardware Error]: Machine check events logged
[ 7.826367] mce: [Hardware Error]: CPU 4: Machine Check: 0 Bank 128: 00000000880b0002
[ 7.826368] mce: [Hardware Error]: TSC 99916f004
[ 7.826369] mce: [Hardware Error]: PROCESSOR 0:506e3 TIME 1501537538 SOCKET 0 APIC 1 microcode ba
[ 7.826369] mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 128: 00000000880b0002
[ 7.826370] mce: [Hardware Error]: TSC 99916f2ca
[ 7.826370] mce: [Hardware Error]: PROCESSOR 0:506e3 TIME 1501537538 SOCKET 0 APIC 0 microcode ba
[ 7.826400] CPU1: Package temperature/speed normal
[ 7.826401] CPU5: Package temperature/speed normal
[ 7.826402] CPU3: Package temperature/speed normal
[ 7.826402] CPU7: Package temperature/speed normal
[ 467.922330] CPU4: Core temperature above threshold, cpu clock throttled (total events = 73)
[ 467.922331] CPU0: Core temperature above threshold, cpu clock throttled (total events = 73)
[ 467.922332] CPU7: Package temperature above threshold, cpu clock throttled (total events = 86)
[ 467.922333] CPU3: Package temperature above threshold, cpu clock throttled 

4.10.0-29-generic kernal을 사용하여 Ubuntu 17.04를 실행 중입니다.


아니면 내가 할 소프트웨어 버그보고 새로운 레노버 T480S의 내 로그에 동일한을 가지고있다 bugs.launchpad.net/ubuntu/+source/linux/+bug/1781924
롤프 슈마허

답변:


8

CPU가 과열되어 MCE (machine check events)로 들어가고 있습니다. 즉, 충돌하고 있습니다. syslog에 다른 온도 관련 이벤트가 표시되지 않으면 CPU 냉각기 / 팬 / 열 파이프 / 열 페이스트가 작동하지 않기 때문일 수 있습니다.

  • terminal명령으로 syslog를 확인하십시오 ...

    grep -i -e temp -e therm /var/log/syslog*
    
  • 기계가 매우 더럽거나 먼지가 많은 경우 기계 과열에 중요한 역할을 할 수 있습니다. 청소하십시오.

  • 컴퓨터에 Intel 프로세서 intel-microcode가 설치되어 있는지 확인하십시오 .

    sudo apt-get update
    sudo apt-get install intel-microcode
    reboot
    
  • thermald온도를 조절하고 조절하기 위해 설치 하십시오.

    sudo apt-get update
    sudo apt-get install thermald
    reboot
    
  • BIOS 버전을 확인하십시오. 전원을 켤 때 BIOS를 입력하고 버전 번호를 기록하십시오. 컴퓨터 제조업체 / 모델을 사용하여 제조업체 웹 사이트로 이동하십시오. 지원 / 다운로드 섹션으로 이동하여 최신 BIOS가 있는지 확인하십시오.

  • 마지막으로 구형 머신 인 경우 프로세서와 히트 파이프 / 팬 쿨러 사이에있는 열 화합물을 다시 적용해야합니다. 이것은 약간의 기술 경험이 필요합니다.


1
intel-micorocode온도에 어떤 영향을 미칩니 까?
gene_wood

@gene_wood 언급했듯이 먼지, 팬 또는 열적 복합 문제 일 수 있으며 마이크로 코드 확인은 문제를 원격으로 진단하는 데 도움이되는 또 다른 단계 일뿐입니다. CPU에서 오래된 마이크로 코드를 실행하면 다양한 문제가 발생할 수 있습니다. 그것을 확인하는 초.
heynnema
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.