¿Cómo puedo especificar el tiempo de apagado con "sudo shutdown"?

4

En el siguiente comando de Terminal sudo shutdown -r now , hay un tiempo establecido ("... now"). ¿Hay una manera de establecer un tiempo específico.
Por ejemplo, ¿podría ser sudo shutdown -r -int 1200 ?

    
pregunta Aiden 18.12.2014 - 03:15

2 respuestas

4

Desde man shutdown :

-r      The system is rebooted at the specified time.

[...]

 time    Time is the time at which shutdown will bring the system down and may be the word now
         (indicating an immediate shutdown) or specify a future time in one of two formats:
         +number, or yymmddhhmm, where the year, month, and day may be defaulted to the current
         system values.  The first form brings the system down in number minutes and the second
         at the absolute time specified.

Puede encontrar más información en “ Cómo para apagar Linux en una fecha y hora específica desde el terminal? ”en Unix & Linux Stack Exchange y la página de manual específica de OS X .

    
respondido por el napcae 18.12.2014 - 03:19
1
sudo shutdown -r 12:00

Como se mencionó en @napcae, la información se puede encontrar usando man shutdown , pero aquí hay otra referencia:

enlace

    
respondido por el bretonics 18.12.2014 - 06:09

Lea otras preguntas en las etiquetas