自己还在测试中 ,先记录下
参考博客原址:https://blog.csdn.net/yrc19950911/article/details/79156065
参考博客原址:https://www.nenew.net/ubuntu-install-intel-9260ac-wireless-card.html
参考博客原址:https://blog.csdn.net/weixin_40358083/article/details/80224098
自己还没升级内核成功,下面的博客只是自己用时的参考
查看内核型号 uname -sr or uname -a
如果升级内核后 导致升级失败,黑屏,进入不了桌面 按如下操作
进入文本tyy 模式 按住 ctrl+alt+fn+f1 在命令行形式下输入 login in :用户名 passsword:密码
dpkg -l | grep linux-image 或者 $ dpkg --get-selections|grep linux-image #查看安装的内核
sudo apt-get remove linux-image-3.13.0-xx-generic 或者
$ sudo dpkg -P linux-image-4.8.0-56-generic linux-image-extra-4.8.0-56-generic #这个删除干净 卸载掉新内核
dpkg -l | grep linux-image #查看内核是否被删除 必会删除
同时卸载不必要的内核也是 增加/boot 分区最有效 简单的方法
最后更新grub $sudo apt-get update-grub
升级内核的网址:http://kernel.ubuntu.com/~kernel-ppa/mainline/ 去找对应的版本 下载headers + headers generic+imagine generic 三个文件
下载对应的intel 驱动网址:https://www.intel.com/content/www/us/en/support/articles/000005511/network-and-i-o/wireless-networking.html
查看驱动是否安装成功 rfkill list #显示有wirless 一块 则说名安装成功
电脑安装了Ubuntu 14.04,但是网络连接中只有以太网而没有WiFi的选项.
打开System Setting系统设置-Software&Updates软件&更新-Additional Drivers附加驱动,无法加载出相应的驱动,更换为国内源也无法显示出相应的驱动.
使用命令查询网卡(hardware of Internet)状态
$lshw -C network
详细信息如下:
*-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:02:00.0
version: 10
width: 64 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
resources: memory:df200000-df201fff
*-network
description: Ethernet interface
product: QCA8171 Gigabit Ethernet
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:03:00.0
logical name: eth0
version: 10
serial: **************
size: 100Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=alx duplex=full ip=******** latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
resources: irq:128 memory:df100000-df13ffff ioport:d000(size=128)
有两部分,第一部分是无线网,第二部分是以太网.我们可以发现无线网被UNCLAIMED,而且源内也找不到相应的驱动,那么我们需要手动下载本电脑无线网卡的驱动然后安装.
首先我们需要查询电脑的无线网卡型号,Ubuntu下好像没有什么特别好的办法,在网上找到的如下命令
$lspci | grep -i net
或
$iwconfig
如果是双系统的话,在Windows下控制面板-设备管理器中可以查到无线网卡具体型号,我的电脑无线网卡型号是Intel Dual Band Wireless-AC 3168.
然后我们去Intel的官网查找适用于Linux的无线网卡驱动,可以搜索 无线网卡型号+Ubuntu,然后找Intel的官方网站.这个网址适用于很多网卡型号:https://www.intel.com/content/www/us/en/support/articles/000005511/network-and-i-o/wireless-networking.html
在下载对应驱动的同时,我们发现驱动对Linux内核的版本有要求,由于Ubuntu 14.04的初始内核为4.4,而我的电脑无线网卡对应的内核为4.6+,因此我们需要更新内核.
首先查询一下自己的Ubuntu内核
$uname -sr
然后打开http://kernel.ubuntu.com/~kernel-ppa/mainline/选择合适的版本下载,我选择4.8的内核
$wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.8/linux-headers-4.8.0-040800_4.8.0-040800.201610022031_all.deb
$wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.8/linux-headers-4.8.0-040800-generic_4.8.0-040800.201610022031_all.deb
$wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.8/linux-image-4.8.0-040800-generic_4.8.0-040800.201610022031_all.deb
然后安装
$sudo dpkg -i *.deb
安装完成后重启,然后检查Ubuntu内核是否更新过
$uname -sr
接着把下载好的驱动复制到lib的firmware中
$sudo cp -i iwlwifi-3168-22.ucode /lib/firmware
接着更新一下grub,然后重启
$sudo update-grub
$sudo reboot
然后就大功告成啦,可以愉快地连WiFi上网了.