mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Update install_on_raspberry_fr.md
This commit is contained in:
parent
517609fc4e
commit
1800a386f0
1 changed files with 53 additions and 4 deletions
|
@ -16,11 +16,11 @@
|
|||
- [Non officielle Jessie/YunoHost 2.2 créée le 5 décembre 2015](https://forum.yunohost.org/t/building-a-new-image-for-raspberry-debian-jessie-fr-en/1101/2)
|
||||
- Un tutoriel d'installation basée sur YunoHost 2.4 a été écrit par AviGNU : http://avignu.wiki.tuxfamily.org/doku.php?id=documentation:yunohost-jessie
|
||||
|
||||
<div class="alert alert-info">**Ces deux images ne sont plus à jour**. Personne ne maintiens d’image de YunoHost pour Raspberry Pi. Vous pouvez [maintenir une image](build_arm_image_en) pour le projet YunoHost.</div>
|
||||
Il y a deux façon d'installer Yunohost, soit vous pouvez repartir de zéro avec une nouvelle image ou installer manuellement :
|
||||
|
||||
---
|
||||
|
||||
## Étapes d’installation
|
||||
## Installation avec une image
|
||||
|
||||
<a class="btn btn-lg btn-default" href="/copy_image_fr">1. Copier l’image sur une carte SD</a>
|
||||
|
||||
|
@ -28,19 +28,68 @@
|
|||
|
||||
<a class="btn btn-lg btn-default" href="/postinstall_fr">3. Post-installation</a>
|
||||
|
||||
|
||||
## Installation manuelle
|
||||
|
||||
Utilisez cette méthode si vous ne pouvez pas repartir de zéro et utiliser une image. Attention, ces étapes sont différentes si vous installez sur un Raspberry Pi Zero !
|
||||
|
||||
1. Installer git
|
||||
```bash
|
||||
sudo apt-get install git
|
||||
```
|
||||
|
||||
2. Cloner le repo Yunohost install script
|
||||
```bash
|
||||
git clone https://github.com/YunoHost/install_script /tmp/install_script
|
||||
```
|
||||
|
||||
3. L'user root doit avoir un mot de passe. Si ce n'est pas le cas l'installation ne marchera pas:
|
||||
```bash
|
||||
sudo passwd root
|
||||
```
|
||||
|
||||
4. Mettre à jour le Pi:
|
||||
```bash
|
||||
apt-get update ; apt-get dist-upgrade -y ; apt-get install rpi-update ; rpi-update ; reboot`
|
||||
```
|
||||
|
||||
Cela va mettre à jour le Pi, puis rebooter.
|
||||
|
||||
<div class="alert alert-info">
|
||||
<b>Raspberry Pi Zero :</b> suivez ces étapes pour une installation réussie.
|
||||
|
||||
</div>
|
||||
|
||||
0.1 Installez metronome manuellement:
|
||||
```bash
|
||||
apt-get install -y ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem
|
||||
wget https://github.com/YunoHost/metronome/archive/debian/3.7.9+33b7572-1.zip
|
||||
unzip 3.7.9+33b7572-1.zip
|
||||
cd metronome-debian-3.7.9-33b7572-1
|
||||
dpkg-buildpackage -rfakeroot -uc -b -d
|
||||
cd ..
|
||||
dpkg -i metronome_3.7.9+33b7572-1_armhf.deb
|
||||
apt-mark hold metronome
|
||||
```
|
||||
|
||||
4. Executer le script d' installation
|
||||
```bash
|
||||
cd /tmp/install_script && sudo ./install_yunohost
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Recommandé après la post-installation
|
||||
|
||||
* Se connecter en [ssh](ssh_fr) : **root@IP.DU.RPI** (mot de passe : **yunohost**)
|
||||
* Changer le mot de passe root : ```passwd root```
|
||||
|
||||
* Mettre à jour le système d’exploitation : ```apt-get update && apt-get dist-upgrade && rpi-update```
|
||||
* Configurer la langue, le clavier et le fuseau horaire avec l'outil **raspi-config**
|
||||
|
||||
---
|
||||
|
||||
#### Créer une image
|
||||
* [Créer une image pour Raspberry](/build_arm_image_en)
|
||||
* [Créer une image pour Raspberry](/build_arm_image_fr)
|
||||
|
||||
---
|
||||
***Si vous avez besoin d’aide lors de ces étapes, n’hésitez pas à utiliser les différents [moyens de support](/support_fr).***
|
||||
|
|
Loading…
Reference in a new issue