1

I have just installed Ubuntu 17.10 and my ASUS wireless adapter is not found.

The result of lspci -v:

Network controller: Broadcom Limited BCM4360 802.11ac Wireless Network Adapter (rev 03)
Kernel driver in use: bcma-pci-bridge
Kernel modules: bcma

I do not have an internet connection on the system. I have never had an issue with this system and the wireless adapter on previous versions of ubuntu (as far back as 16.04). Have the necessary drivers been removed from the linux kernel? How do I get the drivers installed without an internet connection?

user535733
  • 62,253

1 Answers1

1

Changing to -generic kernel, then running the following when booted fixed it for me:

sudo apt-get install --reinstall bcmwl-kernel-source

Josh
  • 161