http://nmrj.bloghome.cn/posts/147657.html
启动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在您下次登录时仍将试图重启动设置守护进程
看了看,她竟然使用了路由器,随口说了句,“这简直是太好了”,也就随手把原来的内容都给删除,并修改为如下:(红字为注释,不是文件内容)
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0 ←路由器,当然使用dhcp了,让路由器给你个内网地址,比设置为固定的要来得方便些,不是吗?
相信如下的配置,能够解决大多数人出现的网络配置问题。对于熟悉这方面配置及有特殊需要的人,可以相应进行变通予以解决:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0 ## 这个应该是决定是否启用这个端口
iface eth0 inet static ## 静态设置IP
#hwaddress ether 52:54:xx:51:xx:xx ## 加入MAC地址,记得用就放在IP地址之前
address 192.168.1.XXX ## 自己的IP地址,要填写对呀。
netmask 255.255.255.0
#broadcast 192.168.1..255 ## 我一般是不用广播地址的。
#network 192.168.1.0 ## 我一般不启用
gateway 192.168.1.1 ## 注意网关应该依据实际情况予以填写。
启动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在您下次登录时仍将试图重启动设置守护进程
看了看,她竟然使用了路由器,随口说了句,“这简直是太好了”,也就随手把原来的内容都给删除,并修改为如下:(红字为注释,不是文件内容)
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0 ←路由器,当然使用dhcp了,让路由器给你个内网地址,比设置为固定的要来得方便些,不是吗?
相信如下的配置,能够解决大多数人出现的网络配置问题。对于熟悉这方面配置及有特殊需要的人,可以相应进行变通予以解决:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0 ## 这个应该是决定是否启用这个端口
iface eth0 inet static ## 静态设置IP
#hwaddress ether 52:54:xx:51:xx:xx ## 加入MAC地址,记得用就放在IP地址之前
address 192.168.1.XXX ## 自己的IP地址,要填写对呀。
netmask 255.255.255.0
#broadcast 192.168.1..255 ## 我一般是不用广播地址的。
#network 192.168.1.0 ## 我一般不启用
gateway 192.168.1.1 ## 注意网关应该依据实际情况予以填写。