Skip to content

Instantly share code, notes, and snippets.

@bartosjiri
Last active February 18, 2023 10:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bartosjiri/0a6c06fb03afdc86d24b6425cd2503a4 to your computer and use it in GitHub Desktop.
Save bartosjiri/0a6c06fb03afdc86d24b6425cd2503a4 to your computer and use it in GitHub Desktop.
Manjaro broadcom WLAN fix

Manjaro broadcom WLAN fix

Problem

Manjaro installation doesn't offer any WLAN connections.

Solution

  1. Connect the device to the internet through ethernet, phone-to-USB or other available method.

  2. Uninstall current drivers:

    sudo pacman -Rns linux419-broadcom-wl
    
  3. Make sure Manjaro installation is up to date:

    sudo pacman-mirrors -f 5 && sudo pacman -Syyu
    
  4. Install required linux kerner headers:

    sudo pacman -S linux419-headers
    
  5. Install the "dkms" packange:

    sudo pacman -S dkms
    
  6. Once finished, unplug all internet conections and reboot.

  7. If there is still no WLAN available, install following driver package:

    sudo pacman -S broadcom-wl-dkms
    
  8. Again, unplug all internet connections and reboot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment