I upgraded Ubuntu to 20.04 and the setting for preferred WiFi frequency has disappeared. You can see a screenshot of the drop-down menu here:
How can I get this drop down menu back?
I upgraded Ubuntu to 20.04 and the setting for preferred WiFi frequency has disappeared. You can see a screenshot of the drop-down menu here:
How can I get this drop down menu back?
The dropdown menu was removed from the UI (I could not find the reason).
But there is a work-around, by checking the manual of nm-settings
:
/etc/NetworkManager/system-connections/nameofconnection.nmconnection
sudo nano /etc/NetworkManager/system-connections/nameofconnection.nmconnection
[wifi]
add following entry
band=bg
band=a
nm-connection-editor
in the terminal)
– Plumpie
Jul 24 '20 at 08:02
Credits for @heynnema
To access the settings in a GUI execute nm-connection-editor
in a terminal.
Then choose your desired connection and click on edit.
Thanks. This did the trick for me!
nm-connection-editor
. – heynnema Jun 01 '20 at 18:59