web-dev-qa-db-fra.com

Comment installer le chipset wifi AR5523 dans Ubuntu 12.04?

Mon appareil wifi usb est OvisLink Evo-W108USB

lsusb

Bus 001 Device 008: ID 0cf3:0002 Atheros Communications, Inc. AR5523 (no firmware)

J'ai essayé d'installer le rpm de manufacturé après la conversion en fichier .deb mais sans succès.

1
Joe

De ici

Installez ce package, selon la version d'ubuntu que vous pouvez avoir:

12.04 (precise pangolin): https://launchpad.net/~medigeek/+archive/experimental/+files/ar5523-source_0%7Eslh.12%7Eppap1_all.deb

11.10 (oneiric ocelot): https://launchpad.net/~medigeek/+archive/experimental/+files/ar5523-source_0%7Eslh.12%7Eppao1_all.deb

11.04 (natty narwhal): https://launchpad.net/~medigeek/+archive/experimental/+files/ar5523-source_0%7Eslh.12%7Eppan1_all.deb

Exécutez les commandes suivantes, copiez-collez-les une par une:

Sudo apt-get update
Sudo apt-get -f install
Sudo apt-get upgrade
Sudo apt-get install build-essential linux-headers-generic module-assistant
Sudo m-a a-i ar5523-source
wget http://verein.lst.de/~hch/ar5523.tgz
tar xvf ar5523.tgz ar5523/uath-ar5523.bin --strip 1
Sudo mv uath-ar5523.bin /lib/firmware
1
pylover

Veuillez ouvrir un terminal et faire:

Sudo apt-get install linux-headers-generic build-essential Subversion quilt deb-helper module-assistant
svn co svn://svn.berlios.de/fullstory/ar5523/trunk/ ar5523
wget http://verein.lst.de/~hch/ar5523.tgz
tar xf ar5523.tgz ar5523/uath-ar5523.bin --strip 1
cd ar5523
export QUILT_PATCHES="debian/patches"
quilt delete kcompat-3.5 && quilt delete kcompat-2.6.34
dpkg-buildpackage -us -uc
Sudo su
dpkg -i ../ar5523-source*deb
m-a a-i ar5523

Installez maintenant le firmware:

mv ../uath-ar5523.bin /lib/firmware
modprobe ar5523
exit

Votre réseau sans fil devrait maintenant fonctionner.

0
chili555