diff --git a/pages.es/linux/poweroff.md b/pages.es/linux/poweroff.md index 6c0dea0d0fc76..e8079215fd1eb 100644 --- a/pages.es/linux/poweroff.md +++ b/pages.es/linux/poweroff.md @@ -1,8 +1,24 @@ # poweroff -> Apaga la máquina. +> Apaga el sistema. > Más información: . -- Apaga la máquina: +- Apaga el sistema: -`sudo poweroff` +`poweroff` + +- Detén el sistema (igual que `halt`): + +`poweroff --halt` + +- Reinicia el sistema (igual que `reboot`): + +`poweroff --reboot` + +- Apaga inmediatamente el sistema sin contactar al administrador: + +`poweroff --force --force` + +- Escribe una entrada en el archivo wtmp sin apagar el sistema: + +`poweroff --wtmp-only`