在安装了 ubuntu 18.08 LTS 和 windows 10 后,我在使用 ubuntu 时遇到了一些问题,第一个是触摸板,但多亏了 askubuntu,我解决了这个问题。现在我正在寻找另一个问题的解决方案,那就是我的 wifi 无线连接不起作用,而且当进入 wifi 设置时,我看到No Wifi Adapter Found' i already tried some stuff but unluckily not working. when typing
sudo lshw -C network` 我得到了这个:
*-network
description: Ethernet interface
product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: enp1s0
version: 07
serial: 98:29:a6:67:23:2b
capacity: 100Mbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp aui bnc mii fibre 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 firmware=rtl8106e-1_0.0.1 06/29/12 latency=0 link=no multicast=yes port=MII
resources: irq:16 ioport:4000(size=256) memory:b1200000-b1200fff memory:b1000000-b1003fff
*-network UNCLAIMED
description: Network controller
product: Realtek Semiconductor Co., Ltd.
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:02:00.0
version: 00
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: ioport:3000(size=256) memory:b1100000-b110ffff
*-network
description: Ethernet interface
physical id: 3
logical name: enp0s20f0u2
serial: 22:2e:f7:46:24:ff
capabilities: ethernet physical
configuration: broadcast=yes driver=rndis_host driverversion=22-Aug-2005 firmware=RNDIS device ip=192.168.42.91 link=yes multicast=yes
当输入`lspci -knn | grep Net -A02:00.0 我得到:
02:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter [10ec:c821]
Subsystem: Lenovo RTL8821CE 802.11ac PCIe Wireless Network Adapter [17aa:c024]
Kernel modules: wl
当我尝试时,rfkill list
我得到:
0: ideapad_wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
1: ideapad_bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
3: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
请帮帮我我想恢复我的无线连接
答案1
我最近买了一台带该 wifi 卡的笔记本电脑。尝试了几个指南和驱动程序才让它工作。最简单的方法(也是我认为最好的方法,因为网上有一个驱动程序版本,它有一个错误,当你断开与网络的连接然后重新连接时,它会失败,你必须禁用并启用 wifi 才能再次连接)是从这个 deb 包下载并安装驱动程序: https://launchpad.net/~wenchien/+archive/ubuntu/rtl8821c/+files/oem-wifi-realtek-8821ce-lp1767920-4.15-dkms_0.8_amd64.deb 来源:https://bugs.launchpad.net/ubuntu/+source/linux-oem/+bug/1740231 您需要有效的互联网连接来安装驱动程序,因为它将从 Ubuntu 存储库中提取一些软件包。
编辑:
抱歉。在安装 wifi 驱动程序之前,您需要有活动的互联网连接(以太网电缆,或者,如果您有蓝牙,您可以通过连接到 wifi 的手机或平板电脑共享)。说明适用于 64 位机器。打开终端并输入:
sudo apt update
这将获取存储库中的可用包,但不会更新您的系统,您可以在修复 wifi 问题后再执行此操作。
wget "https://launchpad.net/~wenchien/+archive/ubuntu/rtl8821c/+files/oem-wifi-realtek-8821ce-lp1767920-4.15-dkms_0.8_amd64.deb"
这将从 PPA 以 .deb 包的形式下载驱动程序。
sudo apt install ./oem-wifi-realtek-8821ce-lp1767920-4.15-dkms_0.8_amd64.deb
安装下载的驱动程序,首先下载所需的包依赖项。
exit
重启,登录后,您应该能够看到、连接和断开可用的 wifi 网络。希望对您有所帮助