Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux? |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
03-03-2021, 06:07 AM
|
#1
|
Member
Registered: Aug 2009
Posts: 30
Rep:
|
can't get PCIe wifi adaptor to work
After installing the firmware from the Debian buster repositories, I got no complaints after a restart:
# dmesg | grep firmware
rtl18192ee: Using firmware rtlwifi/rt18192eefw.bin
rtl18192ee 0000:02:00.0: firmware: direct-loading firmware rtlwifi/rtl8192eefw.bin
r8169 0000:03:00.0: firmware: direct-loading firmware rtl_nic/rtl8168d-1.fw
And all the drivers are loaded:
$ lsmod | grep rtl
rt18192ee 98304 0
btcoexist 143360 1 rtl8192ee
rtl_pci 32768 1 rtl8192ee
rtlwifi 65536 3 rtl8192ee,rtl_pci,btcoexist
mac80211 569344 3 rtl8192ee,rtl_pci,rtlwifi
cfg80211 499712 2 mac80211,rtlwifi
I have also checked using rfkill that the wlan interface is unblocked. Despite all this I get "No wireless networks found" from wicd and /proc/net/wireless is empty. There's a windows machine in here that picks up the wireless.
I'm at my wits end because I had the identical experience with a usb wifi adapter. What could I be missing?
By the way, the pci adapter is a tp-link TL-WN881ND (using Realtek firmware) and the usb adapter is tp-link TL-WN722N (using Atheros firmare).
|
|
|
03-03-2021, 07:08 AM
|
#2
|
Senior Member
Registered: Oct 2003
Posts: 3,018
|
Please post the output of:
Code:
$ lspci -v | grep Wireless
That should give the exact chipset of your wireless card.
|
|
|
03-03-2021, 06:50 PM
|
#3
|
Member
Registered: Aug 2009
Posts: 30
Original Poster
Rep:
|
Quote:
$ lspci -v | grep Wireless
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8192EE PCIe Wireless Network Adapter
Subsystem: Realtek Semiconductor Co., Ltd. RTL8192EE PCIe Wireless Network Adapter
|
This is why I installed the firmware-realtek_20190114-2_all.deb from the Debian buster depository.
I thought this would be enough.
And judging from the output of dmesg and lsmod I put in my first post it should be.
|
|
|
03-03-2021, 07:06 PM
|
#4
|
Member
Registered: Aug 2009
Posts: 30
Original Poster
Rep:
|
O, I forgot
Quote:
$ uname -r
4.19.0-10-686-pae
|
|
|
|
03-03-2021, 08:05 PM
|
#5
|
Senior Member
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591
|
Quote:
Despite all this I get "No wireless networks found" from wicd and /proc/net/wireless is empty
|
Maybe NetworkManager is down, try starting it and enabling if it appears it was not enabled.
Code:
systemctl start NetworkManager
systemctl enable NetworkManager
If you can see the wireless device (IE: wlp1so) when you run command ---> ip link
Try bringing it up with command ---> ip link set wlp1so up
|
|
|
03-03-2021, 08:12 PM
|
#6
|
Senior Member
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591
|
Obviously since you're using wicd, NetworkManager is down.
Sometimes unloading the module and reloading it works.
|
|
|
03-16-2021, 04:03 AM
|
#8
|
Member
Registered: Aug 2009
Posts: 30
Original Poster
Rep:
|
Thanks for your links suggesting the unreliability of Linux wifi adapter drivers.
I have side stepped the issue and bought a wifi repeater with an ethernet port.
So my pc can access the wifi from down the road without an adapter.
Works perfectly!
|
|
|
03-16-2021, 04:01 PM
|
#9
|
Member
Registered: Aug 2007
Posts: 483
Rep: 
|
Quote:
Try bringing it up with command ---> ip link set wlp1so up
|
This is the wrong PCIe address. From the OP's reply it is slot 2:
Code:
$ lspci -v | grep Wireless
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8192EE PCIe Wireless Network Adapter
It should be
Code:
$ ip link set wlp2so up
|
|
|
03-16-2021, 04:07 PM
|
#10
|
Member
Registered: Aug 2007
Posts: 483
Rep: 
|
Quote:
Thanks for your links suggesting the unreliability of Linux wifi adapter drivers.
|
These links only suggest the unreliability of Realtek drivers for 8192. You seem to be substituting Linux for Realtek yourself and assuming if one make and model of chip gives Linux users problems then they all will. This is the wrong attitude.
As you are new to Linux let me tell you the secret. Get Intel wifi adapters or ones with Intel chips such as the Asus I have. Intel drivers come with the Linux kernel. Mine worked perfectly out of the box with Manjaro and Fedora.
https://www.canadacomputers.com/prod...28&language=en
Quote:
I have side stepped the issue and bought a wifi repeater with an ethernet port.
|
If you used Intel chip adapters there would have been no need for this.
Last edited by tofino_surfer; 03-16-2021 at 04:14 PM.
|
|
1 members found this post helpful.
|
03-17-2021, 05:45 AM
|
#11
|
LQ Guru
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530
|
For future reference, Abh, you need to cross check your Realtek card number to see - if it is supported in the kernel
- If it is supported on their site
- If the website driver is any use
A programmer needs to be of a certain standard before he is allowed to contribute kernel code. So anything in the kernel is good. Many such programmers work for peripheral companies (e.g. Qualcomm) and contribute drivers and firmware. Realtek never bothered, but put drivers on their website. Some but not all of those got in the iwlwifi kernel module, presumably after validation. Realtek are not the only ones with driver issues.
The cheapest hardware is inclined to have the worst support. Another 'Rock below water' is Ralink. Pay an extra $1 or $2 and save yourself endless hours of pain and poor performance.
|
|
|
03-17-2021, 11:36 PM
|
#12
|
Member
Registered: Aug 2009
Posts: 30
Original Poster
Rep:
|
Thanks for your suggestions everyone.
Ralink and Realtex have been mentioned as dubious, and Intel as one of the best.
Which chipset manufacurers are the best for Linux and which are the worst?
How many are there in total?
|
|
|
03-18-2021, 02:56 AM
|
#13
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 24,220
|
Quote:
Originally Posted by abh
Ralink and Realtex have been mentioned as dubious, and Intel as one of the best.
|
no, that is not that simple
Quote:
Originally Posted by abh
Which chipset manufacurers are the best for Linux and which are the worst?
|
I would rather say there are supported and not supported chipsets, that is not really manufacturer dependent. You always need to check if the given hardware is compatible with the distro.
Quote:
Originally Posted by abh
How many are there in total?
|
the number of chipsets is growing, but we have only a few manufacturers.
|
|
|
03-18-2021, 03:27 AM
|
#14
|
Senior Member
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591
|
Quote:
Originally Posted by tofino_surfer
This is the wrong PCIe address. From the OP's reply it is slot 2:
It should be
Code:
$ ip link set wlp2so up
|
Thanks, something I obviously overlooked. Sure wish I could edit the post... 
|
|
|
03-18-2021, 01:11 PM
|
#15
|
Member
Registered: Aug 2007
Posts: 483
Rep: 
|
Quote:
Thanks, something I obviously overlooked. Sure wish I could edit the post...
|
It is very easy on LQ to edit your own posts after the fact. All of my own posts have a third icon 'Edit' in between 'Report' and 'Quote'.
|
|
|
All times are GMT -5. The time now is 07:09 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|