web-dev-qa-db-ja.com

Wifiネットワークがrtl8723beでubuntu 18.04を見つけられない

最近Ubuntu 18.04にアップデートしました。今日の朝、Wi-Fiに接続できなかったときまで、すべてが正常に機能していました。ネットワークをスキャンしようとすると、ネットワークが見つかりませんでした。 iwlist wlo1 scanを実行すると、次の結果が得られます。

wlo1 No scan results

Ubuntu 16.04でも同じ問題が発生しましたが、次のコマンドを使用して this および this に従ってantenna_selパラメーターを変更することで修正できました。

Sudo modprobe -r rtl7823be 
Sudo modprobe rtl8723be ant_sel=x

xの値は1または2のいずれかで、Wi-Fi信号に対してより良い結果が得られます。しかし、18.04で同じソリューションを試しても、うまくいかないようです。 18.04の解決策を探して、 this answerthis answer を見つけました。問題を解決する方法について決定的な答えはないようです。私はSudo apt purge rtl8723beを使用してrtl8723beドライバをアンインストールし、 this を使用して再インストールすることにしましたが、それをしようとすると次のようなエラーが表示されます(このコマンドSudo add-apt-repository ppa:hanipouspilot/rtlwifiを実行すると)

E: The repository 'http://ppa.launchpad.net/hanipouspilot/rtlwifi/ubuntu bionic Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.

次に、 here のrtlwifi_newのgithubページの手順に従って、rtl8723beドライバーをインストールしました。インストールは成功しましたが、私は正方形に戻りましたが、wifiネットワークは見つかりませんでした。ワイヤレスを機能させる方法を知っている人はいますか?以下にlshw -class networkの出力を投稿します。

  *-network                 
   description: Wireless interface
   product: RTL8723BE PCIe Wireless Network Adapter
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:08:00.0
   logical name: wlo1
   version: 00
   serial: 70:77:81:12:fc:2d
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
   configuration: broadcast=yes driver=rtl8723be driverversion=4.15.0-33-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11
   resources: irq:18 ioport:5000(size=256) memory:c6100000-c6103fff


*-network
   description: Ethernet interface
   product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:09:00.0
   logical name: eno1
   version: 0a
   serial: 3c:a8:2a:ae:31:82
   size: 100Mbit/s
   capacity: 100Mbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8107e-2_0.0.2 02/26/15 ip=145.94.38.86 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
   resources: irq:19 ioport:4000(size=256) memory:c6004000-c6004fff memory:c6000000-c6003fff

PS:LANは問題なく動作します。問題はワイヤレスインターフェースにあります。

編集:問題は、カーネル17.0を使用する18.10へのアップデートで解決されます。

2
srikarad

私はあなたの質問に対する正確な答えを持っていないのではないかと思いますが、exactと同じ問題を抱えており、私のラップトップで再びWiFiを実行するための回避策を見つけました。

ターミナルで実行:uname -r
それは4.15.0-33-genericと言いますか?

私の解決策:
ラップトップを起動するとき、高度な起動オプションを選択します(回復を選択しようとしているかのようにmode)およびkernel 4.15.0-32-genericを選択します。
(このメニューに入ると、複数のオプション/カーネルから選択できました-一部は(回復モード)としてリストされ、他は正常でした-非回復エントリを選択しました)より良い修正を行い、見つかった場合はポストバックします。

3
Evros

バグはこのカーネルで修正されています。

http://kernel.ubuntu.com/~jsalisbury/lp1788997

アンテナ1を選択する限り:

modprobe rtl8723be ant_sel=1

設定にもそれがあることを確認してください:

Sudo /bin/sh -c 'echo "options rtl8723be ant_sel=1" >> /etc/modprobe.d/rtl8723be.conf'
0
Wolfie

いくつかの基本的なことを試してください:Wi-Fiドングルを別のUSBポートに差し込みます。次の最新バージョンがインストールされていることを確認してください:linux-headers-generic build-essential git。モジュールをetc/modulesに配置して、起動時にロードしてみてください。モジュールがブラックリストファイルにないことを確認します。 18.4 Apt-get update&upgradeの最新リリースであることを確認してください。ネットワークマネージャを停止してから再起動します。

TC。

0
tomx2