Clé wifi sur Ubuntu

Profil bloqué -  
 Profil bloqué -
Bonjour,

J'ai installé Ubuntu hier.
Je souhaite à présent me connecter à ma live box qui est sur un autre ordinateur qui lui est sous XP
Je possède une clé wifi dkink DWA-110, mais elle n'est pas reconnue, et impossible à faire fonctionner même avec ndiswrapper. (j'ai lu de nombreux posts à ce sujet)

Comment réussir à me connecter et par quel moyen ?

Merci pour votre aide, je débute sur linux xomme vous pouvez vous en rendre compte !
A voir également:

2 réponses

laprune04 Messages postés 509 Date d'inscription   Statut Membre Dernière intervention   46
 
Il te faut installer RT73, mais pas le RT73 proposé dans tes dépôts de paquets:
J'ai eu un souci avec un dongle USB dlink, et je l'ai règlé en téléchargeant le pilote propriétaire (Dlink)
donc:
- tu télécharges le pilote propriétaire
http://ftp.dlink.fr/...
- tu décompresses ce fichier zip dans un répertoire de ton choix
- tu lis et suis les instructions dans le fichier README

voilà... ;)

pour info:
http://www.dlink.fr/cs/Satellite?c=TechSupport_C&childpagename=DLinkEurope-FR%2FDLTechProduct&cid=1197367083672&p=1197318961474&packedargs=locale%3D1195806373344&pagename=DLinkEurope-FR%2FDLWrapper
0
Profil bloqué
 
Salut,

merci beaucoup pour ta réponse,
J'ai bien télécharger le driver
au rique de passer pour un réel incapable, je t'avoue ne pas comprendre les instructions données dans le fichier texte (cc ci dessous) afin de compiler

Est ce une manipulation longue et compliquée ?

merci encore

RT73 a/b/g STA driver interface with WPA Supplicant
Ralink Tech Corp.
*****************************************************************

Q0. Contents:
-----------------------
defconfig
driver_ralink.c
driver_ralink.h
drivers.c
Makefile
README
wpa_supplicant_example.conf


Q1. How to compile
-----------------------
The driver interface was developed on wpa_supplicant v.0.4.7.
You can install the WPA Supplicant Free Edition development from website.

https://hostap.epitest.fi/wpa_supplicant/

After download the package then go to wpa_supplicant directory
Follow the steps..

1.) Copy file "driver_ralink.c" and "driver_ralink.h" we provide to wpa_supplicant directory.
1.1.) Copy files driver.h, events.c, wpa_supplicant.c, wpa_supplicant_i.h we provide to wpa_supplicant directory.
2.) Set driver_ralink configuration as y in the "defconfig" or update to the "defconfig" we provide::

# Driver interface for Ralink rt73 driver
CONFIG_DRIVER_RALINK=y

3.) Add wpa_driver_ralink_ops() into wpa_supplicant_drivers() in file "drivers.c"
or update to the file "drivers.c" we provide::

#ifdef CONFIG_DRIVER_RALINK
extern struct wpa_driver_ops wpa_driver_ralink_ops; /* driver_ralink.c */
#endif /* CONFIG_DRIVER_RALINK */
:
:
struct wpa_driver_ops *wpa_supplicant_drivers[] =
{
#ifdef CONFIG_DRIVER_RALINK
&wpa_driver_ralink_ops,
#endif /* CONFIG_DRIVER_RALINK */
}

4.) Edit the "Makefile" or update to the "Makefile" we provide::

ifdef CONFIG_DRIVER_RALINK
CFLAGS += -DCONFIG_DRIVER_RALINK
OBJS_d += driver_ralink.o
endif

5.) type $cp defconfig .config
6.) Compile the source code using 'make' command.


Q2. How to start wpa_supplicant
--------------------------------
1.) First start rt73 driver.

2.) Edit/Create a configuration file of wpa_supplicant.
-a) Set your work directory of wpa_supplicant for sockets
ctrl_interface = YOUR_WORK_PATH

-b) Set YOUR_OPENSC_PATH if need be. (e.g. generate certificates)
opensc_engine_path =/YOUR_OPENSC_PATH/engine_opensc.so
pkcs11_engine_path =/YOUR_OPENSC_PATH/engine_pkcs11.so
pkcs11_module_path =/YOUR_OPENSC_PATH/opensc-pkcs11.so

-c) Set network configuration. (e.g. WPA/EAP-TTLS)

*** refer to wpa_supplicant.conf in details or related documents ***

3.) Manually start wpa_supplicant,
type $./wpa_supplicant -c your_config_file -i rausb0 -D ralink

turn on debug mode,
type $./wpa_supplicant -c your_config_file -i rausb0 -D ralink -d

Notes:
1.) wpa_supplicant 0.4.7 can not compiler with Redhat Enterprise Linux 5
kernel 2.6.18-8.el5xen. Update Redhat Enterprise Linux 5 kernel to
current version (kernel-xen-2.6.18-8.1.15.el5xen) can solve it.
0