msiラップトップにdebian9をインストールしました。これはコンピューター上の唯一のOSです。
インストール中、ネットワークにアクセスできず、ファームウェアが見つからないと表示されましたiwlwifi-3168-26.ucode
、iwlwifi-3168-25.ucode
、iwlwifi-3168-24.ucode
、iwlwifi-3168-23.ucode
およびiwlwifi-3168-22.ucode
。
インストールが完了し、明らかなsudo apt-get install firmware-iwlwifi
を試してみたところ、次のようになりました。
Package firmware-iwlwifi is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package "firmware-iwlwifi" has no installation candidate.
次に、iwlwifi-3168-29.ucode
ファイルをダウンロードして手動で/lib/firmware
に配置し、変更せずにマシンを再起動するというアドバイスに従いました。
有線接続は問題なく機能しますが、ネットワークマネージャー(Cinnamonデスクトップ)にはWi-Fiオプションすらありません。 Wi-Fiネットワークの詳細を手動で入力しようとしましたが、接続できませんでした。
ifconfig
出力:
enp3s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.25.14.118 netmask 255.255.0.0 broadcast 10.25.255.255 inet6 fe80::329c:23ff:fe15:2004 prefixlen 64 scopeid 0x20<link> ether 30:9c:23:15:20:04 txqueuelen 1000 (Ethernet) RX packets 214505 bytes 276211608 (263.4 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 23769 bytes 2129086 (2.0 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 device interrupt 19 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1 (Local Loopback) RX packets 168 bytes 13356 (13.0 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 168 bytes 13356 (13.0 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
git git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git
からビルドしようとしましたが、ビルドできませんでした。
OSを5回再インストールしました。
回答
パッケージファームウェア-iwlwifi はDebianの非フリーセクションであり、デフォルトでは「有効」ではありません。
/etc/apt/sources.list
のエントリにここ(少し下にスクロールします)。
上記のリンクからのsources.listの例:
deb http://deb.debian.org/debian stretch main contrib non-free deb-src http://deb.debian.org/debian stretch main contrib non-free deb http://deb.debian.org/debian-security/ stretch/updates main contrib non-free deb-src http://deb.debian.org/debian-security/ stretch/updates main contrib non-free deb http://deb.debian.org/debian stretch-updates main contrib non-free deb-src http://deb.debian.org/debian stretch-updates main contrib non-free
次に、ルートとしてapt-get update
とapt-get install firmware-iwlwifi
を実行します。
sed
コマンドは、ストレッチを含むすべてのsources.list
行でcontribとnon-freeを有効にします:sudo sed -i.bak 's/stretch[^ ]* main$/& contrib non-free/g' /etc/apt/sources.list
(そしてバックアップコピーを保存します)。