public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] configuring wlan0
@ 2009-11-17 23:20 Michael P. Soulier
  2009-11-18  7:10 ` Alan McKinnon
  0 siblings, 1 reply; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-17 23:20 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 931 bytes --]

Hi,

I recently moved from a wired ethernet interface to wireless via ndiswrapper.
I now have wlan0 interface, and configuring it by hand works fine.

But, on boot, it's not coming up. The initscript gets as far as setting up the
essid, but then says that it cannot configure it. That's the only feedback.

msoulier@anton:~$ cat /etc/conf.d/net 
essid_wlan0="digitaltorque"
config_wlan0=( "192.168.0.5/24" )
routes_wlan0=( "default via 192.168.0.1" )
msoulier@anton:~$ ls -l /etc/init.d/net.wlan0 
lrwxrwxrwx 1 root root 6 Nov  8  2008 /etc/init.d/net.wlan0 -> net.lo

Do I need more here? I'm not yet running encryption, just a MAC filter, so no
other wireless params are needed.

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It takes a
touch of genius - and a lot of courage to move in the opposite direction."
--Albert Einstein

[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-17 23:20 [gentoo-user] configuring wlan0 Michael P. Soulier
@ 2009-11-18  7:10 ` Alan McKinnon
  2009-11-18 15:11   ` Michael P. Soulier
  0 siblings, 1 reply; 14+ messages in thread
From: Alan McKinnon @ 2009-11-18  7:10 UTC (permalink / raw
  To: gentoo-user

On Wednesday 18 November 2009 01:20:15 Michael P. Soulier wrote:
> Hi,
> 
> I recently moved from a wired ethernet interface to wireless via
>  ndiswrapper. I now have wlan0 interface, and configuring it by hand works
>  fine.
> 
> But, on boot, it's not coming up. The initscript gets as far as setting up
>  the essid, but then says that it cannot configure it. That's the only
>  feedback.
> 
> msoulier@anton:~$ cat /etc/conf.d/net
> essid_wlan0="digitaltorque"
> config_wlan0=( "192.168.0.5/24" )
> routes_wlan0=( "default via 192.168.0.1" )
> msoulier@anton:~$ ls -l /etc/init.d/net.wlan0
> lrwxrwxrwx 1 root root 6 Nov  8  2008 /etc/init.d/net.wlan0 -> net.lo
> 
> Do I need more here? I'm not yet running encryption, just a MAC filter, so
>  no other wireless params are needed.

Forget all about conf.d/net, and disable the init scripts for it.

Install and run wicd instead. 

-- 
alan dot mckinnon at gmail dot com



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18  7:10 ` Alan McKinnon
@ 2009-11-18 15:11   ` Michael P. Soulier
  2009-11-18 16:38     ` Mick
                       ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-18 15:11 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 560 bytes --]

On 18/11/09 Alan McKinnon said:

> Forget all about conf.d/net, and disable the init scripts for it.
> 
> Install and run wicd instead. 

I'll look into it, but the Gentoo Handbook still points at conf.d/net, so
should there not be an update if it has fallen out of favour? Should the bugs
in conf.d/net not be fixed?

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It
takes a touch of genius - and a lot of courage to move in the opposite
direction." --Albert Einstein

