Ubuntu – Can’t get wifi to work on Ubuntu 16.04 with Intel wireless 7260 (rev c3)

16.04driversintel-wirelessnetworking

I am new to using Ubuntu. I dual booted my HP laptop with Windows 10 and Ubuntu 16.04. I am unable to see any wireless networks on Ubuntu, but it works perfectly if I use a wired connection. My network controller is an Intel 7260 (rev 3). When I check "Software & Updates" my wireless driver does not show up. Any suggestions as to how I should proceed?

Running

lspci -nnk | grep 0280 -A2

produces the output:

09:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev c3)
DeviceName: Intel Stone Peak 2 7260 ac 2x2 + BT4 LE Combo
Subsystem: Intel Corporation Dual Band Wireless-AC 7260 [8086:c070]

Running

rfkill list all

produces the output:

0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: acer-wireless: Wireless LAN
Soft blocked: yes
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no

Running

dmesg | grep iwl

produces

[    6.101194] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-7260-17.ucode failed with error -2
[    6.118974] iwlwifi 0000:09:00.0: loaded firmware version 16.242414.0 op_mode iwlmvm
[    6.191797] iwlwifi 0000:09:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[    6.191938] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[    6.192203] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[    6.428960] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    6.430845] iwlwifi 0000:09:00.0 wlo1: renamed from wlan0
[   16.944519] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[   16.944781] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[   17.139952] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled
[   17.140212] iwlwifi 0000:09:00.0: L1 Enabled - LTR Enabled

Best Answer

Run in terminal

sudo tee /etc/modprobe.d/blacklist-acer.conf <<< "blacklist acer_wmi"

and reboot.

Related Question