Permalink
Browse files

installation instruction added.

how to install instruction added for the debian based distro.
  • Loading branch information...
1 parent b12da7c commit 8c5ab142e254a709df397d5d3121acc2d783d2d2 @vrkansagara committed Oct 18, 2015
Showing with 20 additions and 0 deletions.
  1. +20 −0 README.md
View
@@ -7,3 +7,23 @@ This code will build on any kernel 3.0 and newer. It includes the following driv
rtl8192ce, rtl8192se, rtl8192de, rtl8188ee, rtl8192ee, rtl8723ae, rtl8723be, and rtl8821ae.
+####Installation instruction
+How can you find <<YOUR WIRELESS DRIVER CODE>> using `lspci | grep Wireless`
+```
+sudo apt-get install linux-headers-generic build-essential git`
+git clone https://github.com/lwfinger/rtlwifi_new.git
+cd rtlwifi_new
+make clean
+sudo make install
+sudo modprobe -r <<YOUR WIRELESS DRIVER CODE>>
+sudo modprobe <<YOUR WIRELESS DRIVER CODE>>
+sudo reboot
+```
+
+####Option Configuration
+```
+touch /etc/modprobe.d/<<YOUR WIRELESS DRIVER CODE>>.conf
+vim /etc/modprobe.d/<<YOUR WIRELESS DRIVER CODE>>.conf
+```
+and past bellow line
+`options <<YOUR WIRELESS DRIVER CODE>> fwlps=N ips=N`

3 comments on commit 8c5ab14

cannot run make command produces error:-
make -C /lib/modules/4.3.0-kali1-amd64/build M=/root/rtlwifi_new modules
make[1]: *** /lib/modules/4.3.0-kali1-amd64/build: No such file or directory. Stop.
Makefile:57: recipe for target 'all' failed
make: *** [all] Error 2

Owner

vrkansagara replied Mar 15, 2016

have you used simple make or following new instruction given in this PR.

Owner

vrkansagara replied Mar 15, 2016

also you can try to get back port linux header and image will solve your problem.

Please sign in to comment.