Skip to content

Instantly share code, notes, and snippets.

@ifduyue
Last active November 5, 2021 06:50
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save ifduyue/dea03b4e139c5758ca114770027cf65c to your computer and use it in GitHub Desktop.
Save ifduyue/dea03b4e139c5758ca114770027cf65c to your computer and use it in GitHub Desktop.
Install proxychains-ng on CentOS
#!/bin/sh
# Usage:
# wget -O- https://gist.githubusercontent.com/ifduyue/dea03b4e139c5758ca114770027cf65c/raw/install-proxychains-ng.sh | sudo bash -s
set -eu
version=4.14
wget https://github.com/rofl0r/proxychains-ng/archive/v$version.tar.gz
tar xf v$version.tar.gz
(cd proxychains-ng-$version
./configure
make
make install
[[ -f /etc/proxychains.conf ]] || cp src/proxychains.conf /etc/proxychains.conf
)
rm -rf v$version.tar.gz proxychains-ng-$version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment