Installing Sympl: Difference between revisions

From Sympl Wiki
Jump to navigation Jump to search
(Created page with "For now, the install instructions are just to install from the repo, but there will be an install script once done. As root: <pre>wget -qO- http://mirror.mythic-beasts.com/my...")
 
No edit summary
Line 1: Line 1:
For now, the install instructions are just to install from the repo, but there will be an install script once done.
There are a couple of ways of installing Sympl.
 
== Automatic Install ==
 
There is a basic auto-install script which can be used to install Sympl with minimal intervention, and point the user to important resources.
 
== Install Stable/Production Version ==
<pre>wget https://gitlab.mythic-beasts.com/sympl/install/raw/master/install.sh</pre>
<pre>bash install.sh</pre>
 
== Install Beta/Testing Version ==
<pre>wget https://gitlab.mythic-beasts.com/sympl/install/raw/master/install.sh</pre>
<pre>bash install.sh --testing</pre>
 
== Manual Install ==
 
Alternatively, you can install manually:


As root:
<pre>wget -qO- http://mirror.mythic-beasts.com/mythic/support@mythic-beasts.com.gpg.key | apt-key add -</pre>
<pre>wget -qO- http://mirror.mythic-beasts.com/mythic/support@mythic-beasts.com.gpg.key | apt-key add -</pre>
<pre>echo deb http://packages.mythic-beasts.com/mythic/ stretch-testing main > /etc/apt/sources.list.d/sympl_mythic-beasts.list</pre>
<pre>echo deb http://packages.mythic-beasts.com/mythic/ stretch main > /etc/apt/sources.list.d/sympl_mythic-beasts.list</pre>
<pre>apt-get update</pre>
<pre>apt-get update</pre>
<pre>apt-get install --install-recommends sympl-core</pre>
<pre>apt-get install --install-recommends sympl-core</pre>


Remember to set the new 'admin' users password with <code>passwd admin</code>, again as root.
You will be prompted for a number of things during the install - information to follow.
 
Remember to set the new 'sympl' users password with <code>passwd sympl</code> once you have installed.

Revision as of 17:19, 26 June 2019

There are a couple of ways of installing Sympl.

Automatic Install

There is a basic auto-install script which can be used to install Sympl with minimal intervention, and point the user to important resources.

Install Stable/Production Version

wget https://gitlab.mythic-beasts.com/sympl/install/raw/master/install.sh
bash install.sh

Install Beta/Testing Version

wget https://gitlab.mythic-beasts.com/sympl/install/raw/master/install.sh
bash install.sh --testing

Manual Install

Alternatively, you can install manually:

wget -qO- http://mirror.mythic-beasts.com/mythic/support@mythic-beasts.com.gpg.key | apt-key add -
echo deb http://packages.mythic-beasts.com/mythic/ stretch main > /etc/apt/sources.list.d/sympl_mythic-beasts.list
apt-get update
apt-get install --install-recommends sympl-core

You will be prompted for a number of things during the install - information to follow.

Remember to set the new 'sympl' users password with passwd sympl once you have installed.