New to linux - How to install from a Git repo [duplicate]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





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







up vote
-1
down vote

favorite













This question already has an answer here:



  • Why is Kali Linux so hard to set up? Why won't people help me?

    5 answers



I just cloned this repo, but I have absolutely no idea how I can install it. I cd-ed to it and typed $ sudo apt-get install git linux-headers-generic build-essential dkms but it didn't seem to work out. Any ideas? The repo is:
https://github.com/Mange/rtl8192eu-linux-driver







share|improve this question













marked as duplicate by Jesse_b, Jeff Schaller, Rui F Ribeiro, slm♦ Jul 19 at 4:13


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 3




    If you are new to Linux, please reconsider your desire to use Kali. It is intended for advanced users.
    – Thegs
    Jul 18 at 20:38






  • 4




    Are you sure Kali is the right Linux distribution to learn the fundamentals of using Linux with? Maybe their website can help you answering this question: docs.kali.org/introduction/should-i-use-kali-linux.
    – Edmund L
    Jul 18 at 20:45

















up vote
-1
down vote

favorite













This question already has an answer here:



  • Why is Kali Linux so hard to set up? Why won't people help me?

    5 answers



I just cloned this repo, but I have absolutely no idea how I can install it. I cd-ed to it and typed $ sudo apt-get install git linux-headers-generic build-essential dkms but it didn't seem to work out. Any ideas? The repo is:
https://github.com/Mange/rtl8192eu-linux-driver







share|improve this question













marked as duplicate by Jesse_b, Jeff Schaller, Rui F Ribeiro, slm♦ Jul 19 at 4:13


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 3




    If you are new to Linux, please reconsider your desire to use Kali. It is intended for advanced users.
    – Thegs
    Jul 18 at 20:38






  • 4




    Are you sure Kali is the right Linux distribution to learn the fundamentals of using Linux with? Maybe their website can help you answering this question: docs.kali.org/introduction/should-i-use-kali-linux.
    – Edmund L
    Jul 18 at 20:45













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite












This question already has an answer here:



  • Why is Kali Linux so hard to set up? Why won't people help me?

    5 answers



I just cloned this repo, but I have absolutely no idea how I can install it. I cd-ed to it and typed $ sudo apt-get install git linux-headers-generic build-essential dkms but it didn't seem to work out. Any ideas? The repo is:
https://github.com/Mange/rtl8192eu-linux-driver







share|improve this question














This question already has an answer here:



  • Why is Kali Linux so hard to set up? Why won't people help me?

    5 answers



I just cloned this repo, but I have absolutely no idea how I can install it. I cd-ed to it and typed $ sudo apt-get install git linux-headers-generic build-essential dkms but it didn't seem to work out. Any ideas? The repo is:
https://github.com/Mange/rtl8192eu-linux-driver





This question already has an answer here:



  • Why is Kali Linux so hard to set up? Why won't people help me?

    5 answers









share|improve this question












share|improve this question




share|improve this question








edited Jul 18 at 22:51









Edmund L

846




846









asked Jul 18 at 20:33









GummyGod

1




1




marked as duplicate by Jesse_b, Jeff Schaller, Rui F Ribeiro, slm♦ Jul 19 at 4:13


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Jesse_b, Jeff Schaller, Rui F Ribeiro, slm♦ Jul 19 at 4:13


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









  • 3




    If you are new to Linux, please reconsider your desire to use Kali. It is intended for advanced users.
    – Thegs
    Jul 18 at 20:38






  • 4




    Are you sure Kali is the right Linux distribution to learn the fundamentals of using Linux with? Maybe their website can help you answering this question: docs.kali.org/introduction/should-i-use-kali-linux.
    – Edmund L
    Jul 18 at 20:45













  • 3




    If you are new to Linux, please reconsider your desire to use Kali. It is intended for advanced users.
    – Thegs
    Jul 18 at 20:38






  • 4




    Are you sure Kali is the right Linux distribution to learn the fundamentals of using Linux with? Maybe their website can help you answering this question: docs.kali.org/introduction/should-i-use-kali-linux.
    – Edmund L
    Jul 18 at 20:45








3




3




If you are new to Linux, please reconsider your desire to use Kali. It is intended for advanced users.
– Thegs
Jul 18 at 20:38




If you are new to Linux, please reconsider your desire to use Kali. It is intended for advanced users.
– Thegs
Jul 18 at 20:38




4




4




Are you sure Kali is the right Linux distribution to learn the fundamentals of using Linux with? Maybe their website can help you answering this question: docs.kali.org/introduction/should-i-use-kali-linux.
– Edmund L
Jul 18 at 20:45





Are you sure Kali is the right Linux distribution to learn the fundamentals of using Linux with? Maybe their website can help you answering this question: docs.kali.org/introduction/should-i-use-kali-linux.
– Edmund L
Jul 18 at 20:45











1 Answer
1






active

oldest

votes

















up vote
2
down vote













The installation instructions on the repository site are:




  1. Install DKMS and other required tools



$ sudo apt-get install git linux-headers-generic build-essential dkms



  1. Add the driver to DKMS. This will copy the source to a system directory so that it can used to rebuild the module on kernel upgrades.



$ sudo dkms add .



  1. Build and install the driver.



$ sudo dkms install rtl8192eu/1.0


You said you've only executed the first step, which only prepares the tools needed to compile and install the driver. All three steps are needed.



The second command should be run in the top directory of your cloned repository; the first and the last command can be run anywhere.






share|improve this answer




























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    2
    down vote













    The installation instructions on the repository site are:




    1. Install DKMS and other required tools



    $ sudo apt-get install git linux-headers-generic build-essential dkms



    1. Add the driver to DKMS. This will copy the source to a system directory so that it can used to rebuild the module on kernel upgrades.



    $ sudo dkms add .



    1. Build and install the driver.



    $ sudo dkms install rtl8192eu/1.0


    You said you've only executed the first step, which only prepares the tools needed to compile and install the driver. All three steps are needed.



    The second command should be run in the top directory of your cloned repository; the first and the last command can be run anywhere.






    share|improve this answer

























      up vote
      2
      down vote













      The installation instructions on the repository site are:




      1. Install DKMS and other required tools



      $ sudo apt-get install git linux-headers-generic build-essential dkms



      1. Add the driver to DKMS. This will copy the source to a system directory so that it can used to rebuild the module on kernel upgrades.



      $ sudo dkms add .



      1. Build and install the driver.



      $ sudo dkms install rtl8192eu/1.0


      You said you've only executed the first step, which only prepares the tools needed to compile and install the driver. All three steps are needed.



      The second command should be run in the top directory of your cloned repository; the first and the last command can be run anywhere.






      share|improve this answer























        up vote
        2
        down vote










        up vote
        2
        down vote









        The installation instructions on the repository site are:




        1. Install DKMS and other required tools



        $ sudo apt-get install git linux-headers-generic build-essential dkms



        1. Add the driver to DKMS. This will copy the source to a system directory so that it can used to rebuild the module on kernel upgrades.



        $ sudo dkms add .



        1. Build and install the driver.



        $ sudo dkms install rtl8192eu/1.0


        You said you've only executed the first step, which only prepares the tools needed to compile and install the driver. All three steps are needed.



        The second command should be run in the top directory of your cloned repository; the first and the last command can be run anywhere.






        share|improve this answer













        The installation instructions on the repository site are:




        1. Install DKMS and other required tools



        $ sudo apt-get install git linux-headers-generic build-essential dkms



        1. Add the driver to DKMS. This will copy the source to a system directory so that it can used to rebuild the module on kernel upgrades.



        $ sudo dkms add .



        1. Build and install the driver.



        $ sudo dkms install rtl8192eu/1.0


        You said you've only executed the first step, which only prepares the tools needed to compile and install the driver. All three steps are needed.



        The second command should be run in the top directory of your cloned repository; the first and the last command can be run anywhere.







        share|improve this answer













        share|improve this answer



        share|improve this answer











        answered Jul 19 at 2:24









        telcoM

        9,82111032




        9,82111032












            Popular posts from this blog

            How to check contact read email or not when send email to Individual?

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay