计算机未检测到任何无线信号

计算机未检测到任何无线信号

我最近买了一台新笔记本电脑,而我的旧笔记本电脑太旧了,卖不出去多少钱。我决定把 8 GB 的内存用在旧笔记本电脑上,并在 8 GB 的 DVD 上安装了 12.04。我成功地在电脑上运行了 Ubuntu,但无法连接到无线互联网。单击右上角的网络符号时,系统显示“没有可用的网络设备”。

在终端中输入时iwconfig,结果是

lo       no wireless extensions.

结果sudo lshw -C network

*-network
    description: Network controller
    product: BCM4311 802.11a/b/g
    vendor: Broadcom Corporation
    physical id: 0
    bus info: pci@0000:0c:00.0
    version: 01
    width: 32 bits
    clock: 33MHz
    capabilities: pm msi pciexpress bus_master cap_list
    configuration: driver=b43-pci-bridge latency=0
    resources: irq:17 memory:fe8fc000-fe8fffff

我的新笔记本电脑可以完美地无线连接到路由器。我已通过以太网电缆将 Pi 连接到计算机,从而将 Raspberry Pi 连接到笔记本电脑。我准备对这台新笔记本电脑做同样的事情,因为它就在旁边。但是,我不愿意将笔记本电脑连接到路由器。

答案1

您可以使用两种方法修复 wifi 问题:

Either connect to the internet via wired connection and run this command:

sudo apt-get update && sudo apt-get upgrade

然后重新启动系统。

Or use the following commands:

sudo apt-get install linux linux-headers-generic kernel-package

sudo apt-get install --reinstall bcmwl* firmware-b43-lpphy-installer b43-fwcutter

最后,重新启动系统。

如果这没有帮助,请尝试以下命令:

sudo apt-get 删除 bcmwl-kernel-source

sudo apt-get 安装固件-b43-安装程序 b43-fwcutter

sudo 重启

相关内容