LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Ubuntu (https://www.linuxquestions.org/questions/ubuntu-63/)
-   -   No Wireless Networks Found After Ubuntu 9.10 Upgrade Using a IBM Wireless-B Card (https://www.linuxquestions.org/questions/ubuntu-63/no-wireless-networks-found-after-ubuntu-9-10-upgrade-using-a-ibm-wireless-b-card-785627/)

mepis1 01-29-2010 10:57 AM

No Wireless Networks Found After Ubuntu 9.10 Upgrade Using a IBM Wireless-B Card
 
Hi LQ community,

I Just Upgraded my Laptop from Ubuntu 9.04 to Ubuntu 9.10 and Before I upgraded to 9.10, My Network Was Working Fine, But i've tried installing/upgrading to Ubuntu 9.10 and no such luck.

thanx in advance,

MEPIS1

*Edit* I Upgraded to 10.04 last sunday. it found my network and I now need to figure out how to connect to my network

evo2 01-30-2010 07:38 AM

So that we can better understand your problem, please post the output of the following commands:

Code:

lspci | grep -i net
ifconfig -a
iwconfig

Evo2.

mepis1 01-30-2010 04:52 PM

lspci | grep -i net:
00:03.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet Pro 100 (rev 0c)

ifconfig -a:
eth0 Link encap:Ethernet HWaddr 00:02:2d:4a:d5:7d
inet6 addr: fe80::202:2dff:fe4a:d57d/64 Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:44 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:2 dropped:2 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2376 (2.3 KB) TX bytes:276 (276.0 B)
Interrupt:3 Base address:0x100

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:4 errors:0 dropped:0 overruns:0 frame:0
TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:240 (240.0 B) TX bytes:240 (240.0 B)

iwconfig:
lo no wireless extensions.

eth0 no wireless extensions.

evo2 01-30-2010 04:59 PM

The "lspci | grep -i net" seems to have missed the wireless device. Can you please post the full output of lspci?

eg
Code:

lspci
Evo2.

mepis1 01-31-2010 08:35 AM

amilliabilliatrilli910remix@amilliabilliatrilli910remix-laptop:~$ lspci
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
00:02.0 CardBus bridge: Texas Instruments PCI1450 (rev 03)
00:02.1 CardBus bridge: Texas Instruments PCI1450 (rev 03)
00:03.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet Pro 100 (rev 0c)
00:05.0 Multimedia audio controller: Cirrus Logic CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03)
01:00.0 VGA compatible controller: S3 Inc. 86C270-294 Savage/IX-MV (rev 13)

mepis1 01-31-2010 08:35 AM

amilliabilliatrilli910remix@amilliabilliatrilli910remix-laptop:~$ lspci
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
00:02.0 CardBus bridge: Texas Instruments PCI1450 (rev 03)
00:02.1 CardBus bridge: Texas Instruments PCI1450 (rev 03)
00:03.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet Pro 100 (rev 0c)
00:05.0 Multimedia audio controller: Cirrus Logic CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03)
01:00.0 VGA compatible controller: S3 Inc. 86C270-294 Savage/IX-MV (rev 13)

evo2 01-31-2010 09:35 AM

Your machine doesn't seem to have a wireless chip. So, I did some googling... is this a removable PCMCIA device? Was it plugged in to the slot? Does dmesg report anything after you plug it in?

Evo2.

tredegar 01-31-2010 10:19 AM

I think mepis1 is trying to use ethernet, not wireless.
[Edit] No, from the thread title, he wants wireless, but the following might be helpful anyway[/Edit]
Quote:

ifconfig -a:
eth0 Link encap:Ethernet HWaddr 00:02:2d:4a:d5:7d
inet6 addr: fe80::202:2dff:fe4a:d57d/64 Scope:Link
You have an IPV6 address. Most people are not using this yet.

Try disabling ipv6. In 9.10 ipv6 is built into the kernel, so you can't just disable the ipv6 module like you used to be able to do. Also 9.10 uses grub2 so things are a little different:

Add the following line to the file /etc/default/grub
Note there is no "#" at the start of this line. Be careful to get it exactly right.

Code:

GRUB_CMDLINE_LINUX="ipv6.disable=1"
Then sudo update-grub
Reboot.

Any better?

mepis1 01-31-2010 09:21 PM

Quote:

Originally Posted by evo2 (Post 3847154)
Your machine doesn't seem to have a wireless chip. So, I did some googling... is this a removable PCMCIA device? Was it plugged in to the slot? Does dmesg report anything after you plug it in?

Evo2.

Yes It is a PCMCIA card. But I Don't know if dmesg reports anything.

tredegar 02-01-2010 03:30 AM

Install the package pcmciautils

Then try this command: lspcmcia

mepis1 02-01-2010 11:14 AM

Quote:

Originally Posted by tredegar (Post 3848024)
Install the package pcmciautils

Then try this command: lspcmcia

umm tredegar.

Is pcmiautils a local package

minrich 02-01-2010 11:23 AM

pcmciautils is on my kubuntu DVD

tredegar 02-01-2010 12:56 PM

Quote:

Is pcmiautils a local package
minrich says it's on his CD, so it's probably on yours.

Anyway, in post #3 it looks like your ethernet cable is connected to something and has an IP address. It might work a bit better if you disabled ipv6 [see above] so then you could at least get connected, fetch the updates (which might of itself help), and any further utilities you need to diagnose and fix your wireless problem.

Please confirm that you have checked that your PCMCIA card is properly plugged in, and the "Disable" switch (if any) is not set.

Does the PCMCIA card work in another computer?

For some diagnostic information, try this:
Boot without the card being plugged in.
Plug it in when you get to your desktop.
Look at the last few lines of the file /var/log/messages
Does it say anything that looks as if it could be relevant ?

mepis1 02-01-2010 05:26 PM

Quote:

Originally Posted by tredegar (Post 3848602)
minrich says it's on his CD, so it's probably on yours.

Anyway, in post #3 it looks like your ethernet cable is connected to something and has an IP address. It might work a bit better if you disabled ipv6 [see above] so then you could at least get connected, fetch the updates (which might of itself help), and any further utilities you need to diagnose and fix your wireless problem.

Please confirm that you have checked that your PCMCIA card is properly plugged in, and the "Disable" switch (if any) is not set.

Does the PCMCIA card work in another computer?

For some diagnostic information, try this:
Boot without the card being plugged in.
Plug it in when you get to your desktop.
Look at the last few lines of the file /var/log/messages
Does it say anything that looks as if it could be relevant ?

ok i'll check.

mepis1 02-01-2010 08:49 PM

Quote:

Originally Posted by tredegar (Post 3847188)
I think mepis1 is trying to use ethernet, not wireless.
[Edit] No, from the thread title, he wants wireless, but the following might be helpful anyway[/Edit]

You have an IPV6 address. Most people are not using this yet.

Try disabling ipv6. In 9.10 ipv6 is built into the kernel, so you can't just disable the ipv6 module like you used to be able to do. Also 9.10 uses grub2 so things are a little different:

Add the following line to the file /etc/default/grub
Note there is no "#" at the start of this line. Be careful to get it exactly right.

Code:

GRUB_CMDLINE_LINUX="ipv6.disable=1"
Then sudo update-grub
Reboot.

Any better?

Hey tredegar

I tried it....GRUB loads faster but no beans.


All times are GMT -5. The time now is 12:49 PM.