본문 바로가기

프로그램 경험/운영체제

[리눅스] 노트북에 우분투 설치후 종료 안되는 현상 해결

Re: acpid:exiting error during shutdown

Might be linked with this bug:
https://bugs.launchpad.net/ubuntu/+s...er/+bug/274995

Possible workaround:
Open the file /etc/init.d/alsa-utils with root privileges:
Code:
gksudo gedit /etc/init.d/alsa-utils
Search for the "stop)" entry, somewhere near line 353 . Add these lines, accordingly to your network names:

Code:
ifconfig wlan0 down
ifconfig eth0 down
In the end it should be something like this:
Code:
stop)
ifconfig wlan0 down
ifconfig eth0 down
EXITSTATUS=0
Save the file and try to shutdown.

출처 : http://ubuntuforums.org/showthread.php?t=987699