0

When I tried installing git from clone it's asking for username & password

git clone https://github.com/lwfinger/rtlwifi_new.git
Cloning into 'rtlwifi_new'...
Username for 'https://github.com':

please help


shdpjjc@shdpjjc-System-Product-Name:~$ rfkill list
shdpjjc@shdpjjc-System-Product-Name:~$ 
shdpjjc@shdpjjc-System-Product-Name:~$ 
shdpjjc@shdpjjc-System-Product-Name:~$ uname -a
Linux shdpjjc-System-Product-Name 4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:26:51 UTC 2018 i686 athlon i686 GNU/Linux
shdpjjc@shdpjjc-System-Product-Name:~$ lspci -knn | grep Net -A3;

below command gives blank


rfkill list 
lspci -knn | grep Net -A3


Below solution resolved my problem

I was able to resolve the issue after following this post in https://github.com/kelebek333/rtl8188fu.
https://askubuntu.com/questions/1062402/cant-find-wifi-drivers-for-0bdaf179-realtek-semiconductor-corp


The concern was we were using 0bda:f179 Realtek Semiconductor Corp which requires specific drivers.

Thanks Everyone for the Help :)


Graduate
  • 1
  • 1
  • 4
  • Please [edit] your question and add more information. What OS you are using, what is your wireless device, why are you thinking you need Realtek drivers? – Pilot6 Jul 27 '20 at 17:01
  • Please [edit] your question and add output of `lspci -knn | grep Net -A3; rfkill list; umane -a` terminal command. – Pilot6 Jul 27 '20 at 17:11
  • Are you using a USB adapter? You don't have any PCI wireless devices. There is no reason to install `rtlwifi` at all. You didn't explain why you are trying to install it. – Pilot6 Jul 28 '20 at 14:15
  • I was able to resolve the issue after following this post in https://github.com/kelebek333/rtl8188fu. https://askubuntu.com/questions/1062402/cant-find-wifi-drivers-for-0bdaf179-realtek-semiconductor-corp The concern was we were using 0bda:f179 Realtek Semiconductor Corp which requires specific drivers. Thanks Everyone for the Help :) – Graduate Jul 29 '20 at 14:06

1 Answers1

0

The https://github.com/lwfinger/rtlwifi_new.git has been removed.

Use https://github.com/lwfinger/rtw88.git instead.

To install them run:

sudo apt update
sudo apt install git dkms
git clone https://github.com/lwfinger/rtw88.git
sudo dkms add ./rtw88
sudo dkms install rtlwifi-new/0.6
Pilot6
  • 88,764
  • 91
  • 205
  • 313