Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ingmarioalberto/9f804c04895263cd71c4f344d87b41a4 to your computer and use it in GitHub Desktop.
Save ingmarioalberto/9f804c04895263cd71c4f344d87b41a4 to your computer and use it in GitHub Desktop.
Install driver RTL88x2BU via dkms
Another option would be to install drivers from Cilynx's GitHub repo for RTL88x2BU drivers.
As detailed in the repo, you can install the drivers using DKMS installation method:
cd rtl88x2bu
VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf)
sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER}
sudo dkms add -m rtl88x2bu -v ${VER}
sudo dkms build -m rtl88x2bu -v ${VER}
sudo dkms install -m rtl88x2bu -v ${VER}
sudo modprobe 88x2bu
fuente: https://askubuntu.com/questions/1202760/new-linux-ubuntu-missing-a-ko-file-wifi-adapter-driver-rtl8822b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment