Realtek RTL8723BE Wi-Fi incredibly weak The Next CEO of Stack OverflowRealtek RTL8723BE weak...
Is wanting to ask what to write an indication that you need to change your story?
Would a completely good Muggle be able to use a wand?
Do I need to write [sic] when a number is less than 10 but isn't written out?
Reference request: Grassmannian and Plucker coordinates in type B, C, D
INSERT to a table from a database to other (same SQL Server) using Dynamic SQL
How to place nodes around a circle from some initial angle?
Is it possible to replace duplicates of a character with one character using tr
What does "Its cash flow is deeply negative" mean?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
How to avoid supervisors with prejudiced views?
What was the first Unix version to run on a microcomputer?
Rotate a column
Can MTA send mail via a relay without being told so?
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
How to count occurrences of text in a file?
Bartok - Syncopation (1): Meaning of notes in between Grand Staff
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
What flight has the highest ratio of time difference to flight time?
Find non-case sensitive string in a mixed list of elements?
Won the lottery - how do I keep the money?
Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?
Should I tutor a student who I know has cheated on their homework?
Writing differences on a blackboard
Realtek RTL8723BE Wi-Fi incredibly weak
The Next CEO of Stack OverflowRealtek RTL8723BE weak wifi signal and disconnectsUbuntu 18.04 not detecting any wifi network but detects mobile hotspotwifi signal weak ubuntu 18.04 hp laptopWifi doesn't work in Ubuntu 15.10 - Realtek RTL8723BE/RTL8188EE 802.11b/g/n Wireless LAN Drivers18.04 Wifi signal strength is weakHow can I increase my wifi speed in Ubuntu 16.10 with RTL8723BEwifi problem ubuntu 18.0.4 in hp ay03tx laptop tried every possible solutionWeak wifi signal in hp laptopJust installed Ubuntu 16.04 onto netbook, wifi won't workUbuntu 18.04 RTL8723BE WiFi not workingWifi Problem in ubuntu 14.04Wifi working slower than it shouldProblems to connect wifiAll Network in ubuntu 14 have been removed and can't connect to internetUbuntu 16.04 (on dual boot with Win 10) is not connecting to the wifiWifi not seen not stabledisable default network package and use wicdunable to install broadcom-kernel-sourceWeak wireless connection in UbuntuUbuntu 18.04 not detecting any wifi network but detects mobile hotspot
I have a HP 14-AN001NA laptop. It came with Windows 10 installed on which the Wi-Fi worked fine anywhere in the house.
However I removed Windows 10 and installed Ubuntu 16.04 instead and since I have had terrible Wi-Fi anywhere aside from about three foot away from the router. I don't know if it's relevant but my Wi-Fi is not called wlan0 but wlo1 for some reason (I didn't change it).
When running lspci -knn | grep Net -A3 I get the following output:
05:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
DeviceName:
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network Adapter [103c:81c1]
Kernel driver in use: rtl8723be
Kernel modules: wl, rtl8723be
networking wireless realtek-wireless rtl8723be
add a comment |
I have a HP 14-AN001NA laptop. It came with Windows 10 installed on which the Wi-Fi worked fine anywhere in the house.
However I removed Windows 10 and installed Ubuntu 16.04 instead and since I have had terrible Wi-Fi anywhere aside from about three foot away from the router. I don't know if it's relevant but my Wi-Fi is not called wlan0 but wlo1 for some reason (I didn't change it).
When running lspci -knn | grep Net -A3 I get the following output:
05:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
DeviceName:
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network Adapter [103c:81c1]
Kernel driver in use: rtl8723be
Kernel modules: wl, rtl8723be
networking wireless realtek-wireless rtl8723be
add a comment |
I have a HP 14-AN001NA laptop. It came with Windows 10 installed on which the Wi-Fi worked fine anywhere in the house.
However I removed Windows 10 and installed Ubuntu 16.04 instead and since I have had terrible Wi-Fi anywhere aside from about three foot away from the router. I don't know if it's relevant but my Wi-Fi is not called wlan0 but wlo1 for some reason (I didn't change it).
When running lspci -knn | grep Net -A3 I get the following output:
05:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
DeviceName:
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network Adapter [103c:81c1]
Kernel driver in use: rtl8723be
Kernel modules: wl, rtl8723be
networking wireless realtek-wireless rtl8723be
I have a HP 14-AN001NA laptop. It came with Windows 10 installed on which the Wi-Fi worked fine anywhere in the house.
However I removed Windows 10 and installed Ubuntu 16.04 instead and since I have had terrible Wi-Fi anywhere aside from about three foot away from the router. I don't know if it's relevant but my Wi-Fi is not called wlan0 but wlo1 for some reason (I didn't change it).
When running lspci -knn | grep Net -A3 I get the following output:
05:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
DeviceName:
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network Adapter [103c:81c1]
Kernel driver in use: rtl8723be
Kernel modules: wl, rtl8723be
networking wireless realtek-wireless rtl8723be
networking wireless realtek-wireless rtl8723be
edited Aug 26 '18 at 9:14
pomsky
33k11103135
33k11103135
asked Feb 15 '17 at 16:40
Blue Dabba DeeBlue Dabba Dee
1772311
1772311
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
Run in a terminal
sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1"
and reboot.
The ant_sel parameter enables one of the two antenna connectors of your RTL8723be adapter. Your laptop has only one antenna because the vendor is too greedy to install two. The Linux drivers can't detect which antenna connector is in use. So we have to guess it.
In Windows either the vendor sets it up somewhere on a pre-installed system, or the Windows proprietary drivers can detect it.
If ant_sel=1 does not help, use ant_sel=2. This setting tells which antenna is in use 1 or 2.
You may also want to remove a wrong driver bysudo apt purge bcmwl-kernel-source
– Pilot6
Feb 15 '17 at 17:42
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
1
Tryant_sel=1
– Pilot6
Feb 25 '17 at 18:57
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
3
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
|
show 8 more comments
What fixed my laptop HP Pavilion with Ubuntu 16.04 is https://github.com/navilg/rtl8723be.
I had this issue with 14.04. I had a script that fixed it but when I upgraded OS this script didn't work any more.
I've not been able to use my laptop with Ubuntu 16.04 for about 4 months. This script fixed the issue completely.
add a comment |
Note: I haven't tested it on Ubuntu 16.04, but it works fine on Ubuntu 18.04.
It's a problem with the drivers of Realtek RTL8723BE controller.
Do this:
Get the new wifi drivers from github:
git clone https://github.com/lwfinger/rtlwifi_new/
Go into the directory:
cd rtlwifi_new
Build it:
make
Install:
sudo make install
Now the new drivers are installed. To see what is the correct antenna configuration for your laptop, do this:
Unload the existing module:
sudo modprobe -r rtl8723be
Load the new module with antenna configuration:
sudo modprobe rtl8723be ant_sel=1
Check the wifi signals using:
iwlist scan | egrep -i 'ssid|quality'
Next repeat steps 5-7 with
ant_sel=2in step 6.
Whichever configuration gives the better signal quality, make it the default by using:
echo "options rtl8723be ant_sel=N" | sudo tee /etc/modprobe.d/rtl8723be.conf
---> Replace N with 1 or 2.
Note: After each kernel update, you need to rebuild the modules.
add a comment |
The solution provided by pilot6 worked perfectly for me.
I had done a fresh install of ubuntu 14.04 from usb on my HP Notebook hp 15ay024TU.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Follow below steps available on hp site:
https://h30434.www3.hp.com/t5/Notebook-Wireless-and-Networking/Realtek-8723DE-wifi-module-amp-Bluetooth-Linux-driver/td-p/6477307
$ git clone -b extended --single-branch https://github.com/lwfinger/rtlwifi_new.git
unofficial
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe -v rtl8723de ant_sel=2
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f883673%2frealtek-rtl8723be-wi-fi-incredibly-weak%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
Run in a terminal
sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1"
and reboot.
The ant_sel parameter enables one of the two antenna connectors of your RTL8723be adapter. Your laptop has only one antenna because the vendor is too greedy to install two. The Linux drivers can't detect which antenna connector is in use. So we have to guess it.
In Windows either the vendor sets it up somewhere on a pre-installed system, or the Windows proprietary drivers can detect it.
If ant_sel=1 does not help, use ant_sel=2. This setting tells which antenna is in use 1 or 2.
You may also want to remove a wrong driver bysudo apt purge bcmwl-kernel-source
– Pilot6
Feb 15 '17 at 17:42
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
1
Tryant_sel=1
– Pilot6
Feb 25 '17 at 18:57
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
3
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
|
show 8 more comments
Run in a terminal
sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1"
and reboot.
The ant_sel parameter enables one of the two antenna connectors of your RTL8723be adapter. Your laptop has only one antenna because the vendor is too greedy to install two. The Linux drivers can't detect which antenna connector is in use. So we have to guess it.
In Windows either the vendor sets it up somewhere on a pre-installed system, or the Windows proprietary drivers can detect it.
If ant_sel=1 does not help, use ant_sel=2. This setting tells which antenna is in use 1 or 2.
You may also want to remove a wrong driver bysudo apt purge bcmwl-kernel-source
– Pilot6
Feb 15 '17 at 17:42
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
1
Tryant_sel=1
– Pilot6
Feb 25 '17 at 18:57
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
3
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
|
show 8 more comments
Run in a terminal
sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1"
and reboot.
The ant_sel parameter enables one of the two antenna connectors of your RTL8723be adapter. Your laptop has only one antenna because the vendor is too greedy to install two. The Linux drivers can't detect which antenna connector is in use. So we have to guess it.
In Windows either the vendor sets it up somewhere on a pre-installed system, or the Windows proprietary drivers can detect it.
If ant_sel=1 does not help, use ant_sel=2. This setting tells which antenna is in use 1 or 2.
Run in a terminal
sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1"
and reboot.
The ant_sel parameter enables one of the two antenna connectors of your RTL8723be adapter. Your laptop has only one antenna because the vendor is too greedy to install two. The Linux drivers can't detect which antenna connector is in use. So we have to guess it.
In Windows either the vendor sets it up somewhere on a pre-installed system, or the Windows proprietary drivers can detect it.
If ant_sel=1 does not help, use ant_sel=2. This setting tells which antenna is in use 1 or 2.
edited Mar 6 '17 at 18:37
answered Feb 15 '17 at 17:10
Pilot6Pilot6
53.8k15110198
53.8k15110198
You may also want to remove a wrong driver bysudo apt purge bcmwl-kernel-source
– Pilot6
Feb 15 '17 at 17:42
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
1
Tryant_sel=1
– Pilot6
Feb 25 '17 at 18:57
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
3
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
|
show 8 more comments
You may also want to remove a wrong driver bysudo apt purge bcmwl-kernel-source
– Pilot6
Feb 15 '17 at 17:42
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
1
Tryant_sel=1
– Pilot6
Feb 25 '17 at 18:57
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
3
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
You may also want to remove a wrong driver by
sudo apt purge bcmwl-kernel-source– Pilot6
Feb 15 '17 at 17:42
You may also want to remove a wrong driver by
sudo apt purge bcmwl-kernel-source– Pilot6
Feb 15 '17 at 17:42
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
Sorry but the problem has persisted after a fresh install for unrelated reasons. The advice you gave worked earlier but doesn't anymore
– Blue Dabba Dee
Feb 25 '17 at 18:52
1
1
Try
ant_sel=1– Pilot6
Feb 25 '17 at 18:57
Try
ant_sel=1– Pilot6
Feb 25 '17 at 18:57
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
And what is the kernel version?
– Pilot6
Feb 25 '17 at 19:01
3
3
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
Works great! But it disconnects randomly. Would you be able to help on how to fix this? I am using Ubuntu 16.04 LTS
– Suhail Gupta
Oct 21 '17 at 11:11
|
show 8 more comments
What fixed my laptop HP Pavilion with Ubuntu 16.04 is https://github.com/navilg/rtl8723be.
I had this issue with 14.04. I had a script that fixed it but when I upgraded OS this script didn't work any more.
I've not been able to use my laptop with Ubuntu 16.04 for about 4 months. This script fixed the issue completely.
add a comment |
What fixed my laptop HP Pavilion with Ubuntu 16.04 is https://github.com/navilg/rtl8723be.
I had this issue with 14.04. I had a script that fixed it but when I upgraded OS this script didn't work any more.
I've not been able to use my laptop with Ubuntu 16.04 for about 4 months. This script fixed the issue completely.
add a comment |
What fixed my laptop HP Pavilion with Ubuntu 16.04 is https://github.com/navilg/rtl8723be.
I had this issue with 14.04. I had a script that fixed it but when I upgraded OS this script didn't work any more.
I've not been able to use my laptop with Ubuntu 16.04 for about 4 months. This script fixed the issue completely.
What fixed my laptop HP Pavilion with Ubuntu 16.04 is https://github.com/navilg/rtl8723be.
I had this issue with 14.04. I had a script that fixed it but when I upgraded OS this script didn't work any more.
I've not been able to use my laptop with Ubuntu 16.04 for about 4 months. This script fixed the issue completely.
answered Nov 29 '18 at 17:11
thunderathundera
212
212
add a comment |
add a comment |
Note: I haven't tested it on Ubuntu 16.04, but it works fine on Ubuntu 18.04.
It's a problem with the drivers of Realtek RTL8723BE controller.
Do this:
Get the new wifi drivers from github:
git clone https://github.com/lwfinger/rtlwifi_new/
Go into the directory:
cd rtlwifi_new
Build it:
make
Install:
sudo make install
Now the new drivers are installed. To see what is the correct antenna configuration for your laptop, do this:
Unload the existing module:
sudo modprobe -r rtl8723be
Load the new module with antenna configuration:
sudo modprobe rtl8723be ant_sel=1
Check the wifi signals using:
iwlist scan | egrep -i 'ssid|quality'
Next repeat steps 5-7 with
ant_sel=2in step 6.
Whichever configuration gives the better signal quality, make it the default by using:
echo "options rtl8723be ant_sel=N" | sudo tee /etc/modprobe.d/rtl8723be.conf
---> Replace N with 1 or 2.
Note: After each kernel update, you need to rebuild the modules.
add a comment |
Note: I haven't tested it on Ubuntu 16.04, but it works fine on Ubuntu 18.04.
It's a problem with the drivers of Realtek RTL8723BE controller.
Do this:
Get the new wifi drivers from github:
git clone https://github.com/lwfinger/rtlwifi_new/
Go into the directory:
cd rtlwifi_new
Build it:
make
Install:
sudo make install
Now the new drivers are installed. To see what is the correct antenna configuration for your laptop, do this:
Unload the existing module:
sudo modprobe -r rtl8723be
Load the new module with antenna configuration:
sudo modprobe rtl8723be ant_sel=1
Check the wifi signals using:
iwlist scan | egrep -i 'ssid|quality'
Next repeat steps 5-7 with
ant_sel=2in step 6.
Whichever configuration gives the better signal quality, make it the default by using:
echo "options rtl8723be ant_sel=N" | sudo tee /etc/modprobe.d/rtl8723be.conf
---> Replace N with 1 or 2.
Note: After each kernel update, you need to rebuild the modules.
add a comment |
Note: I haven't tested it on Ubuntu 16.04, but it works fine on Ubuntu 18.04.
It's a problem with the drivers of Realtek RTL8723BE controller.
Do this:
Get the new wifi drivers from github:
git clone https://github.com/lwfinger/rtlwifi_new/
Go into the directory:
cd rtlwifi_new
Build it:
make
Install:
sudo make install
Now the new drivers are installed. To see what is the correct antenna configuration for your laptop, do this:
Unload the existing module:
sudo modprobe -r rtl8723be
Load the new module with antenna configuration:
sudo modprobe rtl8723be ant_sel=1
Check the wifi signals using:
iwlist scan | egrep -i 'ssid|quality'
Next repeat steps 5-7 with
ant_sel=2in step 6.
Whichever configuration gives the better signal quality, make it the default by using:
echo "options rtl8723be ant_sel=N" | sudo tee /etc/modprobe.d/rtl8723be.conf
---> Replace N with 1 or 2.
Note: After each kernel update, you need to rebuild the modules.
Note: I haven't tested it on Ubuntu 16.04, but it works fine on Ubuntu 18.04.
It's a problem with the drivers of Realtek RTL8723BE controller.
Do this:
Get the new wifi drivers from github:
git clone https://github.com/lwfinger/rtlwifi_new/
Go into the directory:
cd rtlwifi_new
Build it:
make
Install:
sudo make install
Now the new drivers are installed. To see what is the correct antenna configuration for your laptop, do this:
Unload the existing module:
sudo modprobe -r rtl8723be
Load the new module with antenna configuration:
sudo modprobe rtl8723be ant_sel=1
Check the wifi signals using:
iwlist scan | egrep -i 'ssid|quality'
Next repeat steps 5-7 with
ant_sel=2in step 6.
Whichever configuration gives the better signal quality, make it the default by using:
echo "options rtl8723be ant_sel=N" | sudo tee /etc/modprobe.d/rtl8723be.conf
---> Replace N with 1 or 2.
Note: After each kernel update, you need to rebuild the modules.
edited Oct 1 '18 at 5:41
karel
60.6k13132155
60.6k13132155
answered Oct 1 '18 at 5:34
MaharshiRawalMaharshiRawal
1216
1216
add a comment |
add a comment |
The solution provided by pilot6 worked perfectly for me.
I had done a fresh install of ubuntu 14.04 from usb on my HP Notebook hp 15ay024TU.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
The solution provided by pilot6 worked perfectly for me.
I had done a fresh install of ubuntu 14.04 from usb on my HP Notebook hp 15ay024TU.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
The solution provided by pilot6 worked perfectly for me.
I had done a fresh install of ubuntu 14.04 from usb on my HP Notebook hp 15ay024TU.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
The solution provided by pilot6 worked perfectly for me.
I had done a fresh install of ubuntu 14.04 from usb on my HP Notebook hp 15ay024TU.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 7 mins ago
Ashwini SinghAshwini Singh
11
11
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Ashwini Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Follow below steps available on hp site:
https://h30434.www3.hp.com/t5/Notebook-Wireless-and-Networking/Realtek-8723DE-wifi-module-amp-Bluetooth-Linux-driver/td-p/6477307
$ git clone -b extended --single-branch https://github.com/lwfinger/rtlwifi_new.git
unofficial
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe -v rtl8723de ant_sel=2
add a comment |
Follow below steps available on hp site:
https://h30434.www3.hp.com/t5/Notebook-Wireless-and-Networking/Realtek-8723DE-wifi-module-amp-Bluetooth-Linux-driver/td-p/6477307
$ git clone -b extended --single-branch https://github.com/lwfinger/rtlwifi_new.git
unofficial
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe -v rtl8723de ant_sel=2
add a comment |
Follow below steps available on hp site:
https://h30434.www3.hp.com/t5/Notebook-Wireless-and-Networking/Realtek-8723DE-wifi-module-amp-Bluetooth-Linux-driver/td-p/6477307
$ git clone -b extended --single-branch https://github.com/lwfinger/rtlwifi_new.git
unofficial
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe -v rtl8723de ant_sel=2
Follow below steps available on hp site:
https://h30434.www3.hp.com/t5/Notebook-Wireless-and-Networking/Realtek-8723DE-wifi-module-amp-Bluetooth-Linux-driver/td-p/6477307
$ git clone -b extended --single-branch https://github.com/lwfinger/rtlwifi_new.git
unofficial
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe -v rtl8723de ant_sel=2
edited Dec 23 '18 at 22:55
mature
2,2024933
2,2024933
answered Dec 23 '18 at 17:58
Mr ManojMr Manoj
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f883673%2frealtek-rtl8723be-wi-fi-incredibly-weak%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown