0

enter image description here

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

andrew.46
  • 38,003
  • 27
  • 156
  • 232
Deepak Kumar
  • 577
  • 2
  • 5
  • 13

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
  • 90,100
  • 91
  • 213
  • 324
tbking
  • 166
  • 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