mirror of
https://github.com/alpkeskin/mosint.git
synced 2026-04-26 11:35:51 +03:00
[GH-ISSUE #36] Mosint #30
Labels
No labels
bug
duplicate
enhancement
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mosint#30
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jespervarech on GitHub (Nov 17, 2022).
Original GitHub issue: https://github.com/alpkeskin/mosint/issues/36
@gabrieljimeneztapia commented on GitHub (Nov 18, 2022):
Is anyone having trouble with the 'go install’ command? My kali linux running on virtualbox is able to install mosint but when I type:
It comes out blank, there is no mosint directory to cd
super beginner to all things programming, hacking, coding, pen-testing, and web scraping, so any help would be appreciated,
thanks!
@axelpina commented on GitHub (Nov 19, 2022):
I am running into the same issue.
@afrodev commented on GitHub (Nov 20, 2022):
@AxelPina and @gabrieljimeneztapia I'm also a beginner but what worked for me is to install go(programming language) first. Use: apt install golang but make sure you open with the root terminal(the red one)
@gabrieljimeneztapia commented on GitHub (Nov 22, 2022):
@gabrieljimeneztapia commented on GitHub (Nov 22, 2022):
https://www.youtube.com/watch?v=0xCkdsE1Vx8 this worked! (Nov. 21st, 2022)
@notalexnot commented on GitHub (Nov 23, 2022):
Hey, I found the answer in this link: https://stackoverflow.com/questions/32927645/go-install-not-working
In short: go installs mosint in its own
bindirectory, which (in my case) is in/home/[user]/go/bin. You can check yourGOPATHwith thego envcommand.I created an alias in my
.bashrcto launch mosint without having to reference it directly:alias mosint="~/go/bin/mosint".Edit: As @Lord-Valen says, you can add your GOPATH (e.g.
~/go/bin) toPATHso you don't need to create aliases for every thing you install withgo install.@Lord-Valen commented on GitHub (Nov 23, 2022):
Why alias it when you can add
~/go/bintoPATH?@alpkeskin commented on GitHub (Nov 23, 2022):
Solution:
go install -v github.com/alpkeskin/mosint@latestThats all.