Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tor not installed #7

Open
Maloute431 opened this issue Nov 24, 2024 · 1 comment
Open

Tor not installed #7

Maloute431 opened this issue Nov 24, 2024 · 1 comment

Comments

@Maloute431
Copy link

Tor is installed on my kali linux but it sauys that it is nt installed

@4lxprime
Copy link
Owner

The program checks if the tor bin exists in your path or in your builtin with the command command -v tor > /dev/null 2>&1 || { echo >&2 "error"; exit 1; } which will use command -v to lookup for the tor binary's path in your $PATH and writing the result to void with /dev/null, in case of error it would fail and log "error" in this case but in the code it's most likely to be "I require tor but..." and exit.
For debugging your case, can you try running command -v tor and if there is no result adding it to your $PATH.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants