Wifi speed on my laptop is a bit slow and its range is also very low what to do?

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
My wifi connection seems to be very weak and the range is very low. It drops by two bars if I just move to the next room and by two if just step outside.
The speed is also not fast as compared to what I get from the router on my desktop .
My laptop is a HP laptop with RTL8723de module. Can anyone help me in bumping up my wifi speed?
Result of lspci -nnk | grep 0280 -A3:
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
Subsystem: Hewlett-Packard Company Device [103c:8319]
Kernel driver in use: rtl8723de
Kernel modules: rtl8723de
wireless
add a comment |Â
up vote
0
down vote
favorite
My wifi connection seems to be very weak and the range is very low. It drops by two bars if I just move to the next room and by two if just step outside.
The speed is also not fast as compared to what I get from the router on my desktop .
My laptop is a HP laptop with RTL8723de module. Can anyone help me in bumping up my wifi speed?
Result of lspci -nnk | grep 0280 -A3:
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
Subsystem: Hewlett-Packard Company Device [103c:8319]
Kernel driver in use: rtl8723de
Kernel modules: rtl8723de
wireless
Please edit your question to add the result of the terminal command:lspci -nnk | grep 0280 -A3
â chili555
May 17 at 13:28
@chili555 i have posted the results, if you can help me out on this one it would be highly appreciated
â Kenneth Toppo
May 18 at 6:36
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
My wifi connection seems to be very weak and the range is very low. It drops by two bars if I just move to the next room and by two if just step outside.
The speed is also not fast as compared to what I get from the router on my desktop .
My laptop is a HP laptop with RTL8723de module. Can anyone help me in bumping up my wifi speed?
Result of lspci -nnk | grep 0280 -A3:
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
Subsystem: Hewlett-Packard Company Device [103c:8319]
Kernel driver in use: rtl8723de
Kernel modules: rtl8723de
wireless
My wifi connection seems to be very weak and the range is very low. It drops by two bars if I just move to the next room and by two if just step outside.
The speed is also not fast as compared to what I get from the router on my desktop .
My laptop is a HP laptop with RTL8723de module. Can anyone help me in bumping up my wifi speed?
Result of lspci -nnk | grep 0280 -A3:
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
Subsystem: Hewlett-Packard Company Device [103c:8319]
Kernel driver in use: rtl8723de
Kernel modules: rtl8723de
wireless
edited May 17 at 15:22
guntbert
8,691123067
8,691123067
asked May 17 at 9:27
Kenneth Toppo
44117
44117
Please edit your question to add the result of the terminal command:lspci -nnk | grep 0280 -A3
â chili555
May 17 at 13:28
@chili555 i have posted the results, if you can help me out on this one it would be highly appreciated
â Kenneth Toppo
May 18 at 6:36
add a comment |Â
Please edit your question to add the result of the terminal command:lspci -nnk | grep 0280 -A3
â chili555
May 17 at 13:28
@chili555 i have posted the results, if you can help me out on this one it would be highly appreciated
â Kenneth Toppo
May 18 at 6:36
Please edit your question to add the result of the terminal command:
lspci -nnk | grep 0280 -A3â chili555
May 17 at 13:28
Please edit your question to add the result of the terminal command:
lspci -nnk | grep 0280 -A3â chili555
May 17 at 13:28
@chili555 i have posted the results, if you can help me out on this one it would be highly appreciated
â Kenneth Toppo
May 18 at 6:36
@chili555 i have posted the results, if you can help me out on this one it would be highly appreciated
â Kenneth Toppo
May 18 at 6:36
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
Quite often, the weak signal is a symptom of the antenna wire being connected to connection #1 on the card when the default driver is expecting to see the signal at connection #2. Of course, you could open the laptop and switch the wire or you could try a driver parameter that permits antenna selection at the driver level.
From the terminal:
sudo modprobe -r rtl8723de
sudo modprobe rtl8723de ant_sel=2
Any improvement? If so, we'll write one conf file and make it permanent.
If there is no improvement, try the sequence again with ant_sel=1and report the result.
EDIT: Since you have determined that 2 is helpful, create a file that will make the parameter permanent:
sudo -i
echo "options rtl8723de ant_sel=2" > /etc/modprobe.d/rtl8723de.conf
exit
You should be all set.
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
See my edit above in a few moments.
â chili555
May 18 at 17:35
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
Quite often, the weak signal is a symptom of the antenna wire being connected to connection #1 on the card when the default driver is expecting to see the signal at connection #2. Of course, you could open the laptop and switch the wire or you could try a driver parameter that permits antenna selection at the driver level.
From the terminal:
sudo modprobe -r rtl8723de
sudo modprobe rtl8723de ant_sel=2
Any improvement? If so, we'll write one conf file and make it permanent.
If there is no improvement, try the sequence again with ant_sel=1and report the result.
EDIT: Since you have determined that 2 is helpful, create a file that will make the parameter permanent:
sudo -i
echo "options rtl8723de ant_sel=2" > /etc/modprobe.d/rtl8723de.conf
exit
You should be all set.
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
See my edit above in a few moments.
â chili555
May 18 at 17:35
add a comment |Â
up vote
3
down vote
accepted
Quite often, the weak signal is a symptom of the antenna wire being connected to connection #1 on the card when the default driver is expecting to see the signal at connection #2. Of course, you could open the laptop and switch the wire or you could try a driver parameter that permits antenna selection at the driver level.
From the terminal:
sudo modprobe -r rtl8723de
sudo modprobe rtl8723de ant_sel=2
Any improvement? If so, we'll write one conf file and make it permanent.
If there is no improvement, try the sequence again with ant_sel=1and report the result.
EDIT: Since you have determined that 2 is helpful, create a file that will make the parameter permanent:
sudo -i
echo "options rtl8723de ant_sel=2" > /etc/modprobe.d/rtl8723de.conf
exit
You should be all set.
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
See my edit above in a few moments.
â chili555
May 18 at 17:35
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
Quite often, the weak signal is a symptom of the antenna wire being connected to connection #1 on the card when the default driver is expecting to see the signal at connection #2. Of course, you could open the laptop and switch the wire or you could try a driver parameter that permits antenna selection at the driver level.
From the terminal:
sudo modprobe -r rtl8723de
sudo modprobe rtl8723de ant_sel=2
Any improvement? If so, we'll write one conf file and make it permanent.
If there is no improvement, try the sequence again with ant_sel=1and report the result.
EDIT: Since you have determined that 2 is helpful, create a file that will make the parameter permanent:
sudo -i
echo "options rtl8723de ant_sel=2" > /etc/modprobe.d/rtl8723de.conf
exit
You should be all set.
Quite often, the weak signal is a symptom of the antenna wire being connected to connection #1 on the card when the default driver is expecting to see the signal at connection #2. Of course, you could open the laptop and switch the wire or you could try a driver parameter that permits antenna selection at the driver level.
From the terminal:
sudo modprobe -r rtl8723de
sudo modprobe rtl8723de ant_sel=2
Any improvement? If so, we'll write one conf file and make it permanent.
If there is no improvement, try the sequence again with ant_sel=1and report the result.
EDIT: Since you have determined that 2 is helpful, create a file that will make the parameter permanent:
sudo -i
echo "options rtl8723de ant_sel=2" > /etc/modprobe.d/rtl8723de.conf
exit
You should be all set.
edited May 27 at 11:10
jokerdinoâ¦
31.9k21116185
31.9k21116185
answered May 18 at 15:31
chili555
36.2k54775
36.2k54775
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
See my edit above in a few moments.
â chili555
May 18 at 17:35
add a comment |Â
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
See my edit above in a few moments.
â chili555
May 18 at 17:35
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
Yeah dude its better now and the range has also increased. Will the above setting be lost as soon as i switch off my laptop??@chili555
â Kenneth Toppo
May 18 at 16:07
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
It will be lost unless we write a quick one line conf file. Is it better with 2 or 1? I shall edit my answer to give the procedure once we know which it is.
â chili555
May 18 at 16:17
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
When i typed this command: sudo modprobe -r rtl8723de sudo modprobe rtl8723de ant_sel=2 . It became better.
â Kenneth Toppo
May 18 at 16:38
See my edit above in a few moments.
â chili555
May 18 at 17:35
See my edit above in a few moments.
â chili555
May 18 at 17:35
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1037323%2fwifi-speed-on-my-laptop-is-a-bit-slow-and-its-range-is-also-very-low-what-to-do%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
Please edit your question to add the result of the terminal command:
lspci -nnk | grep 0280 -A3â chili555
May 17 at 13:28
@chili555 i have posted the results, if you can help me out on this one it would be highly appreciated
â Kenneth Toppo
May 18 at 6:36