Template:Installation/Preparation/Ubuntu: Difference between revisions
Morriscloud (talk | contribs) (There are sudo commands in this guide, and there doesn't seem to be a reason to have the diaspora user be a sudoer) |
(Turns out the <nowiki/> tag had a reason, who knew!) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
=== Install packages === | === Install packages === | ||
Line 5: | Line 4: | ||
{{#tag:syntaxhighlight| | {{#tag:syntaxhighlight| | ||
sudo apt-get update | sudo apt-get update | ||
sudo apt-get install build-essential git curl imagemagick libmagickwand-dev nodejs redis-server libssl-dev libcurl4-openssl-dev libxml2-dev libxslt1-dev {{#ifeq: {{#var: | sudo apt-get install build-essential git curl gsfonts imagemagick libmagickwand-dev nodejs redis-server libssl-dev libcurl4-openssl-dev libxml2-dev libxslt1-dev libidn11-dev yarnpkg {{#ifeq: {{#var:mode}}|development|libidn11-dev <nowiki/>|}}{{#switch: {{#var:DB}}|mysql=default-libmysqlclient-dev|postgres=libpq-dev|mariadb=default-libmysqlclient-dev}}{{#ifeq: {{#var:mode}}|development|<nowiki/> cmake|}} | ||
|lang=bash}} | |lang=bash}} | ||
=== Install the database === | === Install the database === | ||
Skip this step if you already have one. | Skip this step if you already have one. | ||
See the [https:// | See the [https://ubuntu.com/server/docs/databases-{{#switch: {{#var:DB}}|mariadb=mysql|mysql=mysql|postgres=postgresql}} Ubuntu server guide]. | ||
{{#ifeq: {{#var:mode}}|production| | {{#ifeq: {{#var:mode}}|production| | ||
=== Creating a user for Diaspora === | === Creating a user for Diaspora === | ||
{{#tag: syntaxhighlight| | {{#tag: syntaxhighlight| | ||
sudo adduser --disabled- | sudo adduser --disabled-password diaspora | ||
sudo -iu diaspora | sudo -iu diaspora | ||
|lang="bash"}} | |lang="bash"}} |
Latest revision as of 22:59, 15 June 2024
Install packages
Run:
sudo apt-get update
sudo apt-get install build-essential git curl gsfonts imagemagick libmagickwand-dev nodejs redis-server libssl-dev libcurl4-openssl-dev libxml2-dev libxslt1-dev libidn11-dev yarnpkg
Install the database
Skip this step if you already have one.
See the Ubuntu server guide.
Removing packaged version of RVM
If you installed RVM via the package manager, we recommend to remove it. See this StackOverflow answer for some tips on how to do that and then continue with the installation instructions below.