Views:
6,628β
Votes: 4β
β
Solution
Tags:
wireless
asus
executable
Link:
π See Original Answer on Ask Ubuntu β§ π
URL:
https://askubuntu.com/q/965141
Title:
Having to run command `sudo modprobe brcmfmac` every time I restart in order to get wifi working
ID:
/2017/10/15/Having-to-run-command-_sudo-modprobe-brcmfmac_-every-time-I-restart-in-order-to-get-wifi-working
Created:
October 15, 2017
Edited: June 12, 2020
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
Your card is blacklisted
You have to run sudo modprobe brcmfmac
because it is blacklisted. You can tell this when you ran the command:
$ sudo grep brcmfmac /etc/modprobe.d/*
etc/modprobe.d/blacklist-custom.conf:blacklist brcmfmac
In order to βwhitelistβ your card you need to use sudo powers to edit etc/modprobe.d/blacklist-custom.conf
. Then:
- Find the containing
blacklist brcmfmac
- Insert a
#
in front of it. - Save the file
Now when you reboot you shouldnβt have to type sudo modprobe brcmfmac
anymore.
Thanks to Jeremy31 for recommending shorter version of my original answer. If yuou like this shorter answer please click on his name link find another answer of his you find helpful and upvote it.
Please note there is a reason your card was blacklisted in the first place and if you have additional problems you might have to download source for a different driver and compile it using DKMS.