View previous topic :: View next topic |
Author |
Message |
Kde_User n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 23 Jun 2007 Posts: 49
|
Posted: Tue Jun 10, 2008 7:52 pm Post subject: net.eth0 start on booter -- unremovable ;( |
|
|
Id like to make my gentoo box stop starting net.eth0 on boot, as this is now managed by networkmanager...
I tired
Code: |
rc-update del net.eth0
|
and it still trys to start the device....
also, can I have it start wireless at boot before login and yet still be able to use networkmanager? if so can you give me directions? thanks. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
mortagon n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/544255444496be986c9a4b.png)
Joined: 24 Sep 2007 Posts: 47 Location: Bulgaria
|
Posted: Tue Jun 10, 2008 8:19 pm Post subject: |
|
|
I think udev will bring up network interfaces it detects, check your bootlog, to see if that is the case. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
zyko l33t
![l33t l33t](/images/ranks/rank_rect_4.gif)
![](images/avatars/1291073054843240492763.jpg)
Joined: 01 Jun 2008 Posts: 620 Location: Munich, Germany
|
Posted: Tue Jun 10, 2008 8:27 pm Post subject: |
|
|
Quote: | rc-update del net.eth0 |
That's not the complete command. Try "rc-update del net.eth0 default" (or whatever runlevel net.eth0 is in).
/edit: If that doesn't work, udev is playing tricks on you, as mortagon suggested. You can explicitly tell udev to not start net.eth0 by adding the following line to your /etc/conf.d/rc (or /etc/rc.conf if you already use baselayout-2):
Code: | rc_plug_services="!net.eth0" |
Last edited by zyko on Tue Jun 10, 2008 8:31 pm; edited 1 time in total |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
mortagon n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/544255444496be986c9a4b.png)
Joined: 24 Sep 2007 Posts: 47 Location: Bulgaria
|
Posted: Tue Jun 10, 2008 8:30 pm Post subject: |
|
|
zyko wrote: | Quote: | rc-update del net.eth0 |
That's not the complete command. Try "rc-update del net.eth0 default" (or whatever runlevel net.eth0 is in). |
AFAIK rc-update del net.eth0 will remove net.eth0 from all runlevels, while rc-update del net.eth0 default will remove it only from default. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
zyko l33t
![l33t l33t](/images/ranks/rank_rect_4.gif)
![](images/avatars/1291073054843240492763.jpg)
Joined: 01 Jun 2008 Posts: 620 Location: Munich, Germany
|
Posted: Tue Jun 10, 2008 8:33 pm Post subject: |
|
|
Quote: | AFAIK rc-update del net.eth0 will remove net.eth0 from all runlevels, while rc-update del net.eth0 default will remove it only from default. |
@mortagon: you're right, sorry about that! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
mortagon n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/544255444496be986c9a4b.png)
Joined: 24 Sep 2007 Posts: 47 Location: Bulgaria
|
Posted: Tue Jun 10, 2008 10:08 pm Post subject: |
|
|
Nothing to be sorry about. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Kde_User n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 23 Jun 2007 Posts: 49
|
Posted: Tue Jun 10, 2008 10:45 pm Post subject: |
|
|
zyko wrote: | Quote: | rc-update del net.eth0 |
That's not the complete command. Try "rc-update del net.eth0 default" (or whatever runlevel net.eth0 is in).
/edit: If that doesn't work, udev is playing tricks on you, as mortagon suggested. You can explicitly tell udev to not start net.eth0 by adding the following line to your /etc/conf.d/rc (or /etc/rc.conf if you already use baselayout-2):
Code: | rc_plug_services="!net.eth0" |
|
that works! but is it possible to get wireless to start on boot *before* i start KDE? [and then let knetworkmanager take over?] |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|