0

When I'm trying to install windows driver for RTL8723BE on Lenovo IdeaPad100 wlan0 disappeared. I fixed it with this:

https://askubuntu.com/a/593015/531813

but after reboot I must type:

sudo modprobe -r 
sudo modprobe rtl8723be  

How I can load modules on boot/why it is not loaded now?

2 Answers2

1

It should be fixed by

sudo update-initramfs -u

But still you will have to re-install the driver after kernel updates.

You can also install the same driver in DKMS format from a PPA.

https://askubuntu.com/a/635629/167850

This way you won't need to re-install it every time you upgrade a kernel. But most likely you will need to uninstall the driver from git first.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
0

I fixed it by adding rtl8723be to /etc/modules

Fabby
  • 34,259