HP Stream 11 late 2015 edition (r050sa) Wifi not working properly

Clash Royale CLAN TAG#URR8PPP up vote
1
down vote
favorite
I am having trouble trying to using my wifi card on a newer HP Stream 11.
The issue is known and apparently fixed for the older model by installing the newer realtek drivers avaiable here: https://github.com/lwfinger/rtlwifi_new
However, this solution is not working as explained in other posts.
I am using Ubuntu Mate 16.04 beta 2 64 bit, I know it's not advisable to use an unstable distribution but I tested it on another notebook and found it very usable already, anyway I have the same issues with 15.10 64 bit and linux mint 17.3 xfce 32 bit
After installing the new realtek drivers and running the commands
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
I am finally able to connect to wifi, with decent performance (I am still not sure what ant_sel actually does, and if 1 or 2 is better or even if other values are permitted)
first of all, How can I make these changes permanently without having to re-run the commands everytime I boot?
Also, wifi seems to be slower than on my main pc. How can that be?
thank you, if anyone has found a better workaround I would be very grateful to know
I have been reading here and on forums for hours now but I still can't find a definitive solution
networking wireless drivers hp realtek
add a comment |Â
up vote
1
down vote
favorite
I am having trouble trying to using my wifi card on a newer HP Stream 11.
The issue is known and apparently fixed for the older model by installing the newer realtek drivers avaiable here: https://github.com/lwfinger/rtlwifi_new
However, this solution is not working as explained in other posts.
I am using Ubuntu Mate 16.04 beta 2 64 bit, I know it's not advisable to use an unstable distribution but I tested it on another notebook and found it very usable already, anyway I have the same issues with 15.10 64 bit and linux mint 17.3 xfce 32 bit
After installing the new realtek drivers and running the commands
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
I am finally able to connect to wifi, with decent performance (I am still not sure what ant_sel actually does, and if 1 or 2 is better or even if other values are permitted)
first of all, How can I make these changes permanently without having to re-run the commands everytime I boot?
Also, wifi seems to be slower than on my main pc. How can that be?
thank you, if anyone has found a better workaround I would be very grateful to know
I have been reading here and on forums for hours now but I still can't find a definitive solution
networking wireless drivers hp realtek
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am having trouble trying to using my wifi card on a newer HP Stream 11.
The issue is known and apparently fixed for the older model by installing the newer realtek drivers avaiable here: https://github.com/lwfinger/rtlwifi_new
However, this solution is not working as explained in other posts.
I am using Ubuntu Mate 16.04 beta 2 64 bit, I know it's not advisable to use an unstable distribution but I tested it on another notebook and found it very usable already, anyway I have the same issues with 15.10 64 bit and linux mint 17.3 xfce 32 bit
After installing the new realtek drivers and running the commands
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
I am finally able to connect to wifi, with decent performance (I am still not sure what ant_sel actually does, and if 1 or 2 is better or even if other values are permitted)
first of all, How can I make these changes permanently without having to re-run the commands everytime I boot?
Also, wifi seems to be slower than on my main pc. How can that be?
thank you, if anyone has found a better workaround I would be very grateful to know
I have been reading here and on forums for hours now but I still can't find a definitive solution
networking wireless drivers hp realtek
I am having trouble trying to using my wifi card on a newer HP Stream 11.
The issue is known and apparently fixed for the older model by installing the newer realtek drivers avaiable here: https://github.com/lwfinger/rtlwifi_new
However, this solution is not working as explained in other posts.
I am using Ubuntu Mate 16.04 beta 2 64 bit, I know it's not advisable to use an unstable distribution but I tested it on another notebook and found it very usable already, anyway I have the same issues with 15.10 64 bit and linux mint 17.3 xfce 32 bit
After installing the new realtek drivers and running the commands
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
I am finally able to connect to wifi, with decent performance (I am still not sure what ant_sel actually does, and if 1 or 2 is better or even if other values are permitted)
first of all, How can I make these changes permanently without having to re-run the commands everytime I boot?
Also, wifi seems to be slower than on my main pc. How can that be?
thank you, if anyone has found a better workaround I would be very grateful to know
I have been reading here and on forums for hours now but I still can't find a definitive solution
networking wireless drivers hp realtek
edited Apr 1 '16 at 22:19
asked Apr 1 '16 at 22:11
Gerlando Savio Scibetta
84
84
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
The driver parameter ant_sel is to select one or the other of two antenna connections. Generally, one works well and the other doesn't work at all. You can test with:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=2
How is the performance?
Then try:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
Which is better? Set the parameter permanently with:
sudo -i
echo "options rtl8723be ant_sel=1" > /etc/modprobe.d/rtl8723be.conf
exit
Of course, specify the setting that yields the best performance from your experiment above.
As to why the performance is better in Windows, they are completely different drivers. Some things work better in Linux and some things work better in Windows.
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
The driver parameter ant_sel is to select one or the other of two antenna connections. Generally, one works well and the other doesn't work at all. You can test with:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=2
How is the performance?
Then try:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
Which is better? Set the parameter permanently with:
sudo -i
echo "options rtl8723be ant_sel=1" > /etc/modprobe.d/rtl8723be.conf
exit
Of course, specify the setting that yields the best performance from your experiment above.
As to why the performance is better in Windows, they are completely different drivers. Some things work better in Linux and some things work better in Windows.
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
add a comment |Â
up vote
1
down vote
accepted
The driver parameter ant_sel is to select one or the other of two antenna connections. Generally, one works well and the other doesn't work at all. You can test with:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=2
How is the performance?
Then try:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
Which is better? Set the parameter permanently with:
sudo -i
echo "options rtl8723be ant_sel=1" > /etc/modprobe.d/rtl8723be.conf
exit
Of course, specify the setting that yields the best performance from your experiment above.
As to why the performance is better in Windows, they are completely different drivers. Some things work better in Linux and some things work better in Windows.
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
The driver parameter ant_sel is to select one or the other of two antenna connections. Generally, one works well and the other doesn't work at all. You can test with:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=2
How is the performance?
Then try:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
Which is better? Set the parameter permanently with:
sudo -i
echo "options rtl8723be ant_sel=1" > /etc/modprobe.d/rtl8723be.conf
exit
Of course, specify the setting that yields the best performance from your experiment above.
As to why the performance is better in Windows, they are completely different drivers. Some things work better in Linux and some things work better in Windows.
The driver parameter ant_sel is to select one or the other of two antenna connections. Generally, one works well and the other doesn't work at all. You can test with:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=2
How is the performance?
Then try:
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=1
Which is better? Set the parameter permanently with:
sudo -i
echo "options rtl8723be ant_sel=1" > /etc/modprobe.d/rtl8723be.conf
exit
Of course, specify the setting that yields the best performance from your experiment above.
As to why the performance is better in Windows, they are completely different drivers. Some things work better in Linux and some things work better in Windows.
answered Apr 1 '16 at 23:31
chili555
36.2k54775
36.2k54775
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
add a comment |Â
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
:) Thank you, this works for now. However, it broke the bluetooth... sigh... I guess I will wait till all the updates roll out and then figure that out also
â Gerlando Savio Scibetta
Apr 2 '16 at 21:51
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%2f752850%2fhp-stream-11-late-2015-edition-r050sa-wifi-not-working-properly%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