Bonjour à tous,
Problème récurrent sous linux, le driver natif pour rtl8192cu ne fonctionne pas.
(perte de connexion toutes les 2 minutes et débit très faible).
J'ai l'habitude, je fais cette manipulation :
http://askubuntu.com/questions/246236/compile-and-install-rtl8192cu-driver
Installation
Ensure you have the necessary prerequisites:
sudo apt-get install linux-headers-generic build-essential dkms
Clone this repository:
git clone https://github.com/pvaret/rtl8192cu-fixes.git
Set it up as a DKMS module:
sudo dkms add ./rtl8192cu-fixes
Build and install it (this version number may change, it is .10 as of october 19 2015
sudo dkms install 8192cu/1.10
Refresh the module list:
sudo depmod -a
Ensure the native (and broken) kernel driver is blacklisted:
sudo cp ./rtl8192cu-fixes/blacklist-native-rtl8192.conf /etc/modprobe.d/
And reboot. You're done.
Sauf qu'avec ubuntu 16.04 ça ne fonctionne pas, j'ai pas les bons modules de chargé 🙁
Au démarrage, je suis obligé de faire :
modprobe cfg80211 mac80211 rtlwifi rtl_usb rtl8192c_common
service network-manager restart
Et la ça fonctionne.
Le fichier de conf modprode récupéré depuis le git contient :
## This file ships with the rtl8192-fixes DKMS module.
## Keep the native (and currently broken) kernel driver from loading so ours
## is used instead:
install rtl8192cu /bin/false
install rtl8192c_common /bin/false
install rtlwifi /bin/false
install rtl8xxxu /bin/false
Comment faire fonctionner la carte wifi au démarrage ?
Quand ça fonctionne lsmod renvoie :
rtl8192c_common 53248 0
rtl_usb 20480 0
rtlwifi 77824 2 rtl_usb,rtl8192c_common
mac80211 737280 2 rtl_usb,rtlwifi
cfg80211 565248 2 mac80211,rtlwifi