LoginSignup
9
10

More than 5 years have passed since last update.

WifiのSuspend設定を解除する[Raspberry pi]

Posted at

一定時間経つとsshがつながらない減少に見舞われたため修正を行った。

環境

  • Raspberry pi B+ 512MB
  • Raspbian
  • Elecom WDC-150SU2M(8188euチップセット)

参考

手順

cat /sys/module/8188eu/parameters/rtw_power_mgnt

で1の場合はパワーマネージメントがONの状態。

以下のようにすると設定を0=解除にできる。

sudo vim /etc/modprobe.d/8188eu.conf

で、

8188eu.conf
# Disable power management
options 8188eu rtw_power_mgnt=0

その後再起動する。

sudo reboot
9
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
10