How do I install drivers for TP-Link 802.11ac Wi-Fi USB adapter?












4















New to ubuntu, just need some help conecting wirelessly.



lsusb:



Bus 008 Device 003: ID 2357:0101









share|improve this question

























  • Is it a USB adapter?

    – Pilot6
    Aug 14 '15 at 16:29











  • yes, it is usb 3.0

    – koko
    Aug 14 '15 at 16:35











  • Please edit your question and add output of lsusb terminal command when the adapter is inserted.

    – Pilot6
    Aug 14 '15 at 16:36











  • lsusb returns:Bus 008 Device 003: ID 2357:0101

    – koko
    Aug 14 '15 at 16:50











  • And nothing else?

    – Pilot6
    Aug 14 '15 at 16:52
















4















New to ubuntu, just need some help conecting wirelessly.



lsusb:



Bus 008 Device 003: ID 2357:0101









share|improve this question

























  • Is it a USB adapter?

    – Pilot6
    Aug 14 '15 at 16:29











  • yes, it is usb 3.0

    – koko
    Aug 14 '15 at 16:35











  • Please edit your question and add output of lsusb terminal command when the adapter is inserted.

    – Pilot6
    Aug 14 '15 at 16:36











  • lsusb returns:Bus 008 Device 003: ID 2357:0101

    – koko
    Aug 14 '15 at 16:50











  • And nothing else?

    – Pilot6
    Aug 14 '15 at 16:52














4












4








4


1






New to ubuntu, just need some help conecting wirelessly.



lsusb:



Bus 008 Device 003: ID 2357:0101









share|improve this question
















New to ubuntu, just need some help conecting wirelessly.



lsusb:



Bus 008 Device 003: ID 2357:0101






wireless usb adapter realtek-wireless






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 14 '15 at 17:18









Pilot6

52.5k15108197




52.5k15108197










asked Aug 14 '15 at 16:28









kokokoko

3526




3526













  • Is it a USB adapter?

    – Pilot6
    Aug 14 '15 at 16:29











  • yes, it is usb 3.0

    – koko
    Aug 14 '15 at 16:35











  • Please edit your question and add output of lsusb terminal command when the adapter is inserted.

    – Pilot6
    Aug 14 '15 at 16:36











  • lsusb returns:Bus 008 Device 003: ID 2357:0101

    – koko
    Aug 14 '15 at 16:50











  • And nothing else?

    – Pilot6
    Aug 14 '15 at 16:52



















  • Is it a USB adapter?

    – Pilot6
    Aug 14 '15 at 16:29











  • yes, it is usb 3.0

    – koko
    Aug 14 '15 at 16:35











  • Please edit your question and add output of lsusb terminal command when the adapter is inserted.

    – Pilot6
    Aug 14 '15 at 16:36











  • lsusb returns:Bus 008 Device 003: ID 2357:0101

    – koko
    Aug 14 '15 at 16:50











  • And nothing else?

    – Pilot6
    Aug 14 '15 at 16:52

















Is it a USB adapter?

– Pilot6
Aug 14 '15 at 16:29





Is it a USB adapter?

– Pilot6
Aug 14 '15 at 16:29













yes, it is usb 3.0

– koko
Aug 14 '15 at 16:35





yes, it is usb 3.0

– koko
Aug 14 '15 at 16:35













Please edit your question and add output of lsusb terminal command when the adapter is inserted.

– Pilot6
Aug 14 '15 at 16:36





Please edit your question and add output of lsusb terminal command when the adapter is inserted.

– Pilot6
Aug 14 '15 at 16:36













lsusb returns:Bus 008 Device 003: ID 2357:0101

– koko
Aug 14 '15 at 16:50





lsusb returns:Bus 008 Device 003: ID 2357:0101

– koko
Aug 14 '15 at 16:50













And nothing else?

– Pilot6
Aug 14 '15 at 16:52





And nothing else?

– Pilot6
Aug 14 '15 at 16:52










4 Answers
4






active

oldest

votes


















3














You can install the driver this way. Connect to Internet some other way and run in terminal



