歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux基礎知識

Ubuntu 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