“Intel Corporation Device 3165” wifi 无法使用

“Intel Corporation Device 3165” wifi 无法使用

我正在尝试在新笔记本电脑上使用 WiFi。

该笔记本电脑是“Acer Aspire R11 R3-131T-P7HR”。

当我跑步时

$ lspci | grep Network

我看到了

02:00.0 Network controller: Intel Corporation Device 3165 (rev 81)

当我尝试运行这个

sudo ifconfig wlan0 up

我只得到

wlan0: ERROR while getting interface flags: No such device

运行 ifconfig 时,我没有看到任何 wlan。更多输出:

$ uname -a
Linux peepee 3.19.0-30-generic #34~14.04.1-Ubuntu SMP Fri Oct 2 22:09:39 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

$ rfkill list
1: acer-wireless: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no

$ lspci -knn|grep Net -A2
02:00.0 Network controller [0280]: Intel Corporation Device [8086:3165] (rev 81)
    Subsystem: Intel Corporation Device [8086:4010]

在我删除它之前,我使用 Windows 时 Wi-Fi 是可以工作的。我应该做什么/安装什么?

答案1

我的 MSI GE62 6QD Apache Pro 上装有同样的 wifi 卡。

安装 15.10 测试版对我来说确实有效,但是随后我遇到了运行测试版 Ubuntu 版本的所有问题。

但我设法让它在内核为 4.2.3 的 14.04 上运行。较新的内核支持 wifi 卡。但是,这个内核似乎与较旧的 NVIDIA 驱动程序存在一些问题。因此,为了让图形工作,我需要从 edgers PPA 安装 NVIDIA-352。

一步一步的说明:

  1. 下载并安装 Ubuntu 14.04。
  2. 创建一个临时目录来存储您的下载内容:
    • mkdir kern
    • cd kern
  3. 下载所需的内核文件:
    • wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.2.3-unstable/linux-headers-4.2.3-040203-generic_4.2.3-040203.201510030832_amd64.deb
    • wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.2.3-unstable/linux-image-4.2.3-040203-generic_4.2.3-040203.201510030832_amd64.deb
    • wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.2.3-unstable/linux-headers-4.2.3-040203_4.2.3-040203.201510030832_all.deb
  4. 安装内核
    • sudo dpkg -i *.deb
  5. 删除旧的 Nvidia 驱动程序:
    • sudo apt-get purge nvidia*
  6. 安装新的 Nvidia 驱动程序:
    • sudo add-apt-repository ppa:xorg-edgers/ppa
    • sudo apt-get update
    • sudo apt-get install nvidia-352

现在,当您重新启动时,您应该可以在 grub 中看到一个选项,可以使用内核 4.2 启动 Ubuntu。执行此操作后,您就可以开始了。如果不起作用,可能需要将 Nouveau 列入黑名单。

编辑: 在我的 MSI GE62 上,安装 bumblebee 和 bumblebee-nvidia 也至关重要。

sudo apt-get install bumblebee bumblebee-nvidia

答案2

安装Ubuntu 15.10解决了我的问题。

相关内容