英特尔迅驰Advanced-N 7260无线无线

我刚买了一台新笔记本电脑。 宏碁v7-582PG。 一切都适用于Ubuntu,无线模块。 我尝试过Ubuntu 13.04和13.10 Beta。 仍然没有运气。

它是一种新的无线网卡,所以关于它的信息很少。

lspci:04:00.0网络控制器:Intel Corporation Wireless 7260(rev 63)

sudo lshw -c network ubuntu@ubuntu:~$ sudo lshw -c network *-network UNCLAIMED description: Network controller product: Wireless 7260 vendor: Intel Corporation physical id: 0 bus info: pci@0000:04:00.0 version: 63 width: 64 bits clock: 33MHz capabilities: pm msi pciexpress bus_master cap_list configuration: latency=0 resources: memory:b3500000-b3501fff *-network description: Ethernet interface product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller vendor: Realtek Semiconductor Co., Ltd. physical id: 0.1 bus info: pci@0000:05:00.1 logical name: eth0 version: 14 serial: 08:9e:01:c3:24:50 size: 1Gbit/s capacity: 1Gbit/s width: 64 bits clock: 33MHz capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full ip=10.0.0.106 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s resources: irq:62 ioport:4000(size=256) memory:b3404000-b3404fff memory:b3400000-b3403fff rfkill list all ubuntu@ubuntu:~$ rfkill list all 0: acer-wireless: Wireless LAN Soft blocked: no Hard blocked: no 1: acer-bluetooth: Bluetooth Soft blocked: no Hard blocked: no 2: hci0: Bluetooth Soft blocked: no Hard blocked: no 

主要在此进行的进一步研究表明,简单地加载固件将无效。 http://forum.notebookreview.com/networking-wireless/716325-intel-7260-a-6.html

我建议你把它下载到你的桌面: http: //www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.11-rc3/backports-3.11-rc3-1.tar.bz2单击它并选择“Extract Here”。 现在打开一个终端并执行:

 cd Desktop/backports-3.11-rc3-1/ make defconfig-iwlwifi make sudo make install 

现在重新启动并告诉我们您的无线是否正常工作。

我在Ubuntu 13.04中进行了测试,它完美地编译并正确驱动我的英特尔6200,但我没有7260,所以我无法进一步测试。 手指交叉! 你肯定需要固件。

虽然您没有从dmesg确认,但似乎您需要并且缺少所需的固件。 这是我的Dropbox的链接: https : //dl.dropboxusercontent.com/u/58267392/iwlwifi-7260-7.ucode.zip请将其下载到您的桌面。 右键单击并选择“Extract Here”。 现在打开一个终端并执行:

 sudo cp Desktop/iwlwifi-7260-7.ucode /lib/firmware/ sudo modprobe -r iwlwifi sudo modprobe iwlwifi 

你现在有无线接口吗?

 iwconfig 

它连接? 这里有任何信息性消息吗?

 dmesg | grep iwl 

我尝试安装这两个软件包(backport和iwlwifi-7260-7.ucode),但我的电脑仍然没有检测到无线网卡。

上面的人说它通过下载和安装linux-3.11.0-rc4来工作。 有人可以请说明如何做到这一点? 比如,我如何添加存储库,下载并安装它? 非常感谢帮助,因为我需要在这台计算机上使用Linux来工作。 谢谢

根据http://wireless.kernel.org/en/users/Drivers/iwlwifi ,似乎我们需要内核升级; Ubuntu 13.04默认使用3.8.0,不支持n7260

等待Ubuntu 13.10是另一种解决方案……

我正在升级我的内核;(

我升级到内核3.11-8,两个网络连接都“开箱即用”。

升级时,您可能会收到一些警告,例如固件可能缺少所需的不同文件的名称:我使用apt-file search name_of_the_file修复它,并为每个文件“可能缺少”。

为了检测到您的无线网卡 – 您必须转到“系统设置” – >“其他驱动程序”并激活(从灰色变为绿色的按钮)。 在一些RTL卡上可以有2-3个或更多的驱动程序(我在我的戴尔Inspiron 6400上):( – 在这种情况下尝试关闭一个不工作,然后转一个 – 直到你找到正确的一个:( ((Eorked for me(只是3 ;-))

希望这会有所帮助

我使用的是和你一样的硬件

  description: Wireless interface product: Wireless 7260 

内核版本是

$ uname -a Linux nanak-P570WM 3.11.0-13-generic#20-Ubuntu SMP Wed Oct 23 07:38:26 UTC 2013 x86_64 x86_64 x86_64 GNU / Linux

我很久以来一直在使用无线。

请从上面安装上面的内核版本

http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.12-saucy/

它应该工作。

解决安装新包装:

 wget -N "http://ftp.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_0.40_all.deb"; sudo dpkg -i --force-all firmware-iwlwifi_0.40_all.deb; sudo install -f; reboot; 

来源: http : //packages.debian.org/jessie/firmware-iwlwifi

Ubuntu 13.10,它通过以下方式解决了我:

 apt-get install linux-firmware