Linux命令(35)之shutdown

简介: Linux命令(35)之shutdown

Linux命令之shutdown

1.shutdown介绍
linux命令shutdown主要用来重启、关闭服务器。

2.shutdown用法
shutdown [参数]

shutdown常用参数
参数 说明
-c 取消即将执行的关机程序
-k
仅仅向每个登录用户发出警告信息,并不真正关机

-h 关机(halt)
-H 关机(halt)
-P 关机(poweroff)
-r 重启(reboot)
--help
shutdown帮助信息

3.实例
3.1.立即关机
命令:

shutdown -H now

OR

shutdown -h now

OR

shutdown -P now

OR

init 0

OR

poweroff

3.2.立即重启
命令:

shutdown -r now

OR

reboot

OR

init 6

3.3.30分钟后关机,并给出提示信息
命令:

shutdown -h +30 "The system will poweroff"

[root@rhel77 ~]# shutdown -h +30 "The system will poweroff"
Shutdown scheduled for Tue 2023-06-13 11:33:48 CST, use 'shutdown -c' to cancel.
[root@rhel77 ~]#
使用shutdown -c可以取消上述动作

[root@rhel77 ~]# shutdown -h +30 "The system will poweroff"
Shutdown scheduled for Tue 2023-06-13 11:33:48 CST, use 'shutdown -c' to cancel.
[root@rhel77 ~]#
[root@rhel77 ~]# shutdown -c

Broadcast message from root@rhel77 (Tue 2023-06-13 11:04:30 CST):

The system shutdown has been cancelled at Tue 2023-06-13 11:05:30 CST!

[root@rhel77 ~]#
3.4.仅发出警告,系统不会关机
命令:

shutdown -k now "testing,haha"

[root@rhel77 ~]# shutdown -k now 'testing,haha'
[root@rhel77 ~]#
3.5.查看shutdown帮助信息
命令:

shutdown --help

[root@rhel77 ~]# shutdown --help
shutdown [OPTIONS...] [TIME] [WALL...]

Shut down the system.

 --help      Show this help

-H --halt Halt the machine
-P --poweroff Power-off the machine
-r --reboot Reboot the machine
-h Equivalent to --poweroff, overridden by --halt
-k Don't halt/power-off/reboot, just send warnings
--no-wall Don't send wall message before halt/power-off/reboot
-c Cancel a pending shutdown
[root@rhel77 ~]#
3.6.shutdown -h now、shutdown -H now、shutdown -P now的区别
1.shutdown -h now则根据系统的默认设置来选择是否关闭电源

2.shutdown -H now是关机操作,系统停止运行,但并未关闭电源 --可以vmware构建的虚机中运行此命令,进行观察,不建议使用此命令

[root@rhel77 ~]# shutdown -H now
Connection closing...Socket close.

Connection closed by foreign host.

Disconnected from remote host(192.168.10.137:22) at 11:13:49.

Type `help' to learn how to use Xshell prompt.
[C:~]$
虚机关机现象截图:

-->

-->

只能在VMware界面,进行"再次"关机动作

3.shutdown -P now是关闭电源操作
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/131183849

目录
相关文章
|
2月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
133 8
|
27天前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
53 14
Linux 10 个“who”命令示例
|
7天前
|
Linux
linux查看目录下的文件夹命令,find查找某个目录,但是不包括这个目录本身?
通过本文的介绍,您应该对如何在 Linux 系统中查看目录下的文件夹以及使用 `find` 命令查找特定目录内容并排除该目录本身有了清晰的理解。掌握这些命令和技巧,可以大大提高日常文件管理和查找操作的效率。 在实际应用中,灵活使用这些命令和参数,可以帮助您快速定位和管理文件和目录,满足各种复杂的文件系统操作需求。
30 8
|
16天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
103 20
|
17天前
|
网络协议 Linux 应用服务中间件
kali的常用命令汇总Linux
kali的常用命令汇总linux
44 7
|
2月前
|
Linux 数据库
Linux中第一次使用locate命令报错?????
在Linux CentOS7系统中,使用`locate`命令时出现“command not found”错误,原因是缺少`mlocate`包。解决方法是通过`yum install mlocate -y`或`apt-get install mlocate`安装该包,并执行`updatedb`更新数据库以解决后续的“can not stat”错误。
36 9
|
2月前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解
|
2月前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
159 3
|
2月前
|
存储 运维 Linux
如何在 Linux 系统中使用 envsubst 命令替换环境变量?
`envsubst` 是 Linux 系统中用于替换文本中环境变量值的实用工具。本文分三部分介绍其工作原理、使用方法及实际应用,包括配置文件替换、脚本执行中环境变量替换和动态生成文件等场景,帮助用户高效利用 `envsubst` 进行开发和运维工作。
76 4
|
2月前
|
Linux
在 Linux 系统中,`find` 命令
在 Linux 系统中,`find` 命令
40 1