web-dev-qa-db-ja.com

HPラップトップを起動するたびに、Ubuntu16.10のrtl8723beでant_sel = 1設定をセットアップする必要があります。

koolhussain@koolhussain-Notebook:~$ modinfo -p rtl8723be
swenc:Set to 1 for software crypto (default 0)
 (bool)
ips:Set to 0 to not use link power save (default 1)
 (bool)
swlps:Set to 1 to use SW control power save (default 0)
 (bool)
fwlps:Set to 1 to use FW control power save (default 1)
 (bool)
msi:Set to 1 to use MSI interrupts mode (default 0)
 (bool)
debug:Set debug level (0-5) (default 0) (int)
disable_watchdog:Set to 1 to disable the watchdog (default 0)
 (bool)
ant_sel:Set to 1 or 2 to force antenna number (default 0)
 (int)
koolhussain@koolhussain-Notebook:~$ Sudo modprobe -r rtl8723be
[Sudo] password for koolhussain: 
koolhussain@koolhussain-Notebook:~$ Sudo modprobe rtl8723be ant_sel=1
koolhussain@koolhussain-Notebook:~$ 
1
user634648

ターミナルで実行することにより、これを永続的に設定できます

Sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1"
2
Pilot6