-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Notebooks
- Notebook Wireless and Networking
- Realtek RTL8723BE Not working on Linux

Create an account on the HP Community to personalize your profile and ask a question
03-17-2018 11:40 AM
Hey there, I'm trying to move to Linux (because of my job) my Notebook but I cannot configure the Wireless Adapter. I tried recompiling the kernel, Intalling https://github.com/lwfinger/rtlwifi_new donesn't work and I cannot find ANY solution.
My problem is that Linux doesn't recognize the Hardware at all (Windows does, so it's not a hardware problem) so my only option at Linux is Wired Connection (and I won't be able to be wired connected in my office).
Any suggestions?
Solved! Go to Solution.
Accepted Solutions
03-17-2018 01:50 PM
Hi
Linux works out of the box with the 8723BE, at least as good as Windows, maybe even better.
HOWEVER if you have chosen an exotic OS then you gotta roll your own.
03-17-2018 02:10 PM - edited 03-17-2018 02:13 PM
Copy and paste the script below into a text editor and save it with a meaningful name like whiffy.scr and then run it in a terminal something like this ./whiffy.scr
OR Just use the individual commands:-
ifconfig
iwconfig
lspci -nnk | grep -iA 2 '^[^[:space:]].*net' | sed '/^--$/d; /^[^[:space:]]/ i\\'
lsusb
rfkill list all
lsb_release -idrc
uname -srvmpio
lsmod
as and when needed.
#!/bin/bash clear printf "Very BASIC Report details for WiFi. \n" printf "NB:-Some commands might not run. \n" printf "\n##### ifconfig ##########################\n" ifconfig printf "\n##### iwconfig ##########################\n" iwconfig printf "\n##### route ##########################\n" route -n printf "\n##### DNS ##########################\n" nmcli dev show |grep DNS printf "\n##### lspci #############################\n" lspci -nnk | grep -iA 2 '^[^[:space:]].*net' | sed '/^--$/d; /^[^[:space:]]/ i\\' printf "\n##### lsusb #############################\n" lsusb printf "\n##### rfkill ############################\n" rfkill list all printf "\n##### Distro Release ######################\n" lsb_release -idrc uname -srvmpio printf "\n##### Modules ######################\n" lsmod
Something like this...
##### lspci #############################
01:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network Adapter [103c:2231]
Kernel driver in use: rtl8723be
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller [10ec:8136] (rev 07)
Subsystem: Hewlett-Packard Company RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller [103c:8130]
Kernel driver in use: r8169
If you have a non Debian derived OS, then you may have problems - Kali comes to mind - but Lubuntu et al, NO.
##### Distro Release ######################
Distributor ID: Ubuntu
Description: Ubuntu 17.10
Release: 17.10
Codename: artful
Linux 4.13.0-36-generic #40-Ubuntu SMP Fri Feb 16 20:07:48 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux