You are not logged in.

#1 2010-03-11 19:19:19

trishtren18
Member
From: Iowa, America
Registered: 2009-11-12
Posts: 45

wicd + dell mini 10v:a sad tale

Hello all.  I have a dell mini 10v.  While doing a fresh install of arch over windows i seem to have hit a annoying problem.  My networking interfaces seem to be switching back and forth every other boot.  I have a broadcom wireless driver and got it up and running using this:http://wiki.archlinux.org/index.php/Broadcom_BCM4312.  After i got it installed and ran a iwconfig to see if the wireless came up it was a success.  I then installed wicd and followed all of the steps here:http://wiki.archlinux.org/index.php/Wicd.  I blacklisted eth0 and eth1 like it suggests.  So now when i boot up it swaps back and forth forcing me to go into wicd's pref. to change the interfaces around.  I even tried the script and the bottom of the broadcom wl wiki to try to stop the change but to no avail.  *shrugs* idk maybe im not doing it right.  Anyone want to clue me in on how to make this stop?  thanks in advanced.

Offline

#2 2010-03-11 19:48:04

arxx
Member
From: Sacramento, CA
Registered: 2009-12-06
Posts: 40

Re: wicd + dell mini 10v:a sad tale

ahh i have the same wireless card as you do.  you are using the wl driver correct?

there is a fix and its is on the wiki page for the bcm4312

http://wiki.archlinux.org/index.php/Broadcom_BCM4312

you said you tried it? you should post the file you pasted the script to


my nigga smoke with one lung. if he cough he might die, passin me trees

Offline

#3 2010-03-11 19:51:04

arxx
Member
From: Sacramento, CA
Registered: 2009-12-06
Posts: 40

Re: wicd + dell mini 10v:a sad tale

i believe you can load the modules in order in rc.conf and it should fix it.

load the ethernet module and the the wl driver after that and it should work


my nigga smoke with one lung. if he cough he might die, passin me trees

Offline

#4 2010-03-11 20:40:37

trishtren18
Member
From: Iowa, America
Registered: 2009-11-12
Posts: 45

Re: wicd + dell mini 10v:a sad tale

i tried the this:

SUBSYSTEM=="net", ATTR{address}=="aa:bb:cc:dd:ee:ff", NAME="eth0"
SUBSYSTEM=="net", ATTR{address}=="ff:ee:dd:cc:bb:aa", NAME="eth1"

of course i put in my mac addresses and named them.  and i already put lib80211_crypt_tkip and wl in the modules array in rc.conf.

Offline

#5 2010-03-12 02:57:31

arxx
Member
From: Sacramento, CA
Registered: 2009-12-06
Posts: 40

Re: wicd + dell mini 10v:a sad tale

put your ethernet modules before lib80211 and wl in rc.conf


my nigga smoke with one lung. if he cough he might die, passin me trees

Offline

#6 2010-03-12 05:21:10

pseudonomous
Member
Registered: 2008-04-23
Posts: 349

Re: wicd + dell mini 10v:a sad tale

Just use ifrename or udev rules.  I use ifrename

install ifrename

setup /etc/iftab

example:

wireless mac 00:25:56:2D:55:55
wired     mac 00:25:56:2D:55:56

If you use this method, though, you have to modify /etc/rc.sysinit to cal ifrename before you bring up your network interfaces, personally, I add it right after you bring up loopback:

# bring up the loopback interface
if [ -d /sys/class/net/lo ]; then
        stat_busy "Bringing up loopback interface"
        /sbin/ifconfig lo 127.0.0.1 up
        if [ $? -ne 0 ]; then
                stat_fail
        else
                stat_done
        fi
fi

# rename network interfaces
/usr/sbin/ifrename

unfortunately, whenever you update the initscripts package this gets overwritten, so the udev method might be better.

But I know how to use this method and I don't know how to use the udev method.

Offline

#7 2010-03-12 20:10:04

Bahumat
Member
From: Muelheim, Germany
Registered: 2008-07-21
Posts: 48

Re: wicd + dell mini 10v:a sad tale

I've got a Mini 10v and I am using wicd and it's running perfectly. At the beginning I also had the problem with name changes of my network devices, but with the following settings everything is fine now:

1. I use the broadcom-wl package from the aur.

2. My 10-network.rules file in /etc/udev/rules.d/ looks like this:

SUBSYSTEM=="net", ATTRS{address}=="00:24:e8:xx:xx:xx", NAME="eth0"
SUBSYSTEM=="net", ATTRS{address}=="00:25:56:xx:xx:xx", NAME="wlan0"

(of course, the mac addresses, that are shown here, were made anonymous)

3. The modules array in /etc/rc.conf looks like this

MODULES=(lib80211 wl !b43)

And that's all! No problems here...

Last edited by Bahumat (2010-03-12 20:10:51)

Offline

Board footer

Powered by FluxBB