Created
June 13, 2023 17:26
-
-
Save ingmarioalberto/9f804c04895263cd71c4f344d87b41a4 to your computer and use it in GitHub Desktop.
Install driver RTL88x2BU via dkms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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