Abandon le 18-04-20 Installation clé USB WiFi EasyULT

Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Installation clé USB WiFi EasyULT

Message par jclaudej »

Bonjour,

Je viens de recevoir le produit ci-dessous :
https://www.amazon.fr/gp/product/B0823J ... UTF8&psc=1
Celui-ci est normalement compatible Linux.
Il est livré avec un CD dans lequel il existe deux répertoires avec ce que j’appellerai les pilotes.
Image
Image
Pour installer les pilotes j'ai d'abord vérifier les permissions sur les fichiers install.sh et j'ai validé "autorisé l'exécution du fichier comme un programme en étant identifié comme Root
Lorsque je clic sur ces fichiers j'ai bien l'ouverture de la console puis une grosse quantité de lignes qui défilent rapidement et aussi rapidement la console ce ferme.

Et malheureusement pour moi rien ne s'installe.

Wifiradar =
2020-04-17 15:08:50,829: get_network_device: No WiFi device found, please set this in the preferences.
2020-04-17 15:08:50,829: get_network_device: No WiFi device found, please set this in the preferences.

Merci d’avance pour votre aide
Modifié en dernier par jclaudej le sam. 18 avr. 2020 16:03, modifié 4 fois.
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

Bonjour Cyrille,

Merci pour ton aide, j'ai installé le pilote 8821cu mais cela ne fonctionne toujours pas d’ailleurs mon driver serait 8812cu donc pas un 8811cu :(

Contenu du fichier install.sh dans répertoire RTL88x2BU_WiFi_linux_v5.2.4.4_25643.20171212_COEX20171012-5044

Code : Tout sélectionner

#!/bin/bash
# Auto install for 8192cu
# September, 1 2010 v1.0.0, willisTang
# 
# Add make_drv to select chip type
# Novembor, 21 2011 v1.1.0, Jeff Hung
################################################################################

echo "##################################################"
echo "Realtek Wi-Fi driver Auto installation script"
echo "Novembor, 21 2011 v1.1.0"
echo "##################################################"

################################################################################
#			Decompress the driver source tal ball
################################################################################
cd driver
Drvfoulder=`ls |grep .tar.gz`
echo "Decompress the driver source tar ball:"
echo "	"$Drvfoulder
tar zxvf $Drvfoulder

Drvfoulder=`ls |grep -iv '.tar.gz'`
echo "$Drvfoulder"
cd  $Drvfoulder

################################################################################
#			If makd_drv exixt, execute it to select chip type
################################################################################
if [ -e ./make_drv ]; then
	./make_drv
fi

################################################################################
#                       make clean
################################################################################
echo "Authentication requested [root] for make clean:"
if [ "`uname -r |grep fc`" == " " ]; then
        sudo su -c "make clean"; Error=$?
else
        su -c "make clean"; Error=$?
fi

################################################################################
#			Compile the driver
################################################################################
echo "Authentication requested [root] for make driver:"
if [ "`uname -r |grep fc`" == " " ]; then
	sudo su -c make; Error=$?
else	
	su -c make; Error=$?
fi
################################################################################
#			Check whether or not the driver compilation is done
################################################################################
module=`ls |grep -i 'ko'`
echo "##################################################"
if [ "$Error" != 0 ];then
	echo "Compile make driver error: $Error"
	echo "Please check error Mesg"
	echo "##################################################"
	exit
else
	echo "Compile make driver ok!!"	
	echo "##################################################"
fi

if [ "`uname -r |grep fc`" == " " ]; then
	echo "Authentication requested [root] for install driver:"
	sudo su -c "make install"
	echo "Authentication requested [root] for remove driver:"
	sudo su -c "modprobe -r ${module%.*}"
	echo "Authentication requested [root] for insert driver:"
	sudo su -c "modprobe ${module%.*}"
else
	echo "Authentication requested [root] for install driver:"
	su -c "make install"
	echo "Authentication requested [root] for remove driver:"
	su -c "modprobe -r ${module%.*}"
	echo "Authentication requested [root] for insert driver:"
	su -c "modprobe ${module%.*}"
fi
echo "##################################################"
echo "The Setup Script is completed !"
echo "##################################################"
Modifié en dernier par jclaudej le ven. 17 avr. 2020 17:01, modifié 1 fois.
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

