Created
December 20, 2012 16:08
-
-
Save s4l1h/4346212 to your computer and use it in GitHub Desktop.
Debian için build essential,nginx,php5,php mongo,curl,mysql,pear,memcache eklentilerini kurar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/usr/bin/sh | |
| echo "############## Build Essential Kuruluyor..##############" | |
| apt-get install build-essential | |
| echo "############## Nginx Kuruluyor.. ##############" | |
| apt-get install nginx | |
| echo "############## php5-cgi,php5-cli,php5-dev,php-pear Kuruluyor.. (apt-get install php5-cgi php5-cli php5-dev php-pear) ##############" | |
| apt-get install php5-fpm php5-cgi php5-cli php5-dev php-pear | |
| echo "############## php mongo kuruluyor ( pecl install mongo ) ##############" | |
| pecl install mongo | |
| echo "############## curl ve php-curl kuruluyor ( apt-get install curl php5-curl ) " | |
| apt-get install curl php5-curl | |
| echo "############## php-gd , php5-mcrypt,php-apc ve php5-mysql kuruluyor ( apt-get install php5-mcrypt php5-gd php5-mysql php-apc) " | |
| apt-get install php5-mcrypt php5-gd php5-mysql php-apc | |
| echo "############## memcached ve php memcache kuruluyor ( apt-get install memcached php5-memcache ) ##############" | |
| apt-get install memcached php5-memcache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment