Ubuntu Common Software Installation script, collected some common software development.
After the following code is copied, save as installdev.sh file, you need to set the permission to 777
Execute sudo./installdev.
#!/bin/bash#echo "hello,world!"#install PHP and MySQLsudo apt-get-y install php5-cli php5-cgi mysql-server php5-mysql php5-Devsudo Apt-get-y install Nginxsudo apt-get-y Install php5-Fpmsudo Apt-get-y Install php5-Memcachesudo Apt-get-y Install php5-Mcryptsudo Apt-get-y Install php5-Curlsudo Apt-get-y Install php5-GD#Installing PECLsudo apt-get-y install php-Pear#Installing Redissudo pecl-y install Redissudo apt-get-y Install php5-Redissudo Apt-get-y Install redis-Toolssudo Apt-get-y Install redis-Server#Installing memcachedsudo apt-get-y install memcached#Installing MCryptsudo apt-get-y install mcrypt sudo ln-s/etc/php5/conf.d/mcrypt.ini/etc/php5/mods-Availablesudo php5enmod MCrypt#Installing the JDKsudo apt-get-y install openjdk-8-JDK#Installing PHPUnitsudo apt-get-y install phpunit#installing HGsudo apt-get-y Install mercurial#Install SVNsudo apt-get-y Install Subversion#Installing Ugetsudo apt-get-y install uget#Install Flash Playersudo apt-get-y install flashplugin-Installer#Installing Curlsudo apt-get-y install Curlcurl-S Http://getcomposer.org/installer |PHP#Installing RARsudo apt-get-y install unrar rar#Install FTPsudo apt-get-y Install FileZilla#Installing Mysql-workbenchsudo apt-get-y install mysql-Workbench#Restart php-fpm, Nginxsudo/etc/init.d/php5-fpm Restartsudo/etc/init.d/nginx restart
Ubuntu common software Automatic installation script