Code: Select all
iw dev wlan0 set power_save off
at least I got a stable connection the last 2 days on both wireless networks I've been using.
I was wondering how to make this settings permanent?
Code: Select all
iw dev wlan0 set power_save off
Does it not persist across reboots?sesselastronaut wrote:I was wondering how to make this settings permanent?
Code: Select all
options iwlwifi power_save=0
..which is as expected because 'N' is the default value for that parameter as indicated by 'modinfo'. So I guess we must force it externally.sesselastronaut wrote:module parameters ~~~~~~~~~~~~~~~~~~
....
iwlwifi (13): 11n_disable=8 | amsdu_size_8K=0 ....| power_save=N | swcrypto=0 | uapsd_disable=Y | wd_disable=1
Do you have 'pm-utils' package installed? Apparently not. Check with -sesselastronaut wrote:I was trying v&n's suggestion however there's no "pm" directory in my /etc/, should I just create it?
Code: Select all
dpkg -l | grep 'pm-utils'
Code: Select all
sudo sed -i '/^exit 0/ i iw dev wlan0 set power_save off' /etc/rc.local
Code: Select all
sudo tee /etc/modprobe.d/iwlmvm.conf <<< "options iwlmvm power_scheme=1"
Glad to hear that. Thank you for the confirmation, I'm sure it can help many more users.sesselastronaut wrote:ok seems likemakes these settings permanent across reboots. Thanks once more!Code: Select all
sudo tee /etc/modprobe.d/iwlmvm.conf <<< "options iwlmvm power_scheme=1"