web-dev-qa-db-fra.com

Intel Wireless AC 9462 ne fonctionne pas avec 18.04 LTS

Donc, nous y revoilà. Encore un autre problème WiFi dans une installation Ubuntu propre. J'ai installé 18.04 LTS

dmesg | grep iwl me donne ça-

[    1.674861] iwlwifi 0000:00:14.3: loaded firmware version 43.95eb4e97.0 op_mode iwlmvm
[    1.694573] iwlwifi 0000:00:14.3: Detected Intel(R) Dual Band Wireless AC 9462, REV=0x354
[    6.709017] iwlwifi 0000:00:14.3: Failed to load firmware chunk!
[    6.709020] iwlwifi 0000:00:14.3: iwlwifi transaction failed, dumping registers
[    6.709021] iwlwifi 0000:00:14.3: iwlwifi device config registers:
[    6.709093] iwlwifi 0000:00:14.3: 00000000: 02f08086 00100406 02800000 00800000 a1218004 00000000 00000000 00000000
[    6.709094] iwlwifi 0000:00:14.3: 00000020: 00000000 00000000 00000000 42a48086 00000000 000000c8 00000000 000001ff
[    6.709095] iwlwifi 0000:00:14.3: iwlwifi device memory mapped registers:
[    6.709123] iwlwifi 0000:00:14.3: 00000000: 58489004 00000040 00000000 00000000 00000000 00000000 00000000 00000000
[    6.709124] iwlwifi 0000:00:14.3: 00000020: 00000011 0c040005 00000351 d55555d5 d55555d5 d55555d5 80008040 001f0040
[    6.709141] iwlwifi 0000:00:14.3: Could not load the [0] uCode section
[    6.709161] iwlwifi 0000:00:14.3: Failed to start INIT ucode: -110
[    6.709162] iwlwifi 0000:00:14.3: Collecting data: trigger 15 fired.
[    6.916301] iwlwifi 0000:00:14.3: Failing on timeout while stopping DMA channel 8 [0x0bad1122]
[    6.928661] iwlwifi 0000:00:14.3: Failed to run INIT ucode: -110

et le contrôleur réseau dans le lspci est, pour une raison quelconque, répertorié comme 02f0 au lieu d'Intel Dual Band Wireless 9462-

00:14.3 Network controller: Intel Corporation Device 02f0

3
Hrijul Bhatnagar

Je l'ai résolu. Voici les commandes à saisir dans le terminal dans l'ordre. Assurez-vous d'avoir Ethernet ou un adaptateur WiFi externe pour accéder à Internet. J'ai utilisé un adaptateur WiFi USB que j'utilise pour le piratage. -

Sudo apt update
Sudo apt install git build-essential
git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git
cd backport-iwlwifi/
make defconfig-iwlwifi-public
sed -i 's/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/' .config
make -j4
Sudo make install
Sudo modprobe iwlwifi
6
Hrijul Bhatnagar

Il existe maintenant d'autres options, backports-iwlwifi-dkms est dans les dépôts Ubuntu et si cette version n'est pas assez nouvelle, il y en a https://launchpad.net/~canonical-hwe-team/+archive/ubuntu/ backport-iwlwifi

L'avantage du package dkms est que vous n'avez pas à réinstaller les backports après chaque mise à jour du noyau

0
Jeremy31