Last active
December 17, 2015 01:59
-
-
Save passion8/5532067 to your computer and use it in GitHub Desktop.
Fedena installation for ubuntu
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
| sudo apt-get update -y | |
| sudo apt-get upgrade -y | |
| #install essential build tools | |
| sudo apt-get -y install wget curl build-essential clang | |
| sudo apt-get -y install bison openssl zlib1g | |
| sudo apt-get -y install libxslt1.1 libssl-dev libxslt1-dev make | |
| sudo apt-get -y install libxml2 libffi-dev libyaml-dev | |
| sudo apt-get -y install libxslt1-dev autoconf libc6-dev | |
| sudo apt-get -y install libreadline6-dev zlib1g-dev libcurl4-openssl-dev | |
| sudo apt-get -y install libtool libcurl4-openssl-dev libssl-dev apache2-prefork-dev libapr1-dev libaprutil1-dev make | |
| #install sqlite | |
| sudo apt-get -y install libsqlite3-0 sqlite3 libsqlite3-dev libmysqlclient-dev | |
| #install image resizing and cropping tool | |
| sudo apt-get -y install libmagickwand-dev imagemagick | |
| #install git | |
| sudo apt-get -y install git-core | |
| #install apache2 | |
| sudo apt-get -y install apache2 | |
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
| #install mysql client and server | |
| #here you have create root user | |
| sudo apt-get -y install libmysqlclient-dev mysql-server mysql-client | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment