hey, had this exact issue!
locate won't find proxychains if it's not installed or if the db is old.
first, install it: `sudo apt install proxychains4`.
then, run `sudo updatedb` and try `locate proxychains` again.
if that doesn't work, `find / -type f -name "*proxychains*"` is a brute-force way to find it.
locate won't find proxychains if it's not installed or if the db is old.
first, install it: `sudo apt install proxychains4`.
then, run `sudo updatedb` and try `locate proxychains` again.
if that doesn't work, `find / -type f -name "*proxychains*"` is a brute-force way to find it.
