좋아서하는수련원 [코딩|해동검도|기천]
유성구청 옆 / 스타벅스 뒷편
( 042 - 863 - 9875 )

벚꽃이 피다!

벚꽃이 피었다.

홈페이지 서버가 다운되어서 사무실에 나왔다.
왜 죽었는지는 확실히 알 수가 없으나 기존에 로그를 살펴보면 CPU 온도가 높다는 메시지가
자꾸 떴으므로 이유일 듯 싶어서 컴퓨터 청소를 간단히 해주고
CPU 표면과 방열판의 이물질을 제거해주고 
써멀구리스 대신에 치약을 살짝 발라 주었다.
인터넷을 검색해보니 임시방편으로 괜찮다고 한다.

청소를 하니 일단 팬소리가 좀 조용해졌고
이렇게 홈페이지에 접속해서 글을 남길 수가 있다.

경과를 지켜봐야 할 듯 하다.

182.226.43.150 / 2015-03-29 14:02:52 작성




홈페이지 서버가 죽기 직전의 로그 

6358 Mar 28 21:59:23 elsa kernel: [79124.988023] [Hardware Error]: Machine check events logged
6359 Mar 28 21:59:23 elsa mcelog: Processor 0 heated above trip temperature. Throttling enabled.
6360 Mar 28 21:59:23 elsa mcelog: Please check your system cooling. Performance will be impacted
6361 Mar 28 21:59:23 elsa mcelog: Processor 0 below trip temperature. Throttling disabled
6362 Mar 28 21:59:23 elsa mcelog: Processor 1 heated above trip temperature. Throttling enabled.
6363 Mar 28 21:59:23 elsa mcelog: Please check your system cooling. Performance will be impacted
6364 Mar 28 21:59:23 elsa mcelog: Processor 1 below trip temperature. Throttling disabled


182.226.43.150 / 2015-03-29 14:10:16 작성

lm-sensor는 cpu, system,fan speed,voltage 확인

182.226.43.150 / 2015-03-29 14:17:43 작성

 설치
$ sudo apt-get install lm-sensors

# 센서 검색
$ sudo sensors-detect
$ sudo service module-init-tools restart

# 온도 확인
$ sensors

일반적인 HDD의 경우, S.M.A>R.T 정보에 온도가 포함되기 때문에 htttemp를 사용하여 해당 HDD의 온도를 확인할 수 있다.
$ sudo apt-get install hddtemp

# 설치시 외부에서 접속해서 온도확인이 가능하게 데몬을 항상 실행시킬지 묻는다. 
# 혹은 아래의 명령으로 이를 설정할 수 있다.
$ sudo dpkg-reconfigure hddtemp

# 온도 확인
$ sudo hddtemp /dev/sda


182.226.43.150 / 2015-03-29 14:20:18 작성