0

I have updated the Ubuntu version to 16.04. Also I've tried a bunch of different solutions as those answering these questions for example:

lenovo e540 RTL8723be wifi not working

Wifi problems with rtl8723be in Ubuntu 14.04

Wifi not working on Realtek rtl8723be wifi adapter

And none of them has worked. Please, if someone can help I'll appreciate it a lot.

The network command sudo lshw -C network :

*-network               
   description: Ethernet interface
   product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:08:00.0
   logical name: enp8s0
   version: 07
   serial: 3c:a8:2a:7b:fb:8c
   size: 100Mbit/s
   capacity: 100Mbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8106e-1_0.0.1 06/29/12 ip=192.168.1.47 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
   resources: irq:41 ioport:4000(size=256) memory:b2600000-b2600fff memory:b2400000-b2403fff
*-network UNCLAIMED
       description: Network controller
       product: RTL8723BE PCIe Wireless Network Adapter
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:09:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: latency=0
       resources: ioport:3000(size=256) memory:b2500000-b2503fff

The lspci | grep -i network command :

09:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter
Mark
  • 1

1 Answers1

-3

Try this in the terminal:

echo "options ath9k nohwcrypt=1" | sudo tee  /etc/modprobe.d/ath9k.conf

then type:

sudo modprobe -rfv ath9k

then:

sudo modprobe -v ath9k

I hope it helps!

Terrance
  • 43,712