web-dev-qa-db-ja.com

デュアルブート-Ubuntu Mate 18 / Windows 10:Intel Corporation Wireless-AC 9560 [Jefferson Peak]の問題

非常に具体的な理由で、デュアルブートUbuntu Mate 18.10/Windows 10を作成しました。修正する必要がある最後の「バグ」は、自分のmsi GF63のカード(Intel Corporation Wireless-AC 9560 [Jefferson Peak])のIntel wifiドライバーです。 8RC。

問題は、私のwifiカードがWindowsで常に機能する場合、Linuxではそうではないようです。

たとえば、動作する場合、これはdmesgによって取得されます。

[   22.634376] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   22.815281] iwlwifi 0000:00:14.3: loaded firmware version 38.c0e03d94.0 op_mode iwlmvm
[   24.464530] iwlwifi 0000:00:14.3: Detected Intel(R) Dual Band Wireless AC 9462, REV=0x318
[   24.515472] iwlwifi 0000:00:14.3: base HW address: 7c:2a:31:a6:80:24
[   24.972323] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[   25.072145] iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
[   45.872215] iwlwifi 0000:00:14.3: Conflict between TLV & NVM regarding enabling LAR (TLV = enabled NVM =disabled)

しかしそれがうまくいかなかったとき:

[   16.387791] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   16.464190] iwlwifi: probe of 0000:00:14.3 failed with error -110

すべてが機能するときの完全なワイヤレス情報: https://paste.ubuntu.com/p/h3JGcwstPS/

ご協力いただきありがとうございます :)

PS:私の/etc/modprobe.d/iwlwifi.conf 必要に応じて :

# /etc/modprobe.d/iwlwifi.conf
# iwlwifi will dyamically load either iwldvm or iwlmvm depending on the
# microcode file installed on the system.  When removing iwlwifi, first
# remove the iwl?vm module and then iwlwifi.
remove iwlwifi \
(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
&& /sbin/modprobe -r mac80211
1
jy95

ドライバパラメータを試すことをお勧めします。

Sudo modprobe -r iwlwifi && Sudo modprobe iwlwifi lar_disable=Y

問題が解決したようであれば、永続化することをお勧めします。

Sudo -i
echo "options iwlwifi lar_disable=Y"  >>  /etc/modprobe.d/iwlwifi.conf
exit

これで準備は完了です。

1
chili555