LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices


Reply
  Search this Thread
Old 06-01-2005, 05:19 AM   #1
CompDude
LQ Newbie
 
Registered: May 2004
Distribution: Slackware 10
Posts: 11

Rep: Reputation: 0
Wireless Help -- Lots of information


I have been googling/reading about this card for a whole now and just cannot get this to work under linux. I have tried recompiling the kernel a few times. Anyway, here is all the information that I thought you all could need to help me here. The first thing I tried was to install the wlan-ng drivers, but that did not seem to get the card working.

Actual Error Message:
Code:
root@laptux # ifconfig wlan0 up
SIOCSIFFLAGS: No such device
uname -r:
Code:
root@laptux matthew # uname -r
2.6.11-gentoo-r3
lsmod:
Code:
root@laptux matthew # lsmod
Module                  Size  Used by
snd_mixer_oss          16128  1
prism2_usb             73604  0
p80211                 31504  1 prism2_usb
via_rhine              18692  0
mii                     3968  1 via_rhine
snd_via82xx            21696  1
snd_ac97_codec         68216  1 snd_via82xx
snd_pcm                76040  2 snd_via82xx,snd_ac97_codec
snd_timer              19460  1 snd_pcm
snd_page_alloc          7428  2 snd_via82xx,snd_pcm
gameport                3712  1 snd_via82xx
snd_mpu401_uart         5760  1 snd_via82xx
snd_rawmidi            18848  1 snd_mpu401_uart
snd_seq_device          6796  1 snd_rawmidi
snd                    44388  8 snd_mixer_oss,snd_via82xx,snd_ac97_codec,snd_pcm ,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device
parport_pc             29508  0
parport                30664  1 parport_pc
via_agp                 7424  1
agpgart                27688  1 via_agp
sata_via                5764  0
sata_svw                5252  0
sata_sil                6020  0
sata_promise            7940  0
libata                 39556  4 sata_via,sata_svw,sata_sil,sata_promise
dm_mod                 49852  0
sbp2                   21128  0
ohci1394               29700  0
ieee1394               88884  2 sbp2,ohci1394
ohci_hcd               18440  0
uhci_hcd               28304  0
usb_storage            28032  0
usbhid                 30272  0
ehci_hcd               27656  0
usbcore                99192  7 prism2_usb,ohci_hcd,uhci_hcd,usb_storage,usbhid, ehci_hcd
lspci:
Code:
root@laptux matthew # lspci
0000:00:00.0 Host bridge: VIA Technologies, Inc. VT8605 [ProSavage PM133]
0000:00:01.0 PCI bridge: VIA Technologies, Inc. VT8605 [PM133 AGP]
0000:00:0a.0 CardBus bridge: O2 Micro, Inc. OZ601/6912/711E0 CardBus/SmartCardBus Controller
0000:00:11.0 ISA bridge: VIA Technologies, Inc. VT8231 [PCI-to-ISA Bridge] (rev 10)
0000:00:11.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
0000:00:11.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 1e)
0000:00:11.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 1e)
0000:00:11.4 Bridge: VIA Technologies, Inc. VT8235 ACPI (rev 10)
0000:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT82C686 AC97 Audio Controller (rev 40)
0000:00:11.6 Communication controller: VIA Technologies, Inc. AC'97 Modem Controller (rev 20)
0000:00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 51)
0000:01:00.0 VGA compatible controller: S3 Inc. 86C380 [ProSavageDDR K4M266] (rev 02)
lsusb:
Code:
root@laptux matthew # lsusb
Bus 002 Device 002: ID 1668:0408 Actiontec Electronics, Inc. [hex] Prism2.5 802.11b Adapter
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 001: ID 0000:0000
iwconfig:
Code:
root@laptux matthew # iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

wlan0     no wireless extensions.
ifconfig -a
Code:
root@laptux matthew # ifconfig -a
eth0      Link encap:Ethernet  HWaddr 00:E0:B8:38:5F:19
          inet addr:192.168.0.103  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1040 errors:0 dropped:0 overruns:0 frame:0
          TX packets:714 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:464139 (453.2 Kb)  TX bytes:89191 (87.1 Kb)
          Interrupt:5 Base address:0xe800

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:157 errors:0 dropped:0 overruns:0 frame:0
          TX packets:157 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:10326 (10.0 Kb)  TX bytes:10326 (10.0 Kb)

wlan0     Link encap:Ethernet  HWaddr 00:00:00:00:00:00
          BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

Last edited by CompDude; 06-01-2005 at 03:16 PM.
 
  


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
Gateway Solo 1150 Multimedia sirmicheal Linux - Hardware 0 03-10-2005 09:54 PM
Gateway Solo 5300 ancient lunatic Linux - Laptop and Netbook 1 01-27-2005 06:30 PM
Gateway, solo 1400, blower fan wont shut off DickHertz Linux - Laptop and Netbook 4 10-08-2004 02:32 AM
Gateway Solo 2500. tricky_linux Linux - Hardware 4 01-15-2004 06:30 PM
RedHat 9.0 on Gateway Solo 9100 ximiansavior Linux - Laptop and Netbook 1 09-05-2003 09:06 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking

All times are GMT -5. The time now is 03:53 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