Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Installation instruction added. #74
installation instruction added.
how to install instruction added for the debian based distro.
- Loading branch information...
| @@ -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>> | ||
vrkansagara
Contributor
|
||
| +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` | ||
Should be followed by an specific example for the newbies, like which part of the result of "lspci | grep Wireless" is considered as the driver code?