Retour lsusb

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~$ lsusb
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 005: ID 0bda:b812 Realtek Semiconductor Corp. 
Bus 001 Device 004: ID 04f9:0329 Brother Industries, Ltd 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 003: ID 046d:c52f Logitech, Inc. Unifying Receiver
Bus 003 Device 002: ID 045e:07f8 Microsoft Corp. Wired Keyboard 600 (model 1576)
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Pour installer le driver j'ai lancer la commande suivante
git clone https://github.com/dz0ny/rt8192cu
cd rtl8192CU/
make
sudo make install
sudo modprobe 8192cu
Toujours pas de Wifi :(
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

Malheureusement pour moi je ne m'en sort pas et comparé à TP-LINK c'est vraiment galère.
J'utilisai une clé USB WiFi TL-WN725N sans rien installé plug and play et j'ai acheté une autre clé pour avoir une meilleure portée.
Je ne suis pas un expert de la ligne de commande et malgré mes efforts :

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~$ iwconfig
enp2s0    no wireless extensions.

lo        no wireless extensions.

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~$ sudo lshw -C network 
[sudo] Mot de passe de jclaudej :         
  *-network                 
       description: Ethernet interface
       produit: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       fabriquant: Realtek Semiconductor Co., Ltd.
       identifiant matériel: 0
       information bus: pci@0000:02:00.0
       nom logique: enp2s0
       version: 06
       numéro de série: 1c:6f:65:bf:cb:de
       taille: 1Gbit/s
       capacité: 1Gbit/s
       bits: 64 bits
       horloge: 33MHz
       fonctionnalités: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8168e-2.fw ip=192.168.1.147 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
       ressources: irq:18 portE/S:de00(taille=256) mémoire:fdfff000-fdffffff mémoire:fdff8000-fdffbfff
Pas de trace de WiFi USB
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

Voila le script que j'essai d'installer

Code : Tout sélectionner

git clone https://github.com/lwfinger/rtlwifi_new/tree/master/rtl8192cu
cd rtl8192CU/
make
sudo make install
sudo modprobe 8192cu
Et voila ce que me retourne la console

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~$ git clone https://github.com/lwfinger/rtlwifi_new/tree/master/rtl8192cu
Clonage dans 'rtl8192cu'...
fatal: repository 'https://github.com/lwfinger/rtlwifi_new/tree/master/rtl8192cu/' not found
jclaudej@jclaudej-GA-MA770T-UD3:~$ cd rtl8192CU/
bash: cd: rtl8192CU/: Aucun fichier ou dossier de ce type
jclaudej@jclaudej-GA-MA770T-UD3:~$ make
make: *** Pas de cible spécifiée et aucun makefile n'a été trouvé. Arrêt.
jclaudej@jclaudej-GA-MA770T-UD3:~$ sudo make install
make: *** Aucune règle pour fabriquer la cible « install ». Arrêt.
jclaudej@jclaudej-GA-MA770T-UD3:~$ sudo modprobe 8192cu
modprobe: FATAL: Module 8192cu not found in directory /lib/modules/4.15.0-96-generic
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

OK, voila le résultat de ta commande (beaucoup d'invalid section)

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~/rtlwifi_new$ make 
make -C /lib/modules/4.15.0-96-generic/build M=/home/jclaudej/rtlwifi_new modules
make[1] : on entre dans le répertoire « /usr/src/linux-headers-4.15.0-96-generic »
  CC [M]  /home/jclaudej/rtlwifi_new/base.o
  CC [M]  /home/jclaudej/rtlwifi_new/cam.o
  CC [M]  /home/jclaudej/rtlwifi_new/core.o
  CC [M]  /home/jclaudej/rtlwifi_new/debug.o
  CC [M]  /home/jclaudej/rtlwifi_new/efuse.o
  CC [M]  /home/jclaudej/rtlwifi_new/ps.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rc.o
  CC [M]  /home/jclaudej/rtlwifi_new/regd.o
  CC [M]  /home/jclaudej/rtlwifi_new/stats.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtlwifi.o
  CC [M]  /home/jclaudej/rtlwifi_new/pci.o
symbolmap: la: invalid section
  LD [M]  /home/jclaudej/rtlwifi_new/rtl_pci.o
  CC [M]  /home/jclaudej/rtlwifi_new/usb.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl_usb.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/halbtc8192e2ant.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/halbtc8723b1ant.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/halbtc8723b2ant.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/halbtc8821a1ant.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/halbtc8821a2ant.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/halbtcoutsrc.o
  CC [M]  /home/jclaudej/rtlwifi_new/btcoexist/rtl_btc.o
  LD [M]  /home/jclaudej/rtlwifi_new/btcoexist/btcoexist.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/dm.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/phy.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/pwrseq.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/pwrseqcmd.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/rtl8188ee.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192c/main.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192c/dm_common.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192c/fw_common.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192c/phy_common.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192c/rtl8192c-common.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/dm.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/phy.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/rtl8192ce.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/dm.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/mac.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/phy.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/rtl8192cu.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/dm.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/hw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/phy.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192de/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192de/rtl8192de.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/dm.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/hw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/phy.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/pwrseq.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/pwrseqcmd.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/rtl8192ee.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/dm.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/phy.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8192se/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192se/rtl8192se.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/dm.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/hal_btc.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/hal_bt_coexist.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/phy.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/pwrseq.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/pwrseqcmd.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/rtl8723ae.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/dm.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/phy.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/pwrseq.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/pwrseqcmd.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723be/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8723be/rtl8723be.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723com/main.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723com/dm_common.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723com/fw_common.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8723com/phy_common.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8723com/rtl8723-common.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/dm.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/fw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/hw.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/led.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/phy.o
symbolmap: la: invalid section
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/pwrseq.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/pwrseqcmd.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/rf.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/sw.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/table.o
  CC [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/trx.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/rtl8821ae.o
  Building modules, stage 2.
  MODPOST 15 modules
  CC      /home/jclaudej/rtlwifi_new/btcoexist/btcoexist.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/btcoexist/btcoexist.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8188ee/rtl8188ee.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8188ee/rtl8188ee.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8192c/rtl8192c-common.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192c/rtl8192c-common.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8192ce/rtl8192ce.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192ce/rtl8192ce.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8192cu/rtl8192cu.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192cu/rtl8192cu.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8192de/rtl8192de.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192de/rtl8192de.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8192ee/rtl8192ee.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192ee/rtl8192ee.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8192se/rtl8192se.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8192se/rtl8192se.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8723ae/rtl8723ae.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8723ae/rtl8723ae.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8723be/rtl8723be.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8723be/rtl8723be.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8723com/rtl8723-common.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8723com/rtl8723-common.ko
  CC      /home/jclaudej/rtlwifi_new/rtl8821ae/rtl8821ae.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl8821ae/rtl8821ae.ko
  CC      /home/jclaudej/rtlwifi_new/rtl_pci.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl_pci.ko
  CC      /home/jclaudej/rtlwifi_new/rtl_usb.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtl_usb.ko
  CC      /home/jclaudej/rtlwifi_new/rtlwifi.mod.o
  LD [M]  /home/jclaudej/rtlwifi_new/rtlwifi.ko
make[1] : on quitte le répertoire « /usr/src/linux-headers-4.15.0-96-generic »
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

et :

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~/rtlwifi_new$ sudo make install rtl8192cu
make -C /lib/modules/4.15.0-96-generic/build M=/home/jclaudej/rtlwifi_new modules
make[1] : on entre dans le répertoire « /usr/src/linux-headers-4.15.0-96-generic »
  Building modules, stage 2.
  MODPOST 15 modules
make[1] : on quitte le répertoire « /usr/src/linux-headers-4.15.0-96-generic »
Making backups

Install rtlwifi SUCCESS
make: rien à faire pour « rtl8192cu ».
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
thyam
modérateur
Messages : 8775
Enregistré le : mar. 14 juil. 2015 10:33
Localisation : Lille - Hauts de France

Re: Installation clé USB WiFi EasyULT

Message par thyam »

'Soir,
jclaudej, les retours du terminal, c'est entre balises code " </> " pas " quote " ;)
pc principal : Hp pavilion dv6 - core i5 - 8go ram - DD 1 to - CG dual Intel HD graphics 3000 / Amd Radeon HD 7400m / OS : W$ 11
pc 2 : Dell e6420 - core i5 - 4go ram - DD 300 go - CG Intel HD graphics 3000 / OS : dual boot Linux Mint 22.2 XFCE - W$ 10
pc 3 : Asus M70V - core 2 Duo P8600 - 4go ram - CG Nvidia Geforce 9850M GT / OS : DD1 LMDE 7 Cinnamon / DD2 W$ 11

« Seul, on va plus vite... Ensemble, on va plus loin ;) »
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

cyrille a écrit : ven. 17 avr. 2020 18:05 ? pour voir les modules compilés

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~$ ls
 Bureau                     Public                 test_driver
 Documents                  rt8192cu               Vidéos
 dwhelper                   rtl8192cu-fixes       'VirtualBox VMs'
 Images                     rtl8821CU              wifi
 maison_saint_palais.sh3d   rtlwifi_new            wificheck
'Mes Itinéraires'           sejour_cuisine7.sh3d   wificheck.log
 Modèles                    Téléchargements        winehq.key
 Musique                    testdisk.log
Désolé pour la réponse tardive ;)
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Avatar du membre
jclaudej
Messages : 247
Enregistré le : ven. 26 août 2016 11:44
Localisation : Charente Maritime

Re: Installation clé USB WiFi EasyULT

Message par jclaudej »

Désolé

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:/lib/firmware/rtlwifi$ ls
Realtek-Firmware-License.txt  rtl8192eu_ap_wowlan.bin  rtl8723bs_wowlan.bin
rtl8188efw.bin                rtl8192eu_nic.bin        rtl8723bu_ap_wowlan.bin
rtl8188eufw.bin               rtl8192eu_wowlan.bin     rtl8723bu_nic.bin
rtl8192cfw.bin                rtl8192sefw.bin          rtl8723bu_wowlan.bin
rtl8192cfwU_B.bin             rtl8192sefw.old.bin      rtl8723defw.bin
rtl8192cfwU.bin               rtl8712u.bin             rtl8723fw_B.bin
rtl8192cufw_A.bin             rtl8723aufw_A.bin        rtl8723fw.bin
rtl8192cufw_B.bin             rtl8723aufw_B.bin        rtl8812aefw.bin
rtl8192cufw.bin               rtl8723aufw_B_NoBT.bin   rtl8812aefw_wowlan.bin
rtl8192cufw_TMSC.bin          rtl8723befw_36.bin       rtl8821aefw_29.bin
rtl8192defw_12.bin            rtl8723befw.bin          rtl8821aefw.bin
rtl8192defw.bin               rtl8723bs_ap_wowlan.bin  rtl8821aefw_wowlan.bin
rtl8192eefw.bin               rtl8723bs_bt.bin         rtl8822befw.bin
rtl8192eefw_new.bin           rtl8723bs_nic.bin

Code : Tout sélectionner

jclaudej@jclaudej-GA-MA770T-UD3:~$ dmesg | tail -20
[   22.083644] vboxdrv: Successfully loaded version 6.1.6 (interface 0x002d0001)
[   22.240946] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input15
[   22.241038] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input16
[   22.293856] VBoxNetFlt: Successfully started.
[   22.295554] VBoxNetAdp: Successfully started.
[   22.340874] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[   22.510777] r8169 0000:02:00.0 enp2s0: link down
[   22.510779] r8169 0000:02:00.0 enp2s0: link down
[   22.510846] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[   22.833548] resource sanity check: requesting [mem 0x000c0000-0x000fffff], which spans more than PCI Bus 0000:00 [mem 0x000c0000-0x000dffff window]
[   22.833828] caller os_map_kernel_space.part.8+0x10b/0x150 [nvidia] mapping multiple BARs
[   24.384058] snd_hda_codec_hdmi hdaudioC1D0: HDMI: audio coding type 0 not expected
[   24.582020] r8169 0000:02:00.0 enp2s0: link up
[   24.582028] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
[   26.964510] usblp1: removed
[   26.972068] usblp 1-4:1.0: usblp1: USB Bidirectional printer dev 4 if 0 alt 0 proto 2 vid 0x04F9 pid 0x0329
[  393.200206] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[24683.952134] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[24683.955215] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[24683.976281] usbcore: registered new interface driver rtl8192cu
La dernière ligne "[24683.976281] usbcore: registered new interface driver rtl8192cu" semble vouloir dire que le driver rtl8192cu est bien chargé.
Malgré cela toujours pas d'accès en WiFi
Je ne sais plus quoi faire:(
Modifié en dernier par jclaudej le ven. 17 avr. 2020 22:53, modifié 1 fois.
Pas besoin de changer de machine à chaque évolution de l'OS, pas de Virus, de la gratuité, et un monde ou l'union fait la force et ou la convivialité n'est pas un vain mot.
Linux est aujourd'hui accessible à tous ;)
OS : Linux Mint 22.2 Cinnamon Kernel: 6.14.0-35-generic
Carte mère => MSI B460M PRO / Processeur => Intel Core i3-10100 / RAM => Corsair Vengeance 16 Go DDR4 2666 MHz CL16 / DD : SSD 250 Go
Répondre