Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Forum Archive > Absolute Beginner Talk
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.

Absolute Beginner Talk
The perfect starting place to find out more about computers, Linux and Ubuntu.

 
Thread Tools Display Modes
Old September 5th, 2007   #1
Ru$$i@N
Just Give Me the Beans!
 
Ru$$i@N's Avatar
 
Join Date: Nov 2006
Location: NC
My beans are hidden!
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Ru$$i@N
Averatec 2300 Series Wireless problem

Hi everyone.

I've recently bought an Averatec 2300 Series laptop, and everything seems to work fine, except for the built-in wireless card.

I've searched the forum over and over again, but couldn't find a solution. The "Averatec Guide" didn't help either.

The thing is, I used to be able to "see" wifi networks (before I messed with drivers and such), but I couldn't connect to them. WEP, WPA, no protection at all - no connection.

The default driver that Ubuntu was using was rt73usb. I'm running 7.04 x64.

ANY help is appreciated.
__________________
Desktop: Compaq Presario SR1920NX, Athlon 64 3500+ 2.2GHz, 250GB SATA, 2GB DDR, Ubuntu 9.04 32-bit.
Laptop: Dell Mini 9, Atom 1.6GHz, 8GB SSD, 1GB, Ubuntu Netbook Remix 9.04
Ru$$i@N is offline   Reply With Quote
Old September 5th, 2007   #2
SpiritIsReality
Way Too Much Ubuntu
 
SpiritIsReality's Avatar
 
Join Date: Apr 2006
Location: buffalostoneluser
My beans are hidden!
Ubuntu 7.10 Gutsy Gibbon
Re: Averatec 2300 Series Wireless problem

howdy

until someone who knows shows up, you could maybe post here,
http://ubuntuforums.org/showthread.php?t=538357
seems to be on the right track.
edit:another thread here
http://ubuntuforums.org/showthread.php?t=436673

some searches used to find the above post, you might find something
more here, linuxquestions.org...
http://www.google.ca/search?hl=en&q=...e+Search&meta=
http://www.google.ca/search?hl=en&q=...e+Search&meta=
http://www.google.com/custom?hl=en&c...%3Ay8jmiivon3o

my experience with laptops and linux is limited to a toshiba satellite 2140xcds
and a blacklist of the kernel drivers and using ndiswrapper got the linksys
wireless card working for it.
ndiswrapper home here, and article at wikipedia.org
http://www.google.ca/search?hl=en&q=...e+Search&meta=
edit: blacklist
https://help.ubuntu.com/community/?a...ullsearch=Text

trails

Last edited by SpiritIsReality; September 5th, 2007 at 10:12 AM..
SpiritIsReality is offline   Reply With Quote
Old September 5th, 2007   #3
Ru$$i@N
Just Give Me the Beans!
 
Ru$$i@N's Avatar
 
Join Date: Nov 2006
Location: NC
My beans are hidden!
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Ru$$i@N
Re: Averatec 2300 Series Wireless problem

Thanks, it seems like that one guy got his wireless working (somewhat) through ndiswrapper. But I still don't understand how to get mine working.

Thanks for the reply.
__________________
Desktop: Compaq Presario SR1920NX, Athlon 64 3500+ 2.2GHz, 250GB SATA, 2GB DDR, Ubuntu 9.04 32-bit.
Laptop: Dell Mini 9, Atom 1.6GHz, 8GB SSD, 1GB, Ubuntu Netbook Remix 9.04
Ru$$i@N is offline   Reply With Quote
Old September 5th, 2007   #4
Ru$$i@N
Just Give Me the Beans!
 
Ru$$i@N's Avatar
 
Join Date: Nov 2006
Location: NC
My beans are hidden!
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Ru$$i@N
Re: Averatec 2300 Series Wireless problem

I tried the Averatec 2370/2300 Guide again, AND GOT THE UNPROTECTED WIRELESS WORKING!!! Don't know about WEP and WPA yet.

So here's how I got it:

Well, first, I'm using Ubuntu 7.04 Feisty Fawn x64. I have Averatec 2300 series, AMD Turion 64 X2, built-in wireless (original), i think the chipset is rt73 (not sure).

THANKS to dragonfyre13 and his guide!!! dragonfyre13, you're the man.
All credits to dragonfyre13, i just changed the driver, and it worked for me.

Step 1 - Disable Competing Driver

You need to blacklist the existing rt73 module which is not working:
Code:
sudo gedit /etc/modprobe.d/blacklist
add the following three lines to the end of the file:
Quote:
# Added when rt73 module was installed
blacklist rt73usb
blacklist rt2570
Save the file. The blacklisted module will not be loaded from now on.

Step 2 - Prepare the Linux build environment

