LionSec / katoolin

Automatically install all Kali linux tools
https://lionsec.net
GNU General Public License v2.0
4.68k stars 1.32k forks source link

Armbian (Ubuntu 16.04.3) Orange Pi Zero #89

Open moracabanas opened 7 years ago

moracabanas commented 7 years ago

I did this:

sudo su
git clone https://github.com/LionSec/katoolin.git && cp katoolin/katoolin.py /usr/bin/katoolin
chmod +x /usr/bin/katoolin
sudo katoolin

then I got this:

root@orangepizero:~# sudo katoolin
Traceback (most recent call last):
  File "/usr/bin/katoolin", line 5, in <module>
    from core import gear
ImportError: No module named core

No idea why Python is going wrong

ghost commented 7 years ago

In the version (1.3) you are trying to install, you only need to clone the repository and run the file 'katoolin.py'

mkdir ~/tools ; cd ~/tools
git clone https://github.com/qwartz/katoolin.git ; cd katoolin
sudo python katoolin.py

I have indicated that katoolin clone from another repository because in this repository is returned to version 1.2b

If you want you can add a symbolic link:

cd ~/tools/katoolin
sudo ln -s $(pwd)/katoolin.py /usr/bin/katoolin
chmod +x /usr/bin/katoolin
moracabanas commented 7 years ago

Thanks you so much I will try it and post results to close this thread. Very neat software, thanks for your work and your time

ghost commented 7 years ago

thanks you @moracabanas