LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-24-2006, 12:47 PM   #1
Wirt
LQ Newbie
 
Registered: Jun 2006
Location: Minnesota
Distribution: openSUSE 11.2
Posts: 18

Rep: Reputation: 0
Slackware: PCMCIA wireless card problem


I have an IBM thinkpad iSeries 1300. I've installed Slackware on it, and now I'm trying to get a wireless connection to work. I have a Netgear WG511v2 PCMCIA card and when I plug it in there does not seem to be any power. How do I enable my card?
 
Old 06-24-2006, 02:47 PM   #2
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
Post the results of the following as root:
Code:
lspci
That will tell us the real chipset in there. We can get you going from there
 
Old 06-24-2006, 04:11 PM   #3
rickh
Senior Member
 
Registered: May 2004
Location: Albuquerque, NM USA
Distribution: Debian-Lenny/Sid 32/64 Desktop: Generic AMD64-EVGA 680i Laptop: Generic Intel SIS-AC97
Posts: 4,250

Rep: Reputation: 62
There are two WG511 v2 cards ... One Made in China uses Marvell chipset (Forget it. You can't make it work.) The other one is made in Taiwan. Uses Prism54 (Piece of cake.)
 
Old 06-24-2006, 06:28 PM   #4
Wirt
LQ Newbie
 
Registered: Jun 2006
Location: Minnesota
Distribution: openSUSE 11.2
Posts: 18

Original Poster
Rep: Reputation: 0
Here is the result from lspci:

00:00.0 Host bridge: Intel Corporation 82440MX Host Bridge (rev 01)
00:00.1 Multimedia audio controller: Intel Corporation 82440MX AC'97 Audio Controller
00:00.2 Modem: Intel Corporation 82440MX AC'97 Modem Controller
00:02.0 VGA compatible controller: Silicon Motion, Inc. SM712 LynxEM+ (rev a0)
00:03.0 CardBus bridge: O2 Micro, Inc. OZ6812 CardBus Controller (rev 05)
00:06.0 Ethernet controller: Intel Corporation 82557/8/9 [Ethernet Pro 100] (rev 08)
00:07.0 ISA bridge: Intel Corporation 82440MX ISA Bridge (rev 01)
00:07.1 IDE interface: Intel Corporation 82440MX EIDE Controller
00:07.2 USB Controller: Intel Corporation 82440MX USB Universal Host Controller
00:07.3 Bridge: Intel Corporation 82440MX Power Management Controller
01:00.0 Ethernet controller: Marvell Technology Group Ltd. 88w8335 [Libertas] 802.11b/g Wireless (rev 03)
 
Old 06-24-2006, 06:58 PM   #5
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
Oops.

Quote:
01:00.0 Ethernet controller: Marvell Technology Group Ltd. 88w8335 [Libertas] 802.11b/g Wireless (rev 03)
Yep. You got the Marvell.

However, I'm not as pessimistic about getting it to work.

Look at this thread
 
Old 06-24-2006, 10:17 PM   #6
Wirt
LQ Newbie
 
Registered: Jun 2006
Location: Minnesota
Distribution: openSUSE 11.2
Posts: 18

Original Poster
Rep: Reputation: 0
I checked out the thread. I downloaded ndiswrapper, but I can't seem to install it.
These are the instructions that came with it:

Download the latest version of the ndiswrapper sources from here and
extract it with the command

tar zxvf ndiswrapper-version.tar.gz

This will create ndiswrapper-version directory. Change to that
directory and run

make uninstall
make

Login as root and run
make install

I extracted the folder and got ndiswrapper-1.18. after that life got hard
 
Old 06-24-2006, 11:15 PM   #7
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
Then type these commands:
Code:
cd ndiswrapper-1.18
make uninstall
make
su
**root password**
make install
 
Old 06-25-2006, 01:30 AM   #8
Wirt
LQ Newbie
 
Registered: Jun 2006
Location: Minnesota
Distribution: openSUSE 11.2
Posts: 18

Original Poster
Rep: Reputation: 0
All right!! I checked out a couple of other threads and it seemed that an older version of ndiswrapper would be more stable for me . I downloaded 1.14 and with your helpful advice I got it installed. I ended up using the Win 98 drivers off of the CD. IT WORKS! Now I need to figure out how to get it to load at boot time.

For now I have to type-

modprobe ndiswrapper

-to get it to start.

Thanks!!
 
Old 06-25-2006, 01:37 AM   #9
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
cool

You can add the line (EDITED)
Code:
/sbin/modprobe ndiswrapper
to /etc/rc.d/rc.modules

That should take care of it.

And while you're at it, edit /etc/rc.d/rc.inet1.conf for your wireless settings.

One other thing:

There is an AWSOME Slackware forum here at LQ:

http://www.linuxquestions.org/questi...splay.php?f=14

You can get quick and accurate answers to your Slackware questions there.

And Welcome to Slackware!

Last edited by cwwilson721; 06-25-2006 at 01:55 AM.
 
Old 06-25-2006, 01:50 AM   #10
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
It should just be /sbin/modprobe, shouldn't it (unless there's a soft link in /usr/sbin)?
 
Old 06-25-2006, 01:54 AM   #11
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
You are correct. I was working off of 'memory', which is defined as:

Recollections, usually wrong, that has no basis in reality. You remember being hit by the baseball at 90 MPH, but you still go to the plate...
 
Old 06-25-2006, 11:29 AM   #12
Wirt
LQ Newbie
 
Registered: Jun 2006
Location: Minnesota
Distribution: openSUSE 11.2
Posts: 18

Original Poster
Rep: Reputation: 0
Thanks again! I've got it to load at boot.
 
Old 06-25-2006, 12:01 PM   #13
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
Cool.

Now learn more, and help others.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Linksys PCMCIA wireless card problem n.b.r. Linux - Hardware 1 06-17-2005 11:57 PM
Problem with PCMCIA wireless lan card 0x0000h Linux - Wireless Networking 5 12-28-2004 08:16 PM
PCMCIA Wireless Network Card Not Working With Slackware 9... zerojosh Linux - Hardware 7 05-06-2004 01:14 AM
slackware and wireless pcmcia card? nitro66 Linux - Software 16 10-25-2003 10:39 AM
problem with PCMCIA wireless card ? newtux Linux - Hardware 8 01-05-2003 03:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration