LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 06-06-2017, 10:50 AM   #1
TenshiM
LQ Newbie
 
Registered: Jun 2017
Posts: 2

Rep: Reputation: Disabled
WiFi Adapter Driver Install (WNP UA300P)


I've been trying to install the drivers for my wifi adapter but can't find a way to do it. I'm running Xubuntu 16.04. Here's the link, the driver files are in "Support" section.
http://gembird.nl/item.aspx?id=8711

Thank you in advance ^-^
 
Old 06-06-2017, 11:19 AM   #2
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875
RTL8192EU by the looks of it (according to amazon). A few RTL8192xx drivers in rtlwifi_new.

https://github.com/lwfinger/rtlwifi_new

Although not seeing the EU variant directly. Perhaps covered by the ee one? Or maybe another source tree.

https://github.com/Mange/rtl8192eu-linux-driver

You normally need the driver plus the firmware. Most times a version of the firmware comes with the driver, but it might not be the best/newest or included at all. A few kernel.org sources for most of the common firmwares with the latest versions.

https://discourse.osmc.tv/t/tutorial...rtl8192eu/5252

Seems to be a success for someone at least in blog format.
 
1 members found this post helpful.
Old 06-06-2017, 12:06 PM   #3
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hello and welcome to the forum

Also, if you would, with your adapter plugged in, please open a terminal and post the results of this command...

Code:
lsusb
Thanks!
 
Old 06-06-2017, 12:49 PM   #4
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,194

Rep: Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068
Quote:
Originally Posted by TenshiM View Post
I've been trying to install the drivers for my wifi adapter but can't find a way to do it. I'm running Xubuntu 16.04. Here's the link, the driver files are in "Support" section.
http://gembird.nl/item.aspx?id=8711
The chipset is what you need to be concerned with. The drivers on that site are for Windows only, but according to the chipset (under "Specifications"), it's an RTL8192EU, and the link Shadow_7 posted (https://github.com/Mange/rtl8192eu-linux-driver) should give you everything you need. Please note that you'll need to make sure you have your kernel-source installed before trying to build that driver.

That being said...the chipset *MAY* be supported through the Ubuntu repositories by running these commands from a terminal:
Code:
sudo add-apt-repository ppa:hanipouspilot/rtlwifi
sudo apt-get update
sudo apt-get install rtl8192eu-dkms
...which is what I'd try first, before trying to build from source.
Quote:
Originally Posted by ardvark71
Also, if you would, with your adapter plugged in, please open a terminal and post the results of this command...
Code:
lsusb
What is the point of this??? The OP already said what they were using, and posted complete specs to the device. They didn't say they couldn't see it, but needed drivers for it.

Last edited by TB0ne; 06-06-2017 at 02:29 PM.
 
Old 06-06-2017, 06:11 PM   #5
TenshiM
LQ Newbie
 
Registered: Jun 2017
Posts: 2

Original Poster
Rep: Reputation: Disabled
http://i.imgur.com/meiNBJ1.png
Already had these driver files from the official link. I just don't know how to use them.
I tried "ppa:hanipouspilot/rtlwifi ・ rtl8192eu-dkms", but I got an error while installing the package.

TB0ne, I don't know what you meant by "kernel-source" being installed before building the driver.

Sorry if I made anyone cringe while reading this x]
 
Old 06-06-2017, 10:46 PM   #6
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875
kernel-source is the build part of a kernel so you can compile against the kernel. In debian it would be package "linux-headers-amd64", versus "linux-image-amd64" which is the kernel that you boot. The headers is basically the build/ part for source compiling. Although when I was looking, it looks like that driver is included by default in debian stretch, the soon to be stable version of debian. So you might not need to do anything special with a reasonably recent distro. AKA it should work out of the box.
 
2 members found this post helpful.
Old 06-07-2017, 07:50 AM   #7
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,194

Rep: Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068Reputation: 8068
Quote:
Originally Posted by TenshiM View Post
http://i.imgur.com/meiNBJ1.png
Already had these driver files from the official link. I just don't know how to use them.
There is a file called README...did you read it??
Quote:
I tried "ppa:hanipouspilot/rtlwifi ・ rtl8192eu-dkms", but I got an error while installing the package.
Unless you actually tell us what this error IS, there isn't much we can do to help you. And you need to type in the entire lines you were given, not just the little snip you posted here, because if you type in the "sudo ......" lines, that would add a repository, download the driver, and install it automatically.
Quote:
TB0ne, I don't know what you meant by "kernel-source" being installed before building the driver.
Typically, you'll install your kernel...that's what makes your system work, to put it very simply. The kernel-source is the actual source code from which your kernel is built, so whenever you have to build a kernel module (a 'driver' in Windows terms), you'll need the source to build it from. Go into your package manager and search for kernel-source. Install it.
 
  


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
If a printer, and a wifi adapter have the same chipset, can the driver from the printer be applied to the wifi adapter? unwound Linux - Newbie 5 02-18-2017 12:46 PM
I dont know how to install Ralink driver wifi adapter on backbox Im newbie Norbertcs Linux - Newbie 5 02-03-2016 12:54 PM
The easiest way to install a .ko file containing a wifi adapter driver on Ubuntu 12.1 maciek1988 Linux - Newbie 3 08-23-2015 03:10 AM
how to install USB wifi adapter driver? Bhanu999 Linux - Software 14 09-04-2014 10:37 AM

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

All times are GMT -5. The time now is 07:56 AM.

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