won't install #78
-
Hello everyone, I just followed the installation process , however the tool didn't installed, I ran this command on kali linux 2021.2 it did downloaded as well, but when I do "shuffledns" "shuffledns.go" ...etc it returns "command not found" I also tried to clone the repository>go get>go build Please can anyone improve the README.md about the installation and thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
For the cloned repository: cd shuffledns/cmd/shuffledns
go build -o shuffledns
chmod +x shuffledns
./shuffledns |
Beta Was this translation helpful? Give feedback.
-
@ProgramFilesx86 |
Beta Was this translation helpful? Give feedback.
go get
downloads packages underGOPATH
, or if the environmental variable is not set I believe it defaults to$HOME/go
, hence you should be looking there. (e.g.$GOPATH/bin/shuffledns
or~/go/bin/shuffledns
)For the cloned repository:
cd shuffledns/cmd/shuffledns go build -o shuffledns chmod +x shuffledns ./shuffledns