无法在 ubuntu 14.04.3 上连接到 wifi

无法在 ubuntu 14.04.3 上连接到 wifi

我使用 USB 棒安装了 Ubuntu 14.04.30 LTS。我没有双启动我的电脑,我删除了我的旧操作系统。我在网络菜单中找不到启用无线。rfkill 的输出

----------------------------------
rfkill list all
0: hci0: Bluetooth 
        Soft blocked: no
        Hard blocked: no
-----------------------------------

lshw -c network 的输出

*-network
      description: Network controller
      product: BCM4312 802.11b/g LP-PHY
      vendor: Broadcom Corporation 
      physical id: 0
      bus info: pci@0000:03:00.0
      version: 01
      width: 64 bits
      clock: 33MHz
      capabilities: bus_master cap_list
      configuration: driver=b43-pci-bridge latency=0
      resources: irq:18 memory:99700000-99703fff
*- network 
      description: Ethernet interface 
      product: RTL1801E/RTL8102E PCI Express Fast Ethernet controller 
      vendor: Related Semiconductor Co., Ltd.
      physical id: 0
      bus info: pci@0000:04:00.0
      logical name: eth0
      version: 02
      serial: 00:1e:ec:a1:73:dd
      size: 10Mbit/s
      capacity: 100Mbit/s
      width: 64 bits
      clock: 33MHz
      capabilities: bus_master cap_list rom Ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation

我是 Linux 新手,不知道该怎么做。我可以在屏幕右上角看到 WiFi 符号。但它是空白的。当我单击它时,我可以看到已选中“启用网络”。其他选项是“编辑连接”和“VPN 连接”。我无法访问互联网。无法使用以太网作为 WiFi 网络,这是我唯一可以访问的。我刚刚下载了 Ubuntu 14.04.3,还没有安装任何驱动程序或软件包

答案1

您可以安装博通 4312使用以下命令通过终端驱动程序:

sudo apt-get update

然后

sudo apt-get install bcmwl-kernel-source

一旦安装完毕,只需重新启动即可工作。

如果这不起作用你可以尝试这个:

搜索附加驱动程序到达那里后,您必须单击 Broadcom STA 无线驱动程序并启用它。

重新启动并查看它是否有效。

我最后要推荐的是重新安装 Ubuntu,当系统询问您是否要安装第三方软件(受限附加程序)时,请确保勾选。Ubuntu 安装完成后,您的 wifi 应该在首次启动时就可以正常工作。

一旦连接到 WiFi,您可能需要安装附加驱动程序,因为受限的附加驱动程序可能不稳定,但它应该足以帮助您安装其他驱动程序。

查看我的帖子这里以获得更多帮助。

答案2

您可以从 USB 安装 bcmwl 驱动程序。打开终端(Ctrl+Alt+T)并输入以下命令:

cd /"path_to_USB_directory"
sudo dpkg -i pool/main/d/dkms/*.deb
sudo dpkg -i pool/restricted/b/bcmwl/*.deb

然后重新启动系统。

答案3

尝试过这个

sudo apt-get 安装 build-essential linux-headers-generic git

mkdir ~/RTl8188EU

cd ~/RTL8188EU

‎git 克隆 git://github.com/lwfinger/rtl8188eu

cd ~/RTL8188EU/rtl8188eu

sudo 制作

安装

sudo cp -v ~/RTL8188EU/rtl8188eu/rtl8188eufw.bin /lib/firmware/rtlwifi/

sudo deomod -a

sudo 更新-initramfs -u

sudo modprobe 8188eu

相关内容