Install rt3572 driver for Asus Usb-N53 Adapter
I recently bought the asus USB-N53 wireless adapter, and want to install the latest driver for it. It comes with instructions of how to install the driver from the files provided, but I can't use makefile, so can't install the driver correctly. These are the instructions from the readme file included:
=======================================================================
Build Instructions:
tar -jxvf 2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO.tar.bz2
go to./2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
directory.
switch to super user.
** for Fedora
$ su
** for Ubuntu
$ sudo su
in Makefile
set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
define the linux kernel source include file path
LINUX_SRC
modify to meet your need.
in
os/linux/config.mk
define theGCC
andLD
of the target machine
define the compiler flagsCFLAGS
modify to meet your need.
** Build for being controlled by NetworkManager or
wpa_supplicant
wext functions
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
.
=> #>cd wpa_supplicant-x.x
=> #>./wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
** Build for being controlled by WpaSupplicant with Ralink Driver
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n
.
=> #>cd wpa_supplicant-0.5.7
=> #>./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
compile driver source code
$ make
=======================================================================
Install Instructions:
load driver
$ make install
plug in USB dongle.
=======================================================================
Can somebody help me to use makefile to install the driver?
EDIT:
When I ran uname -R
, the terminal outputted 3.2.0-58-generic-pae
.
When I ran lsusb
, the terminal outputted:
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 0ac8:3450 Z-Star Microelectronics Corp.
Bus 001 Device 004: ID 0b05:179d ASUSTek Computer, Inc.
Bus 003 Device 002: ID 058f:9360 Alcor Micro Corp. 8-in-1 Media Card Reader
Bus 002 Device 002: ID 05fc:0231 Harman Multimedia
wireless makefile
add a comment |
I recently bought the asus USB-N53 wireless adapter, and want to install the latest driver for it. It comes with instructions of how to install the driver from the files provided, but I can't use makefile, so can't install the driver correctly. These are the instructions from the readme file included:
=======================================================================
Build Instructions:
tar -jxvf 2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO.tar.bz2
go to./2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
directory.
switch to super user.
** for Fedora
$ su
** for Ubuntu
$ sudo su
in Makefile
set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
define the linux kernel source include file path
LINUX_SRC
modify to meet your need.
in
os/linux/config.mk
define theGCC
andLD
of the target machine
define the compiler flagsCFLAGS
modify to meet your need.
** Build for being controlled by NetworkManager or
wpa_supplicant
wext functions
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
.
=> #>cd wpa_supplicant-x.x
=> #>./wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
** Build for being controlled by WpaSupplicant with Ralink Driver
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n
.
=> #>cd wpa_supplicant-0.5.7
=> #>./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
compile driver source code
$ make
=======================================================================
Install Instructions:
load driver
$ make install
plug in USB dongle.
=======================================================================
Can somebody help me to use makefile to install the driver?
EDIT:
When I ran uname -R
, the terminal outputted 3.2.0-58-generic-pae
.
When I ran lsusb
, the terminal outputted:
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 0ac8:3450 Z-Star Microelectronics Corp.
Bus 001 Device 004: ID 0b05:179d ASUSTek Computer, Inc.
Bus 003 Device 002: ID 058f:9360 Alcor Micro Corp. 8-in-1 Media Card Reader
Bus 002 Device 002: ID 05fc:0231 Harman Multimedia
wireless makefile
Can you specifi exactly what your problem is?
– LnxSlck
Feb 12 '14 at 16:22
Depending on your Ubuntu version, you will probably not succeed in installing this 2011 file. Please open the terminal and run and post: uname -r and also: lsusb.
– chili555
Feb 12 '14 at 16:24
My problem is I do not know how to do any of the steps after step 3
– ShandyHand
Feb 12 '14 at 16:51
add a comment |
I recently bought the asus USB-N53 wireless adapter, and want to install the latest driver for it. It comes with instructions of how to install the driver from the files provided, but I can't use makefile, so can't install the driver correctly. These are the instructions from the readme file included:
=======================================================================
Build Instructions:
tar -jxvf 2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO.tar.bz2
go to./2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
directory.
switch to super user.
** for Fedora
$ su
** for Ubuntu
$ sudo su
in Makefile
set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
define the linux kernel source include file path
LINUX_SRC
modify to meet your need.
in
os/linux/config.mk
define theGCC
andLD
of the target machine
define the compiler flagsCFLAGS
modify to meet your need.
** Build for being controlled by NetworkManager or
wpa_supplicant
wext functions
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
.
=> #>cd wpa_supplicant-x.x
=> #>./wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
** Build for being controlled by WpaSupplicant with Ralink Driver
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n
.
=> #>cd wpa_supplicant-0.5.7
=> #>./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
compile driver source code
$ make
=======================================================================
Install Instructions:
load driver
$ make install
plug in USB dongle.
=======================================================================
Can somebody help me to use makefile to install the driver?
EDIT:
When I ran uname -R
, the terminal outputted 3.2.0-58-generic-pae
.
When I ran lsusb
, the terminal outputted:
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 0ac8:3450 Z-Star Microelectronics Corp.
Bus 001 Device 004: ID 0b05:179d ASUSTek Computer, Inc.
Bus 003 Device 002: ID 058f:9360 Alcor Micro Corp. 8-in-1 Media Card Reader
Bus 002 Device 002: ID 05fc:0231 Harman Multimedia
wireless makefile
I recently bought the asus USB-N53 wireless adapter, and want to install the latest driver for it. It comes with instructions of how to install the driver from the files provided, but I can't use makefile, so can't install the driver correctly. These are the instructions from the readme file included:
=======================================================================
Build Instructions:
tar -jxvf 2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO.tar.bz2
go to./2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
directory.
switch to super user.
** for Fedora
$ su
** for Ubuntu
$ sudo su
in Makefile
set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
define the linux kernel source include file path
LINUX_SRC
modify to meet your need.
in
os/linux/config.mk
define theGCC
andLD
of the target machine
define the compiler flagsCFLAGS
modify to meet your need.
** Build for being controlled by NetworkManager or
wpa_supplicant
wext functions
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
.
=> #>cd wpa_supplicant-x.x
=> #>./wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
** Build for being controlled by WpaSupplicant with Ralink Driver
Please setHAS_WPA_SUPPLICANT=y
andHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n
.
=> #>cd wpa_supplicant-0.5.7
=> #>./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
compile driver source code
$ make
=======================================================================
Install Instructions:
load driver
$ make install
plug in USB dongle.
=======================================================================
Can somebody help me to use makefile to install the driver?
EDIT:
When I ran uname -R
, the terminal outputted 3.2.0-58-generic-pae
.
When I ran lsusb
, the terminal outputted:
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 0ac8:3450 Z-Star Microelectronics Corp.
Bus 001 Device 004: ID 0b05:179d ASUSTek Computer, Inc.
Bus 003 Device 002: ID 058f:9360 Alcor Micro Corp. 8-in-1 Media Card Reader
Bus 002 Device 002: ID 05fc:0231 Harman Multimedia
wireless makefile
wireless makefile
edited Feb 12 '14 at 18:02
BuZZ-dEE
9,115115169
9,115115169
asked Feb 12 '14 at 16:18
ShandyHand
613
613
Can you specifi exactly what your problem is?
– LnxSlck
Feb 12 '14 at 16:22
Depending on your Ubuntu version, you will probably not succeed in installing this 2011 file. Please open the terminal and run and post: uname -r and also: lsusb.
– chili555
Feb 12 '14 at 16:24
My problem is I do not know how to do any of the steps after step 3
– ShandyHand
Feb 12 '14 at 16:51
add a comment |
Can you specifi exactly what your problem is?
– LnxSlck
Feb 12 '14 at 16:22
Depending on your Ubuntu version, you will probably not succeed in installing this 2011 file. Please open the terminal and run and post: uname -r and also: lsusb.
– chili555
Feb 12 '14 at 16:24
My problem is I do not know how to do any of the steps after step 3
– ShandyHand
Feb 12 '14 at 16:51
Can you specifi exactly what your problem is?
– LnxSlck
Feb 12 '14 at 16:22
Can you specifi exactly what your problem is?
– LnxSlck
Feb 12 '14 at 16:22
Depending on your Ubuntu version, you will probably not succeed in installing this 2011 file. Please open the terminal and run and post: uname -r and also: lsusb.
– chili555
Feb 12 '14 at 16:24
Depending on your Ubuntu version, you will probably not succeed in installing this 2011 file. Please open the terminal and run and post: uname -r and also: lsusb.
– chili555
Feb 12 '14 at 16:24
My problem is I do not know how to do any of the steps after step 3
– ShandyHand
Feb 12 '14 at 16:51
My problem is I do not know how to do any of the steps after step 3
– ShandyHand
Feb 12 '14 at 16:51
add a comment |
1 Answer
1
active
oldest
votes
I have doubt as to whether the relatively old file will compile, but you are using an older kernel; i.e. 3.2.0-58, so it may work. Let's try. Please get a temporary wired ethernet connection, open a terminal and do:
sudo apt-get install linux-headers-generic build-essential
In the folder you extracted, open os > linux > config.mk with any text editor, such as gedit. Change HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y. Save and close the text editor.
Now back to the terminal and change to the directory with the file; for instance:
cd ~/Desktop/2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
make clean
make
sudo make install
sudo modprobe rt3572sta
Let us know if you get an error or get stuck.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f419984%2finstall-rt3572-driver-for-asus-usb-n53-adapter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I have doubt as to whether the relatively old file will compile, but you are using an older kernel; i.e. 3.2.0-58, so it may work. Let's try. Please get a temporary wired ethernet connection, open a terminal and do:
sudo apt-get install linux-headers-generic build-essential
In the folder you extracted, open os > linux > config.mk with any text editor, such as gedit. Change HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y. Save and close the text editor.
Now back to the terminal and change to the directory with the file; for instance:
cd ~/Desktop/2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
make clean
make
sudo make install
sudo modprobe rt3572sta
Let us know if you get an error or get stuck.
add a comment |
I have doubt as to whether the relatively old file will compile, but you are using an older kernel; i.e. 3.2.0-58, so it may work. Let's try. Please get a temporary wired ethernet connection, open a terminal and do:
sudo apt-get install linux-headers-generic build-essential
In the folder you extracted, open os > linux > config.mk with any text editor, such as gedit. Change HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y. Save and close the text editor.
Now back to the terminal and change to the directory with the file; for instance:
cd ~/Desktop/2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
make clean
make
sudo make install
sudo modprobe rt3572sta
Let us know if you get an error or get stuck.
add a comment |
I have doubt as to whether the relatively old file will compile, but you are using an older kernel; i.e. 3.2.0-58, so it may work. Let's try. Please get a temporary wired ethernet connection, open a terminal and do:
sudo apt-get install linux-headers-generic build-essential
In the folder you extracted, open os > linux > config.mk with any text editor, such as gedit. Change HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y. Save and close the text editor.
Now back to the terminal and change to the directory with the file; for instance:
cd ~/Desktop/2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
make clean
make
sudo make install
sudo modprobe rt3572sta
Let us know if you get an error or get stuck.
I have doubt as to whether the relatively old file will compile, but you are using an older kernel; i.e. 3.2.0-58, so it may work. Let's try. Please get a temporary wired ethernet connection, open a terminal and do:
sudo apt-get install linux-headers-generic build-essential
In the folder you extracted, open os > linux > config.mk with any text editor, such as gedit. Change HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y. Save and close the text editor.
Now back to the terminal and change to the directory with the file; for instance:
cd ~/Desktop/2011_1003_RT3572_Linux_STA_v2.5.0.0.DPO
make clean
make
sudo make install
sudo modprobe rt3572sta
Let us know if you get an error or get stuck.
edited Feb 12 '14 at 22:53
answered Feb 12 '14 at 20:30
chili555
38.1k55177
38.1k55177
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f419984%2finstall-rt3572-driver-for-asus-usb-n53-adapter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you specifi exactly what your problem is?
– LnxSlck
Feb 12 '14 at 16:22
Depending on your Ubuntu version, you will probably not succeed in installing this 2011 file. Please open the terminal and run and post: uname -r and also: lsusb.
– chili555
Feb 12 '14 at 16:24
My problem is I do not know how to do any of the steps after step 3
– ShandyHand
Feb 12 '14 at 16:51