我是双引导我的笔记本电脑之间的Windows 7和Ubuntu12.04LTS。最初,我可以连接到WiFi,但是如果我因为某种原因而断开连接,或者重新启动路由器,除非我重新启动我的笔记本,否则Ubuntu不会重新连接。只是登录和返回将无法工作,我必须重新启动ubuntu,为什么和如何修复这一点?
sudo lshw -c network的输出是
*-network
description: Wireless interface
product: BCM4313 802.11b/g/n Wireless LAN Controller
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:04:00.0
logical name: eth1
version: 01
serial: e4:d5:3d:77:df:9d
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=wl0 driverversion=6.20.155.1 (r326264) ip=192.168.1.105 latency=0
multicast=yes wireless=IEEE 802.11abg
resources: irq:16 memory:c2500000-c2503fff *-network
description: Ethernet interface
product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:05:00.0
logical name: eth0
version: 05
serial: ec:9a:74:48:ce:63
size: 10Mbit/s
capacity: 100Mbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl_nic/rtl8105e-1.fw
latency=0 link=no multicast=yes port=MII speed=10Mbit/s
resources: irq:44 ioport:3000(size=256) memory:c0404000-c0404fff memory:c0400000-c0403fff我安装了Broadcom无线驱动程序。在其他发行版中,我也经历过同样的问题;Crunchbang根本不连接无线,在升级pacman之后,Archbang不会连接到无线。问题从Ubuntu开始,这就是为什么我尝试了Crunchbang和Arch,然后回到了Ubuntu。
的输出
伊默德
cat /etc/模块
cat /etc/modprobe.d/blacklist.conf
发布于 2013-02-09 23:52:15
请提供以下命令的输出
lsmod
cat /etc/modules
cat /etc/modprobe.d/blacklist.conf如果b43模块正在运行,请尝试将其列入黑名单,并使用模块wl或brcmsmac
vim /etc/modprobe.d/blacklist.conf将以下行添加到此文件
blacklist b43保存文件
vim /etc/modules将以下行添加到此文件中,以便在启动时加载wl
wl重新启动你的电脑
如果不起作用
试着用骑师重新安装驱动程序
发布于 2016-12-13 20:51:29
Windows正在关闭您的无线适配器,因此只有当您打开计算机时才能工作。您需要关闭电源管理功能。您可以通过控制面板执行此操作。
启动控制面板,单击网络和Internet,单击左上角的“查看网络状态”,单击“更改适配器设置”,右键单击下拉框中的wifi图标,单击“使用标题连接下的属性”,单击新框中的“配置”,单击右侧“电源管理”选项卡,然后单击“允许计算机关闭设备以保存电源”按钮。
单击“保存并关闭所有窗口”,重新启动计算机
发布于 2017-03-21 19:07:58
临时修复-这样您就不必重新启动您的系统。尝试:
sudo service network-manager restart它重新启动您的network-manager,这可以解决您的问题。
https://askubuntu.com/questions/253257
复制相似问题