"സെന്റ്. ജോൺസ് എച്ച് എസ് എസ് മറ്റം/ഫോമുകൾ" എന്ന താളിന്റെ പതിപ്പുകൾ തമ്മിലുള്ള വ്യത്യാസം

No edit summary
No edit summary
വരി 43: വരി 43:
കമ്പ്യൂട്ടർ റീസ്റ്റാർട്ട് ചെയ്യുക
കമ്പ്യൂട്ടർ റീസ്റ്റാർട്ട് ചെയ്യുക
റീസ്റ്റാർട്ട് ചെയ്യുമ്പോൾ ബൂട്ട് ഓപ്ഷൻ കീ (F12) അമർത്തി ലിനക്സിനെ സൂചിപ്പിക്കുന്ന ബൂട്ട് എൻട്രി വന്നിട്ടുണ്ട് എന്ന് ഉറപ്പ് വരുത്തുക. Windows ഉള്ള കമ്പ്യൂട്ടറാണെങ്കിൽ ചിലപ്പോൾ Windows നു താഴെയായിട്ടായിരിക്കും ലിനക്സ് വന്നിട്ടുണ്ടാവുക. ഇത് സെലക്ട് ചെയ്താൽ ഇപ്പോൾ ഇൻസ്റ്റാൾ ചെയ്ത OS ലേക്ക് ബൂട്ട് ചെയ്യാം.
റീസ്റ്റാർട്ട് ചെയ്യുമ്പോൾ ബൂട്ട് ഓപ്ഷൻ കീ (F12) അമർത്തി ലിനക്സിനെ സൂചിപ്പിക്കുന്ന ബൂട്ട് എൻട്രി വന്നിട്ടുണ്ട് എന്ന് ഉറപ്പ് വരുത്തുക. Windows ഉള്ള കമ്പ്യൂട്ടറാണെങ്കിൽ ചിലപ്പോൾ Windows നു താഴെയായിട്ടായിരിക്കും ലിനക്സ് വന്നിട്ടുണ്ടാവുക. ഇത് സെലക്ട് ചെയ്താൽ ഇപ്പോൾ ഇൻസ്റ്റാൾ ചെയ്ത OS ലേക്ക് ബൂട്ട് ചെയ്യാം.
1. Reboot and go to BIOS to make sure wireless network are enabled. And plug laptop into a wired connection.
2. Open terminal either via Ctrl+Alt+T shortcut key or by searching for ‘terminal’ from software launcher.
3.1 Run command to get the newest Realtek rtlwifi codes that includes rtl8192ce, rtl8192cu, rtl8192se, rtl8192de, rtl8188ee, rtl8192ee, rtl8723ae, rtl8723be, and rtl8821ae.:
git clone <nowiki>https://github.com/lwfinger/rtlwifi_new.git</nowiki>
And then check out extended branch for rtl8822be or rtl8723de:
cd rtlwifi_new/ && git checkout origin/extended -b extended
3.2 You may install the building tools first via command:
sudo apt-get install linux-headers-generic build-essential git
4. In this terminal window, install the drivers via command:
sudo make install
Type your password (no asterisks feedback) when it prompts and hit Enter.
5. If the installation success, run 2 commands load the new driver:
sudo modprobe -r rtl8723desudo modprobe rtl8723de
The wireless network starts working in my case:
6. If that does not work, you may remove and blacklist the broadcom drivers and restart:
sudo apt purge bcmwl-kernel-sourcesudo sed -i '/blacklist bcma/ d' /etc/modprobe.d/blacklist.confsudo sed -i '/blacklist brcmsmac/ d' /etc/modprobe.d/blacklist.conf
In addition, (thanks to jeremy31) if you notice weak signal try command:
sudo modprobe -r rtl8723de && sleep 5 && sudo modprobe rtl8723de ant_sel=1
and see if it is better, if not run:
sudo modprobe -r rtl8723de && sleep 5 && sudo modprobe rtl8723de ant_sel=2
Or write the rule into the configuration. Replace X with whatever setting worked best
echo "options rtl8723de ant_sel=X" | sudo tee /etc/modprobe.d/rtl8723de.conf
----
----
----
----
------