Drivers for TP-LINK TL-WN8200ND v2





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







-1















I'm testing Ubuntu 18.04 with my current desktopand everything works correctly except for the Wi-Fi adapter. I'm using a TP-LINK TL-WN8200ND version 2.



As requested here, my wireless-info output is at this pastebin.



I've tested Mint 19, Kubuntu and KDE neon, with similar results.



Is there an official driver that works out of the box?










share|improve this question





























    -1















    I'm testing Ubuntu 18.04 with my current desktopand everything works correctly except for the Wi-Fi adapter. I'm using a TP-LINK TL-WN8200ND version 2.



    As requested here, my wireless-info output is at this pastebin.



    I've tested Mint 19, Kubuntu and KDE neon, with similar results.



    Is there an official driver that works out of the box?










    share|improve this question

























      -1












      -1








      -1








      I'm testing Ubuntu 18.04 with my current desktopand everything works correctly except for the Wi-Fi adapter. I'm using a TP-LINK TL-WN8200ND version 2.



      As requested here, my wireless-info output is at this pastebin.



      I've tested Mint 19, Kubuntu and KDE neon, with similar results.



      Is there an official driver that works out of the box?










      share|improve this question














      I'm testing Ubuntu 18.04 with my current desktopand everything works correctly except for the Wi-Fi adapter. I'm using a TP-LINK TL-WN8200ND version 2.



      As requested here, my wireless-info output is at this pastebin.



      I've tested Mint 19, Kubuntu and KDE neon, with similar results.



      Is there an official driver that works out of the box?







      networking drivers wireless kubuntu






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 27 '18 at 16:27









      amysparkamyspark

      1




      1






















          2 Answers
          2






          active

          oldest

          votes


















          0














          With a working internet connection by ethernet, tethering or whatever means possible, open a terminal and do:



          sudo apt-get update
          sudo apt-get install build-essential dkms git
          git clone https://github.com/luckynzm/tlwn8200nddriver.git
          cd tlwn8200nddriver
          sudo dkms add .
          sudo dkms install rtl8192eu/1.0


          This will take some time; please be patient.



          Next, blacklist the built in driver that isn’t working:



          sudo -i
          echo “blacklist rtl8xxxu” >> /etc/modprobe.d/blacklist.conf
          exit


          Reboot. Your wireless should be working.






          share|improve this answer































            0














            I have been trying to make it work for the last couple of weeks, and finally I found a driver that works.



            I am using Ubuntu 18.04, kernel 4.15.0-46. Check yours with



            uname -a


            What did work



            From https://ubuntuforums.org/showthread.php?t=2340202



            sudo apt-get install linux-headers-generic git build-essential
            git clone https://github.com/Mange/rtl8192eu-
            linux-driver.git
            cd rtl8192eu-linux-driver
            make
            sudo make install
            reboot


            It also says that if the kernel is updated do:
            (so keep the directory)



            cd rtl8192eu-linux-driver
            make clean
            make
            sudo make install


            Testing connection



            The first thing to notice is that the led is going green.
            On the top right click on wifi symbol and the network must appear (my internal adapter and the USB adapter in my case). You can connect to a wifi network here.
            You can also check your adapters with:



            iwconfig


            You can also check it with:



            lshw -short


            Unplug it and run the command again to see which one was the usb adapter.



            You can also create a hostpot, ad-hoc or station mode network with the command:



            nm-connection-editor


            Just as in Ubuntu 16.04.



            What didn't work for me



            I tried this drivers without success:




            • git clone https://github.com/pvaret/rtl8192cu-fixes

            • git clone https://github.com/dz0ny/rt8192cu.git --depth 1

            • git clone https://github.com/jeremyb31/rtl8192eu-linux-driver

            • git clone https://github.com/luckynzm/tlwn8200nddriver.git

            • git clone https://github.com/0xBADEAFFE/rt8192cu_dkms

            • git clone https://github.com/agtbaskara/rtl8192eu-linux-driver.git (I didn't try this one, found it after it worked. From: Unable to install driver WN8200ND V2 (RTL8192EU))


            I also tried to downgrade the kernel version (to try these drivers to run without success) to:




            • 4.9.8

            • 4.8.10 (ubuntu 18.04 didn't boot)

            • 3.12.74 (ubuntu 18.04 didn't boot)






            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%2f1078953%2fdrivers-for-tp-link-tl-wn8200nd-v2%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              With a working internet connection by ethernet, tethering or whatever means possible, open a terminal and do:



              sudo apt-get update
              sudo apt-get install build-essential dkms git
              git clone https://github.com/luckynzm/tlwn8200nddriver.git
              cd tlwn8200nddriver
              sudo dkms add .
              sudo dkms install rtl8192eu/1.0


              This will take some time; please be patient.



              Next, blacklist the built in driver that isn’t working:



              sudo -i
              echo “blacklist rtl8xxxu” >> /etc/modprobe.d/blacklist.conf
              exit


              Reboot. Your wireless should be working.






              share|improve this answer




























                0














                With a working internet connection by ethernet, tethering or whatever means possible, open a terminal and do:



                sudo apt-get update
                sudo apt-get install build-essential dkms git
                git clone https://github.com/luckynzm/tlwn8200nddriver.git
                cd tlwn8200nddriver
                sudo dkms add .
                sudo dkms install rtl8192eu/1.0


                This will take some time; please be patient.



                Next, blacklist the built in driver that isn’t working:



                sudo -i
                echo “blacklist rtl8xxxu” >> /etc/modprobe.d/blacklist.conf
                exit


                Reboot. Your wireless should be working.






                share|improve this answer


























                  0












                  0








                  0







                  With a working internet connection by ethernet, tethering or whatever means possible, open a terminal and do:



                  sudo apt-get update
                  sudo apt-get install build-essential dkms git
                  git clone https://github.com/luckynzm/tlwn8200nddriver.git
                  cd tlwn8200nddriver
                  sudo dkms add .
                  sudo dkms install rtl8192eu/1.0


                  This will take some time; please be patient.



                  Next, blacklist the built in driver that isn’t working:



                  sudo -i
                  echo “blacklist rtl8xxxu” >> /etc/modprobe.d/blacklist.conf
                  exit


                  Reboot. Your wireless should be working.






                  share|improve this answer













                  With a working internet connection by ethernet, tethering or whatever means possible, open a terminal and do:



                  sudo apt-get update
                  sudo apt-get install build-essential dkms git
                  git clone https://github.com/luckynzm/tlwn8200nddriver.git
                  cd tlwn8200nddriver
                  sudo dkms add .
                  sudo dkms install rtl8192eu/1.0


                  This will take some time; please be patient.



                  Next, blacklist the built in driver that isn’t working:



                  sudo -i
                  echo “blacklist rtl8xxxu” >> /etc/modprobe.d/blacklist.conf
                  exit


                  Reboot. Your wireless should be working.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Sep 29 '18 at 14:40









                  chili555chili555

                  39k55280




                  39k55280

























                      0














                      I have been trying to make it work for the last couple of weeks, and finally I found a driver that works.



                      I am using Ubuntu 18.04, kernel 4.15.0-46. Check yours with



                      uname -a


                      What did work



                      From https://ubuntuforums.org/showthread.php?t=2340202



                      sudo apt-get install linux-headers-generic git build-essential
                      git clone https://github.com/Mange/rtl8192eu-
                      linux-driver.git
                      cd rtl8192eu-linux-driver
                      make
                      sudo make install
                      reboot


                      It also says that if the kernel is updated do:
                      (so keep the directory)



                      cd rtl8192eu-linux-driver
                      make clean
                      make
                      sudo make install


                      Testing connection



                      The first thing to notice is that the led is going green.
                      On the top right click on wifi symbol and the network must appear (my internal adapter and the USB adapter in my case). You can connect to a wifi network here.
                      You can also check your adapters with:



                      iwconfig


                      You can also check it with:



                      lshw -short


                      Unplug it and run the command again to see which one was the usb adapter.



                      You can also create a hostpot, ad-hoc or station mode network with the command:



                      nm-connection-editor


                      Just as in Ubuntu 16.04.



                      What didn't work for me



                      I tried this drivers without success:




                      • git clone https://github.com/pvaret/rtl8192cu-fixes

                      • git clone https://github.com/dz0ny/rt8192cu.git --depth 1

                      • git clone https://github.com/jeremyb31/rtl8192eu-linux-driver

                      • git clone https://github.com/luckynzm/tlwn8200nddriver.git

                      • git clone https://github.com/0xBADEAFFE/rt8192cu_dkms

                      • git clone https://github.com/agtbaskara/rtl8192eu-linux-driver.git (I didn't try this one, found it after it worked. From: Unable to install driver WN8200ND V2 (RTL8192EU))


                      I also tried to downgrade the kernel version (to try these drivers to run without success) to:




                      • 4.9.8

                      • 4.8.10 (ubuntu 18.04 didn't boot)

                      • 3.12.74 (ubuntu 18.04 didn't boot)






                      share|improve this answer






























                        0














                        I have been trying to make it work for the last couple of weeks, and finally I found a driver that works.



                        I am using Ubuntu 18.04, kernel 4.15.0-46. Check yours with



                        uname -a


                        What did work



                        From https://ubuntuforums.org/showthread.php?t=2340202



                        sudo apt-get install linux-headers-generic git build-essential
                        git clone https://github.com/Mange/rtl8192eu-
                        linux-driver.git
                        cd rtl8192eu-linux-driver
                        make
                        sudo make install
                        reboot


                        It also says that if the kernel is updated do:
                        (so keep the directory)



                        cd rtl8192eu-linux-driver
                        make clean
                        make
                        sudo make install


                        Testing connection



                        The first thing to notice is that the led is going green.
                        On the top right click on wifi symbol and the network must appear (my internal adapter and the USB adapter in my case). You can connect to a wifi network here.
                        You can also check your adapters with:



                        iwconfig


                        You can also check it with:



                        lshw -short


                        Unplug it and run the command again to see which one was the usb adapter.



                        You can also create a hostpot, ad-hoc or station mode network with the command:



                        nm-connection-editor


                        Just as in Ubuntu 16.04.



                        What didn't work for me



                        I tried this drivers without success:




                        • git clone https://github.com/pvaret/rtl8192cu-fixes

                        • git clone https://github.com/dz0ny/rt8192cu.git --depth 1

                        • git clone https://github.com/jeremyb31/rtl8192eu-linux-driver

                        • git clone https://github.com/luckynzm/tlwn8200nddriver.git

                        • git clone https://github.com/0xBADEAFFE/rt8192cu_dkms

                        • git clone https://github.com/agtbaskara/rtl8192eu-linux-driver.git (I didn't try this one, found it after it worked. From: Unable to install driver WN8200ND V2 (RTL8192EU))


                        I also tried to downgrade the kernel version (to try these drivers to run without success) to:




                        • 4.9.8

                        • 4.8.10 (ubuntu 18.04 didn't boot)

                        • 3.12.74 (ubuntu 18.04 didn't boot)






                        share|improve this answer




























                          0












                          0








                          0







                          I have been trying to make it work for the last couple of weeks, and finally I found a driver that works.



                          I am using Ubuntu 18.04, kernel 4.15.0-46. Check yours with



                          uname -a


                          What did work



                          From https://ubuntuforums.org/showthread.php?t=2340202



                          sudo apt-get install linux-headers-generic git build-essential
                          git clone https://github.com/Mange/rtl8192eu-
                          linux-driver.git
                          cd rtl8192eu-linux-driver
                          make
                          sudo make install
                          reboot


                          It also says that if the kernel is updated do:
                          (so keep the directory)



                          cd rtl8192eu-linux-driver
                          make clean
                          make
                          sudo make install


                          Testing connection



                          The first thing to notice is that the led is going green.
                          On the top right click on wifi symbol and the network must appear (my internal adapter and the USB adapter in my case). You can connect to a wifi network here.
                          You can also check your adapters with:



                          iwconfig


                          You can also check it with:



                          lshw -short


                          Unplug it and run the command again to see which one was the usb adapter.



                          You can also create a hostpot, ad-hoc or station mode network with the command:



                          nm-connection-editor


                          Just as in Ubuntu 16.04.



                          What didn't work for me



                          I tried this drivers without success:




                          • git clone https://github.com/pvaret/rtl8192cu-fixes

                          • git clone https://github.com/dz0ny/rt8192cu.git --depth 1

                          • git clone https://github.com/jeremyb31/rtl8192eu-linux-driver

                          • git clone https://github.com/luckynzm/tlwn8200nddriver.git

                          • git clone https://github.com/0xBADEAFFE/rt8192cu_dkms

                          • git clone https://github.com/agtbaskara/rtl8192eu-linux-driver.git (I didn't try this one, found it after it worked. From: Unable to install driver WN8200ND V2 (RTL8192EU))


                          I also tried to downgrade the kernel version (to try these drivers to run without success) to:




                          • 4.9.8

                          • 4.8.10 (ubuntu 18.04 didn't boot)

                          • 3.12.74 (ubuntu 18.04 didn't boot)






                          share|improve this answer















                          I have been trying to make it work for the last couple of weeks, and finally I found a driver that works.



                          I am using Ubuntu 18.04, kernel 4.15.0-46. Check yours with



                          uname -a


                          What did work



                          From https://ubuntuforums.org/showthread.php?t=2340202



                          sudo apt-get install linux-headers-generic git build-essential
                          git clone https://github.com/Mange/rtl8192eu-
                          linux-driver.git
                          cd rtl8192eu-linux-driver
                          make
                          sudo make install
                          reboot


                          It also says that if the kernel is updated do:
                          (so keep the directory)



                          cd rtl8192eu-linux-driver
                          make clean
                          make
                          sudo make install


                          Testing connection



                          The first thing to notice is that the led is going green.
                          On the top right click on wifi symbol and the network must appear (my internal adapter and the USB adapter in my case). You can connect to a wifi network here.
                          You can also check your adapters with:



                          iwconfig


                          You can also check it with:



                          lshw -short


                          Unplug it and run the command again to see which one was the usb adapter.



                          You can also create a hostpot, ad-hoc or station mode network with the command:



                          nm-connection-editor


                          Just as in Ubuntu 16.04.



                          What didn't work for me



                          I tried this drivers without success:




                          • git clone https://github.com/pvaret/rtl8192cu-fixes

                          • git clone https://github.com/dz0ny/rt8192cu.git --depth 1

                          • git clone https://github.com/jeremyb31/rtl8192eu-linux-driver

                          • git clone https://github.com/luckynzm/tlwn8200nddriver.git

                          • git clone https://github.com/0xBADEAFFE/rt8192cu_dkms

                          • git clone https://github.com/agtbaskara/rtl8192eu-linux-driver.git (I didn't try this one, found it after it worked. From: Unable to install driver WN8200ND V2 (RTL8192EU))


                          I also tried to downgrade the kernel version (to try these drivers to run without success) to:




                          • 4.9.8

                          • 4.8.10 (ubuntu 18.04 didn't boot)

                          • 3.12.74 (ubuntu 18.04 didn't boot)







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Mar 26 at 15:59

























                          answered Mar 21 at 0:27









                          Griselle ZGriselle Z

                          11




                          11






























                              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%2f1078953%2fdrivers-for-tp-link-tl-wn8200nd-v2%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

                              How did Captain America manage to do this?

                              迪纳利

                              南乌拉尔铁路局