

I have a pci dlink card (unknown model) and also a pcmcia dlink wpc11that both work with orinoco modules and wlan-ng modules - both were automatically detected during gentoo installations. I'll try to find the exact model of the pci card that I'm using....I can assure you they were whatever was cheap at the time I bought them, but that was over a year ago and I have heard some of the dlink stuff isn't linux compatible anymore.StringCheesian wrote:Ok, can anybody recommend a good linux-friendly wireless networking card?
The problem with WiFi inside a home is not the distance but the number of wall between the access point and the PC and what is the composition of the wall (concrete blocks, wood panel, ...). Of course distance is important but outside not inside.StringCheesian wrote:Our router (shared by the whole family) is on the opposite side of our large appartment from my bedroom where my computer is.
I dual boot, and for Windows the USB to phone line jack converter that came with the router (for SBC dsl, brand name is 2wire) works ok, but not at all with Gentoo (nor any Linux distro).
So what would you recommend?
get a linksys WET11. it is an ethernet bridge. just plug it in to your ethernet nic enter the settings for your ap into the web based configuration page and your good to go. i have a version 1 and it has worked well for me for over a year with a netgear 802.11b routerStringCheesian wrote:Ok, can anybody recommend a good linux-friendly wireless networking card?



It doesn't have to be unsightly... well, actually, it just doesn't have to be in sight. Get a long cable, and run it along the corners of the room. Better yet, you can get an electrician to run the wire through the walls, and have it end up in a nice ethernet socket. My friend did this... so cool - you got yer power socket, phone socket, cable socket, and ethernet socket!StringCheesian wrote:Paladine01/tactless: My mom doesn't want me to run an unsightly cable through the living room.


It's called a 2Wire PC Port, and it's not wireless. One end plugs into your USB, the other into the phone jack, and it uses the phone line to network with the router (aka HPNA or HomePNA). I had never heard of such a thing until I saw it. It's pretty cool, and the PCI card version of it supposedly works with linux, but not this stupid USB adapter.nightcanton wrote:I would would like to know which USB adapter that was.
Code: Select all
USE="usb" emerge linux-wlan-ng-0.2.1_pre20.ebuildCode: Select all
FEATURES="-sandbox" USE="usb" emerge linux-wlan-ng-0.2.1_pre20.ebuildCode: Select all
nano /etc/conf.d/wlan.conf
Code: Select all
SSID_wlan0="<Your Domain here"Code: Select all
cd /etc/conf.d
cp wlancfg-DEFAULT wlancfg-<YourDomain>
nano wlancfg-<YourDomain>
Code: Select all
lnxreq_hostWEPEncrypt=false # true|false
lnxreq_hostWEPDecrypt=false # true|false
dot11PrivacyInvoked=true # true|false
dot11WEPDefaultKeyID=0 # 0|1|2|3
dot11ExcludeUnencrypted=false # true|false, in AP this means WEP is required.
PRIV_GENERATOR=/sbin/keygen # nwepgen, Neesus compatible
PRIV_KEY128= # true if 128 bit key, otherwise false
PRIV_GENSTR="<your WEP key string>"
Code: Select all
nano /etc/conf.d/netCode: Select all
iface_wlan0="dhcp"Code: Select all
cp /etc/init.d/net.eth0 /etc/init.d/net.wlan0Code: Select all
alias wlan0 prism2_usbCode: Select all
rc-update add wlan default
rc-update add net.wlan0 defaultCode: Select all
modprobe prism2_usb
/etc/init.d/wlan start
/etc/init.d/net.wlan0 start

Code: Select all
WARNING: Error inserting p80211 (/lib/modules/2.6.7-gentoo-r14/kernel/drivers/net/p80211.ko): Invalid module format
FATAL: Error inserting prism2_usb (/lib/modules/2.6.7-gentoo-r14/kernel/drivers/net/prism2_usb.ko): Invalid module format