I have found the solution on ubuntu but i cant find it on fedroa can someone tell me these commands that would work on fedora:
sudo apt update
sudo apt install git dkms build-essential
git clone GitHub - cilynx/rtl88x2bu: rtl88x2bu driver updated for current kernels.
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
vwbusguy
(Scott Williams)
August 13, 2022, 1:00am
2
I don’t see anything obviously incompatible with Fedora here except you can remove apt update
and use dnf
instead to install things, but I don’t have the hardware to test it on. Instead of build-essential, you probably want dnf groupinstall "Development Tools"
.
1 Like
@omaraladham did you try what @vwbusguy proposed you?
1 Like
im srry for wasting your time , i never understood what he ment until today. It works!
Here a alternative way to do it. Seams to be an active Git repository with commands from several Linux distributions: