Ubuntu 18.04-未找到 wifi 适配器问题

Ubuntu 18.04-未找到 wifi 适配器问题

刚刚在 Windows 10 旁边安装了 Ubuntu 作为第二个系统。起初安装了 Ubuntu 19.10,但问题出现了,所以我想也许如果我把它变成 Ubuntu 18.04,问题就会解决,但不幸的是没有。我什么也做不了,我无法连接到 wifi,我无法通过 USB 网络共享或使用手机的蓝牙网络共享进行连接,所以我无法安装驱动程序。我尝试使用 pendrive 安装它们,但没有互联网,所以我无法使用make命令。

我有一台华硕 vivobook 15 我该如何解决这个问题?我想我已经搜索过整个互联网了

串行通信

04:00 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter

lshw-C 网络

  *-network UNCLAIMED
description: Network controller
       product: RTL8821CE 802.11ac PCIe Wireless Network Adapter
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:04:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: cap_list
       configuration: latency=0
       resources: ioport:3000(size=256) memory:b4200000-b420ffff
*-network
description: Ethernet interface
       physical id: 1
       logical name: enp0s20f0u6
       serial: 92:d1:af:f9:cb:15
       capabilities: ethernet physical
       configuration: broadcast=yes driver=rndis_host driverversion=22-Aug-2005 firmware=RNDIS device link=yes multicast=yes

lspci -knn | grep Net -A3;rfkill 列表

04:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter [10ec:c821]
Subsystem: AzureWave RTL8821CE 802.11ac PCIe Wireless Network Adapter 
[1a3b:3040]
0: asus-wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
1: asus-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
2: hci0: Bluetooth
    Soft blocked: no
Hard blocked: no

标记帖子中给出的答案对我的问题不起作用

在“nano Makefile”之后,第 152 行是“CONFIG_PLATFORM_ARM_WMT = n”

答案1

以下是大约五分钟内安装的方法。

Donkeyday:“嘿,朋友,我可以借用一下你的以太网连接几分钟吗?我带了六瓶你最喜欢的饮料。”

朋友:“当然可以,Donk,很高兴能帮助你!我给你冰几杯饮料。”

然后打开终端并执行以下操作:

sudo apt-get install --reinstall git dkms build-essential linux-headers-generic
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh 

您的无线网络现在应该可以正常工作了。断开以太网,感谢朋友并尽情享受吧!

以下是大约五天内完成的方法...也许。

到这里:http://packages.ubuntu.com/

在下拉框中选择 Bionic。搜索 git、dkms、linux-headers-generic 和 build-essential。确保找到它们的依赖项以及依赖项的依赖项。确保下载正确的版本,32 位或 64 位。在另一台计算机上下载大约十五个软件包后,使用 USB 记忆棒或类似设备将它们传输到 Ubuntu 计算机的桌面。打开终端并安装它们:

cd ~/Desktop
sudo dpkg -i *.deb

它可能会抱怨某个包缺少依赖项。如果是这样,请下载该包并将其添加到桌面,然后重试。

在论坛上发多篇帖子告诉老 Chili 你陷入了困境。重复这个过程。

完成所有操作后,获取此文件:https://github.com/tomaspinho/rtl8821ce/archive/master.zip

unzip master.zip
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh 

重新启动后你的无线设备就应该可以正常工作了。

答案2

您是否在从 Windows 关机(而不是重新启动)后进入 Ubuntu 时发现了这个问题?我发现再次进入 Windows 并重新启动进入 Ubuntu 可以解决这个问题。

相关内容