0

I just removed the Windows partition on my Toshiba Satellite C55, but when I did so I lost the functionality of my Broadcom bcm43142 wifi adapter. It is odd because the OS seems to recognize that the driver exists, yet there is no way actually turn it on. Pictures below:

"Software & Updates" shows that a proprietary driver is in use

"Settings" does not recognize that there is a driver

I am at my wits end here. I have done everything in my power to try to fix this issue. I have taken the following steps:

FIRST) I attempted to reinstall bcmwl-kernel-source. I ran the following command:

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

No luck.

SECOND) I tried to purge and reinstall bcmwl-kernel-source at root level. I ran the following commands:

sudo -i
apt update
apt upgrade
apt-get purge bcmwl-kernel-source
reboot

sudo -i apt update apt-get install build-essential # Just to make sure it was installed update-pciids apt-get install bcmwl-kernel-source reboot

No luck.

THIRD) I booted into Toshiba's BIOS and ensured that Secure Boot was disabled. It is listed as disabled.

Obviously, no luck.

FOURTH) I ignored the above and disabled Secure Boot in shim-signed anyway. I took the following steps:

sudo mokutil --disable-validation

I then followed the prompts in MOK management (selected "Change Secure Boot State," entered my password, and selected YES to disable secure boot) and changed the secure boot state successfully.

No luck.

Wrapping Up

Seriously, what more can I do here? Please let me know if I can give you any terminal outputs. I know enough in the bash to try things for you, but unfortunately not necessarily enough to proactively provide that info for you. Thank you from the bottom of my heart for anyone who can help here!

-Ryan

Ryan
  • 1

1 Answers1

1

The broadcom open source driver appears to be unsigned and is thus blocked by the UEFI secure boot process. Try disable secure boot in the bios and try again.

Brian
  • 11