Skip to content

Instantly share code, notes, and snippets.

@armnosn
Last active December 15, 2015 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save armnosn/5203930 to your computer and use it in GitHub Desktop.
Save armnosn/5203930 to your computer and use it in GitHub Desktop.
Installing LAMP stack manually on Ubuntu 12.04
- `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