Ubuntu 14.04 - CPU#0 stuck for 23s !
* 개요
NMI watchdog: BUG: soft lockup - CPU#0 stuck for 23s ! [XXXXXX]
우분투 설치 당시부터 계속 보이던 오류이며,
(http://dogcowking.tistory.com/111)
겨우 설치한 후에도 shutdown 할 때마다 자동으로 꺼지지 않고 멈추는 오류
(Shutdown -> 정지 상태에서 F12같은 펑션키 누르면 확인 가능)
* 원인
Intel Core i7-6700HQ 충돌 있다고...
* 단기적 해결
nomodeset 으로 부팅하면 해결된다고..
1. 재부팅
2. GRUB 화면 나오면 'E' 키
3. 편집창에서 linux /boot/vmlinuz-xxxxx........ 행 찾아서
4. 행의 끝에 nouveau.modeset=0 문구를 추가
5. F10 눌러서 재부팅
다음 동영상 참고
- https://www.youtube.com/watch?v=nPprHes-K_Y
- nomodeset 의 역할
https://askubuntu.com/questions/207175/what-does-nomodeset-do
영어싫어
- 아래 결과를 봤을때 nomodeset 과 modeset=0 은 다른듯..
- acpi = off 설정에 대한 얘기도 있었는데 해보진 않음
* 위에서 수정한 결과가 저장 되진 않음.. 계속 반영 하는 방법
1. sudo nano /etc/default/grub
2. 다음 내용으로 수정
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 를 찾아서
= > GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nouveau.modeset=0"
3. sudo update-grub
- 참고 : 원문처럼
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
로 수정시 듀얼 모니터 인식 못 하는 증상..