LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 12-15-2010, 03:26 PM   #1
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Rep: Reputation: 5
Trying to get USB Network Adapter to work in Linux Mint


I used Several Distos, went to school up to Linux 225, but haven't used Linux for years.

I have an older (P4, Win xp) laptop I use at the coffee shop.
I want to put Linux Mint on it. I use a USB Adapter (Arilink101 AWLL6075) for Wi-Fi.

I tried the live CD and, of course, USB Adapter doesn't work. In the half hour I looked at it, I realized I forgot a lot of things. I could not even find the laptop USB.

Will tring to get it to work be the typical Linux thing, where you download the drivers, do the install right, and it doesn't work? You compile drivers, set everything up right, and it doesn't work?

Did they change the name of USB in Linux while I was gone?

Thank you,
Chris.

Last edited by happydog500; 12-15-2010 at 03:27 PM. Reason: Replaced "Doesn't work" with "USB Adapter doesn't work
 
Old 12-16-2010, 08:05 AM   #2
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
I don't think that they have changed the name. Please post the output of
Code:
lsusb
so that we can help you to get it working. By the way, Linux Mint uses the driver installer of Ubuntu, maybe you can try that.
 
Old 12-16-2010, 06:54 PM   #3
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Original Poster
Rep: Reputation: 5
I found the most question in a College Linux Class, even among the advanced (LFS) guys was, "it doesn't work."
I remember one guy who was a Linux Guru. This guy was so knowledgeable, but I thought it was funny (we didn't get along) most of the stuff he was doing didn't work.

I can remember about Red Hat 8 days, you could at least work and get something to work. I think Linux has gone backwards. I remember one distro (don't recall which one) was meant for listening to streaming media. When I did it, it never worked. I do exactly what they said on the forums, didn't work. One thing that pissed me off was I had another distro where you had to put in a long string into the media player every time. Of course, the advice was to cut and paste, which, of course, you couldn't cut and paste (didn't work) because in the media player, you can't cut and past.

Not sure why I'm going back and trying Linux again, but I will try. I came down here to the coffee shop and forgot the disc. I will do it and post back.

Chris.

Last edited by happydog500; 12-16-2010 at 06:56 PM. Reason: put e in paste
 
Old 12-17-2010, 09:11 AM   #4
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,649
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
Hi, I hate this, but if you can't get a distro like fedora to do what you want,

then you may need to develop your own.

But then again I tried a few distros, like knoppix and debian, at first the redhat 5.2,

Then I followed a tute for building a fw-gw (firewalled gateway) using Mandrake 9.1

I've also installed Fedora...

I got Mandrake 10.0 and Have been using Mandriva ever since.

IMHO, the most hackable linux system. (with-out being a programmer)

Look into ndiswrapper for windows wireless cards.

Regards Glenn
 
0 members found this post helpful.
Old 12-17-2010, 09:46 AM   #5
archtoad6
Senior Member
 
Registered: Oct 2004
Location: Houston, TX (usa)
Distribution: MEPIS, Debian, Knoppix,
Posts: 4,727
Blog Entries: 15

Rep: Reputation: 234Reputation: 234Reputation: 234
Your thread is in the wrong forum, it doesn't belong in "Software". Would you prefer I move it to Mint or Networking?

Please reply soon, or I'll have to choose for you.
 
Old 12-17-2010, 02:26 PM   #6
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Original Poster
Rep: Reputation: 5
I thought since I was working with software, it should be in the software. Mint forums have not been very good, so you can move my software question to the network forum. Chris.
 
Old 12-17-2010, 02:54 PM   #7
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
Quote:
Originally Posted by GlennsPref View Post
Hi, I hate this, but if you can't get a distro like fedora to do what you want, then you may need to develop your own.
Er, the poster is having trouble with a usb network card and your advice is build your own linux?


Quote:
Originally Posted by happydog500
I thought since I was working with software, it should be in the software. Mint forums have not been very good, so you can move my software question to the network forum. Chris.
We still need the output of lsusb as mentioned and if you could also post the output of these two commands
Code:
lsmod
dmesg | grep firmware
By and large most things, in my experience, work fine in linux. But, of course, there are trouble spots. Wireless cards have long been one of those areas of trouble. That has mostly been resolved by and large for internal cards, but USB wireless cards can still be problematic. In both cases it's often a matter of proprietary firmware that is needed.

Now, we'll need the output of the above commands to confirm this, but it looks as though your wireless device uses the rtl8192su driver, which should be included out of the box. But if that is the case, this driver does need firmware.

Assuming the dmesg command confirms that you need rtl8192sfw.bin do
Code:
wget http://launchpadlibrarian.net/33927923/rtl8192se_linux_2.6.0010.1012.2009.tar.gz
sudo su
mkdir /lib/firmware/RTL8192SU
tar -xzOf rtl8192se_linux_2.6.0010.1012.2009.tar.gz\
 rtl8192se_linux_2.6.0010.1012.2009/firmware/RTL8192SE/rtl8192sfw.bin\
 > /lib/firmware/RTL8192SU/rtl8192sfw.bin

Last edited by archtoad6; 12-17-2010 at 05:38 PM. Reason: fold long code line to kill hor. scroll
 
1 members found this post helpful.
Old 12-17-2010, 05:09 PM   #8
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Original Poster
Rep: Reputation: 5
Stopped by a friends house, still haven't got home to get the disc. Should be able to do it this evening. I'm just frustrated, once I get back into it I'm sure I'll get it back. It would be easier if I could use Mint while on the internet.

I always wondered why they made a media player that wouldn't allow pasting to it, but that's a different thread.

One of my favorite ones was Mandrake, a year or two before they changed the name.

I did a lot on OpenSUSE right when they aligned with MS. I thought that one would take off, since it was, "The year of Linux".

Chris.
 
Old 12-17-2010, 05:44 PM   #9
archtoad6
Senior Member
 
Registered: Oct 2004
Location: Houston, TX (usa)
Distribution: MEPIS, Debian, Knoppix,
Posts: 4,727
Blog Entries: 15

Rep: Reputation: 234Reputation: 234Reputation: 234
Moved to Networking in accordance w/ OP's preference.
 
Old 12-24-2010, 05:22 PM   #10
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Original Poster
Rep: Reputation: 5
lsmod listed everything I had USB. I could see the adapter. 24th eve so I came in to post this. Didn't want to go to long, even if it's been a hectic week. Don't have the stuff I wrote down with me.
Can I download from the software manager to get the adapter to work? If I can get the internet on the Mint Installed computer, I'm home free.

Thank you,
Chris
 
Old 12-28-2010, 04:40 PM   #11
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Original Poster
Rep: Reputation: 5
Ran into a guy from school. He told me to go to the manufactures website and see if they have drives. No Linux Drivers.
Didn't find any I could get from Mint. Looks like no way to get a very popular, USB Adapter to work in Mint.
Chris.
 
Old 12-28-2010, 05:06 PM   #12
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
You may be able to get it working using the windows xp driver and ndiswrapper. However, as you never posted the output I requested it's hard to help further.
 
Old 12-28-2010, 06:02 PM   #13
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,649
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
Hi, I might explain my earlier response,

No point changing distros, if your build of the kernel does not support a device.

You might look into what modules the kernel has configured for use,

and what is there but is turned off or disabled.

I agree with Reed9,
 
Old 12-28-2010, 10:40 PM   #14
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Sorry, but as long as you deny to post the output of the commands, that you were asked for, no one here will be able to help you. Complaining doesn't simply help, you have to do your part to let us try to do our part.
 
1 members found this post helpful.
Old 12-30-2010, 05:04 PM   #15
happydog500
Member
 
Registered: Dec 2006
Location: Washington St.
Distribution: Linux Mint 21, Windows 11
Posts: 308

Original Poster
Rep: Reputation: 5
OK, obviously, I can't cut and past it, so I'll have to type in half a notebook page of stuff. Will take a while to do this.
I haven't been able to focus on this, since I got busy right after. I will get this done.

I'll first post just the ls comand stuff.

Chris.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
How to make network adapter work in linux asjt3 Linux - Networking 1 06-18-2006 09:49 PM
Does the Playstation->PC USB adapter work with Linux? hbbtstar Linux - Hardware 6 10-01-2003 03:34 PM
getting 10/100 usb network adapter to work qanopus Linux - Hardware 16 11-06-2002 05:35 AM

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

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