[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 15:11   ` Michael P. Soulier
@ 2009-11-18 16:38     ` Mick
  2009-11-18 23:38       ` Michael P. Soulier
  2009-11-18 17:45     ` Space Cakex
  2009-11-19 13:00     ` Alan McKinnon
  2 siblings, 1 reply; 14+ messages in thread
From: Mick @ 2009-11-18 16:38 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 1096 bytes --]

On Wednesday 18 November 2009 15:11:05 Michael P. Soulier wrote:
> On 18/11/09 Alan McKinnon said:
> > Forget all about conf.d/net, and disable the init scripts for it.
> >
> > Install and run wicd instead.
> 
> I'll look into it, but the Gentoo Handbook still points at conf.d/net, so
> should there not be an update if it has fallen out of favour? Should the
>  bugs in conf.d/net not be fixed?

I don't think that there bugs in conf.d/net just a matter of preference.  Alan 
suggested that wicd is a simpler way to have your wireless configured and it 
does not need /etc/init.d/*net scripts to function.

I am running wpa_supplicant:

modules=( "wpa_supplicant" )

wpa_supplicant_ath0="-Dwext"

and it just works™ for my wireless card.

You may want to try something like this in your /etc/conf.d/net:

sleep_scan_wlan0="1"

config_wlan0=( "dhcp" )
fallback_wlan0=( "192.168.0.5 netmask 255.255.255.0" )
fallback_route_wlan0=( "default via 192.168.0.1" )

in case there is a dhcp problem with how the router releases IP address 
leases.
-- 
Regards,
Mick

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 15:11   ` Michael P. Soulier
  2009-11-18 16:38     ` Mick
@ 2009-11-18 17:45     ` Space Cakex
  2009-11-18 23:39       ` Michael P. Soulier
  2009-11-19 13:00     ` Alan McKinnon
  2 siblings, 1 reply; 14+ messages in thread
From: Space Cakex @ 2009-11-18 17:45 UTC (permalink / raw
  To: gentoo-user

Michael P. Soulier wrote:
> On 18/11/09 Alan McKinnon said:
>
>   
>> Forget all about conf.d/net, and disable the init scripts for it.
>>
>> Install and run wicd instead. 
>>     
>
> I'll look into it, but the Gentoo Handbook still points at conf.d/net, so
> should there not be an update if it has fallen out of favour? Should the bugs
> in conf.d/net not be fixed?
>
> Mike
>   
for me the best solution is to use networkmanager, delete net scripts 
and everything plus install nm-applet, so I have a real user friendly 
look and feel :) my only issue now is vpnc (see my other mail)

Laszlo




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 16:38     ` Mick
@ 2009-11-18 23:38       ` Michael P. Soulier
  2009-11-20 20:12         ` Mick
  0 siblings, 1 reply; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-18 23:38 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1369 bytes --]

On 18/11/09 Mick said:

> I don't think that there bugs in conf.d/net just a matter of preference.  Alan 
> suggested that wicd is a simpler way to have your wireless configured and it 
> does not need /etc/init.d/*net scripts to function.
> 
> I am running wpa_supplicant:
> 
> modules=( "wpa_supplicant" )
> 
> wpa_supplicant_ath0="-Dwext"
> 
> and it just works??? for my wireless card.
> 
> You may want to try something like this in your /etc/conf.d/net:
> 
> sleep_scan_wlan0="1"
> 
> config_wlan0=( "dhcp" )
> fallback_wlan0=( "192.168.0.5 netmask 255.255.255.0" )
> fallback_route_wlan0=( "default via 192.168.0.1" )
> 
> in case there is a dhcp problem with how the router releases IP address 
> leases.

I'm not using dhcp, just a static address. All I want the damn scripts to do
is this

modprobe ndiswrapper
iwconfig wlan0 essid digitaltorque
ifconfig wlan0 192.168.0.5 netmask 255.255.255.0
route add default gw 192.168.0.1

After looking at the net.example again maybe I need this

modules=( "ifconfig" "iwconfig" "!wpa_supplicant" )

Or maybe I should just run an rc.local script. 

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It takes a
touch of genius - and a lot of courage to move in the opposite direction."
--Albert Einstein

[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 17:45     ` Space Cakex
@ 2009-11-18 23:39       ` Michael P. Soulier
  2009-11-19 13:04         ` Alan McKinnon
  0 siblings, 1 reply; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-18 23:39 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 692 bytes --]

On 18/11/09 Space Cakex said:

> for me the best solution is to use networkmanager, delete net scripts 
> and everything plus install nm-applet, so I have a real user friendly 
> look and feel :) my only issue now is vpnc (see my other mail)

I'm not a fan of networkmanager.

On my ubuntu laptop I use whereami.

On this gentoo desktop, it doesn't roam. I want one network config to set a
static IP on my wireless card, always to the same essid.

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It takes a
touch of genius - and a lot of courage to move in the opposite direction."
--Albert Einstein

