Last active
April 5, 2020 19:58
-
-
Save usworked/cfd23f49e9859cd98eef5697d64c5e89 to your computer and use it in GitHub Desktop.
Disable Wifi Power Management in Ubuntu 16/18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf | |
[connection] | |
wifi.powersave = 3 | |
Change value to 2. Reboot for the change to take effect. | |
--- | |
Possible values for the wifi.powersave field are: | |
NM_SETTING_WIRELESS_POWERSAVE_DEFAULT (0): use the default value | |
NM_SETTING_WIRELESS_POWERSAVE_IGNORE (1): don't touch existing setting | |
NM_SETTING_WIRELESS_POWERSAVE_DISABLE (2): disable powersave | |
NM_SETTING_WIRELESS_POWERSAVE_ENABLE (3): enable powersave |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment