View previous topic :: View next topic |
Author |
Message |
avieth Veteran
Joined: 17 Sep 2004 Posts: 1945 Location: Canada
|
Posted: Thu Jan 27, 2005 12:32 am Post subject: Removing net.eth0 from boot |
|
|
Hey, my ethernet card is set as eth1 because of my onboard network, i copied the net.eth1 like this:
Code: |
cd /etc/init.d
ln -s net.eth0 net.eth1
rc-update add net.eth1 default
|
now how do i safely remove eth0 from booting?
thanks. |
|
Back to top |
|
|
lookinin Guru
Joined: 21 Jan 2005 Posts: 486
|
Posted: Thu Jan 27, 2005 12:34 am Post subject: |
|
|
Code: | rc-update del net.eth0 |
The file itself will not be removed. |
|
Back to top |
|
|
hollerith Apprentice
Joined: 21 May 2004 Posts: 204
|
Posted: Thu Jan 27, 2005 12:39 am Post subject: |
|
|
To remove net.eth0 initscript :
rc-update del net.eth0 default
Your network interface will no longer start automatically at boot.
Edit: del not delete |
|
Back to top |
|
|
|