Installation/Ubuntu/Precise: Difference between revisions

From diaspora* project wiki
m (MrZYX moved page Installation/Ubuntu/Precise to User:MrZYX/WIP:Installation/Ubuntu/Precise without leaving a redirect)
No edit summary
Line 5: Line 5:
Run:
Run:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo apt-get build-essential git imagemagick nodejs redis-server {{#ifeq {{#var:mode}}|development|libmagickwand-dev|}} {{#switch {{#var:DB}}|mysql=libmysqlclient-dev|postgres=libpq-dev}}
sudo apt-get build-essential git imagemagick nodejs redis-server libcurl4-openssl-dev {{#ifeq {{#var:mode}}|development|libmagickwand-dev|}} {{#switch {{#var:DB}}|mysql=libmysqlclient-dev|postgres=libpq-dev}}
</syntaxhighlight>
</syntaxhighlight>



Revision as of 16:41, 20 June 2013

User:MrZYX/WIP:Installation/Head

Install packages

Run:

sudo apt-get build-essential git imagemagick nodejs redis-server libcurl4-openssl-dev {{#ifeq {{#var:mode}}|development|libmagickwand-dev|}} {{#switch {{#var:DB}}|mysql=libmysqlclient-dev|postgres=libpq-dev}}

Install the database

Skip this step if you already have one.

See the |mysql=mysql|postgres=postgresql}}.html Ubuntu server guide.

User:MrZYX/WIP:Installation/Ubuntu/Common