Skip to content

Instantly share code, notes, and snippets.

@ratulcse10
Last active January 1, 2016 06:59
Show Gist options
  • Save ratulcse10/ade4da0cb868beb5195f to your computer and use it in GitHub Desktop.
Save ratulcse10/ade4da0cb868beb5195f to your computer and use it in GitHub Desktop.
what need to do after fresh linux setup (developer version)
//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