• ×
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
  • ×
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
Guidelines
Are you having HotKey issues? Click here for tips and tricks.
Check out our WINDOWS 11 Support Center info about: OPTIMIZATION, KNOWN ISSUES, FAQs, VIDEOS AND MORE.
HP Recommended
15-bw005la
Linux

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?

1 ACCEPTED SOLUTION

Accepted Solutions
HP Recommended

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.

 

 

View solution in original post

4 REPLIES 4
HP Recommended

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.

 

 

HP Recommended

 

 

 

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

 

 

 

HP Recommended

I just needed to disable secure boot from UEFI :S

HP Recommended

Prego.

† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the <a href="https://www8.hp.com/us/en/terms-of-use.html" class="udrlinesmall">Terms of Use</a> and <a href="/t5/custom/page/page-id/hp.rulespage" class="udrlinesmall"> Rules of Participation</a>.