web-dev-qa-db-fra.com

Comment installer Asus USB-N14 Adapter?

Je suis très nouveau sur Ubuntu et je ne peux pas installer le pilote d’adaptateur sans fil Asus après avoir essayé d’appliquer quelques solutions comme celle-ci: https://forum.ubuntu-tr.net/index.php?topic=43087.

Voici le pilote pour Asus USB-N14 Wireless-N300:

http://dlcdnet.asus.com/pub/ASUS/wireless/USB-N14/DR_USB_261420140102_Linux.Zip

Merci pour l'aide

Modifier:

artes@ArTeS:~$ lsusb
Bus 002 Device 003: ID 0b05:17e8 ASUSTek Computer, Inc. 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 0c45:63ea Microdia 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 005: ID 413c:8156 Dell Computer Corp. Wireless 370 Bluetooth Mini-card
Bus 003 Device 004: ID 413c:8158 Dell Computer Corp. Integrated Touchpad / Trackstick
Bus 003 Device 003: ID 413c:8157 Dell Computer Corp. Integrated Keyboard
Bus 003 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
artes@ArTeS:~$ 
artes@ArTeS:~$ uname -r
3.13.0-49-generic
2
rLyLmZ

S'il vous plaît télécharger ce fichier sur votre bureau. Cliquez dessus avec le bouton droit et sélectionnez "Extraire ici". Maintenant, obtenez une connexion Internet temporaire via Ethernet ou tout autre moyen et ouvrez un terminal:

Sudo apt-get update
Sudo apt-get install build-essential linux-headers-generic
cd ~/Desktop/backports-3.18.1-1
make defconfig-wifi
make
Sudo make install

C'est un processus assez long, alors s'il vous plaît soyez patient. Redémarrez et dites-nous si votre réseau sans fil fonctionne.

Il y a une étape supplémentaire. Vous avez compilé le pilote pour votre noyau en cours d'exécution uniquement. Lorsque Update Manager installe une version ultérieure du noyau, également appelée linux-image, après le redémarrage demandé, vous devez recompiler:

cd ~/Desktop/backports-3.18.1-1
make clean
make defconfig-wifi
make
Sudo make install

Redémarrez à nouveau et votre réseau sans fil fonctionnera à nouveau. Veuillez conserver le fichier et ces instructions pour cette période.

2
chili555