[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 15:11   ` Michael P. Soulier
  2009-11-18 16:38     ` Mick
  2009-11-18 17:45     ` Space Cakex
@ 2009-11-19 13:00     ` Alan McKinnon
  2009-11-20  1:11       ` Michael P. Soulier
  2 siblings, 1 reply; 14+ messages in thread
From: Alan McKinnon @ 2009-11-19 13:00 UTC (permalink / raw
  To: gentoo-user

On Wednesday 18 November 2009 17:11:05 Michael P. Soulier wrote:
> On 18/11/09 Alan McKinnon said:
> > Forget all about conf.d/net, and disable the init scripts for it.
> >
> > Install and run wicd instead.
> 
> I'll look into it, but the Gentoo Handbook still points at conf.d/net, so
> should there not be an update if it has fallen out of favour? Should the
>  bugs in conf.d/net not be fixed?

conf.d/net is not buggy - it is suitable for static networking where the 
interfaces never change and neither does the address.

It is simply inadequate for desktop use, *especially* roaming laptops. A side 
note in the docs to this effect would not be amiss.


-- 
alan dot mckinnon at gmail dot com



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 23:39       ` Michael P. Soulier
@ 2009-11-19 13:04         ` Alan McKinnon
  0 siblings, 0 replies; 14+ messages in thread
From: Alan McKinnon @ 2009-11-19 13:04 UTC (permalink / raw
  To: gentoo-user

On Thursday 19 November 2009 01:39:23 Michael P. Soulier wrote:
> On 18/11/09 Space Cakex said:
> > for me the best solution is to use networkmanager, delete net scripts
> > and everything plus install nm-applet, so I have a real user friendly
> > look and feel :) my only issue now is vpnc (see my other mail)
> 
> I'm not a fan of networkmanager.
> 
> On my ubuntu laptop I use whereami.
> 
> On this gentoo desktop, it doesn't roam. I want one network config to set a
> static IP on my wireless card, always to the same essid.

That's easy enough, here's what I used to use:
xxxxx means the essid
yyyyy means the wep passphrase

modules=( "dhclient" )
modules=( "iwconfig" )
config_eth0=( "dhcp" )

essid_wlan0="xxxxx"
key_xxxxx="s:'yyyyyyyyy' enc open"
preferred_aps_wlan0=( "xxxxx" )
channel_wlan0="11"
config_xxxxx=( "dhcp" )

config_wlan0=("dhcp")


-- 
alan dot mckinnon at gmail dot com



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-19 13:00     ` Alan McKinnon
@ 2009-11-20  1:11       ` Michael P. Soulier
  0 siblings, 0 replies; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-20  1:11 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 668 bytes --]

On 19/11/09 Alan McKinnon said:

> conf.d/net is not buggy - it is suitable for static networking where the 
> interfaces never change and neither does the address.
> 
> It is simply inadequate for desktop use, *especially* roaming laptops. A side 
> note in the docs to this effect would not be amiss.

In my case the interface won't change and neither will the address.

It worked fine when it was a wired eth0 interface.

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It takes a
touch of genius - and a lot of courage to move in the opposite direction."
--Albert Einstein

[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-18 23:38       ` Michael P. Soulier
@ 2009-11-20 20:12         ` Mick
  2009-11-23 12:18           ` Mick
  2009-11-27  2:55           ` Michael P. Soulier
  0 siblings, 2 replies; 14+ messages in thread
From: Mick @ 2009-11-20 20:12 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 2446 bytes --]

On Wednesday 18 November 2009 23:38:22 Michael P. Soulier wrote:
> On 18/11/09 Mick said:
> > I don't think that there bugs in conf.d/net just a matter of preference. 
> > Alan suggested that wicd is a simpler way to have your wireless
> > configured and it does not need /etc/init.d/*net scripts to function.
> >
> > I am running wpa_supplicant:
> >
> > modules=( "wpa_supplicant" )
> >
> > wpa_supplicant_ath0="-Dwext"
> >
> > and it just works??? for my wireless card.
> >
> > You may want to try something like this in your /etc/conf.d/net:
> >
> > sleep_scan_wlan0="1"
> >
> > config_wlan0=( "dhcp" )
> > fallback_wlan0=( "192.168.0.5 netmask 255.255.255.0" )
> > fallback_route_wlan0=( "default via 192.168.0.1" )
> >
> > in case there is a dhcp problem with how the router releases IP address
> > leases.
> 
> I'm not using dhcp, just a static address. 

Does your router know this?  I'm not being funny, but I had run into a problem 
sometime in the past where a change in the dhcpcd version caused the router to 
not read the NIC MAC address correctly.  That created a clash with the IP 
address lease.

> All I want the damn scripts to
>  do is this
> 
> modprobe ndiswrapper

OK, have you looked in your logs/dmesg?  I think that the ndiswrapper has to 
load first and probe your NIC, before /etc/init.d/net.wlan0 launches.  It may 
pay to keep an eye on the router logs while your machine boots.

My line above with sleep_scan_wlan0="1" or say "3" seconds delay may help, if 
this is the problem.

> iwconfig wlan0 essid digitaltorque
> ifconfig wlan0 192.168.0.5 netmask 255.255.255.0
> route add default gw 192.168.0.1
> 
> After looking at the net.example again maybe I need this
> 
> modules=( "ifconfig" "iwconfig" "!wpa_supplicant" )

If you have not installed wpa_supplicant you don't need this.  Just make sure 
#modules=( "wpa_supplicant" ) is commented out.  iwconfig is the default 
anyway.  ifconfig or iproute2 will work so I don't think that you need to 
define that either.  Your entries:

essid_wlan0="digitaltorque"
config_wlan0=( "192.168.0.5/24" )
routes_wlan0=( "default via 192.168.0.1" )

are correct - so the error is not because of these.

> Or maybe I should just run an rc.local script.

You could use the preup scripts in /etc/conf.d/net, if for some reason the 
ndiswrapper takes for ever to kick into action.

HTH.
-- 
Regards,
Mick

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-20 20:12         ` Mick
@ 2009-11-23 12:18           ` Mick
  2009-11-27  2:58             ` Michael P. Soulier
  2009-11-27  2:55           ` Michael P. Soulier
  1 sibling, 1 reply; 14+ messages in thread
From: Mick @ 2009-11-23 12:18 UTC (permalink / raw
  To: gentoo-user

2009/11/20 Mick <michaelkintzios@gmail.com>:
> On Wednesday 18 November 2009 23:38:22 Michael P. Soulier wrote:
>> On 18/11/09 Mick said:
>> > I don't think that there bugs in conf.d/net just a matter of preference.
>> > Alan suggested that wicd is a simpler way to have your wireless
>> > configured and it does not need /etc/init.d/*net scripts to function.
>> >
>> > I am running wpa_supplicant:
>> >
>> > modules=( "wpa_supplicant" )
>> >
>> > wpa_supplicant_ath0="-Dwext"
>> >
>> > and it just works??? for my wireless card.
>> >
>> > You may want to try something like this in your /etc/conf.d/net:
>> >
>> > sleep_scan_wlan0="1"
>> >
>> > config_wlan0=( "dhcp" )
>> > fallback_wlan0=( "192.168.0.5 netmask 255.255.255.0" )
>> > fallback_route_wlan0=( "default via 192.168.0.1" )
>> >
>> > in case there is a dhcp problem with how the router releases IP address
>> > leases.
>>
>> I'm not using dhcp, just a static address.
>
> Does your router know this?  I'm not being funny, but I had run into a problem
> sometime in the past where a change in the dhcpcd version caused the router to
> not read the NIC MAC address correctly.  That created a clash with the IP
> address lease.
>
>> All I want the damn scripts to
>>  do is this
>>
>> modprobe ndiswrapper
>
> OK, have you looked in your logs/dmesg?  I think that the ndiswrapper has to
> load first and probe your NIC, before /etc/init.d/net.wlan0 launches.  It may
> pay to keep an eye on the router logs while your machine boots.
>
> My line above with sleep_scan_wlan0="1" or say "3" seconds delay may help, if
> this is the problem.
>
>> iwconfig wlan0 essid digitaltorque
>> ifconfig wlan0 192.168.0.5 netmask 255.255.255.0
>> route add default gw 192.168.0.1
>>
>> After looking at the net.example again maybe I need this
>>
>> modules=( "ifconfig" "iwconfig" "!wpa_supplicant" )
>
> If you have not installed wpa_supplicant you don't need this.  Just make sure
> #modules=( "wpa_supplicant" ) is commented out.  iwconfig is the default
> anyway.  ifconfig or iproute2 will work so I don't think that you need to
> define that either.  Your entries:
>
> essid_wlan0="digitaltorque"
> config_wlan0=( "192.168.0.5/24" )
> routes_wlan0=( "default via 192.168.0.1" )
>
> are correct - so the error is not because of these.
>
>> Or maybe I should just run an rc.local script.
>
> You could use the preup scripts in /etc/conf.d/net, if for some reason the
> ndiswrapper takes for ever to kick into action.

I just noticed that the latest dhcpcd-4.0.15 is playing up when it
comes up.  It seems that on 3 out of 5 it will time out when my
machine boots up.  It works fine if I bring it up manually thereafter,
or run /etc/init.d/net.eth0 restart.  The previous version worked
without timing out.  This may be related to how dhcpcd interacts with
my router - or it could also be related to your problem?  I haven't
had time to troublshoot it yet.
-- 
Regards,
Mick



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-20 20:12         ` Mick
  2009-11-23 12:18           ` Mick
@ 2009-11-27  2:55           ` Michael P. Soulier
  1 sibling, 0 replies; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-27  2:55 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1818 bytes --]

