How uninstall Hashcat? (Linux)
#2
apt-get is a package manager, which is only aware of packages cataloged on the system. If you install with make, you are setting this up outside of the package manager's purview, and it will fail (as you have already seen.)

If the makefile does not supply an uninstall for you (I don't think hashcat has one) you basically just need to remove all the files it put in place (and potentially undo any config changes which may have been made.)

With hashcat, fortunately there's not much to do. This should solve it for you:

Quote:$ sudo rm $(which hashcat)
Reply


Messages In This Thread
How uninstall Hashcat? (Linux) - by marviha1 - 11-19-2019, 08:37 PM
RE: How uninstall Hashcat? (Linux) - by unix-ninja - 11-19-2019, 09:13 PM
RE: How uninstall Hashcat? (Linux) - by philsmd - 11-20-2019, 01:24 AM
RE: How uninstall Hashcat? (Linux) - by marviha1 - 11-21-2019, 08:15 PM