2014-06-06 15:39:29 +02:00
|
|
|
# Installer YunoHost manuellement
|
|
|
|
|
|
|
|
Une fois que vous avez accès à votre serveur, directement ou par SSH, vous pouvez installer YunoHost avec le script d'installation.
|
|
|
|
|
|
|
|
<div class="alert alert-info">
|
|
|
|
<b>Note :</b> La configuration des services sera écrasée, il est donc recommandé d'installer YunoHost sur un système Debian nouvellement installé.
|
|
|
|
</div>
|
|
|
|
|
2014-06-06 17:33:55 +02:00
|
|
|
1. Installez git
|
2014-06-06 15:39:29 +02:00
|
|
|
```bash
|
|
|
|
sudo apt-get install git
|
|
|
|
```
|
|
|
|
|
2014-06-06 17:33:55 +02:00
|
|
|
2. Clonez le dépôt du script d'installation de YunoHost
|
2014-06-06 15:39:29 +02:00
|
|
|
```bash
|
|
|
|
git clone https://github.com/YunoHost/install_script /tmp/install_script
|
|
|
|
```
|
|
|
|
|
2014-06-06 17:33:55 +02:00
|
|
|
3. Lancez le script d'installation
|
2014-06-06 15:39:29 +02:00
|
|
|
```bash
|
|
|
|
cd /tmp/install_script && sudo ./install_yunohostv2
|
|
|
|
```
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<p class="text-center">
|
|
|
|
<img src="https://yunohost.org/images/install_script.png">
|
|
|
|
</p>
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2014-06-06 17:33:55 +02:00
|
|
|
*Une fois l'installation terminée, vous pouvez procéder à la post-installation : **[yunohost.org/postinstall](/postinstall_fr)** *
|