Ubuntu – Wifi not working in asus x550cc on ubuntu 14.04

14.04asuswireless

I have just installed Ubuntu 14.04 and I am not able to connect through wi-fi.

I have tried out this wifi not working asus x550cc it is hard blocked

my asus_nb_wmi is loaded and

rfkill list all

Show this

2: asus-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
3: asus-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no

edit : I tried this too but in vain

sudo modprobe -r asus_nb_wmi
sudo modprobe asus_nb_wmi wapf=1 
sudo rfkill unblock all

Best Answer

Yours should work with echo "options asus_nb_wmi wapf=4" | sudo tee /etc/modprobe.d/asus_nm_wmi.conf Then you should be able to reboot and use your keyboard to enable wifi if it is still blocked

This should be fixed eventually as the code is in the asus_nb_wmi module in linux-next

.callback = dmi_matched,
    .ident = "ASUSTeK COMPUTER INC. X550CC",
    .matches = {
        DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
        DMI_MATCH(DMI_PRODUCT_NAME, "X550CC"),
    },
    .driver_data = &quirk_asus_wapf4,
Related Question