Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- #
- # Install php 5.2 & apache2 on debian squeeze
- #
- # Usage : ./install-php5.2-squeeze.sh
- #
- # Reference : https://gist.github.com/2971772
- #
- apt-get install curl apache2-mpm-prefork
- cd /tmp
- mkdir php52
- cd php52
- wget -r -np -nH -nd -R index.html http://archives.dotdeb.org/dists/lenny/php5/5.2.17/binary-amd64/
- wget -r -np -nH -nd -R index.html http://archives.dotdeb.org/dists/lenny/php5-pecl/5.2.17/binary-amd64/
- wget http://archive.debian.org/debian/pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.51a-24+lenny5_amd64.deb
- wget http://archive.debian.org/debian/pool/main/libt/libtool/libltdl3_1.5.22-4+etch1_amd64.deb
- curl -k https://raw.github.com/gist/2971772/aebf1d793f0adaa8d255e2280e305b586c3dc812/etc-apt-preferences.d-php5 > /etc/apt/preferences.d/php5
- apt-get update
- dpkg -i libapache2-mod-php5_5.2.17-0.dotdeb.0_amd64.deb \
- php5-mysql_5.2.17-0.dotdeb.0_amd64.deb \
- php5-cli_5.2.17-0.dotdeb.0_amd64.deb \
- php5_5.2.17-0.dotdeb.0_all.deb \
- php5-curl_5.2.17-0.dotdeb.0_amd64.deb \
- php5-common_5.2.17-0.dotdeb.0_amd64.deb \
- libmysqlclient15off_5.0.51a-24+lenny5_amd64.deb
- # suhosin
- #dpkg -i php5-suhosin_5.2.17-0.dotdeb.0_amd64.deb
- # mcrypt
- #dpkg -i libltdl3_1.5.22-4+etch1_amd64.deb php5-mcrypt_5.2.17-0.dotdeb.0_amd64.deb
- # apc
- #dpkg -i php5-apc_5.2.17-0.dotdeb.0_amd64.deb
- # gd
- #dpkg -i php5-gd_5.2.17-0.dotdeb.0_amd64.deb
- # memcache
- #dpkg -i php5-memcache_5.2.17-0.dotdeb.0_amd64.deb
- # mhash
- #dpkg -i php5-mhash_5.2.17-0.dotdeb.0_amd64.deb
- # xsl
- #dpkg -i php5-xsl_5.2.17-0.dotdeb.0_amd64.deb
- apt-get -f install
- /etc/init.d/apache2 restart
Advertisement
Add Comment
Please, Sign In to add comment