mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Add install_on_debian.md
This commit is contained in:
parent
49d8ce8e44
commit
332a48c5ee
1 changed files with 40 additions and 0 deletions
40
install_on_debian.md
Normal file
40
install_on_debian.md
Normal file
|
@ -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.
|
Loading…
Reference in a new issue