WiFi Worked in Windows 10, not working in Ubuntu 14.04

SOGGHD

Reputable
Jul 30, 2015
20
0
4,520
I have an ASUS PCI WiFi chip and it works great in Windows 10 (and previously 8.1) but when I dual booted with Ubuntu 14.04 it no longer works. When I was first installed Ubuntu I did the "Try First" option and it was able to connect there. Now that I've permanently installed Ubuntu it doesn't work and when I try to enable it under "additional drivers" it asks for authentication but doesn't work once I "authenticate" it. Please Help!! PS. I'm a Linux noob
 
Solution
You can just post the copy/paste console output, no need for screenshot. In fact this is generally preferred because it is easier to read and searchable!

the relevant bit of information you are looking for in this output is:
Code:
broadcom corporation bcm4360 (rev 03)

this is the chipset for your wireless device. unfortunately broadcom is well known for not being open source friendly so most distrobutions cannot (legally) distribute drivers/firmware for many of their hardware. If you launch the command 'dmesg' you will probably also see some error message associated with it.

Connect to internet via ethernet connection and run this command in console to install and load the driver/firmware:
Code:
sudo apt-get update
sudo apt-get install...
Sorry I'm really new to Linux, I tried typing that into Terminal and it said 'command not found' . Is there something else I'm supposed to do first? Thanks for the help. (Sorry for the late response)

 
eBnuC5y.jpg

Thanks
 
You can just post the copy/paste console output, no need for screenshot. In fact this is generally preferred because it is easier to read and searchable!

the relevant bit of information you are looking for in this output is:
Code:
broadcom corporation bcm4360 (rev 03)

this is the chipset for your wireless device. unfortunately broadcom is well known for not being open source friendly so most distrobutions cannot (legally) distribute drivers/firmware for many of their hardware. If you launch the command 'dmesg' you will probably also see some error message associated with it.

Connect to internet via ethernet connection and run this command in console to install and load the driver/firmware:
Code:
sudo apt-get update
sudo apt-get install bcmwl-kernel-source
sudo modprobe wl

'apt-get' is the package manager command. 'update' tells the package manager to grab latest package list.
'bcmwl-kernel-source' is the broadcom proprietary driver.
'modprobe wl' loads the driver broadcom 'wl' driver
 
Solution