LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-20-2003, 04:05 AM   #1
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Rep: Reputation: 30
Question Help with w-lan on slack 9.0


Is there anyone that can give me a howto guide or link to a page where there is a guide about w-lan setup

Beacause i trie to set up a server but i have to configure the w-lan card (its a belkin pci adapted pcmcia card)
I looked at the guide in /etc/pcmcia wireless.opt but i didnt understand please help fast...
 
Old 04-20-2003, 07:02 AM   #2
Excalibur
Senior Member
 
Registered: Jun 2002
Location: Northern VA, USA
Distribution: Ubuntu
Posts: 1,180

Rep: Reputation: 46
If the pcmcia card is inserted into a PCI adapter then treat it as PCI card. Try running netconfig and let it proble for a NIC and see if locates it.
 
Old 04-20-2003, 02:14 PM   #3
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
i tried but when it probed it just found my other networkcard
 
Old 04-20-2003, 02:39 PM   #4
Excalibur
Senior Member
 
Registered: Jun 2002
Location: Northern VA, USA
Distribution: Ubuntu
Posts: 1,180

Rep: Reputation: 46
Well, it is just a guess but you could try "modprobe ne2k-pci" to load the PCI NE2000 driver generic driver. Use "cat /proc/net/dev" to see if you have another eth interface available.

For the list of available driver modules view the directory /lib/modules/2.4.20/kernel/drivers/net and there is also a pcmcia directory below that.

Other modules that are popular common interfaces are 8139cp, 8139too, tulip, and natsemi. Perhaps one of them will work.

I suppose the PCI card is also a pcmcia interface adapter that could really hold anything. So you might want to make sure the pcmcia services are loaded. This is usually done through the /etc/rc.d/rc.pcmcia script if enabled.

I think you also mentioned wireless, there is a directory for wireless modules as well under the drivers/net tree you want to review and attempt to load. If none of them work then it may be that the card does not have Linux support. But you can do a search on http://www.google.com/linux and use the model number of the PCMCIA lan card and see if any info is reported on the driver availablility and/or usage.
 
Old 04-20-2003, 03:28 PM   #5
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
iwe found the w-lan before with iwconfig


but the problem is configuring it
 
Old 04-20-2003, 03:41 PM   #6
Excalibur
Senior Member
 
Registered: Jun 2002
Location: Northern VA, USA
Distribution: Ubuntu
Posts: 1,180

Rep: Reputation: 46
I hope that somebody else is able to help or maybe you should visit the network forum. I did not even know there was an "iwconfig" until you mentioned it. It does have a man page. (man iwconfig) Sorry that I couldn't of been more help.

The cost of the equipment is coming down to where i have been considering an investment for some wireless stuff but I haven't as yet.
 
Old 04-21-2003, 03:33 AM   #7
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
thx

can anyone else help
 
Old 04-21-2003, 09:30 PM   #8
finegan
LQ Guru
 
Registered: Aug 2001
Location: Dublin, Ireland
Distribution: Slackware
Posts: 5,700

Rep: Reputation: 72
First off is to find out what actual chipset and drivers run the Belkin PLX combo card. Its probably just another prism2 chipset plus PLX adapter, but it might be something else unique, bizarre, and annoying. Try this:

modprobe orinoco_plx

Then muck about with the wireless settings with "iwconfig" (the man page is pretty solid), and "ifconfig" to bring the card up.

If that doesn't hork errors, then it bound to the card, post back with the last 12 or so lines of the command:

dmesg

If it does hork, post back with the output of /sbin/lspci

Do you just want this machine as another crate on the network? Or did you want to do something funky with it like have it run as an AP for the rest of the house?

Cheers,

Finegan
 
Old 04-22-2003, 03:13 AM   #9
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
il want to try red hat first and see id that is any better but if its not il switch back to slackware
 
Old 04-22-2003, 03:48 AM   #10
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
i go for slack installing it now after that il try out the things you said
 
Old 04-22-2003, 04:34 AM   #11
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
heres some of the output of dmseg:
orinco_plx local interrupt already enabled
detected orinco/prism2 plx device at 00:09.0 irq:11, io addr:0x6200
eth1: staion identity 001f:0003:0000:0008
eth1: looks like an intersil firmware version 0.08
eth1: ad-hoc demo mode supported
eth1: ieee standard ibss ad-hoc mode supported
eth1: wep supported 104-bit key
eth1: mac adress 00:30:bd:60:fd:d4
eth1: station name "prism I"
eth1: ready
 
Old 04-22-2003, 04:37 AM   #12
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
i want this machine to share an internett conection and maybe a burn server but before i think of that i want to now linux a bit more than i do now
 
Old 04-22-2003, 04:47 PM   #13
finegan
LQ Guru
 
Registered: Aug 2001
Location: Dublin, Ireland
Distribution: Slackware
Posts: 5,700

Rep: Reputation: 72
It found the card, it bound the module, you're fine now...

ifconfig eth1 up
iwconfig eth1 essid nameofwirelessnetwork
iwconfig eth1 enc 21321321321
dhcpcd eth1

There you go... you can add the line:

/sbin/modprobe orinoco_plx

to /etc/rc.d/rc.modules

and then edit /etc/rc.d/rc.inet1 with the appropriate local area network settings...

Cheers,

Finegan
 
Old 04-23-2003, 10:37 AM   #14
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
ok but the enc thing is that encryption because we dont have encryption enabled
 
Old 04-23-2003, 10:52 AM   #15
killi
Member
 
Registered: Apr 2003
Location: Norway
Distribution: Diff
Posts: 440

Original Poster
Rep: Reputation: 30
do i need to insert the modprobe thing it found the card without it
 
  


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
machine has adsl ethernet modem, to make it gateway over lan do i need more lan cards b0nd Linux - Networking 2 10-04-2005 10:19 PM
Fast WAN slow LAN Slack 9.x - 10.x Grunthos Slackware 5 09-28-2005 03:58 AM
slack 10.0 intel PRO/Wireless LAN 2100 pgrimes Linux - Wireless Networking 1 10-06-2004 10:40 AM
Setting up my wireless LAN internet on my slack laptop :D Belize Linux - Wireless Networking 17 10-04-2003 01:15 PM
Can't get slack to recognize onboard lan fsu_slacker Linux - Networking 26 08-11-2003 10:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:42 PM.

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