You will need to install the essential build files to compile the driver:
Code:
sudo apt-get update  
sudo apt-get install build-essential
Install the correct headers for your version of Ubuntu: (don't worry if it tells you that yours are up to date.)
Code:
sudo apt-get install linux-headers-`uname -r`  
sudo ln -s /usr/src/linux-`uname -r` /lib/modules/`uname -r`/build
Step 3 - Download the rt73 driver

********* here's what I've changed a bit, I changed RT73_Linux_STA_Drv1.0.3.6.tar.gz to RT73_Linux_STA_Drv1.0.4.0.tar.gz
Code:
wget http://www.ralinktech.com.tw/data/RT73_Linux_STA_Drv1.0.4.0.tar.gz
Step 4 - Extract and prepare the archive

Using tar extract the archived driver and change directories into the build area.
Code:
tar xvzf RT73_Linux_STA_Drv1.0.4.0.tar.gz  
cd RT73_Linux_STA_Drv1.0.4.0/Module
The permissions are not correct on the files, so change them to 755 using chmod:
Code:
chmod -R 775 *
Copy the Makefile.6 file into the Makefile to prepare for a 2.6 Linux kernel build:
Code:
cp Makefile.6 Makefile
Step 5 - Create and install the driver using make

Make the driver with the make command:
Code:
make clean
make
This will take several minutes. There will be warnings, but there can be no errors or the build will not complete.

Using sudo make install we install the complete driver into the "extra" directory of your kernel modules:
Code:
sudo make install
Verify that the driver was installed correctly using the list short command:
Code:
ls /lib/modules/`uname -r`/extra
You should see the file rt73.ko

Create the directories necessary for storing the firmware for the driver:
Code:
sudo mkdir /etc/Wireless 
sudo mkdir /etc/Wireless/RT73STA
Copy the rt73.bin file into the newly created firmware directory:
Code:
sudo cp rt73.bin /etc/Wireless/RT73STA
Now, create the new rt73sta.dat file. No, you are not copying over the one in the source directory. (This solves the issues I was having with WEP Keys)
Code:
sudo gedit /etc/Wireless/RT73STA/rt73sta.dat
Now, paste the following into the open window:
Quote:
[Default]
CountryRegion=0
CountryRegionABand=7
WirelessMode=0
NetworkType=Infra
Step 6 - Configure the network settings for the rt73 device

Using the Text Editor (gedit) we need to modify the interfaces file to get the device started correctly:
Code:
sudo gedit /etc/network/interfaces
And put this in:
Quote:
auto rausb0
iface rausb0 inet dhcp
********* I also did this:
Quote:
#auto wlan0
#iface wlan0 inet dhcp
Don't know if I was supposed to
do that, or even if it does anything. ***********

Step 7 - Reboot your system

Do a system reboot.

Step 8 - Testing the device

In a terminal window run iwconfig and you should see the device as rausb0.
Code:
iwconfig
Your output should contain a line that has a record for the device rausb0, similar to this one:
Quote:
rausb0 RT73 WLAN ESSID:"MY_ESSID"
Mode:Managed Frequency=1 MHz Access Point: 00:08:74:02:01:FC
Bit Rate=54 Mb/s
RTS thr: off Fragment thr: off
Link Quality=100/100 Signal level:-28 dBm Noise level:-79 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
In this example we know that the access point with the ESSID "MY_ESSID" has been found, because we can see that the "Access Point:" field has been filled in with the access point's MAC identifier. Don't worry if this isn't in there yet, because it means it didn't find an unsecured network to connect to.

Note that the Frequency may be listed as 1 MHz, but this is actually the channel number, this is a feature of the present driver implementation.

If your network essid isn't showing up, skip to step 10, and come back. Run iwconfig again, and it should show the correct essid, and an associated access point.

Run a "netstat -rn" command, and you should see that the correct routing is setup:
Code:
netstat -rn
The output should be similar to this example:
Quote:
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 rausb0
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 rausb0
In this case 192.168.1.1 is the gateway address to an Internet router.

Step 9 - Controlling the device

You can now control the device with ifup and ifdown:
Code:
sudo ifdown rausb0 
sudo ifup rausb0
Step 10 - Using a Graphical Tool To Manage The Network

****** The "Connection Manager" is now "Wicd". You can easily find the information you need at http://wicd.sourceforge.net/ *********

PS. So far I'm still using network manager, and my wireless card shows up as Wired Network (Unknown USB Vendor Specific Interface)....... but it works with unprotected wireless networks, takes a minute to connect though...
__________________
Desktop: Compaq Presario SR1920NX, Athlon 64 3500+ 2.2GHz, 250GB SATA, 2GB DDR, Ubuntu 9.04 32-bit.
Laptop: Dell Mini 9, Atom 1.6GHz, 8GB SSD, 1GB, Ubuntu Netbook Remix 9.04

Last edited by Ru$$i@N; September 5th, 2007 at 12:27 PM..
Ru$$i@N is offline   Reply With Quote
Old September 5th, 2007   #5
SpiritIsReality
Way Too Much Ubuntu
 
SpiritIsReality's Avatar
 
Join Date: Apr 2006
Location: buffalostoneluser
My beans are hidden!
Ubuntu 7.10 Gutsy Gibbon
Re: Averatec 2300 Series Wireless problem

howdy

good to see.
maybe check if you could post in tips&tutorials, and maybe the wiki
http://ubuntuforums.org/forumdisplay.php?f=100
http://ubuntuforums.org/showthread.php?t=81999
http://ubuntuforums.org/showthread.php?t=316820

trails
SpiritIsReality is offline   Reply With Quote
Old September 8th, 2007   #6
borahshadow
Way Too Much Ubuntu
 
Join Date: Apr 2007
Beans: 225
Re: Averatec 2300 Series Wireless problem

I just booted into a gutsy tribe5 live cd and I could connect to my wep network with NO tweaking
borahshadow is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:55 PM.


vBulletin ©2000 - 2010, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. bilberry