|

楼主 |
发表于 2010-1-17 23:35:16
|
显示全部楼层
解决方案:
Baselayout is Gentoo's system initialization system when Gentoo boots. If all goes well installing NetworkManager then disable any baselayout networking scripts.
Remove your current network devices from start up. If you don't, you will have dueling dhcp clients fighting over your interfaces and eating up CPU:
rc-update del net.eth0
rc-update del net.ath0
...
net.lo is needed for for a local loopback interface, leave this be.
If you are using udev, you will also need to block it from attempting to automatically initialize your network interfaces. This can be done by modifying the /etc/conf.d/rc file (or /etc/rc.conf on OpenRC). For example, to block eth0 from loading, add this:
File: /etc/conf.d/rc
RC_PLUG_SERVICES="!net.eth0"
The following line should block all Ethernet and wireless interfaces:
File: /etc/conf.d/rc
RC_PLUG_SERVICES="!net.eth* !net.wlan*"
来自http://www.gentoo-wiki.info/HOWTO_NetworkManager |
|