From 524ef45066a374334daec5a982904bb1a5ce45a6 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 6 Mar 2017 21:27:18 +0100 Subject: [PATCH 1/4] Recommend to use the image when installing on RPi + update manual install --- install_on_raspberry_fr.md | 39 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/install_on_raspberry_fr.md b/install_on_raspberry_fr.md index c32ce29e..09343e6b 100644 --- a/install_on_raspberry_fr.md +++ b/install_on_raspberry_fr.md @@ -16,50 +16,45 @@ Avant d'héberger un serveur chez vous, il est recommandé de prendre connaissan - Une carte SD : au moins **8 Go** et **Classe 10** (par exemple une [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ; - Un adaptateur secteur pour la alimenter la carte ; - Un câble ethernet/RJ-45 pour brancher la carte à votre routeur/box internet. Avec le Raspberry Pi Zero vous pouvez connecter votre carte avec un câble OTG et un adaptateur Wifi USB. -- L'image YunoHost pour Raspberry Pi, à télécharger sur [build.yunohost.org](http://build.yunohost.org/). --- -## Installation avec une image +## Installation avec l'image (recommandée) -1. Copier l’image sur une carte SD +1. Télécharger l'image pour Raspberry Pi -2. Brancher & démarrer +2. Copier l’image sur une carte SD -3. Se connecter en SSH +3. Brancher & démarrer -4. Procéder à la post-installation +4. Se connecter en SSH + +5. Procéder à la post-installation --- -## Installation manuelle +## Installation manuelle (déconseillée) + +
+Nous déconseillons l'installation manuelle car elle plus technique et plus longue que l'installation via l'image pré-installée. Cette documentation est surtout destinée aux utilisateurs avancés. +
Les dernières versions de Raspbian nécessitent un écran et un clavier, car il n'est plus possible de se connecter directement en SSH au Raspberry par défaut. Néanmoins, il est possible de réactiver le lancement de SSH au boot : il suffit de placer dans la partition boot de la carte SD un fichier nommé `ssh`, vide et sans extension.
-0. Installez Raspbian Jessie Lite ([instructions](https://www.raspberrypi.org/downloads/raspbian/)) sur la carte SD puis connectez-vous en ssh au Raspberry Pi. +0. Installez Raspbian Jessie Lite ([instructions](https://www.raspberrypi.org/downloads/raspbian/)) sur la carte SD. - -1. L'user root doit avoir un mot de passe. (Si ce n'est pas le cas l'installation ne marchera pas.) +1. Connectez-vous en ssh au Raspberry Pi avec l'utilisateur pi. Définissez un mot de passe root avec ```bash sudo passwd root ``` -2. Installer git -```bash -sudo apt-get install git -``` +2. Modifiez `/etc/ssh/sshd_config` pour autoriser root à se logger en ssh, en remplacant `PermitRootLogin without-password` par `PermitRootLogin yes`. Rechargez le daemon ssh avec `service ssh reload`, puis re-connectez-vous en root. -3. Récupérer le script d'installation de Yunohost -```bash -git clone https://github.com/YunoHost/install_script /tmp/install_script -``` +3. Déconnectez-vous et reconnectez-vous avec l'utilisateur root cette fois. -4. Executez le script d' installation -```bash -cd /tmp/install_script && sudo ./install_yunohost -``` +4. Poursuivez avec la procédure d'installation manuelle générique. --- From 939bac73ece42b637847c3a6f6f39cf0e6a0a834 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 6 Mar 2017 21:41:16 +0100 Subject: [PATCH 2/4] English translation of previous commit --- install_on_raspberry.md | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/install_on_raspberry.md b/install_on_raspberry.md index 9ed81995..8d503122 100644 --- a/install_on_raspberry.md +++ b/install_on_raspberry.md @@ -12,14 +12,16 @@ Before setting up a server at home, it is recommended that you know the [possibl ## Pre-requisite +- A Raspberry Pi 0, 1, 2 or 3 ; - An SD card: **8GB** capacity (at least) and **Class 10** speed rate are highly recommended (like the [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ; - A power supply (either an adapter or a MicroUSB cable) - An ethernet cable (RJ-45) to connect your Raspberry Pi to your router. (Raspberry Pi Zero users can connect the Pi using an OTG cable, Wifi dongle and [following these instructions](https://davidmaitland.me/2015/12/raspberry-pi-zero-headless-setup/)) -- The **YunoHost Raspberry Pi image**, available on [build.yunohost.org](http://build.yunohost.org/). (Not needed if you want to manually install YunoHost on an existing Debian system.) --- -## Installation using an image +## Installation using the image (recommended) + +0. Download the pre-installed image for Raspberry Pi 1. Copy image to the SD card @@ -31,33 +33,28 @@ Before setting up a server at home, it is recommended that you know the [possibl --- -## Manual installation +## Manual installation (advanced users) + +
+We do not recommend the manual installation because it is more technical and longer than using the pre-installed image. This documentation is only intended for advanced users. +
The latest Rasbpian Jessie image requires a screen and a keyboard, as it is no longer possible to connect directly to the Raspberry through SSH. Nevertheless it is possible to re-enable SSH at boot : before starting your Raspberry, put in the boot partition of the SD card an empty file named `ssh` (without extension).
-0. Install Raspbian Jessie Lite on the SD card ([instructions](https://www.raspberrypi.org/downloads/raspbian/)) and connect to your Pi. +0. Install Raspbian Jessie Lite on the SD card ([instructions](https://www.raspberrypi.org/downloads/raspbian/)). -1. The root user must have a password, or the installation will fail. To change the root password: +1. Connect to your Raspberry Pi with the user `pi`. Set the root password with ```bash sudo passwd root ``` -2. Install git -```bash -sudo apt-get install git -``` +2. Edit `/etc/ssh/sshd_config` to allow ssh login for root, by replacing `PermitRootLogin without-password` with `PermitRootLogin yes`. Reload the ssh daemon with `service ssh reload`. -2. Clone the Yunohost install script repository -```bash -git clone https://github.com/YunoHost/install_script /tmp/install_script -``` +3. Disconnect and reconnect, this time as root. -4. Execute the installation script -```bash -cd /tmp/install_script && sudo ./install_yunohost -``` +4. Then follow the generic manual install procedure. --- From 1b1093c1d4184cbb00f777de3c32eb01429eb215 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 13 Mar 2017 16:16:02 +0100 Subject: [PATCH 3/4] Set the not-recommended block as warning --- install_on_raspberry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_on_raspberry.md b/install_on_raspberry.md index 8d503122..072c2328 100644 --- a/install_on_raspberry.md +++ b/install_on_raspberry.md @@ -35,7 +35,7 @@ Before setting up a server at home, it is recommended that you know the [possibl ## Manual installation (advanced users) -
+
We do not recommend the manual installation because it is more technical and longer than using the pre-installed image. This documentation is only intended for advanced users.
From 4e38ea56507527a227b8d389b2a9ccd0bdc05da4 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 13 Mar 2017 16:16:40 +0100 Subject: [PATCH 4/4] Set the not-recommended block as warning (fr) --- install_on_raspberry_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_on_raspberry_fr.md b/install_on_raspberry_fr.md index 09343e6b..5d453af4 100644 --- a/install_on_raspberry_fr.md +++ b/install_on_raspberry_fr.md @@ -35,7 +35,7 @@ Avant d'héberger un serveur chez vous, il est recommandé de prendre connaissan ## Installation manuelle (déconseillée) -
+
Nous déconseillons l'installation manuelle car elle plus technique et plus longue que l'installation via l'image pré-installée. Cette documentation est surtout destinée aux utilisateurs avancés.