Ubuntu not recognising my pcmcia wireless card
Ubuntu not recognising my pcmcia wireless card
has anyone had trouble with ubuntu recognising their wireless card?
i know i have the right driver, and that my TP sees the card but there is no power going to it because the power light on the card is not on.
please help
i know i have the right driver, and that my TP sees the card but there is no power going to it because the power light on the card is not on.
please help
Keep all your ducks in order.
T22/900mhz/512mb/20gb/dvd-rom/wireless/Royal Noir Theme
T22/900mhz/512mb/20gb/dvd-rom/wireless/Royal Noir Theme
Re: Ubuntu not recognising my pcmcia wireless card
What does the command "iwconfig" give you?kieran wrote:has anyone had trouble with ubuntu recognising their wireless card?
i know i have the right driver, and that my TP sees the card but there is no power going to it because the power light on the card is not on.
please help
Last edited by bendb on Mon Mar 19, 2007 12:26 pm, edited 1 time in total.
i see the card on eth1 but im not able to use that connection, i was told to go into the power management settings but i don't know how to do that from iwconfig, becasue i am just a new Linux user.
what should i be looking for?
what should i be looking for?
Keep all your ducks in order.
T22/900mhz/512mb/20gb/dvd-rom/wireless/Royal Noir Theme
T22/900mhz/512mb/20gb/dvd-rom/wireless/Royal Noir Theme
this is what those commands resulted
kieran@lapdance:~$ iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11b/g ESSID:off/any Nickname:"Broadcom 4306"
Mode:Managed Access Point: Invalid
RTS thr:off Fragment thr:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
irda0 no wireless extensions.
sit0 no wireless extensions.
kieran@lapdance:~$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:03:47:B9:C4:AF
inet addr:192.168.0.104 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::203:47ff:feb9:c4af/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1029 errors:0 dropped:0 overruns:0 frame:0
TX packets:116 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:374978 (366.1 KiB) TX bytes:12802 (12.5 KiB)
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:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:100 (100.0 b) TX bytes:100 (100.0 b)
kieran@lapdance:~$ sudo ifdown eth1
Password:
ifdown: interface eth1 not configured
kieran@lapdance:~$ sudo ifup eth 1
Ignoring unknown interface eth=eth.
Ignoring unknown interface 1=1.
kieran@lapdance:~$ iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11b/g ESSID:off/any Nickname:"Broadcom 4306"
Mode:Managed Access Point: Invalid
RTS thr:off Fragment thr:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
irda0 no wireless extensions.
sit0 no wireless extensions.
kieran@lapdance:~$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:03:47:B9:C4:AF
inet addr:192.168.0.104 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::203:47ff:feb9:c4af/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1029 errors:0 dropped:0 overruns:0 frame:0
TX packets:116 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:374978 (366.1 KiB) TX bytes:12802 (12.5 KiB)
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:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:100 (100.0 b) TX bytes:100 (100.0 b)
kieran@lapdance:~$ sudo ifdown eth1
Password:
ifdown: interface eth1 not configured
kieran@lapdance:~$ sudo ifup eth 1
Ignoring unknown interface eth=eth.
Ignoring unknown interface 1=1.
Keep all your ducks in order.
T22/900mhz/512mb/20gb/dvd-rom/wireless/Royal Noir Theme
T22/900mhz/512mb/20gb/dvd-rom/wireless/Royal Noir Theme
-
smugiri
- Senior Member

- Posts: 774
- Joined: Tue Nov 23, 2004 4:29 pm
- Location: Mississauga, ON
- Contact:
This card has a binary driver,right? I know that a new linux driver came out but I think that it was for FC5 - I might be wrong about the drivers but the errors in the output from ifconfig eth1 suggest that it might be the case.
Maybe you need to install ndiswrapper? If so, you could start your search here or here
If the hardware installation is OK, you might need to modprobe the card
#sudo ifconfig -a
(don't necessarily need to do this, it tells you the name of the interface which we know is eth1 or wlan0 if you are using ndiswrapper)
#sudo modprobe eth_pci
or more likely
#sudo modprobe ndiswrapper
(not sure if this is the hardware name, you need to run dmesg and check the hardware to see what linux calls the card)
#ifconfig eth1 up
(same as #ifup eth1 )
#iwlist eth scan
(gives you a list of available access points)
#iwconfig eth1 mode managed essid XXXXX
( XXXXX is the access point name )
#dhclient
(gets you an IP address over DHCP)
Maybe you need to install ndiswrapper? If so, you could start your search here or here
If the hardware installation is OK, you might need to modprobe the card
#sudo ifconfig -a
(don't necessarily need to do this, it tells you the name of the interface which we know is eth1 or wlan0 if you are using ndiswrapper)
#sudo modprobe eth_pci
or more likely
#sudo modprobe ndiswrapper
(not sure if this is the hardware name, you need to run dmesg and check the hardware to see what linux calls the card)
#ifconfig eth1 up
(same as #ifup eth1 )
#iwlist eth scan
(gives you a list of available access points)
#iwconfig eth1 mode managed essid XXXXX
( XXXXX is the access point name )
#dhclient
(gets you an IP address over DHCP)
Steve
I would have to disagree, at least at this point. To me the ifconfig output says the kernel is seeing the hardware just fine. If a driver was not loaded, that would not be the case. From a prompt, could you try these commands please?smugiri wrote:This card has a binary driver,right? I know that a new linux driver came out but I think that it was for FC5 - I might be wrong about the drivers but the errors in the output from ifconfig eth1 suggest that it might be the case.
sudo lsmod | grep bcm43
sudo lsmod | grep ndis
cat /etc/network/interfaces
ps -ef | grep -i net
-
ryengineer
- Moderator Emeritus

- Posts: 4393
- Joined: Wed Sep 20, 2006 9:29 pm
- Location: L.A. (home town) CA, Toronto ON.
Which version of Ubuntu are you using?kieran wrote:im very new to ubuntu so im sorry but im not sure how to put these commands into the terminal, i type them in but it says that "command not found"
Try:
We can help you better if you mind joining http://www.ubuntuforums.org/Update: New kernel, the wireless card was not found any more... After some investigating, it turned out that there was no kernel modules for the new kernel present in the driver package. I solved it by downloading the Generic Debian source packages (driverloader_2.34_i386.deb.zip) that builds suitable modules when installed (sudo dpkg -i). Wireless again!
Anyways your all answers are here: http://ubuntuforums.org/showthread.php? ... ode=linear
Cheers!
"I've come a long, long way," she said, "and I will go as far,
With the man who takes me from my horse, and leads me to a bar."
The man who took her off her steed, and stood her to a beer,
Were a bleary-eyed Surveyor and a DRUNKEN ENGINEER.
With the man who takes me from my horse, and leads me to a bar."
The man who took her off her steed, and stood her to a beer,
Were a bleary-eyed Surveyor and a DRUNKEN ENGINEER.
Hmm. That really doesn't make sense.kieran wrote:im very new to ubuntu so im sorry but im not sure how to put these commands into the terminal, i type them in but it says that "command not found"
You seemed to have no problem doing commands earlier, so that doesn't seem like it. You could try
sudo lsmod (don't provide the output, just if it works)
If that doesn't give a list of modules, like:
$ sudo lsmod
Module Size Used by
ipaq 33240 0
usbserial 33448 1 ipaq
usblp 14336 0
then try
whereis lsmod
which should give you something like:
$ whereis lsmod
lsmod: /bin/lsmod.modutils /bin/lsmod /sbin/lsmod.modutils /sbin/lsmod.Lmodutils /sbin/lsmod /usr/share/man/man8/lsmod.8.gz
If whereis lsmod didn't give you a location, then you can do this:
sudo apt-get update
sudo apt-get install module-init-tools
finally, you never gave us the output of
cat /etc/network/interfaces
-Ben
I'm happy to keep plugging away here, but you will possibly get faster or better help at ubuntuforums.org - your choice.ryengineer wrote: We can help you better if you mind joining http://www.ubuntuforums.org/
Unless this isn't enough thinkpad related to be allowed here?
-Ben
-
- Similar Topics
- Replies
- Views
- Last post
-
-
T61 pcmcia sd card reader extremely slow
by alisan » Thu May 25, 2017 6:14 am » in ThinkPad T6x Series - 10 Replies
- 572 Views
-
Last post by Omineca
Thu Jun 01, 2017 4:47 pm
-
-
-
SOLD: PCMCIA Smart Card Reader/writer
by RealBlackStuff » Thu May 25, 2017 10:56 am » in Marketplace - Forum Members only - 0 Replies
- 145 Views
-
Last post by RealBlackStuff
Thu May 25, 2017 10:56 am
-
-
-
WTB: PCMCIA Sound Cards with SB emulation
by jeffbaichina » Wed Jan 25, 2017 11:25 am » in Marketplace - Forum Members only - 0 Replies
- 252 Views
-
Last post by jeffbaichina
Wed Jan 25, 2017 11:25 am
-
-
-
Need help with my thinkpad 380xd, IR network and pcmcia driver issues
by MichaelWeaser » Thu Apr 27, 2017 12:36 pm » in ThinkPad Legacy Hardware - 0 Replies
- 549 Views
-
Last post by MichaelWeaser
Thu Apr 27, 2017 12:36 pm
-
Who is online
Users browsing this forum: No registered users and 0 guests



