View previous topic :: View next topic |
Author |
Message |
DeIM Guru
Joined: 11 Apr 2006 Posts: 442
|
Posted: Wed Oct 23, 2024 10:38 am Post subject: How can NM disable powersave for wifi globally? |
|
|
I wanna disable powersave on my wifi - it causes often disconnections.
powersave=2 disables powersave
I've tried to add to /etc/NetworkManager/system-connections/[SSID].nmconnection file (i'ts connection specific):
Code: | ...
[wifi]
...
powersave=2
... |
it worked
I wanna do something for any wifi connection so I tried to make config file:
/etc/NetworkManager/conf.d/default-wifi-powersave-off.conf
Code: | [connection]
type=wifi
#wifi.powersave=2
[wifi]
powersave=2 |
It doesn't work.
Tried also (not working also):
Code: | [connection]
wifi.powersave=2 |
|
|
Back to top |
|
|
DeIM Guru
Joined: 11 Apr 2006 Posts: 442
|
Posted: Sat Oct 26, 2024 4:56 pm Post subject: |
|
|
seem
Code: | [connection]
wifi.powersave=2 |
works on global basis and
nmcli connection show [ssid]
shows
802-11-wireless.powersave: 0 (default)
It seem I can't see actual settings - only 0 is "take setting from global".
From documentation:
One of 2 (disable) (disable Wi-Fi power saving), 3 (enable) (enable Wi-Fi power saving), 1 (ignore) (don't touch currently configure setting) or 0 (default) (use the globally configured value). All other values are reserved. |
|
Back to top |
|
|
|