sudo apt-get install git dkms
git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
sed -i 's/#MODULE_VERSION#/0.1/' rtl8812AU_8821AU_linux/dkms.conf
sudo dkms add ./rtl8812AU_8821AU_linux
sudo dkms install -m 8812au -v 0.1


Then insert your dongle.






share|improve this answer

































    2














    First of all, Pilot6, thank you very much for providing this.



    I ran into some challenges while installing the repository. If you experience similar issues, please feel free try the following solution that worked for me (note, this has enabled to install the drivers and I have not tested the functionality yet):



    cd /usr/src
    sudo cp -r rtl8812au-#MODULE_VERSION# 8812au-1.0
    sudo dkms install -m 8812au -v 1.0





    share|improve this answer
























    • This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

      – Pilot6
      Feb 19 '17 at 20:39











    • Oh, I see. They changed the version.

      – Pilot6
      Feb 19 '17 at 20:41











    • I fixed it in my answer by another way. Yours is good too.

      – Pilot6
      Feb 19 '17 at 20:48





















    0














    If the other solutions have been tested and do not seem to work. Try the following (update your network interfaces):



    sudo nano /etc/network/interfaces


    Remove the standard configurations. Check using dmesg which interface is being used (eth0, eth1, etc.) and add the settings for this interface;



    #auto eth0
    #iface eth0 dhcp inet
    auto eth1
    iface eth1 dhcp inet


    My issue had to do with the TP Link UE300 usb to ethernet 3.0 adapter which was recognized by ubuntu linux but it did not function. After installing the updates as suggested by @Pilot6 and updating the network interfaces, the adapter started functioning.






    share|improve this answer































      0














      this worked for me:



      sudo apt purge rtl8812au-dkms
      sudo apt install git
      git clone https://github.com/gnab/rtl8812au.git
      sudo cp -r rtl8812au /usr/src/rtl8812au-4.2.2
      sudo dkms add -m rtl8812au -v 4.2.2
      sudo dkms build -m rtl8812au -v 4.2.2
      sudo dkms install -m rtl8812au -v 4.2.2





      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%2f661466%2fhow-do-i-install-drivers-for-tp-link-802-11ac-wi-fi-usb-adapter%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        3














        You can install the driver this way. Connect to Internet some other way and run in terminal



        sudo apt-get install git dkms
        git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
        sed -i 's/#MODULE_VERSION#/0.1/' rtl8812AU_8821AU_linux/dkms.conf
        sudo dkms add ./rtl8812AU_8821AU_linux
        sudo dkms install -m 8812au -v 0.1


        Then insert your dongle.






        share|improve this answer






























          3














          You can install the driver this way. Connect to Internet some other way and run in terminal



          sudo apt-get install git dkms
          git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
          sed -i 's/#MODULE_VERSION#/0.1/' rtl8812AU_8821AU_linux/dkms.conf
          sudo dkms add ./rtl8812AU_8821AU_linux
          sudo dkms install -m 8812au -v 0.1


          Then insert your dongle.






          share|improve this answer




























            3












            3








            3







            You can install the driver this way. Connect to Internet some other way and run in terminal



            sudo apt-get install git dkms
            git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
            sed -i 's/#MODULE_VERSION#/0.1/' rtl8812AU_8821AU_linux/dkms.conf
            sudo dkms add ./rtl8812AU_8821AU_linux
            sudo dkms install -m 8812au -v 0.1


            Then insert your dongle.






            share|improve this answer















            You can install the driver this way. Connect to Internet some other way and run in terminal



            sudo apt-get install git dkms
            git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
            sed -i 's/#MODULE_VERSION#/0.1/' rtl8812AU_8821AU_linux/dkms.conf
            sudo dkms add ./rtl8812AU_8821AU_linux
            sudo dkms install -m 8812au -v 0.1


            Then insert your dongle.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Dec 17 '17 at 22:08

























            answered Aug 14 '15 at 16:59









            Pilot6Pilot6

            52.5k15108197




            52.5k15108197

























                2














                First of all, Pilot6, thank you very much for providing this.



                I ran into some challenges while installing the repository. If you experience similar issues, please feel free try the following solution that worked for me (note, this has enabled to install the drivers and I have not tested the functionality yet):



                cd /usr/src
                sudo cp -r rtl8812au-#MODULE_VERSION# 8812au-1.0
                sudo dkms install -m 8812au -v 1.0





                share|improve this answer
























                • This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

                  – Pilot6
                  Feb 19 '17 at 20:39











                • Oh, I see. They changed the version.

                  – Pilot6
                  Feb 19 '17 at 20:41











                • I fixed it in my answer by another way. Yours is good too.

                  – Pilot6
                  Feb 19 '17 at 20:48


















                2














                First of all, Pilot6, thank you very much for providing this.



                I ran into some challenges while installing the repository. If you experience similar issues, please feel free try the following solution that worked for me (note, this has enabled to install the drivers and I have not tested the functionality yet):



                cd /usr/src
                sudo cp -r rtl8812au-#MODULE_VERSION# 8812au-1.0
                sudo dkms install -m 8812au -v 1.0





                share|improve this answer
























                • This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

                  – Pilot6
                  Feb 19 '17 at 20:39











                • Oh, I see. They changed the version.

                  – Pilot6
                  Feb 19 '17 at 20:41











                • I fixed it in my answer by another way. Yours is good too.

                  – Pilot6
                  Feb 19 '17 at 20:48
















                2












                2








                2







                First of all, Pilot6, thank you very much for providing this.



                I ran into some challenges while installing the repository. If you experience similar issues, please feel free try the following solution that worked for me (note, this has enabled to install the drivers and I have not tested the functionality yet):



                cd /usr/src
                sudo cp -r rtl8812au-#MODULE_VERSION# 8812au-1.0
                sudo dkms install -m 8812au -v 1.0





                share|improve this answer













                First of all, Pilot6, thank you very much for providing this.



                I ran into some challenges while installing the repository. If you experience similar issues, please feel free try the following solution that worked for me (note, this has enabled to install the drivers and I have not tested the functionality yet):



                cd /usr/src
                sudo cp -r rtl8812au-#MODULE_VERSION# 8812au-1.0
                sudo dkms install -m 8812au -v 1.0






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Feb 19 '17 at 20:17









                pgschoepfpgschoepf

                211




                211













                • This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

                  – Pilot6
                  Feb 19 '17 at 20:39











                • Oh, I see. They changed the version.

                  – Pilot6
                  Feb 19 '17 at 20:41











                • I fixed it in my answer by another way. Yours is good too.

                  – Pilot6
                  Feb 19 '17 at 20:48





















                • This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

                  – Pilot6
                  Feb 19 '17 at 20:39











                • Oh, I see. They changed the version.

                  – Pilot6
                  Feb 19 '17 at 20:41











                • I fixed it in my answer by another way. Yours is good too.

                  – Pilot6
                  Feb 19 '17 at 20:48



















                This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

                – Pilot6
                Feb 19 '17 at 20:39





                This is not a full answer. Now it looks like a comment. Can you reprpduce the full steps you did? And what is wrong with my commands? They are doing actually the same.

                – Pilot6
                Feb 19 '17 at 20:39













                Oh, I see. They changed the version.

                – Pilot6
                Feb 19 '17 at 20:41





                Oh, I see. They changed the version.

                – Pilot6
                Feb 19 '17 at 20:41













                I fixed it in my answer by another way. Yours is good too.

                – Pilot6
                Feb 19 '17 at 20:48







                I fixed it in my answer by another way. Yours is good too.

                – Pilot6
                Feb 19 '17 at 20:48













                0














                If the other solutions have been tested and do not seem to work. Try the following (update your network interfaces):



                sudo nano /etc/network/interfaces


                Remove the standard configurations. Check using dmesg which interface is being used (eth0, eth1, etc.) and add the settings for this interface;



                #auto eth0
                #iface eth0 dhcp inet
                auto eth1
                iface eth1 dhcp inet


                My issue had to do with the TP Link UE300 usb to ethernet 3.0 adapter which was recognized by ubuntu linux but it did not function. After installing the updates as suggested by @Pilot6 and updating the network interfaces, the adapter started functioning.






                share|improve this answer




























                  0














                  If the other solutions have been tested and do not seem to work. Try the following (update your network interfaces):



                  sudo nano /etc/network/interfaces


                  Remove the standard configurations. Check using dmesg which interface is being used (eth0, eth1, etc.) and add the settings for this interface;



                  #auto eth0
                  #iface eth0 dhcp inet
                  auto eth1
                  iface eth1 dhcp inet


                  My issue had to do with the TP Link UE300 usb to ethernet 3.0 adapter which was recognized by ubuntu linux but it did not function. After installing the updates as suggested by @Pilot6 and updating the network interfaces, the adapter started functioning.






                  share|improve this answer


























                    0












                    0








                    0







                    If the other solutions have been tested and do not seem to work. Try the following (update your network interfaces):



                    sudo nano /etc/network/interfaces


                    Remove the standard configurations. Check using dmesg which interface is being used (eth0, eth1, etc.) and add the settings for this interface;



                    #auto eth0
                    #iface eth0 dhcp inet
                    auto eth1
                    iface eth1 dhcp inet


                    My issue had to do with the TP Link UE300 usb to ethernet 3.0 adapter which was recognized by ubuntu linux but it did not function. After installing the updates as suggested by @Pilot6 and updating the network interfaces, the adapter started functioning.






                    share|improve this answer













                    If the other solutions have been tested and do not seem to work. Try the following (update your network interfaces):



                    sudo nano /etc/network/interfaces


                    Remove the standard configurations. Check using dmesg which interface is being used (eth0, eth1, etc.) and add the settings for this interface;



                    #auto eth0
                    #iface eth0 dhcp inet
                    auto eth1
                    iface eth1 dhcp inet


                    My issue had to do with the TP Link UE300 usb to ethernet 3.0 adapter which was recognized by ubuntu linux but it did not function. After installing the updates as suggested by @Pilot6 and updating the network interfaces, the adapter started functioning.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 16 '17 at 16:03









                    NitinNitin

                    1016




                    1016























                        0














                        this worked for me:



                        sudo apt purge rtl8812au-dkms
                        sudo apt install git
                        git clone https://github.com/gnab/rtl8812au.git
                        sudo cp -r rtl8812au /usr/src/rtl8812au-4.2.2
                        sudo dkms add -m rtl8812au -v 4.2.2
                        sudo dkms build -m rtl8812au -v 4.2.2
                        sudo dkms install -m rtl8812au -v 4.2.2





                        share|improve this answer






























                          0














                          this worked for me:



                          sudo apt purge rtl8812au-dkms
                          sudo apt install git
                          git clone https://github.com/gnab/rtl8812au.git
                          sudo cp -r rtl8812au /usr/src/rtl8812au-4.2.2
                          sudo dkms add -m rtl8812au -v 4.2.2
                          sudo dkms build -m rtl8812au -v 4.2.2
                          sudo dkms install -m rtl8812au -v 4.2.2





                          share|improve this answer




























                            0












                            0








                            0







                            this worked for me:



                            sudo apt purge rtl8812au-dkms
                            sudo apt install git
                            git clone https://github.com/gnab/rtl8812au.git
                            sudo cp -r rtl8812au /usr/src/rtl8812au-4.2.2
                            sudo dkms add -m rtl8812au -v 4.2.2
                            sudo dkms build -m rtl8812au -v 4.2.2
                            sudo dkms install -m rtl8812au -v 4.2.2





                            share|improve this answer















                            this worked for me:



                            sudo apt purge rtl8812au-dkms
                            sudo apt install git
                            git clone https://github.com/gnab/rtl8812au.git
                            sudo cp -r rtl8812au /usr/src/rtl8812au-4.2.2
                            sudo dkms add -m rtl8812au -v 4.2.2
                            sudo dkms build -m rtl8812au -v 4.2.2
                            sudo dkms install -m rtl8812au -v 4.2.2






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Jan 24 at 13:40

























                            answered Jan 24 at 12:37









                            Ing. Josef KlotznerIng. Josef Klotzner

                            113




                            113






























                                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%2f661466%2fhow-do-i-install-drivers-for-tp-link-802-11ac-wi-fi-usb-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

                                Questions related to Moebius Transform of Characteristic Function of the Primes

                                List of scandals in India

                                Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?