这个问题在http://sudan.ubuntuforums.com/showthread.php?s=1e84e5731604622b9d1beae8b2e05dc1&t=966844&page=2找到了具体的解决方法.好像和alsa和无线网有关.
翻译一下方法:
解决这个问题的方法:
命令行打开文件 /etc/init.d/alsa-utils
代码:
sudo gedit /etc/init.d/alsa-utils
在 353行找到语句 "stop)". 然后在下面添加如下指令
ifconfig wlan0 down
ifconfig eth0 down
所以修改完后如下
stop)
ifconfig wlan0 down
ifconfig eth0 down
EXITSTATUS=0
然后保存文件,这个方法在我机子上解决了关机错误的问题.