linux怎样重启命令,Linux重启命令介绍

下面介绍在 Linux 操作系统中重启和关闭相关的命令:shutdown、reboot、init、halt、poweroff、systemctl,你可以根据需要来选择适合的 Linux 命令关闭或重新启动系统。其中 shutdown、halt、poweroff、reboot 命令是用来停机、重启或切断电源, systemctl 命令管理 systemd,是 Linux 系统和服务器的管理程序。

使用 shutdown 命令关闭和重启 Linux 系统

shutdown 命令用于断电或重启本地和远程的 Linux 机器。它为高效完成作业提供多个选项。如果使用了时间参数,系统关闭的 5 分钟之前,会创建 /run/nologin 文件,以确保后续的登录会被拒绝。

通用语法如下:

# shutdown [OPTION] [TIME] [MESSAGE]

运行下面的命令来立即关闭 Linux 机器。它会立刻杀死所有进程,并关闭系统:

# shutdown -h now

-h:如果不特指 -halt 选项,这等价于 -poweroff 选项。

另外我们可以使用带有 -halt 选项的 shutdown 命令来立即关闭设备:

# shutdown --halt now

或者:

# shutdown -H now

-H, --halt:停止设备运行。

另外我们可以使用带有 poweroff 选项的 shutdown 命令来立即关闭设备:

# shutdown --poweroff now

或者:

# shutdown -P now

-P, --poweroff:切断电源(默认)。

如果您没有使用时间选项运行下面的命令,它将会在一分钟后执行给出的命令:

# shutdown -h

Shutdown scheduled for THU 2018-11-01 06:42:31 EDT, use 'shutdown -c' to cancel.

其他的登录用户都能在中断中看到如下的广播消息:

Broadcast message from [email protected] (THU 2018-11-01 06:41:31 EDT):

The system is going down for power-off at THU 2018-11-01 06:42:31 EDT!

对于使用了 -halt 选项:

# shutdown

你可能感兴趣的:(linux怎样重启命令)