Raspberry Pi: Difference between revisions

From indicium
Jump to navigation Jump to search
Stefan (talk | contribs)
Created page with "Disable Wifi power save If you have Wifi power save enabled, you may experince "hangs" when having an open SSH terminal to the device. You can verify if power save is enabled..."
 
Stefan (talk | contribs)
No edit summary
Line 1: Line 1:
Disable Wifi power save
== Disable Wifi power save ==


If you have Wifi power save enabled, you may experince "hangs" when having an open SSH terminal to the device. You can verify if power save is enabled with:
If you have Wifi power save enabled, you may experince "hangs" when having an open SSH terminal to the device. You can verify if power save is enabled with:

Revision as of 12:41, 20 July 2022

Disable Wifi power save

If you have Wifi power save enabled, you may experince "hangs" when having an open SSH terminal to the device. You can verify if power save is enabled with:

sudo journalctl | grep brcmfmac:

If it is enabled, you can disable it with:

sudo /sbin/iwconfig wlan0 power off

To make this permanent on boot, add the above line (without sudo) to /etc/rc.local before "exit 0"