linux终端命令的使用
刚刚开始使用linux,用的是ubantu,有一个问题不是很清楚:终端命令的输入,需要参数,但是我实在是分不清到底是几个:比如shutdown,输入shutdown-h没...
刚刚开始使用linux,用的是ubantu,有一个问题不是很清楚:
终端命令的输入,需要参数,但是我实在是分不清到底是几个:比如shutdown,输入shutdown -h没有执行关机,提示需要时间,但是按照下面的这个觉得似乎不加都可以。
『
语 法:shutdown [-efFhknr][-t 秒数][时间][警告信息]
补充说明:shutdown指令可以关闭所有程序,并依用户的需要,进行重新开机或关机的动作。
参 数:
-c 当执行"shutdown -h 11:50"指令时,只要按+键就可以中断关机的指令。
-f 重新启动时不执行fsck。
-F 重新启动时执行fsck。
-h 将系统关机。
-k 只是送出信息给所有用户,但不会实际关机。
-n 不调用init程序进行关机,而由shutdown自己进行。
-r shutdown之后重新启动。
-t<秒数> 送出警告信息和删除信息之间要延迟多少秒。
[时间] 设置多久时间后执行shutdown指令。
[警告信息] 要传送给所有登入用户的信息。
』
这个命令是怎么确定的,用法上-h后面没有说要加上时间,哪位给我指点一下,一个完整的命令到底是怎样的,最好能用shutdown举几个列子,十分感谢
一楼的那个用法我大概看懂了,是不是就是中括号中的是选用的,而shutdown timeshi 必须的,哪位给解释一下 展开
终端命令的输入,需要参数,但是我实在是分不清到底是几个:比如shutdown,输入shutdown -h没有执行关机,提示需要时间,但是按照下面的这个觉得似乎不加都可以。
『
语 法:shutdown [-efFhknr][-t 秒数][时间][警告信息]
补充说明:shutdown指令可以关闭所有程序,并依用户的需要,进行重新开机或关机的动作。
参 数:
-c 当执行"shutdown -h 11:50"指令时,只要按+键就可以中断关机的指令。
-f 重新启动时不执行fsck。
-F 重新启动时执行fsck。
-h 将系统关机。
-k 只是送出信息给所有用户,但不会实际关机。
-n 不调用init程序进行关机,而由shutdown自己进行。
-r shutdown之后重新启动。
-t<秒数> 送出警告信息和删除信息之间要延迟多少秒。
[时间] 设置多久时间后执行shutdown指令。
[警告信息] 要传送给所有登入用户的信息。
』
这个命令是怎么确定的,用法上-h后面没有说要加上时间,哪位给我指点一下,一个完整的命令到底是怎样的,最好能用shutdown举几个列子,十分感谢
一楼的那个用法我大概看懂了,是不是就是中括号中的是选用的,而shutdown timeshi 必须的,哪位给解释一下 展开
5个回答
2009-05-13
展开全部
shutdown
功能说明:系统关机命令
语法:shutdown [-t sec] [-arkhncfFHP] time [warning-message]
包名称:SysVinit
相关命令:halt,reboot
补充说明:本命令可以关闭所有的程序,并依用户的需要,进行重新开机或关机的操作。Shutdown命令可以指定系统在特定时间关机,但仅限于当日。若需指定在特定日期关机,则需搭配at命令执行。
参数:
-a
Use /etc/shutdown.allow.
-t sec
Tell init(8) to wait sec seconds between sending processes the warning and the kill signal, before changing to another runlevel.
-k
Don't really shutdown; only send the warning messages to everybody.
-r
Reboot after shutdown.
-h
Halt or poweroff after shutdown.
-H
Halt action is to halt or drop into boot monitor on systems that support it.
-P
Halt action is to turn off the power.
-n
[DEPRECATED] Don't call init(8) to do the shutdown but do it ourself. The use of this option is discouraged, and its results are not always what you'd expect.
-f
Skip fsck on reboot.
-F
Force fsck on reboot.
-c
Cancel an already running shutdown. With this option it is of course not possible to give the time argument, but you can enter a explanatory message on the command line that will be sent to all users.
time
When to shutdown.
warning-message
Message to send to all users.
范例:
1)立即关闭系统:
# shutdown -h now
2)执定在21:10将系统重新开机:
# shutdown -r 21:10
3)指定10分钟后关机,并发送警告信息:
# shutdown +10 “conputer will shut down”
4)取消关机:
# shutdown -c
功能说明:系统关机命令
语法:shutdown [-t sec] [-arkhncfFHP] time [warning-message]
包名称:SysVinit
相关命令:halt,reboot
补充说明:本命令可以关闭所有的程序,并依用户的需要,进行重新开机或关机的操作。Shutdown命令可以指定系统在特定时间关机,但仅限于当日。若需指定在特定日期关机,则需搭配at命令执行。
参数:
-a
Use /etc/shutdown.allow.
-t sec
Tell init(8) to wait sec seconds between sending processes the warning and the kill signal, before changing to another runlevel.
-k
Don't really shutdown; only send the warning messages to everybody.
-r
Reboot after shutdown.
-h
Halt or poweroff after shutdown.
-H
Halt action is to halt or drop into boot monitor on systems that support it.
-P
Halt action is to turn off the power.
-n
[DEPRECATED] Don't call init(8) to do the shutdown but do it ourself. The use of this option is discouraged, and its results are not always what you'd expect.
-f
Skip fsck on reboot.
-F
Force fsck on reboot.
-c
Cancel an already running shutdown. With this option it is of course not possible to give the time argument, but you can enter a explanatory message on the command line that will be sent to all users.
time
When to shutdown.
warning-message
Message to send to all users.
范例:
1)立即关闭系统:
# shutdown -h now
2)执定在21:10将系统重新开机:
# shutdown -r 21:10
3)指定10分钟后关机,并发送警告信息:
# shutdown +10 “conputer will shut down”
4)取消关机:
# shutdown -c
展开全部
我这里有几个常用指令,本人也无法解释:
1.查看当前运行级#runlevel
2.正常关机#halt (init 0)
3.重启#reboot(init 6)
4.立即重启#shutdown -r now
5.在5分钟关机#shutdown -h +5
1.查看当前运行级#runlevel
2.正常关机#halt (init 0)
3.重启#reboot(init 6)
4.立即重启#shutdown -r now
5.在5分钟关机#shutdown -h +5
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
只能说 shutdown需要时间 ,就像windows下需要 -s now 参数一样
linux的关机更多的 使用halt命令好了
linux的关机更多的 使用halt命令好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-05-13
展开全部
you should search some handbooks of linux.this is a good way to learn linux.
look here:
http://www.baidu.com/s?ie=gb2312&bs=bash&sr=&z=&cl=3&f=8&wd=linux+&ct=0
good luck to you.
look here:
http://www.baidu.com/s?ie=gb2312&bs=bash&sr=&z=&cl=3&f=8&wd=linux+&ct=0
good luck to you.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
shoudown -h now
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询