2021-10-05 20:03:12 +01:00
|
|
|
# shutdown
|
|
|
|
|
|
|
|
> Éteint et redémarre le système.
|
|
|
|
> Plus d'informations: <https://manned.org/shutdown.8>.
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Éteint (arrête) immédiatement :
|
2021-10-05 20:03:12 +01:00
|
|
|
|
|
|
|
`shutdown -h now`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Redémarre immédiatement :
|
2021-10-05 20:03:12 +01:00
|
|
|
|
|
|
|
`shutdown -r now`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Redémarre dans 5 minutes :
|
2021-10-05 20:03:12 +01:00
|
|
|
|
|
|
|
`shutdown -r +{{5}} &`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Éteint à 1:00 pm (Utilise un format 24h) :
|
2021-10-05 20:03:12 +01:00
|
|
|
|
|
|
|
`shutdown -h 13:00`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Annule une opération d'arrêt ou de redémarrage du système en attente :
|
2021-10-05 20:03:12 +01:00
|
|
|
|
|
|
|
`shutdown -c`
|