Skip to content

Instantly share code, notes, and snippets.

@hirofumihida
Last active April 18, 2018 12:48
Show Gist options
  • Save hirofumihida/dc5d01feae2c40490b2b34aa387be688 to your computer and use it in GitHub Desktop.
Save hirofumihida/dc5d01feae2c40490b2b34aa387be688 to your computer and use it in GitHub Desktop.
squid install memo

  • configure ファイルを生成する
$ sudo yum update -y

$ cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)

$ sudo yum -y groupinstall 'Development Tools'

$ sudo yum -y install wget git ed libtool-ltdl-devel 

$ cd /usr/local/src
$ sudo wget https://github.com/squid-cache/squid/archive/SQUID_4_0_21.tar.gz
$ sudo tar zxvf SQUID_4_0_21.tar.gz
$ cd squid-SQUID_4_0_21

$ sudo ./bootstrap.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment