New to linux - How to install from a Git repo [duplicate]
Clash 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
kali-linux github
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.
add a comment |Â
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
kali-linux github
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
add a comment |Â
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
kali-linux github
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
kali-linux github
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
add a comment |Â
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
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
The installation instructions on the repository site are:
- Install DKMS and other required tools
$ sudo apt-get install git linux-headers-generic build-essential dkms
- 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 .
- 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.
add a comment |Â
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:
- Install DKMS and other required tools
$ sudo apt-get install git linux-headers-generic build-essential dkms
- 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 .
- 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.
add a comment |Â
up vote
2
down vote
The installation instructions on the repository site are:
- Install DKMS and other required tools
$ sudo apt-get install git linux-headers-generic build-essential dkms
- 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 .
- 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.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
The installation instructions on the repository site are:
- Install DKMS and other required tools
$ sudo apt-get install git linux-headers-generic build-essential dkms
- 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 .
- 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.
The installation instructions on the repository site are:
- Install DKMS and other required tools
$ sudo apt-get install git linux-headers-generic build-essential dkms
- 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 .
- 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.
answered Jul 19 at 2:24
telcoM
9,82111032
9,82111032
add a comment |Â
add a comment |Â
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