Linux新手,需要找到并安装我的无​​线驱动程序AC-8260

我对Linux很新。 我在旧笔记本电脑上双启动,然后通过下载和安装我设法让我的无线驱动程序工作,但我不记得我是如何管理的。

我担心我的无线网卡没有驱动程序:

GIGABIT LAN&WIRELESSINTEL®AC -8260 M.2(867Mbps,802.11AC)

我正在寻找英特尔的Linux驱动程序,我担心没有可用的;

https://downloadcenter.intel.com/product/86068/Intel-Dual-Band-Wireless-AC-8260

请有人帮助我。 我买了一台没有安装Windows的新笔记本电脑,希望能够参与Linux并了解所有相关内容,并且我在第一道障碍中挣扎!

sudo rfkill Usage: rfkill [options] command Options: --version show version (0.5-1ubuntu1 (Ubuntu)) Commands: help event list [IDENTIFIER] block IDENTIFIER unblock IDENTIFIER where IDENTIFIER is the index no. of an rfkill switch or one of:  all wifi wlan bluetooth uwb ultrawideband wimax wwan gps fm nfc 

我的右上角有wifi选项,但没有任何事情发生。 在我的其他笔记本电脑上可以使用Wifi。

lspci -nnk | grep的

 0280 -A2 01:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a) Subsystem: Intel Corporation Dual Band Wireless-AC 8260 [8086:0010] 

我怀疑你的设备只需要固件。 校验:

 sudo modprobe iwlwifi dmesg | grep iwl 

应该有一条消息说找不到所需的固件。 如果是这样,请将此文件下载到您的桌面: https : //wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-8000-ucode-25.30.13.0.tgz以及: https:/ /wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-8000-ucode-15.227938.0.tgz右键单击每个并选择“Extract Here”。 现在,回到终端:

 cd ~/Desktop/iwlwifi-8000-ucode-25.30.13.0 sudo cp iwlwifi* /lib/firmware cd ~/Desktop/iwlwifi-8000-ucode-15.227938.0 sudo cp iwlwifi* /lib/firmware 

重新启动,你的无线应该工作。 如果没有,发布诊断信息:

 sudo modprobe iwlwifi dmesg | grep iwl 

根据您的诊断,我建议您更新驱动程序iwlwifi 。 将此软件包下载到您的桌面: https : //www.kernel.org/pub/linux/kernel/projects/backports/2015/11/15/backports-20151115.tar.gz右键单击它并选择“Extract Here”。 “ 现在,回到终端:

 sudo apt-get install linux-headers-generic build-essential cd ~/Desktop/backports-20151115 make defconfig-iwlwifi make sudo make install 

重新启动并告诉我们是否有任何改进。

您已经为当前内核版本编译了驱动程序。 当Update Manager安装更高版本的linux映像后,在必需的重新启动后,您必须重新编译:

 cd ~/Desktop/backports-20151115 make clean make defconfig-iwlwifi make sudo make install 

请保留该文件和这些说明。