Install rt3572 driver for Asus Usb-N53 Adapter Announcing the arrival of Valued Associate...
Is there a documented rationale why the House Ways and Means chairman can demand tax info?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
Are my PIs rude or am I just being too sensitive?
What did Darwin mean by 'squib' here?
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
Autumning in love
Can the prologue be the backstory of your main character?
How to say that you spent the night with someone, you were only sleeping and nothing else?
Unable to start mainnet node docker container
How are presidential pardons supposed to be used?
Should you tell Jews they are breaking a commandment?
If A makes B more likely then B makes A more likely"
What computer would be fastest for Mathematica Home Edition?
How do I keep my slimes from escaping their pens?
Statistical model of ligand substitution
Replacing HDD with SSD; what about non-APFS/APFS?
What is the largest species of polychaete?
How should I respond to a player wanting to catch a sword between their hands?
Can a zero nonce be safely used with AES-GCM if the key is random and never used again?
Stars Make Stars
Can a non-EU citizen traveling with me come with me through the EU passport line?
Passing functions in C++
3 doors, three guards, one stone
Limit for e and 1/e
Install rt3572 driver for Asus Usb-N53 Adapter
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Ubuntu 12.04 Wireless won't connect with gnome network manager or wicdWeird wireless connection issueWireless is disabled by hardware switch. Wifi doesn't work! (hard blocked: yes,soft blocked :no, hp pavillion g6 2237, Ubuntu 12.04)?Problem with Usb Wireless Adapter (by SignalKing)WIFI USB adapter - Sitecom WLA-3001 AC450 instalationWifi dongle driver compliation and installationWifi extremely slow on ubuntu 16.04, tried almost everything and still not working properlyAdapter not showing up on Ubuntu (Netgear A6120)Install Alfa AWUS036NHA driver on Ubuntu 18.04 LTS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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,355125270
9,355125270
asked Feb 12 '14 at 16:18
ShandyHandShandyHand
613
613
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
chili555chili555
39.1k55281
39.1k55281
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.
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