• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Has anyone set up linux on a wireless network?

 
Ranch Hand
Posts: 919
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there,
Has anyone successfully set up a linux desktop box (not laptop) on a wireless network?
If so, what distribution, card and/or drivers did you use? There seem to be precious few wireless PCI card drivers available. I know there are some linux PCMCIA wireless card drivers available, but has anyone set up a desktop with linux, a PCI-PCMCIA bridge and a PCMCIA wireless card?
I have been trying with a PCI wireless card, but so far with no luck, so I am considering getting a PCMCIA card for the desktop.
Any ideas welcome.
 
Ranch Hand
Posts: 103
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've set one up using the belkin pci card and the belkin router. Off the top of my head I don't remember the details except to say that it does work. I tried a linksys card before reading that their cards no longer work under linux. The typical no driver available for the hardware problem under linux. I think I used the wlan driver. This site has a bunch of links:http://bengross.com/wireless.html
[ April 06, 2003: Message edited by: Michael Burke ]
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wrestled with this one awhile back. I have had great success with the Linksys products (WAP and cards). Here's a link to the thread. I put a list of "10 easy steps", just bypass the sarcasm.
Wireless networking thread
Jim
 
James O'Dell
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Of course, I should have mentioned the steps are practically the same using the PCI adapter in your desktop box.
Jim
 
Saloon Keeper
Posts: 28402
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If all else fails, go to The Jacksonville Linux Users Group website and join their mailing list.
For all that I depair that my city of residence will never get past a "blue-collar" level of technology, one thing that's really popular around here is wireless networking.
I may, in fact, be the only one in town still using wires!
 
George Brown
Ranch Hand
Posts: 919
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would keep on using wires but am about to move house (next week) and the cable access (now with added linksys wireless switch/router) will be in a different room to the computers.
And according to my significant other trailing wires around is out of the question.
I think my mistake was to buy a wireless PCI card without finding out whether the linux drivers were available. It turns out that Netgear only support Win 98/Me/NT/2000/XP with the MA311. Next stop the eBay items offered section...
 
George Brown
Ranch Hand
Posts: 919
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One week on since my last post in this thread...
I bought the Linksys WPC11 (Wireless PC card) and WDT11 (Wireless PCI adaptor). I'm running Mandrake 9 with the default kernel and it was surprisingly straightforward to get the card up and running. The following were the steps taken, in case anyone else tries this and needs help:
1. Installed gcc package and the kernel source package
2. downloaded linux-wlan-ng-0.2.0.tar.gz from www.linux-wlan.org, unzipped and unpacked it, and changed to that directory.
3. ran the configure script, and only said yes to the plx option, no to everything else.
4. ran 'make all' and then logged in as root and ran 'make install'. Smooth compile and install.
5. cd to /etc/wlan, change the scripts for your particular wireless setup
6. For the plx (pci adaptor) version of events you need to set up an alias in the /etc/modules.conf file:
alias wlan0 prism2_plx
(if you use pcmcia without the adaptor you should not do this)
7. added a script in /etc/sysconfig/network-scripts as I am using dhcp on my wireless router:
DEVICE=wlan0
USERCTL=yes
ONBOOT=yes
BOOTPROTO=dhcp
8. linked the wlan script in /etc/init.d to the rc3.d area, to come up between iptables and network. It's important that it should come up before network.
9. No kernel builds were required...
HTH
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Glad to know you got it working.
From time to time I toy with adding my Linux machines to my wireless network, but have never quite made the jump yet
 
George Brown
Ranch Hand
Posts: 919
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Glad to know you got it working
Cheers, me too
It's update time though, I've abandoned the linux-wlan-ng drivers in favour of the orinoco_plx driver, which seems to be better integrated with the distribution (for example, you can use the wireless-tools package with the latter but not the former).
The OS had trouble dealing with both ethernet and post-installation addition of the wireless gear, so I dumped the ethernet card into my surplus cards box and performed a fresh minimal install of mandrake 9.0 with only the wireless gear. The setup was all done automatically.
It worked fine until I started trying to transfer really large files, at which point the wireless interface and connection dropped in a heap, with error messages galore (that's the supposedly stable version 0.11 release). A quick driver update (to version 0.13d) and now everything is working swimmingly, even with large files.
I'd recommend the orinoco drivers now, they're much less hassle overall (despite my need to update the drivers) especially since the card was recognised and the system autoconfigured itself.
You can get more info about the orinoco drivers here.
 
You can't expect to wield supreme executive power just because
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic