我安装了Debian 9拉伸测试版本。我做了以下几点:
# apt-get update
# apt-get install network-manager-gnome
# apt-get install firmware-iwlwifi我的网卡是Intel公司的无线8260
# lspci | grep Wireless
04:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)所以我来到Linux对英特尔无线适配器的支持下载Wi驱动程序。
Intel® Dual Band Wireless-AC 8260 4.1 iwlwifi-8000-ucode-25.30.13.0.tgz我把Wi驱动程序放在/lib/firmware下。
但是,当我在通知区域“选择网络”中单击Wi时,Wi网络会弹出,“无网络”消息将显示出来。它似乎无法检测到Wi。
有人知道原因吗?
发布于 2017-03-04 10:38:05
要安装英特尔公司无线8260的wifi,请从这里下载驱动程序,解压缩它,然后将其复制到您的/lib/firmware中:
wget https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-8000-ucode-16.242414.0.tgz
tar xvf iwlwifi-8000-ucode-16.242414.0.tgz
cd iwlwifi-8000-ucode-16.242414.0
cp iwlwifi-8000-ucode* /lib/firmware
modprobe iwlwifihttps://unix.stackexchange.com/questions/348748
复制相似问题