Installing Edimax EW-7128G Wireless Lan PCI Adapter on OpenSUSE 10.3

As you saw in my previous post, I have this wireless card, so let see what I did to have the wireless connection working on my OpenSUSE box.

The card is coming with some drivers for linux, on the box is mentioned that it has support for Mac OS, Windows x64 Edition, Linux Debian, Fedora, Redhat and Suse.. I was not able to install their drivers on my computer, I have the feeling that something is wrong with their default drivers and I decided to use the drivers which you can download here.

“rt2×00 Project” is a development effort to provide free, stable and feature rich Linux drivers for wireless 802.11b/g/i cards based on the following Ralink chipsets: rt2400, rt2500, rt2570, rt61 and rt73.

So, the steps are here:

1. prepare the kernel first:

# cd /usr/src/linux
# make mrproper
# make cloneconfig
# make modules_prepare

2. Unpack the archive which you just download it somewhere on your hdd:

# tar -zxvf rt61-cvs-daily.tar.gz

3. change the current directory:

# cd rt61-cvs-2008032308/Module

4. compile and install the module:

# make
# make install

Now if everything is fine, you can see if you have the drivers installed:

# ifconfig -a
# iwconfig

lo no wireless extensions.
eth0 no wireless extensions.
vmnet1 no wireless extensions.
vmnet8 no wireless extensions.

For the last two commands you have to look after wlan0 or ra0 device. If you still don’t have them (like in my case) try:

# modprobe rt61

If you run again the command iwconfig you will see now the device:

# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
vmnet1 no wireless extensions.
vmnet8 no wireless extensions.

wlan0 RT61 Wireless ESSID:”" Nickname:”"
Mode:Managed Frequency:2.412 GHz Bit Rate=54 Mb/s
RTS thr:off Fragment thr:off
Encryption key:off
Link Quality=0/100 Signal level:-121 dBm Noise level:-143 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
Now you are ready to configure your wi-fi card with yast, so type yast2 at the command prompt, and configure it.

At this point the card will work only (in my case it did) if I disable the SECURITY on my router and if I will set NO-Encryption for Autentification Mode in Yast. I don’t like this, I want to use WPA, so here is a nice and small script which will do the work:

#!/bin/sh
#
# Script to configure Edimax EW-7128G Wireless Lan PCI Adapter
# to work with WPA mode

iwconfig wlan0 mode managed
iwpriv wlan0 set AuthMode=WPAPSK
iwpriv wlan0 set EncrypType="TKIP"
iwconfig wlan0 essid "YOUR_ESSID" # change here
iwpriv wlan0 set WPAPSK="YOUR_PASSPHRASE" # change here

Now everything is working, I hope that this small howto is useful also for you, so please let a comment if it is working or if you have some problems with it.

If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

Comments

[...] Suse. I was not able to install their drivers on my computer, I have the feeling that something ihttp://www.vioan.ro/wp/2008/03/23/installing-edimax-ew-7128g-wireless-lan-pci-adapter-on-opensuse-10…DistroWatch.com: Red Hat Enterprise LinuxRed Hat solutions combine Red Hat Linux, developer and [...]

[...] Suse. I was not able to install their drivers on my computer, I have the feeling that something ihttp://www.vioan.ro/wp/2008/03/23/installing-edimax-ew-7128g-wireless-lan-pci-adapter-on-opensuse-10…Download Skype for Linux SuSE, Skype for Linux SuSE 1.2 DownloadFree Skype for Linux suse Download, [...]

Worked out great!! Thanks for the installation guide. With your help, I managed to get my Edimax 7128G working on a fresh install of opensuse 10.2. (yes, I need to upgrade ;)

Leave a comment

(required)

(required)