Shutdown system after 3 minutes

Gabriel Turqos

Active Member
Joined
Mar 11, 2019
Messages
17
How can I shutdown the system after 3 minutes automatically.
 

shutdown /s /t 180
 

You can use the shutdown command + option like below.

$ sudo shutdown -h +3

Reference: How To Shutdown Linux System? – POFTUT
 

Solution
Back
Top