How can I get my wifi card TP-Link TL-WN722N to work in Kali-Linux VMware 12












-2















**Screenshot of VM ware kali linux wifi**



As shown in the screenshot , i tried lsusb and iwconfig, none of them displayed my wifi adapter. I tried switching the USB ports and restarting VM. Performed the updates and upgrades. Its working on the host OS(windows 8).










share|improve this question



























    -2















    **Screenshot of VM ware kali linux wifi**



    As shown in the screenshot , i tried lsusb and iwconfig, none of them displayed my wifi adapter. I tried switching the USB ports and restarting VM. Performed the updates and upgrades. Its working on the host OS(windows 8).










    share|improve this question

























      -2












      -2








      -2








      **Screenshot of VM ware kali linux wifi**



      As shown in the screenshot , i tried lsusb and iwconfig, none of them displayed my wifi adapter. I tried switching the USB ports and restarting VM. Performed the updates and upgrades. Its working on the host OS(windows 8).










      share|improve this question














      **Screenshot of VM ware kali linux wifi**



      As shown in the screenshot , i tried lsusb and iwconfig, none of them displayed my wifi adapter. I tried switching the USB ports and restarting VM. Performed the updates and upgrades. Its working on the host OS(windows 8).







      wifi kali-linux vmware






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 9 '17 at 9:26









      JoscoJosco

      1112




      1112






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.



          2 ways to install the driver :



          The wired connection is required



          1) open the terminal and run the following command:



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          then



          apt-get install dkms git
          git clone https://github.com/lwfinger/rtl8188eu.git
          dkms add ./rtl8188eu
          dkms build 8188eu/1.0
          dkms install 8188eu/1.0
          modprobe 8188eu


          2) by compiling the source



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :



          git clone https://github.com/lwfinger/rtl8188eu.git
          cd rtl8188eu
          make
          make install
          modprobe 8188eu





          share|improve this answer


























          • Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

            – Josco
            Oct 17 '17 at 2:11













          • @Josco see this answer stackoverflow.com/a/35824116/5848185

            – GAD3R
            Oct 20 '17 at 7:32






          • 1





            apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

            – Mark Deven
            Jan 13 at 23:15






          • 1





            never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

            – Mark Deven
            Jan 13 at 23:27











          • @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

            – GAD3R
            Jan 13 at 23:28











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2funix.stackexchange.com%2fquestions%2f391278%2fhow-can-i-get-my-wifi-card-tp-link-tl-wn722n-to-work-in-kali-linux-vmware-12%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














          Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.



          2 ways to install the driver :



          The wired connection is required



          1) open the terminal and run the following command:



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          then



          apt-get install dkms git
          git clone https://github.com/lwfinger/rtl8188eu.git
          dkms add ./rtl8188eu
          dkms build 8188eu/1.0
          dkms install 8188eu/1.0
          modprobe 8188eu


          2) by compiling the source



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :



          git clone https://github.com/lwfinger/rtl8188eu.git
          cd rtl8188eu
          make
          make install
          modprobe 8188eu





          share|improve this answer


























          • Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

            – Josco
            Oct 17 '17 at 2:11













          • @Josco see this answer stackoverflow.com/a/35824116/5848185

            – GAD3R
            Oct 20 '17 at 7:32






          • 1





            apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

            – Mark Deven
            Jan 13 at 23:15






          • 1





            never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

            – Mark Deven
            Jan 13 at 23:27











          • @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

            – GAD3R
            Jan 13 at 23:28
















          0














          Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.



          2 ways to install the driver :



          The wired connection is required



          1) open the terminal and run the following command:



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          then



          apt-get install dkms git
          git clone https://github.com/lwfinger/rtl8188eu.git
          dkms add ./rtl8188eu
          dkms build 8188eu/1.0
          dkms install 8188eu/1.0
          modprobe 8188eu


          2) by compiling the source



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :



          git clone https://github.com/lwfinger/rtl8188eu.git
          cd rtl8188eu
          make
          make install
          modprobe 8188eu





          share|improve this answer


























          • Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

            – Josco
            Oct 17 '17 at 2:11













          • @Josco see this answer stackoverflow.com/a/35824116/5848185

            – GAD3R
            Oct 20 '17 at 7:32






          • 1





            apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

            – Mark Deven
            Jan 13 at 23:15






          • 1





            never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

            – Mark Deven
            Jan 13 at 23:27











          • @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

            – GAD3R
            Jan 13 at 23:28














          0












          0








          0







          Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.



          2 ways to install the driver :



          The wired connection is required



          1) open the terminal and run the following command:



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          then



          apt-get install dkms git
          git clone https://github.com/lwfinger/rtl8188eu.git
          dkms add ./rtl8188eu
          dkms build 8188eu/1.0
          dkms install 8188eu/1.0
          modprobe 8188eu


          2) by compiling the source



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :



          git clone https://github.com/lwfinger/rtl8188eu.git
          cd rtl8188eu
          make
          make install
          modprobe 8188eu





          share|improve this answer















          Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.



          2 ways to install the driver :



          The wired connection is required



          1) open the terminal and run the following command:



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          then



          apt-get install dkms git
          git clone https://github.com/lwfinger/rtl8188eu.git
          dkms add ./rtl8188eu
          dkms build 8188eu/1.0
          dkms install 8188eu/1.0
          modprobe 8188eu


          2) by compiling the source



          apt-get update
          apt-get upgrade
          apt-get dist-upgrade
          reboot


          Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :



          git clone https://github.com/lwfinger/rtl8188eu.git
          cd rtl8188eu
          make
          make install
          modprobe 8188eu






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 14 at 12:58









          Mark Deven

          1106




          1106










          answered Sep 9 '17 at 11:20









          GAD3RGAD3R

          26k1751107




          26k1751107













          • Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

            – Josco
            Oct 17 '17 at 2:11













          • @Josco see this answer stackoverflow.com/a/35824116/5848185

            – GAD3R
            Oct 20 '17 at 7:32






          • 1





            apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

            – Mark Deven
            Jan 13 at 23:15






          • 1





            never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

            – Mark Deven
            Jan 13 at 23:27











          • @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

            – GAD3R
            Jan 13 at 23:28



















          • Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

            – Josco
            Oct 17 '17 at 2:11













          • @Josco see this answer stackoverflow.com/a/35824116/5848185

            – GAD3R
            Oct 20 '17 at 7:32






          • 1





            apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

            – Mark Deven
            Jan 13 at 23:15






          • 1





            never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

            – Mark Deven
            Jan 13 at 23:27











          • @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

            – GAD3R
            Jan 13 at 23:28

















          Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

          – Josco
          Oct 17 '17 at 2:11







          Thanks GAD3R.. but i am getting a certificate error while cloning. root@kali:~# git clone github.com/lwfinger/rtl8188eu.git Cloning into 'rtl8188eu'... fatal: unable to access 'github.com/lwfinger/rtl8188eu.git': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

          – Josco
          Oct 17 '17 at 2:11















          @Josco see this answer stackoverflow.com/a/35824116/5848185

          – GAD3R
          Oct 20 '17 at 7:32





          @Josco see this answer stackoverflow.com/a/35824116/5848185

          – GAD3R
          Oct 20 '17 at 7:32




          1




          1





          apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

          – Mark Deven
          Jan 13 at 23:15





          apt-get dkms git responds with unable to locate package dkms then Package 'git' has no installation candidate

          – Mark Deven
          Jan 13 at 23:15




          1




          1





          never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

          – Mark Deven
          Jan 13 at 23:27





          never mind my sources file was empty (see this link if anyone else experiences this: unix.stackexchange.com/questions/465465/… )

          – Mark Deven
          Jan 13 at 23:27













          @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

          – GAD3R
          Jan 13 at 23:28





          @MarkDeven check your sources.list docs.kali.org/general-use/kali-linux-sources-list-repositories

          – GAD3R
          Jan 13 at 23:28


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • 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%2funix.stackexchange.com%2fquestions%2f391278%2fhow-can-i-get-my-wifi-card-tp-link-tl-wn722n-to-work-in-kali-linux-vmware-12%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 to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

          is 'sed' thread safe

          How to make a Squid Proxy server?