doc/moulinette_fr.md
2016-03-30 14:32:52 +02:00

52 lines
1.7 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Moulinette
La **Moulinette** est linterface en ligne de commande (CLI) de YunoHost. Elle permet de gérer entièrement YunoHost : utilisateurs, domaines, applications, pare-feu, sauvegardes et monitoring.
Lautre interface est l[administration web](/admin_fr), qui permet de se passer de la ligne de commande.
Pour utiliser la Moulinette il faut se connecter à son serveur en [SSH](/ssh_fr).
### Utilisation
La moulinette fonctionne avec deux niveaux de sous-commandes, par exemple :
```bash
yunohost user create
```
Vous pouvez y adjoindre des arguments pour certaines commandes :
```bash
yunohost app install roundcube --label Webmail
```
Pour obtenir de laide à tout moment sur lutilisation dune commande ou dune sous-commande, vous pouvez ajouter ```-h``` ou ```--help``` à la commande. Essayez par exemple :
```bash
yunohost --help
yunohost user --help
yunohost user create --help
```
---
Ça y est, vous savez utiliser la moulinette! Nhésitez pas à parcourir ses fonctions.
```bash
root@yunohost:~# yunohost --help
usage: yunohost [-h] [-v]
{domain,monitor,firewall,backup,app,hook,dyndns,user,tools}
...
positional arguments:
{domain,monitor,firewall,backup,app,hook,dyndns,user,tools}
domain Manage domains
monitor Monitoring functions
firewall Manage firewall rules
backup Manage backups
app Manage apps
hook Manage hooks
dyndns Subscribe and Update DynDNS Hosts
user Manage users
tools Specific tools
optional arguments:
-h, --help show this help message and exit
-v, --version Display YunoHost version
```