8723be not working[SOLVED]

Questions about Wi-Fi and other network devices, file sharing, firewalls, connection sharing etc
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
mmitechnic

8723be not working[SOLVED]

Post by mmitechnic »

Hello,

i have a hp x360 with wireless card 8723be and I installed latest cinammon 18.1. But wireless is not working.

What can I do?

Thanks in advance.
Last edited by mmitechnic on Sat Dec 17, 2016 5:51 pm, edited 1 time in total.
JeremyB
Level 21
Level 21
Posts: 13846
Joined: Fri Feb 21, 2014 8:17 am

Re: 8723be not working

Post by JeremyB »

First check rfkill list all results in terminal (CTRL + t)
If it lists acer-wireless soft blocked: yes do

Code: Select all

echo "blacklist acer-wmi" | sudo tee -a /etc/modprobe.d/blacklist.conf
Then reboot

If results from rfkill don't show wifi blocked and ifconfig shows the interface as UP we can do some testing with a module parameter that allows antenna selection as some HP's are known to use just one antenna on a card designed for 2 and it has caused headaches for a year and a half. But because of Larry Finger's work and his friends at Realtek we have this option

Code: Select all

sudo modprobe -r rtl8723be

Code: Select all

sudo modprobe rtl8723be ant_sel=1

Code: Select all

iwlist scan | egrep -i 'ssid|quality'
Then we check the second option to find which one works better

Code: Select all

sudo modprobe -r rtl8723be

Code: Select all

sudo modprobe rtl8723be ant_sel=2

Code: Select all

iwlist scan | egrep -i 'ssid|quality'
If ant_sel=1 is better

Code: Select all

echo "options rtl8723be ant_sel=1" | sudo tee -a /etc/modprobe.d/rtl8723be.conf
If ant_sel=2 is better

Code: Select all

echo "options rtl8723be ant_sel=2" | sudo tee -a /etc/modprobe.d/rtl8723be.conf
mmitechnic

Re: 8723be not working

Post by mmitechnic »

Thanks problem solved.
KostasLinux

Re: 8723be not working[SOLVED]

Post by KostasLinux »

I was having the same problem on another HP laptop using the RTL8723BE card.

I followed the steps and it worked on my machine too!

Code: Select all

System:    Host: kostas-HP-AMD Kernel: 4.13.0-43-generic x86_64 (64 bit gcc: 5.4.0)
           Desktop: Xfce 4.12.3 (Gtk 2.24.28) Distro: Linux Mint 18.3 Sylvia
Machine:   System: HP product: HP Notebook v: Type1ProductConfigId
           Mobo: HP model: 81F5 v: 66.30 Bios: Insyde v: F.17 date: 09/02/2016
CPU:       Quad core AMD A6-7310 APU with AMD Radeon R4 Graphics (-MCP-) cache: 8192 KB
           flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm) bmips: 15970
           clock speeds: max: 2000 MHz 1: 1110 MHz 2: 1165 MHz 3: 1071 MHz 4: 1087 MHz
Graphics:  Card: Advanced Micro Devices [AMD/ATI] Mullins [Radeon R4/R5 Graphics] bus-ID: 00:01.0
           Display Server: X.Org 1.18.4 drivers: ati,radeon (unloaded: fbdev,vesa)
           Resolution: 1366x768@60.00hz
           GLX Renderer: Gallium 0.4 on AMD MULLINS (DRM 2.50.0 / 4.13.0-43-generic, LLVM 4.0.0)
           GLX Version: 3.0 Mesa 17.0.7 Direct Rendering: Yes
Audio:     Card-1 Advanced Micro Devices [AMD] FCH Azalia Controller
           driver: snd_hda_intel bus-ID: 00:14.2
           Card-2 Advanced Micro Devices [AMD/ATI] Kabini HDMI/DP Audio
           driver: snd_hda_intel bus-ID: 00:01.1
           Sound: Advanced Linux Sound Architecture v: k4.13.0-43-generic
Network:   Card-1: Realtek RTL8723BE PCIe Wireless Network Adapter
           driver: rtl8723be port: 3000 bus-ID: 02:00.0
           IF: wlo1 state: up mac: 58:00:e3:84:70:0f
           Card-2: Realtek RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
           driver: r8169 v: 2.3LK-NAPI port: 2000 bus-ID: 03:00.0
           IF: enp3s0 state: down mac: 30:e1:71:74:0b:d6
Drives:    HDD Total Size: 128.0GB (13.3% used)
           ID-1: /dev/sda model: SanDisk_SD8SNAT size: 128.0GB
Partition: ID-1: / size: 110G used: 9.3G (9%) fs: ext4 dev: /dev/sda2
           ID-2: swap-1 size: 7.46GB used: 0.00GB (0%) fs: swap dev: /dev/sda3
RAID:      No RAID devices: /proc/mdstat, md_mod kernel module present
Sensors:   System Temperatures: cpu: 54.0C mobo: 20.0C gpu: 48.0
           Fan Speeds (in rpm): cpu: N/A
Info:      Processes: 216 Uptime: 1 day Memory: 2890.2/6914.7MB
           Init: systemd runlevel: 5 Gcc sys: 5.4.0 Client: Shell (bash 4.3.481) inxi: 2.2.35 
Thank you! That was a very detailed and easy-to-follow explanation!
Last edited by Moem on Sun Jun 24, 2018 4:55 pm, edited 1 time in total.
Reason: Swapped the quote tags out for code tags; the code tags retain some formatting that make your output easier to read.
Locked

Return to “Networking”