Install rt3572 driver for Asus Usb-N53 AdapterUbuntu 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)?How I should build the official Linux driver for Wireless PCI card D-Link DWA-525 v.A2 in Ubuntu 14.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)Slow Wi-Fi connection

Are villager price increases due to killing them temporary?

Ambiguous sentences: How to tell when they need fixing?

What is temperature on a quantum level?

Why does java.time.Period#normalized() not normalize days?

Is purchasing foreign currency before going abroad a losing proposition?

TikZ Can I draw an arrow by specifying the initial point, direction, and length?

I quit, and boss offered me 3 month "grace period" where I could still come back

How do Windows version numbers work?

When did the Roman Empire fall according to contemporaries?

Chaining Dissonant Whispers via War Caster feat

Can I play a first turn Simic Growth Chamber to have 3 mana available in the second turn?

Players of unusual orchestral instruments

How to determine port and starboard on a rotating wheel space station?

Supporting developers who insist on using their pet language

Won 50K! Now what should I do with it

CPU overheating in Ubuntu 18.04

In which ways do anagamis still experience ignorance?

Hacker Rank : Electronics Shop

Modeling, view and projection transformation using vector and point in homogenous form

Does Google Maps take into account hills/inclines for route times?

Why does Hellboy file down his horns?

Metric version of "footage"?

How can an advanced civilization forget how to manufacture its technology?

Is `curl something | sudo bash -` a reasonably safe installation method?



Install rt3572 driver for Asus Usb-N53 Adapter


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)?How I should build the official Linux driver for Wireless PCI card D-Link DWA-525 v.A2 in Ubuntu 14.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)Slow Wi-Fi connection






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















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:



  1. 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.



  2. switch to super user.
    ** for Fedora



    $ su


    ** for Ubuntu



    $ sudo su



  3. 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.




  4. in os/linux/config.mk
    define the GCC and LD of the target machine
    define the compiler flags CFLAGS
    modify to meet your need.



    ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
    Please set HAS_WPA_SUPPLICANT=y and HAS_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 set HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n.
    => #> cd wpa_supplicant-0.5.7
    => #> ./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d



  5. compile driver source code
    $ make


=======================================================================



Install Instructions:




  1. load driver



     $ make install 


  2. 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









share|improve this question
























  • 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

















1















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:



  1. 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.



  2. switch to super user.
    ** for Fedora



    $ su


    ** for Ubuntu



    $ sudo su



  3. 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.




  4. in os/linux/config.mk
    define the GCC and LD of the target machine
    define the compiler flags CFLAGS
    modify to meet your need.



    ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
    Please set HAS_WPA_SUPPLICANT=y and HAS_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 set HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n.
    => #> cd wpa_supplicant-0.5.7
    => #> ./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d



  5. compile driver source code
    $ make


=======================================================================



Install Instructions:




  1. load driver



     $ make install 


  2. 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









share|improve this question
























  • 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













1












1








1


1






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:



  1. 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.



  2. switch to super user.
    ** for Fedora



    $ su


    ** for Ubuntu



    $ sudo su



  3. 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.




  4. in os/linux/config.mk
    define the GCC and LD of the target machine
    define the compiler flags CFLAGS
    modify to meet your need.



    ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
    Please set HAS_WPA_SUPPLICANT=y and HAS_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 set HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n.
    => #> cd wpa_supplicant-0.5.7
    => #> ./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d



  5. compile driver source code
    $ make


=======================================================================



Install Instructions:




  1. load driver



     $ make install 


  2. 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









share|improve this question
















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:



  1. 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.



  2. switch to super user.
    ** for Fedora



    $ su


    ** for Ubuntu



    $ sudo su



  3. 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.




  4. in os/linux/config.mk
    define the GCC and LD of the target machine
    define the compiler flags CFLAGS
    modify to meet your need.



    ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
    Please set HAS_WPA_SUPPLICANT=y and HAS_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 set HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n.
    => #> cd wpa_supplicant-0.5.7
    => #> ./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d



  5. compile driver source code
    $ make


=======================================================================



Install Instructions:




  1. load driver



     $ make install 


  2. 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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 12 '14 at 18:02









BuZZ-dEE

9,47012 gold badges52 silver badges71 bronze badges




9,47012 gold badges52 silver badges71 bronze badges










asked Feb 12 '14 at 16:18









ShandyHandShandyHand

61 silver badge3 bronze badges




61 silver badge3 bronze badges












  • 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











  • 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










1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer



























    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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.






    share|improve this answer





























      0














      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.






      share|improve this answer



























        0












        0








        0







        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.






        share|improve this answer















        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.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Feb 12 '14 at 22:53

























        answered Feb 12 '14 at 20:30









        chili555chili555

        40k5 gold badges56 silver badges84 bronze badges




        40k5 gold badges56 silver badges84 bronze badges



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Tamil (spriik) Luke uk diar | Nawigatjuun

            Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

            Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?