On 20/11/09 Mick said:

> Does your router know this?  I'm not being funny, but I had run into a problem 
> sometime in the past where a change in the dhcpcd version caused the router to 
> not read the NIC MAC address correctly.  That created a clash with the IP 
> address lease.

If I configure it statically then it dhcpcd shouldn't run at all. It works
fine when I configure it by hand. 

> OK, have you looked in your logs/dmesg?  I think that the ndiswrapper has to 
> load first and probe your NIC, before /etc/init.d/net.wlan0 launches.  It may 
> pay to keep an eye on the router logs while your machine boots.
> 
> My line above with sleep_scan_wlan0="1" or say "3" seconds delay may help, if 
> this is the problem.

I'll play with it a bit.

> If you have not installed wpa_supplicant you don't need this.  Just make sure 
> #modules=( "wpa_supplicant" ) is commented out.  iwconfig is the default 
> anyway.  ifconfig or iproute2 will work so I don't think that you need to 
> define that either.  Your entries:
> 
> essid_wlan0="digitaltorque"
> config_wlan0=( "192.168.0.5/24" )
> routes_wlan0=( "default via 192.168.0.1" )
> 
> are correct - so the error is not because of these.
> 
> > Or maybe I should just run an rc.local script.
> 
> You could use the preup scripts in /etc/conf.d/net, if for some reason the 
> ndiswrapper takes for ever to kick into action.

