Skip to content

Instantly share code, notes, and snippets.

@usworked
Last active April 5, 2020 19:58
Show Gist options
  • Save usworked/cfd23f49e9859cd98eef5697d64c5e89 to your computer and use it in GitHub Desktop.
Save usworked/cfd23f49e9859cd98eef5697d64c5e89 to your computer and use it in GitHub Desktop.
Disable Wifi Power Management in Ubuntu 16/18
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