web-dev-qa-db-fra.com

Le pilote Wifi RTL8821ce a cessé de fonctionner après la mise à niveau vers Ubuntu 19.10

J'ai un ordinateur portable Lenovo 320 avec un adaptateur wifi rtl8821ce. J'utilisais Ubuntu 19.04 et l'adaptateur a fonctionné après avoir suivi ces étapes .

J'ai mis à niveau vers 19.10 et le wifi ne fonctionne pas maintenant.

La sortie de lshw -C network est comme suit

*-network                 
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: enp2s0
       version: 10
       serial: 8c:16:45:45:5c:35
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 firmware=rtl8168g-3_0.0.1 04/23/13 latency=0 link=no multicast=yes port=MII
       resources: irq:16 ioport:4000(size=256) memory:a2104000-a2104fff memory:a2100000-a2103fff
  *-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:03:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress cap_list
       configuration: latency=0
       resources: ioport:3000(size=256) memory:a2000000-a200ffff
  *-network
       description: Ethernet interface
       physical id: 3
       logical name: bnep0
       serial: b0:fc:36:38:c0:d0
       capabilities: ethernet physical
       configuration: broadcast=yes ip=192.168.44.52 multicast=yes

Ce message a eu le même problème que moi - y compris l'installation du pilote à partir de pilotes supplémentaires - mais suivre la réponse acceptée n'a pas fonctionné pour moi.

Y at-il autre chose que je puisse faire?

$ lspci -nnk | grep 0280 -A3
03: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, 8821ce, rtl8821ce
$ Sudo dkms status
bcmwl, 6.30.223.271+bdcom, 5.3.0-22-generic, x86_64: installed
rtl8821ce, 5.2.5.2.1.30816.20190425, 5.3.0-22-generic, x86_64: installed
$ Sudo modprobe rtl8821ce && dmesg | grep rtl
modprobe: ERROR: could not insert 'rtl8821ce': Device or resource busy
1
ahmed galal

D'après les commentaires ...

$ dkms status
bcmwl, 6.30.223.271+bdcom, 5.3.0-22-generic, x86_64: installed
rtl8821ce, 5.2.5.2.1.30816.20190425, 5.3.0-22-generic, x86_64: installed

Désinstallez votre pilote dkms actuel ( https://github.com/tomaspinho/rtl8821ce ) ...

cd rtl8821ce          # old source folder
Sudo ./dkms-remove.sh # uninstall old dkms driver
dkms status

Maintenant, nous nous assurons que les pilotes 8821ce en double ont été supprimés ...

Sudo lspci -nnk | grep 0280 -A3 | grep modules

Si vous avez besoin d'un pilote différent, essayez celui-ci ... https://github.com/shubham151/rtl8821ce . (git clone https://github.com/shubham151/rtl8821ce.git ). Ne suivez pas le fichier Lisezmoi là-bas pour savoir comment l'installer, suivez plutôt la même procédure que vous avez utilisée auparavant, afin d'obtenir l'installation de dkms.

git clone https://github.com/shubham151/rtl8821ce.git # git clone new driver
cd rtl8821ce             # new source folder
chmod +x dkms-install.sh # make executable
chmod +x dkms-remove.sh  # make executable
Sudo ./dkms-install.sh   # install new dkms driver

Mise à jour # 1:

  • module dcmms bcmwl désinstallé
  • module dkms rtl8821ce désinstallé
  • réinstallé rtl8821ce à partir du fichier .deb
0
heynnema