Last active
December 15, 2015 04:49
-
-
Save armnosn/5203930 to your computer and use it in GitHub Desktop.
Installing LAMP stack manually on Ubuntu 12.04
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 install apache2` | |
- `sudo apt-get build-dep php5` | |
- `sudo apt-get install libxml2-dev` | |
- `sudo apt-get install libcurl4-openssl-dev pkg-config` | |
- `sudo apt-get install libjpeg-dev` | |
- `sudo apt-get install libpng12-dev` | |
- `sudo apt-get install libt1-dev` | |
- `sudo apt-get install libib-util` | |
- `sudo apt-get install libfbclient2` | |
- install `freetype2` http://www.freetype.org/download.html | |
- `sudo apt-get install t1lib-bin` | |
- `sudo apt-get install php5-interbase` | |
- install firebird (download from firebirdsql.org) | |
- `sudo apt-get install libmcrypt-dev` | |
- download php from php.net (.tar.gz) file | |
- then config php with this gist https://gist.github.com/armnosn/5202883 | |
- `sudo make && sudo make install` | |
- `sudo apt-get install libapache2-mod-php5` | |
## useful links | |
- http://zgadzaj.com/how-to-install-php-53-and-52-together-on-ubuntu-1204 | |
- http://www.ducea.com/2008/11/23/configure-error-libgds-libib_util-or-libfbclient-not-found/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment