How to install file downloaded from git clone

Я пытался загрузить hcxpcaptool в Ubuntu, но не смог найти его в репозитории, поэтому я загрузил его с помощью эта команда:

wget git clone https://github.com/ZerBea/hcxtools.git

но я не могу установить ее.

Я пытался установить ее с помощью этой команды:

cd hcxtools
cd hcxtools.git

, но вывод:

bash: cd: hcxtools: No such file or directory

, так как я могу установить этот hcxpcaptool?

enter image description here

0
задан 7 July 2020 в 20:07

2 ответа

эй, наконец, я нашел ответ после загрузки мне нужно установить zlib dev с помощью этой команды

apt-get install libcurl4-openssl-dev libssl-devzlib1g-dev libpcap-dev
make
make install

DONE.

1
ответ дан 30 July 2020 в 22:12

You want to start by reading the file labeled "README". It will tell you everything that you need to know about installing the program (or at least it should). You can ignore the hcxtools.git directory. I highly recommend getting to know git a bit more by running through some basic tutorials, but for now you can ignore that directory completely.

I see a make file in the directory you have pictured. This means that you will have to use the make command to build it. So from the terminal

sudo apt install make
cd ~/Desktop/hcxtools-master
make

Running make by itself will "target all" in the make file and build your program

Please note that I have not read the README file in that repository so I do not know if anything additional is needed.

2
ответ дан 30 July 2020 в 22:12

Другие вопросы по тегам:

Похожие вопросы: