How do I install the Ralink RT3070 wireless driver?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I bought an AZTECH WL562USB wireless adapter and am stuck trying to install the driver.
The driver file I downloaded is a BZ2, called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
How can I install the driver from this bz2 file?
wireless drivers kernel compiling
add a comment |
I bought an AZTECH WL562USB wireless adapter and am stuck trying to install the driver.
The driver file I downloaded is a BZ2, called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
How can I install the driver from this bz2 file?
wireless drivers kernel compiling
add a comment |
I bought an AZTECH WL562USB wireless adapter and am stuck trying to install the driver.
The driver file I downloaded is a BZ2, called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
How can I install the driver from this bz2 file?
wireless drivers kernel compiling
I bought an AZTECH WL562USB wireless adapter and am stuck trying to install the driver.
The driver file I downloaded is a BZ2, called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
How can I install the driver from this bz2 file?
wireless drivers kernel compiling
wireless drivers kernel compiling
edited Nov 6 '17 at 10:55
Zanna
51.5k13141244
51.5k13141244
asked Jun 9 '12 at 23:40
user69589user69589
21112
21112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I found this workaround that worked for me:
This is how I got my RT5370 usb wifi adapter installed and working on CB2.
download driver archive
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2 .5.0.3_DPO.bz2 (RT8070/RT3070/RT3370/RT5370/RT5372 USB 03/28/2012 2.5.0.3
unpack the archive and navigate into the top level directory just extracted:
tar jxvf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
modify the following code in
os/linux/config.mk
as below:
HAS_WPA_SUPPLICANT=y
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
WFLAGS += -DCONFIG_STA_SUPPORT
to quieten down the debugging modify
sta/sta-cfg.c
:
remove "#ifdef DBG" on line 4095
remove "endif /* DBG */" on line 4693
to change the name from ra0 to wlan0 modify
include/rtmp_def.h
and changera
towlan
in the following lines:
#define INF_MAIN_DEV_NAME "ra"
#define INF_MBSSID_DEV_NAME "ra"
make and install the modified driver
make
sudo make install
sudo modprobe rt5370sta
reboot and check with
lsusb
lsmod
andifconfig
to make sure all is working as required in the operating system.
The CB2 setup program didn't work for me but the xbmc network manager addon worked perfectly so I downloaded and use that rather than doing it all via the operating system.
I hope this helps someone else trying to get an RT5370 wifi adapter up and running.
Source
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
add a comment |
How to download, build and install the RT3070 driver
Your adapter has a Ralink RT3070 chipset. You can download the official Linux drivers from this site.
We'll suppose the driver has been downloaded to your Downloads folder and is called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
. Open a terminal withCtrl-Alt-T
, and type or paste the following:
sudo apt-get install linux-headers-$(uname -r) build-essential
cd Downloads
tar -xjf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
sudo make && sudo make install
make clean
cd ..
rm -rf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
Reboot, and hopefully your wireless connection will appear!
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
add a comment |
protected by Community♦ Aug 10 '13 at 4:06
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found this workaround that worked for me:
This is how I got my RT5370 usb wifi adapter installed and working on CB2.
download driver archive
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2 .5.0.3_DPO.bz2 (RT8070/RT3070/RT3370/RT5370/RT5372 USB 03/28/2012 2.5.0.3
unpack the archive and navigate into the top level directory just extracted:
tar jxvf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
modify the following code in
os/linux/config.mk
as below:
HAS_WPA_SUPPLICANT=y
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
WFLAGS += -DCONFIG_STA_SUPPORT
to quieten down the debugging modify
sta/sta-cfg.c
:
remove "#ifdef DBG" on line 4095
remove "endif /* DBG */" on line 4693
to change the name from ra0 to wlan0 modify
include/rtmp_def.h
and changera
towlan
in the following lines:
#define INF_MAIN_DEV_NAME "ra"
#define INF_MBSSID_DEV_NAME "ra"
make and install the modified driver
make
sudo make install
sudo modprobe rt5370sta
reboot and check with
lsusb
lsmod
andifconfig
to make sure all is working as required in the operating system.
The CB2 setup program didn't work for me but the xbmc network manager addon worked perfectly so I downloaded and use that rather than doing it all via the operating system.
I hope this helps someone else trying to get an RT5370 wifi adapter up and running.
Source
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
add a comment |
I found this workaround that worked for me:
This is how I got my RT5370 usb wifi adapter installed and working on CB2.
download driver archive
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2 .5.0.3_DPO.bz2 (RT8070/RT3070/RT3370/RT5370/RT5372 USB 03/28/2012 2.5.0.3
unpack the archive and navigate into the top level directory just extracted:
tar jxvf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
modify the following code in
os/linux/config.mk
as below:
HAS_WPA_SUPPLICANT=y
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
WFLAGS += -DCONFIG_STA_SUPPORT
to quieten down the debugging modify
sta/sta-cfg.c
:
remove "#ifdef DBG" on line 4095
remove "endif /* DBG */" on line 4693
to change the name from ra0 to wlan0 modify
include/rtmp_def.h
and changera
towlan
in the following lines:
#define INF_MAIN_DEV_NAME "ra"
#define INF_MBSSID_DEV_NAME "ra"
make and install the modified driver
make
sudo make install
sudo modprobe rt5370sta
reboot and check with
lsusb
lsmod
andifconfig
to make sure all is working as required in the operating system.
The CB2 setup program didn't work for me but the xbmc network manager addon worked perfectly so I downloaded and use that rather than doing it all via the operating system.
I hope this helps someone else trying to get an RT5370 wifi adapter up and running.
Source
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
add a comment |
I found this workaround that worked for me:
This is how I got my RT5370 usb wifi adapter installed and working on CB2.
download driver archive
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2 .5.0.3_DPO.bz2 (RT8070/RT3070/RT3370/RT5370/RT5372 USB 03/28/2012 2.5.0.3
unpack the archive and navigate into the top level directory just extracted:
tar jxvf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
modify the following code in
os/linux/config.mk
as below:
HAS_WPA_SUPPLICANT=y
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
WFLAGS += -DCONFIG_STA_SUPPORT
to quieten down the debugging modify
sta/sta-cfg.c
:
remove "#ifdef DBG" on line 4095
remove "endif /* DBG */" on line 4693
to change the name from ra0 to wlan0 modify
include/rtmp_def.h
and changera
towlan
in the following lines:
#define INF_MAIN_DEV_NAME "ra"
#define INF_MBSSID_DEV_NAME "ra"
make and install the modified driver
make
sudo make install
sudo modprobe rt5370sta
reboot and check with
lsusb
lsmod
andifconfig
to make sure all is working as required in the operating system.
The CB2 setup program didn't work for me but the xbmc network manager addon worked perfectly so I downloaded and use that rather than doing it all via the operating system.
I hope this helps someone else trying to get an RT5370 wifi adapter up and running.
Source
I found this workaround that worked for me:
This is how I got my RT5370 usb wifi adapter installed and working on CB2.
download driver archive
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2 .5.0.3_DPO.bz2 (RT8070/RT3070/RT3370/RT5370/RT5372 USB 03/28/2012 2.5.0.3
unpack the archive and navigate into the top level directory just extracted:
tar jxvf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
modify the following code in
os/linux/config.mk
as below:
HAS_WPA_SUPPLICANT=y
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
WFLAGS += -DCONFIG_STA_SUPPORT
to quieten down the debugging modify
sta/sta-cfg.c
:
remove "#ifdef DBG" on line 4095
remove "endif /* DBG */" on line 4693
to change the name from ra0 to wlan0 modify
include/rtmp_def.h
and changera
towlan
in the following lines:
#define INF_MAIN_DEV_NAME "ra"
#define INF_MBSSID_DEV_NAME "ra"
make and install the modified driver
make
sudo make install
sudo modprobe rt5370sta
reboot and check with
lsusb
lsmod
andifconfig
to make sure all is working as required in the operating system.
The CB2 setup program didn't work for me but the xbmc network manager addon worked perfectly so I downloaded and use that rather than doing it all via the operating system.
I hope this helps someone else trying to get an RT5370 wifi adapter up and running.
Source
edited Nov 6 '17 at 10:59
Zanna
51.5k13141244
51.5k13141244
answered Aug 2 '13 at 17:34
SilverSkySilverSky
312
312
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
add a comment |
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
This solution probably worked in Linux 2.x, but it fails to compile in Linux 4.15 (Ubuntu 18.04). The source code in the linked archive is outdated.
– naXa
Jun 21 '18 at 19:45
add a comment |
How to download, build and install the RT3070 driver
Your adapter has a Ralink RT3070 chipset. You can download the official Linux drivers from this site.
We'll suppose the driver has been downloaded to your Downloads folder and is called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
. Open a terminal withCtrl-Alt-T
, and type or paste the following:
sudo apt-get install linux-headers-$(uname -r) build-essential
cd Downloads
tar -xjf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
sudo make && sudo make install
make clean
cd ..
rm -rf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
Reboot, and hopefully your wireless connection will appear!
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
add a comment |
How to download, build and install the RT3070 driver
Your adapter has a Ralink RT3070 chipset. You can download the official Linux drivers from this site.
We'll suppose the driver has been downloaded to your Downloads folder and is called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
. Open a terminal withCtrl-Alt-T
, and type or paste the following:
sudo apt-get install linux-headers-$(uname -r) build-essential
cd Downloads
tar -xjf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
sudo make && sudo make install
make clean
cd ..
rm -rf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
Reboot, and hopefully your wireless connection will appear!
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
add a comment |
How to download, build and install the RT3070 driver
Your adapter has a Ralink RT3070 chipset. You can download the official Linux drivers from this site.
We'll suppose the driver has been downloaded to your Downloads folder and is called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
. Open a terminal withCtrl-Alt-T
, and type or paste the following:
sudo apt-get install linux-headers-$(uname -r) build-essential
cd Downloads
tar -xjf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
sudo make && sudo make install
make clean
cd ..
rm -rf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
Reboot, and hopefully your wireless connection will appear!
How to download, build and install the RT3070 driver
Your adapter has a Ralink RT3070 chipset. You can download the official Linux drivers from this site.
We'll suppose the driver has been downloaded to your Downloads folder and is called
2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2
. Open a terminal withCtrl-Alt-T
, and type or paste the following:
sudo apt-get install linux-headers-$(uname -r) build-essential
cd Downloads
tar -xjf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
sudo make && sudo make install
make clean
cd ..
rm -rf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO
Reboot, and hopefully your wireless connection will appear!
answered Jun 10 '12 at 0:48
ishish
117k32270295
117k32270295
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
add a comment |
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@user69589 Alternatively you can download the driver direct from the manufacturer of your card here which you can install following the above steps.
– Mark Rooney
Jun 10 '12 at 3:52
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
@MarkRooney That's an older driver.
– ish
Jun 10 '12 at 3:55
add a comment |
protected by Community♦ Aug 10 '13 at 4:06
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?