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也可以獲取到,可順利上線了。
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也可以獲取到,可順利上線了。