What are the linux shutdown commands?

王林
Release: 2022-12-30 11:12:55
Original
61504 people have browsed it

Linux shutdown commands include: shutdown command, halt command, poweroff command and reboot command. shutdown will schedule a time for the system to shut down. It can be used to stop, shut down, and restart the machine.

What are the linux shutdown commands?

The operating environment of this article: red hat enterprise linux 6.1 system, thinkpad t480 computer.

Detailed introduction:

(Learning video sharing: linux video tutorial)

shutdown command

shutdown will plan a system Time to shut down. It can be used to stop, shut down, and restart the machine.

You can specify a time string (usually now or hh:mm to specify hours/minutes) as the first parameter. Additionally, you can set up a broadcast message to be sent to all logged in users before the system is shut down.

Important: If the time parameter is used, the /run/nologin file will be created 5 minutes before the system is shut down. to ensure that no one can log in anymore.

shutdown command example:

# shutdown
# shutdown now
# shutdown 13:20  
# shutdown -p now  ### 关闭机器
# shutdown -H now  ### 停止机器      
# shutdown -r09:35 ### 在 09:35am 重启机器
Copy after login

To cancel an upcoming shutdown, just enter the following command:

# shutdown -c
Copy after login

halt command

halt tells the hardware to stop All CPU functions, but still remains powered. You can use it to keep your system in a low-maintenance state.

Note that in some cases it will shut down the system completely. The following is an example of the halt command:

# halt             ### 停止机器
# halt -p          ### 关闭机器
# halt --reboot    ### 重启机器
Copy after login

poweroff The command

poweroff will send an ACPI signal to notify the system to shut down.

The following is an example of the poweroff command:

# poweroff           ### 关闭机器
# poweroff --halt    ### 停止机器
# poweroff --reboot  ### 重启机器
Copy after login

reboot command

reboot notifies the system to restart.

# reboot           ### 重启机器
# reboot --halt    ### 停止机器
# reboot -p        ### 关闭机器
Copy after login

Related recommendations: linux tutorial

The above is the detailed content of What are the linux shutdown commands?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template