0

So I just started using linux/ubuntu today and I've been getting problems with my wifi, ive tried the solutions on this page: Wifi problems with rtl8723be in Ubuntu 14.04 When im really close to my router, its fine, i can see wifi signals, but when i go just a few steps back it disappears right away. Im using the latest version of ubuntu 17.10

Any suggestions would be nice! :)

Stoven
  • 1
  • 1
    You also need ant_sel=1 or else =2 from here: https://askubuntu.com/questions/635625/how-do-i-get-a-realtek-rtl8723be-wireless-card-to-work/635629#635629 – chili555 Nov 18 '17 at 15:37

1 Answers1

1

sudo modprobe -r rtl8723be
sudo modprobe rtl8723be ant_sel=1
iwlist scan | egrep -i 'ssid|level'
sudo modprobe -r rtl8723be
sudo modprobe rtl8723be ant_sel=2
iwlist scan | egrep -i 'ssid|level'

Once you find what setting is best, then

echo "options rtl8723be ant_sel=X" | sudo tee /etc/modprobe.d/rtl8723be-ant.conf
Replace X with whatever setting worked better
Jeremy31
  • 12,602
  • 10
  • 58
  • 114