1

I'm running Ubuntu 14.10 on HP pavilion P045TX Dual booting with windows 8.1. WiFi drivers are not found. How do i install the drivers for the same.

Please help me out!!.

2 Answers2

0

This will work

sudo apt-get install firmware-b43-installer
Mayur Kulkarni
  • 550
  • 1
  • 4
  • 14
0

If you can connect it to the internet via an ethernet cable I would suggest running

lspci | grep -i wireless

And then searching Google for how to install the drivers for that network adapter under ubuntu. It would probably look something like

sudo apt-get install bcmwl-kernel-source

or (recommended)

sudo apt-get install firmware-b43-installer

But it may differ because the support page for your laptop lists wireless drivers for Broadcom, Atheros, and Intel.

Mayur Kulkarni
  • 550
  • 1
  • 4
  • 14
Ian
  • 685