I am running ubuntu 17.04
on an asus x205ta
, and through much struggle and research finally got the wifi working. I was so happy and decided to restart the pc just to make sure and come to my knowledge it does not work, unless I run these commands in the terminal once again:
sudo modprobe brcmfmac
I am using a guide I found on another post here: How to install (L)Ubuntu 16.04 on the ASUS X205TA (F205TA)
I think the problem could be that maybe the /etc/rc.local
file that is suppose to be an executable is not becoming one or otherwise I have no clue. I am brand new to linux and this is my first time messing with it.
UPDATE: It is actually only the sudo modprobe brcmfmac
command I have to run that I know of now. Im not sure if the others still have to be ran or not. It is also worth mentioning that in the guide the wifi should work before these steps are taken and mine does not until these commands are issued.
UPDATE2: The rc.local
file is executable so that is not the problem.
Running command grep brcmfmac /etc/modprobe.d*
returns grep: /etc/modprobe.d: Is a directory
Running command cat /etc/modprobe.d/* | grep brcmfmac
returns blacklist brcmfmac
Running command sudo grep brcmfmac /etc/modprobe.d/*
returns /etc/modprobe.d/blacklist-custom.conf:blacklist brcmfmac
ll /etc/rc.local
to display the attributes of the file. It should look something like this:-rwxr-xr-x 1 root root 616 Oct 8 2016 /etc/rc.local*
The-rwx
means read, write and execute. Therefore when you see thex
you know it's an executable files. This is repeated three times, once for the owner, once for the group and once for all users. – WinEunuuchs2Unix Oct 15 '17 at 06:06grep brcmfmac /etc/modprobe.d*
– Jeremy31 Oct 15 '17 at 10:51-rwxr-xr-x 1 root root...
So I guess that is not the problem then.@Jeremy31 added in the edits
– Taylor Austin Oct 15 '17 at 11:25cat /etc/modprobe.d/* | grep brcmfmac
, @TaylorAustin try that command instead. – WinEunuuchs2Unix Oct 15 '17 at 14:55sudo apt-get remove bcmwl-kernel-source
reboot – Jeremy31 Oct 15 '17 at 15:35grep brcmfmac /etc/modprobe.d/*
edit to post results as this should show the name of the blacklist – Jeremy31 Oct 15 '17 at 15:48sudo gedit /etc/modprobe.d/blacklist-custom.conf
and put#
in front ofblacklist brcmfmac
. Are these the correct steps ? – Taylor Austin Oct 15 '17 at 15:57/etc/rc.local
got axed – Zanna Oct 17 '17 at 15:22