Last active
January 1, 2016 06:59
-
-
Save ratulcse10/ade4da0cb868beb5195f to your computer and use it in GitHub Desktop.
what need to do after fresh linux setup (developer version)
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
//Update linux distro | |
sudo apt-get update | |
//install lampp stack | |
follow this tutorial | |
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-14-04 | |
//install phpmyadmin | |
follow this tutorial | |
https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-phpmyadmin-on-ubuntu-14-04 | |
//install Curl | |
sudo apt-get install curl | |
//install mcrypt | |
sudo php5enmod mcrypt | |
sudo service apache2 restart | |
//install composer | |
curl -sS https://getcomposer.org/installer | php | |
sudo mv composer.phar /usr/local/bin/composer | |
//install git | |
sudo apt-get install git | |
//enable mod_rewrite | |
sudo a2enmod rewrite | |
sudo service apache2 restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment