博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu无线网络问题
阅读量:7294 次
发布时间:2019-06-30

本文共 1815 字,大约阅读时间需要 6 分钟。

Version:Ubuntu 16.10

Computer: Acer ASPIRE 4750G

Wireless adapter: Qualcomm Atheros AR9287 Wireless Network Adapter (PCI-Express) (rev01)

 

问题描述:重启或者重新安装系统后,检测不到Wi-Fi。具体表现为右上角Wi-Fi网络连接的图标是空的,没有半圈半圈的线。点击能够启动联网和启动Wi-Fi,但是就是检测不到任何的Wi-Fi。

问题分析:在终端输入 sudo lshw -C network ,提示无线网络不可用,得到的结果类似于:

*-network DISABLED   description: Wireless interface   product: AR9287 Wireless Network Adapter (PCI-Express)   vendor: Atheros Communications INc.   physical id: 0   bus info: pci@0000:06:00.0   logical name: wlan0   version: 01   serial: the-number   width: 64 bits   clock: 33MHz   capabilities: pm msi pciexpress bus_master cap_list enternet physical wireless   configureation: broadcast=yes driver=ath9k driverversion=2.6.38-8-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn   resources: irq: 17 memory:d0200000-d020ffff

解决方法:

Try blacklisting the  acer-wmi  kernel module.

 sudo gedit /etc/modprobe.d/blacklist.conf 

add  blacklist acer_wmi  as a new line at the bottom of this file.

Then reboot.

原理:

edit:

The acer-wmi kernel module enables you to control the following:

    • the wireless LAN card radio
    • inbuilt Bluetooth adapter
    • inbuilt 3G card
    • mail LED of your laptop
    • brightness of the LCD panel

With regards to wireless, all  acer-wmi  does is enable the radio on the card. It is not responsible for the wireless LED - once the radio is enabled, this is down to the wireless driver for your card.

However for some acer laptop models - there is a conflict between the Acer firmware and the kernel implementation. This is why you need to blacklist.

参考: 

 

一些网络调试的命令和方法,参考自:

uname -alspcisudo lspci -vvnnsudo lshw -C networkiwconfig //查看网络配置文件dig www.baidu.comsudo iwlist scanning //扫描电脑周边所有可看到的无线网络ls -l /etc/NetworkManager/system-connections //查看已有的无线网络的配置文件

 

转载于:https://www.cnblogs.com/puran/p/6067329.html

你可能感兴趣的文章
STM32(HY-SRF05)超声波测距项目
查看>>
《practical Java》读书笔记
查看>>
数据库字段顺序的【坑】
查看>>
spring5新响应式框架-webflux实战
查看>>
软甲架构笔记 三
查看>>
STL training (uva上一些比较好的用来熟悉STL)
查看>>
[未完成]关于CSS的总结
查看>>
陈皓一起写Makefile 概述
查看>>
linux下安装启动rpc服务
查看>>
Software Testing, Lab 1
查看>>
World发布博客测试
查看>>
IIS 提高连接的并发数,和CPU的使用率。
查看>>
修改Sysvol复制方式
查看>>
python3.x中如何使用base64、base32、base16编码解码
查看>>
HDOJ 1084 排序 水
查看>>
深度拷贝一个链表
查看>>
POJ3229
查看>>
用promise封装ajax
查看>>
git创建工程
查看>>
UIScrollView的contentSize、contentOffset和contentInset属性
查看>>