LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 03-30-2009, 11:05 AM   #1
ddaw1941
LQ Newbie
 
Registered: Aug 2006
Posts: 5

Rep: Reputation: 0
USB wireless adapter install


Just received a USB wireless adapter with driver CD. New to Linux, how do I install the driver? Thanks Al
 
Old 03-30-2009, 11:31 AM   #2
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Rep: Reputation: Disabled
Hi and welcome to LQ.

1) Which distribution and version are you using ?

2) What are the brand or manufacturer and model of this device ?

3) Plug it in and make sure it is switched on. Then wait 30 seconds, open a terminal and type:
Code:
dmesg|tail
Send back the whole output.

4) While it is still plugged in type as root:
Code:
lsusb
Send back the results.

With all the answers hopefully we will be able to help you.

Last edited by Didier Spaier; 03-30-2009 at 11:36 AM. Reason: Typos
 
Old 03-30-2009, 12:42 PM   #3
ddaw1941
LQ Newbie
 
Registered: Aug 2006
Posts: 5

Original Poster
Rep: Reputation: 0
requested information on USB adapter install

I am using Ubuntu 9.04 Beta

There is no brand name on the adapter, It is a wireless lan 802.11g USB adapter. I have the Driver CD that came with it.

I hope that this is what you asked for.

dmesg|tail
[ 86.403038] ISO 9660 Extensions: Microsoft Joliet Level 3
[ 86.409453] ISOFS: changing to secondary root
[ 888.752223] ppdev0: registered pardevice
[ 888.800095] ppdev0: unregistered pardevice
[ 892.143713] ppdev0: registered pardevice
[ 892.192735] ppdev0: unregistered pardevice
[ 1805.220714] [drm:i915_getparam] *ERROR* Unknown parameter 6
[ 1806.616194] [drm:i915_getparam] *ERROR* Unknown parameter 6
[ 2406.176180] [drm:i915_getparam] *ERROR* Unknown parameter 6
[ 3006.177315] [drm:i915_getparam] *ERROR* Unknown parameter 6
al@al-laptop:~$ lsusb
Bus 001 Device 002: ID 0bda:8189 Realtek Semiconductor Corp. RTL8187B Wireless 802.11g 54Mbps Network Adapter
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
al@al-laptop:~$


Thanks for your help, Al
 
Old 03-30-2009, 01:17 PM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Rep: Reputation: Disabled
It's strange that we see nothing in dmesg's output about your adapter.

May be it was already plugged in when you started the computer? This could explain that.

To make sure: unplug it, then plug it again, wait 30 seconds, issue dmesg|tail again and send the results.

Anyway it shows in lsusb's output, which is good news, see this line:
Bus 001 Device 002: ID 0bda:8189 Realtek Semiconductor Corp. RTL8187B Wireless 802.11g 54Mbps Network Adapter

And even better you should have the relevant driver already installed as a kernel's module: it's name is rtl8187

To check that it is loaded, once the adapter is plugged in issue following command:
lsmod|rtl8187

It should output at least one line with rtl8187 in it.

If the output is empty, to make sure issue
lsmod
and check yourself that you have a line with rtl8187 in the output.

Anyway give us the results.
 
Old 03-30-2009, 01:52 PM   #5
ddaw1941
LQ Newbie
 
Registered: Aug 2006
Posts: 5

Original Poster
Rep: Reputation: 0
Unplugged, plugged back in with the following results

dmesg|tail
[ 382.542606] udev: renamed network interface wlan0 to wlan1
[ 403.289566] ADDRCONF(NETDEV_UP): wlan1: link is not ready
[ 407.285111] wlan1: authenticate with AP 00:11:50:31:ed:d7
[ 407.286734] wlan1: authenticated
[ 407.286742] wlan1: associate with AP 00:11:50:31:ed:d7
[ 407.289086] wlan1: RX AssocResp from 00:11:50:31:ed:d7 (capab=0x401 status=0 aid=5)
[ 407.289092] wlan1: associated
[ 407.289624] wlan1: disassociating by local choice (reason=3)
[ 431.000334] e100: eth0: e100_watchdog: link down
[ 441.000251] e100: eth0: e100_watchdog: link up, 10Mbps, half-duplex
al@al-laptop:~$ lsusb
Bus 001 Device 003: ID 0bda:8189 Realtek Semiconductor Corp. RTL8187B Wireless 802.11g 54Mbps Network Adapter
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

lsmod|rt8187
bash: rt8187: command not found

Thanks Al
 
Old 03-30-2009, 02:06 PM   #6
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Rep: Reputation: Disabled
Per dmesg's output the wireless interface is set up with name eth1 so all should be fine.

You just need to configure your wireless connection. I have no clue about how to do that with Ubuntu though.

About "command not found" that's my fault, I mistyped the command. Type instead:
dmesg|grep rtl8187
And there are three letters before the first 8, do not forget the l as in letter).

Last edited by Didier Spaier; 03-30-2009 at 02:07 PM.
 
Old 03-30-2009, 02:07 PM   #7
ddaw1941
LQ Newbie
 
Registered: Aug 2006
Posts: 5

Original Poster
Rep: Reputation: 0
I do have a rtl6167 listed
 
Old 03-30-2009, 02:12 PM   #8
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Rep: Reputation: Disabled
Fine!

Then just set up your wireless connection. I guess there is some GUI for that in Ubuntu, as for choosing the network and inputting the WEP or (a lot safer) WPA key.
 
Old 03-30-2009, 02:37 PM   #9
ddaw1941
LQ Newbie
 
Registered: Aug 2006
Posts: 5

Original Poster
Rep: Reputation: 0
Thanks for your help, now maybe someone knows how to set it up. I've tried and am on line with hard wired but no luck wireless yet. Someone will know I bet. Have a good day. Al
 
Old 03-30-2009, 03:10 PM   #10
cavaliersunbird
LQ Newbie
 
Registered: Mar 2009
Location: Baudette MN
Distribution: Mepis, Ubuntu
Posts: 19

Rep: Reputation: 0
applications-add/remove-select all available apps- search "windows wireless drivers" this program should allow you to use your windows driver to set up your connection. Now I have yet to use Jaunty 9.04, So don't count me as an expert here
 
  


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
Belkin USB Wireless Adapter install help banhammer Linux - Wireless Networking 2 02-12-2009 02:17 AM
Install USB wireless adapter help harjim Linux - Wireless Networking 1 10-21-2006 09:58 AM
How to install usb wireless adapter in linux? jarrywhu Linux - Wireless Networking 0 09-01-2004 07:56 AM
Linksys Wireless USB Network Adapter, How do I Install? Kevin Nash Red Hat 0 02-07-2004 10:41 PM

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

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