1 bug squashed, 99 to go

Using the Asus AC56 in Linux

· by author · Read in about 1 min · (113 Words)
asus wifi

This USB Wifi dongle was bought by our lab. But when I finally got it in my hands, I saw that the driver CD was missing. So I decided to hunt for the driver from the interwebz. This is my journey.

  1. Download the driver from this link. Download it as a ZIP
  2. Unzip the contents and go inside the directory
  3. Get all essentials for make

    sudo apt install linux-headers-generic build-essential
    
  4. Make and install

    make
    sudo make install
    
  5. Reboot. You should now be able to see wifi APs. Check with the command

    sudo iwlist wlan0 scan | grep -i ESSID
    

See the previous post regarding how to connect to an AP.

Source : Stackoverflow

Comments