From 49d8ce8e4486983c597aad0a891f36ff0965d713 Mon Sep 17 00:00:00 2001 From: "bachir@g-u-i.net" Date: Sat, 28 Dec 2013 22:56:16 +0100 Subject: [PATCH 1/3] Update install.md --- install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.md b/install.md index d8c423c6..6f593706 100644 --- a/install.md +++ b/install.md @@ -3,7 +3,7 @@ You have two ways to install YunoHost: 1. From an USB key or a CD-ROM (below guide) -2. [On an existing Debian](/#/install_on_debian) +2. [Trought the install script on an existing Debian](/#/install_on_debian) ### Pre-requisite From 332a48c5eeda548879bdc5536502b52daa74e435 Mon Sep 17 00:00:00 2001 From: "bachir@g-u-i.net" Date: Sat, 28 Dec 2013 23:00:27 +0100 Subject: [PATCH 2/3] Add install_on_debian.md --- install_on_debian.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 install_on_debian.md diff --git a/install_on_debian.md b/install_on_debian.md new file mode 100644 index 00000000..544a18de --- /dev/null +++ b/install_on_debian.md @@ -0,0 +1,40 @@ +#Installer yunohost sur un server debian via le script d'installation + +## Prérequis + +Afin de pouvoir récupérer le script install_yunohost, il faut avoir git d'installé sur votre machine. + +Pour l'installer sur une distribution Debian: +```bash +$ apt-get install git +``` + +## Récuperation du script + +Placez vous tout d'abord dans le répertoire /tmp: +```bash +$ cd /tmp +``` + +Récupérez le script grâce à git: +```bash +$ git clone https://github.com/YunoHost/install_script.git +``` + +Déplacez vous dans le répertoire Script nouvellement cloné: +```bash +$ cd install_script/ +``` + +Rendez le script install_yunohost exécutable: +```bash +$ chmod o+x install_yunohost +``` + +## Lancer l'installation +Exécutez le script d'installation +```bash +$ ./install_yunohostv2 +``` + +Le script va automatiquement lancer l'installation de yunohost sur votre poste ainsi que tous les paquets nécessaires. Répondez simplement aux questions qui vous seront posées. From b1995e2c2b2cb925bd9e0313a3d1e0462315224a Mon Sep 17 00:00:00 2001 From: "bachir@g-u-i.net" Date: Sun, 29 Dec 2013 00:06:11 +0100 Subject: [PATCH 3/3] Update install_on_debian.md --- install_on_debian.md | 52 ++++++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/install_on_debian.md b/install_on_debian.md index 544a18de..c40f49f9 100644 --- a/install_on_debian.md +++ b/install_on_debian.md @@ -1,40 +1,46 @@ -#Installer yunohost sur un server debian via le script d'installation +# Installation guide on Debian -## Prérequis +Vous disposez de deux moyens pour installer YunoHost: +You have two ways to install Yunohost: -Afin de pouvoir récupérer le script install_yunohost, il faut avoir git d'installé sur votre machine. +1. [From an USB key or a CD-ROM](#/install) +2. With the install script on an existing Debian (bellow guide) -Pour l'installer sur une distribution Debian: +### Pre-requisite +A box, a VPS, or a dedicated server: + +* with Debian 7 (Wheezy, Raspbian, Cubian, etc.) installed +* Connected to Internet +* root access ou sudoer via SSH + +### Installation + +1. Connect to your debian system trought ssh ```bash -$ apt-get install git +ssh root@monserveur.org ``` -## Récuperation du script - -Placez vous tout d'abord dans le répertoire /tmp: +2. Install git ```bash -$ cd /tmp +apt-get install git ``` -Récupérez le script grâce à git: +3. Clone the Yonuhost install script repository ```bash -$ git clone https://github.com/YunoHost/install_script.git +git clone https://github.com/YunoHost/install_script /tmp/install_script ``` -Déplacez vous dans le répertoire Script nouvellement cloné: +4. Execute the install script ```bash -$ cd install_script/ +cd /tmp/install_script && ./install_yunohostv2 ``` -Rendez le script install_yunohost exécutable: -```bash -$ chmod o+x install_yunohost -``` +### Post-install -## Lancer l'installation -Exécutez le script d'installation -```bash -$ ./install_yunohostv2 -``` +Once the install finished, the script will ask you two parameters to procede the post-install: -Le script va automatiquement lancer l'installation de yunohost sur votre poste ainsi que tous les paquets nécessaires. Répondez simplement aux questions qui vous seront posées. +1. **domain name**: Please choose the domain name wich will point to your Yunohost IP. You can choose to use a subdomain of **nohost.me** or **noho.st**, in that case the DNS configuration will be automatic, you will just have to wait three min to the end of the post-install. Or you can use your own [well configured domain name](#/dns) + +2. **administrator password**: this is the password to administer you yunohost install, **choose it strong** and don't share it, without it you can loose your system. + +after the post-install script you will be able to access to your administration [web interface](#/admin) **https://your-domain.org/ynhadmin** or to amdinister your yunohost via the command-line interface called "[moulinette](#/moulinette)".