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 |
Replies: 2 comments 1 reply
|
For the cloned repository: cd shuffledns/cmd/shuffledns
go build -o shuffledns
chmod +x shuffledns
./shuffledns |
|
@ProgramFilesx86 |
go getdownloads 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/shufflednsor~/go/bin/shuffledns)For the cloned repository:
cd shuffledns/cmd/shuffledns go build -o shuffledns chmod +x shuffledns ./shuffledns