歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu 8.04設置守護進程時出錯的解決

Ubuntu 8.04設置守護進程時出錯的解決

日期:2017/2/28 17:03:55   编辑:Linux教程

Ubuntu系統使用源從7.10升級到8.04後,啟動並在用戶登錄後,界面無響應5分鐘左右後,彈出出錯信息:

啟動GNOME設置守護進程時出錯
主題、聲音或者背景設置等可能不會正常工作。

最後的錯誤信息是:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.

GNOME在您下次登錄時仍將試圖重啟動設置守護進程

解決方法:
在啟動至將要登陸到用戶桌面時, 按Ctrl + Alt + F1 進入命令行模式,作如下修改:

sudo vim /etc/network/interfaces

auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp

注意“eth0”最後一個字為零,而非英文字母“歐”,完成鍵盤輸入後,按ESC,輸入:

wq!

保存並退出文件的修改,使用如下命令重新啟動網絡服務:

sudo /etc/init.d/networking restart
或者:
sudo ifdown eth0
或者:
sudo ifup eth0

重啟系統,發現問題已經解決,銳捷要求的動態ip也可以獲取到,可順利上線了。

Copyright © Linux教程網 All Rights Reserved