0

enter image description here

I tried this but it didn't work as you can see. What am I doing wrong?

andrew.46
  • 37,085
  • 25
  • 149
  • 228
Deepak Kumar
  • 547
  • 2
  • 5
  • 12

1 Answers1

0

The command sudo add-apt-repository ppa:hanipouspilot/rtlwifi is running fine on my system.

If it still doesn't work on your system for some reason, you can install the WiFi drivers yourself like this:

  1. Clone the drivers repo, lwfinger/rtlwifi_new
  2. Build the drivers by running: make && sudo make install
  3. Restart the system or just restart the WiFi module by running:

    sudo modprobe -r <driver-name> && sudo modprobe <driver-name>

Hope it helps!

Pilot6
  • 88,764
  • 91
  • 205
  • 313
tbking
  • 166
  • 1
  • 6
  • The alternative method is worse, because it requires to re-install the driver after each kernel upgrade. The OP's problem is somewhere else. – Pilot6 Aug 13 '16 at 10:15
  • @Pilot6 I agree, updating drivers from the ppa is lot easier. – tbking Aug 13 '16 at 10:23