Skip to content

Instantly share code, notes, and snippets.

@sauercrowd
Last active December 19, 2020 14:56
Show Gist options
  • Save sauercrowd/14ece15e236568bca95b8367952a481b to your computer and use it in GitHub Desktop.
Save sauercrowd/14ece15e236568bca95b8367952a481b to your computer and use it in GitHub Desktop.
Install broadcom driver in fedora VM for qubes OS
#!/bin/bash
FEDORA_VERSION=26
wget -O kmod-wl.rpm "https://rpmfind.net/linux/rpmfusion/nonfree/fedora/releases/$FEDORA_VERSION/Everything/x86_64/os/Packages/k/kmod-wl-6.30.223.271-11.fc26.x86_64.rpm"
wget -O broadcom-wl.rpm "https://rpmfind.net/linux/rpmfusion/nonfree/fedora/releases/$FEDORA_VERSION/Everything/x86_64/os/Packages/b/broadcom-wl-6.30.223.271-2.fc26.noarch.rpm"
wget -O akmod-wl.rpm "http://rpmfind.net/linux/rpmfusion/nonfree/fedora/releases/$FEDORA_VERSION/Everything/x86_64/os/Packages/a/akmod-wl-6.30.223.271-11.fc26.x86_64.rpm"
sudo dnf install ./kmod-wl.rpm ./broadcom-wl.rpm ./akmod-wl.rpm
rm ./kmod-wl.rpm ./broadcom-wl.rpm ./akmod-wl.rpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment