【转】install intel wireless 3165 driver for ubuntu 14.04.3
Ubuntu 14.04.3 with 3.19 kernel can’t drive the new Intel Wireless 3165 AC with firmware version 13.
This is about how to install the driver mannually.
Today I changed a new Dell vastro 5000 series laptop with the Intel 3165 Wireless AC.
After os installed, I find I can’t find the wireless network.
1 $ lshw -C network 2 *-network UNCLAIMED 3 description: Network controller 4 product: Intel Corporation 5 vendor: Intel Corporation 6 physical id: 0 7 bus info: [email protected]0000:05:00.0 8 version: 79 9 width: 64 bits 10 clock: 33MHz 11 capabilities: pm msi pciexpress cap_list 12 configuration: latency=0 13 resources: memory:df200000-df201fff 14 15 $ lspci 16 05:00.0 Network controller: Intel Corporation Device 3165 (rev 79)
As iwlwifi official site shows, Intel® Wireless 3165 (starting from firmware XX.XX.13.0 and kernel 4.1).
Thanks God we have backports, which provide drivers released on newer kernels backported for usage on older kernels.
Mannul Install
- Download & compile the driver. Maybe the latest stable version is better. But I didn’t use it.
1 sudo apt-get update 2 sudo apt-get install linux-headers-generic build-essential 3 wget https://www.kernel.org/pub/linux/kernel/projects/backports/2015/11/20/backports-20151120.tar.gz 4 tar -zxvf backports-20151120.tar.gz 5 cd backports-20151120 6 make defconfig-iwlwifi 7 make 8 sudo make install
- Verify that you have the latest firmware:
- iwlwifi-7265D-13.ucode
- iwlwifi-7265-13.ucode:
1 ls /lib/firmware | grep 7265
- Make copies:
1 cd /lib/firmware 2 sudo cp iwlwifi-7265D-13.ucode iwlwifi-3165-9.ucode 3 sudo cp iwlwifi-7265-13.ucode iwlwifi-3165-13.ucode
- Reboot. Your wireless should be working.
Hints
You will need to recompile every time installs a new kernel:
1 cd backports-20151120 2 make clean 3 make defconfig-iwlwifi 4 make 5 sudo make install
时间: 2024-10-27 12:36:54