在 13.10 中从挂起状态恢复后,网络/WiFi 被禁用且无法启用

在 13.10 中从挂起状态恢复后,网络/WiFi 被禁用且无法启用

醒来系统来自暂停我的网络已被禁用,无法重新启动,这是从 13.04 升级到 13.10 后发生的

sudo lshw -C network

  *-network               
       description: Ethernet interface
       product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: eth0
       version: 02
       serial: 90:fb:a6:a8:52:40
       size: 10Mbit/s
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:44 ioport:6000(size=256) memory:f0010000-f0010fff memory:f0000000-f000ffff memory:f0020000-f003ffff
  *-network
       description: Wireless interface
       product: BCM4313 802.11bgn Wireless Network Adapter
       vendor: Broadcom Corporation
       physical id: 0
       bus info: pci@0000:03:00.0
       logical name: eth1
       version: 01
       serial: 00:26:82:a3:fa:70
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=wl0 driverversion=6.30.223.141 (r415941) ip=192.168.0.103 latency=0 multicast=yes wireless=IEEE 802.11abg
       resources: irq:19 memory:f1100000-f1103fff

答案1

此方法有时有效,但并非总是有效。请打开终端并执行以下操作:

gksudo gedit /etc/pm/config.d/config

将打开一个新的空文件。添加一行:

SUSPEND_MODULES="wl"

仔细校对,保存并关闭 gedit。可能需要重新启动才能测试。

答案2

好吧,我已经在一台新机器上安装了 ubuntu 13.10,但是我的网络设置搞乱了。

  1. 我安装了 gksu
  2. 运行:sudo gksu gedit 在 gedit 中打开在 etc-network-interfaces 中找到的网络接口文件
  3. 使用以下命令编辑文件:

    -# 此文件描述了系统上可用的网络接口

    -# 以及如何激活它们。有关更多信息,请参阅接口 (5)。

    -# 环回网络接口

    -自动

    -iface lo inet 环回

    -# 这是可热插拔网络接口的列表。

    -# 它们将由热插拔子系统自动激活。

    -# 自动 eth1

    -# iface eth1 inet dhcp

    然后保存即可。

  4. 为确保一切正常,请检查 etc-dhcp-dhcpd.conf 中的 dhcpd.conf 文件,以确保

    选项域名“example.org”;

    选项域名服务器 ns1.example.org, ns2.example.org;

    默认租赁时间 600;最大租赁时间 7200;

    前面不要有#。

  5. 现在重新启动你的系统,我希望它能像我的一样工作

相关内容