Hmm. I did put ndiswrapper in my /etc/modules.autoload.d/kernel-2.6, so it
should be loaded at boot, but maybe it takes too long, causing a race
condition at boot.

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It takes a
touch of genius - and a lot of courage to move in the opposite direction."
--Albert Einstein

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [gentoo-user] configuring wlan0
  2009-11-23 12:18           ` Mick
@ 2009-11-27  2:58             ` Michael P. Soulier
  0 siblings, 0 replies; 14+ messages in thread
From: Michael P. Soulier @ 2009-11-27  2:58 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 770 bytes --]

On 23/11/09 Mick said:

> I just noticed that the latest dhcpcd-4.0.15 is playing up when it
> comes up.  It seems that on 3 out of 5 it will time out when my
> machine boots up.  It works fine if I bring it up manually thereafter,
> or run /etc/init.d/net.eth0 restart.  The previous version worked
> without timing out.  This may be related to how dhcpcd interacts with
> my router - or it could also be related to your problem?  I haven't
> had time to troublshoot it yet.

I'd be surprised, as it shouldn't be run at all.

Mike
-- 
Michael P. Soulier <msoulier@digitaltorque.ca>
"Any intelligent fool can make things bigger and more complex... It takes a
touch of genius - and a lot of courage to move in the opposite direction."
--Albert Einstein

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2009-11-27  4:05 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-17 23:20 [gentoo-user] configuring wlan0 Michael P. Soulier
2009-11-18  7:10 ` Alan McKinnon
2009-11-18 15:11   ` Michael P. Soulier
2009-11-18 16:38     ` Mick
2009-11-18 23:38       ` Michael P. Soulier
2009-11-20 20:12         ` Mick
2009-11-23 12:18           ` Mick
2009-11-27  2:58             ` Michael P. Soulier
2009-11-27  2:55           ` Michael P. Soulier
2009-11-18 17:45     ` Space Cakex
2009-11-18 23:39       ` Michael P. Soulier
2009-11-19 13:04         ` Alan McKinnon
2009-11-19 13:00     ` Alan McKinnon
2009-11-20  1:11       ` Michael P. Soulier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox