0

I installed Ubuntu on an HP WiFi-only PC. After Installation The OS does not find the WiFi device. This is my maiden voyage with Ubuntu. I suspect that I did something wrong.

NIMISHAN
  • 1,575
  • 4
  • 19
  • 28
MFW
  • 1
  • Welcome to AskUbuntu! Is this a desktop computer, or a laptop? Either way, please give the make/model of the computer as well as the make/model of the wireless adapter/wireless card if known. Please edit your question with the output of ip link show, and netstat -i – David Sep 25 '19 at 00:35
  • 1
    Welcome to Ask Ubuntu. You may not have done anything wrong, some brand devices are easy, many cheaper ones are not. Following the docs can be helpful, ie. https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide (if you get stuck, when you get to device recognition and operation, you'll gain details about your chipsets found in your device which are the key clues to fixing your issue, and us helping you). – guiverc Sep 25 '19 at 00:36
  • 2
    Please open a terminal Ctrl+Alt+t and run: lspci -nnk | grep 0280 -A3 Next, edit your question to show the result. Welcome to Ask Ubuntu. – chili555 Sep 25 '19 at 03:26
  • 1
    Please also add output of rfkill list. – Pilot6 Sep 25 '19 at 07:38
  • d4c6e6@X15:~$ lspci -nnk | grep 0280 -A3 02:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM43142 802.11b/g/n [14e4:4365] (rev 01) Subsystem: Hewlett-Packard Company BCM43142 802.11b/g/n [103c:804a] Kernel modules: bcma

    d4c6e6@X15:~$ rfkill list 0: hci0: Bluetooth Soft blocked: no Hard blocked: no

    – MFW Sep 25 '19 at 17:38
  • Thank you @guiverc – MFW Sep 25 '19 at 17:50
  • Thank you @chili555 – MFW Sep 25 '19 at 17:51
  • Thank you @Pilot6 – MFW Sep 25 '19 at 17:52

1 Answers1

0

Disable Secure Boot in BIOS, connect to the Internet using your phone and run in a terminal

sudo apt update
sudo apt install bcmwl-kernel-source

That will install the driver.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
  • d4c6e6@X15:~$ sudo apt update [sudo] password for d4c6e6: Err:1 http://security.ubuntu.com/ubuntu disco-security InRelease Temporary failure resolving 'security.ubuntu.com' Err:2 http://us.archive.ubuntu.com/ubuntu disco InRelease Temporary failure resolving 'us.archive.ubuntu.com' Err:3 http://us.archive.ubuntu.com/ubuntu disco-updates InRelease Temporary failure resolving 'us.archive.ubuntu.com' – MFW Sep 27 '19 at 20:59
  • Err:4 http://us.archive.ubuntu.com/ubuntu disco-backports InRelease Temporary failure resolving 'us.archive.ubuntu.com' Reading package lists... Done Building dependency tree
    Reading state information... Done All packages are up to date. W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/disco/InRelease Temporary failure resolving 'us.archive.ubuntu.com' W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/disco-updates/InRelease Temporary failure resolving 'us.archive.ubuntu.com'
    – MFW Sep 27 '19 at 21:03
  • : Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/disco-backports/InRelease Temporary failure resolving 'us.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/disco-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. – MFW Sep 27 '19 at 21:06
  • W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/disco-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used insteadd4c6e6@X15:~$ sudo apt install bcmwl-kernel-source Reading package lists... Done Building dependency tree
    Reading state information... Done bcmwl-kernel-source is already the newest version (6.30.223.271+bdcom-0ubuntu4). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    – MFW Sep 27 '19 at 21:07
  • You didn't connect to the Internet. The answer said to connect to the Internet using your phone. You just ran the command. If you don't have a phone, you can use an offline method form the duplicate link. – Pilot6 Sep 28 '19 at 07:47
  • i have a phone that was connected to the web. I used a usb cable to connect the phone to the laptop. – MFW Sep 28 '19 at 19:53