Linux關機 重啟 及登出命令

2022-02-15 05:51:36 字數 1070 閱讀 5198

#關機[root@clf ~]# shutdown -h  10            #10分鐘之後關機 

[root@clf ~]# shutdown  -h  now        #立刻關機

[root@clf ~]# shutdown  -h  0             #立刻關機

[root@clf ~]# shutdown  -h  11:00      #定時關機 (11:00關機)

[root@clf ~]# poweroff                        #立刻關機 

[root@clf ~]# halt -p                            #立刻關機

[root@clf ~]# init 0                              #立刻關機    通過系統的執行級別

#重啟

[root@clf ~]# shutdown  -r   10                   #10分鐘之後進行重啟

[root@clf ~]# shutdown  -r   0                     #立刻重啟

[root@clf ~]# shutdown  -r   now                 #立刻重啟

[root@clf ~]# shutdown  -r   11:00               #定時重啟

[root@clf ~]# reboot                                     #立刻重啟 

#登出   退出當前登入的使用者

[root@clf ~]# logout                       #退出當前登入的使用者   只能退出登入式shell,不能退出非登入式shell

ctrl鍵 +  d                                      #快捷鍵                      退出當前登入的使用者

[root@clf ~]# exit                           #退出當前登入的使用者   既能退出登入式也能退出非登入式   主要用於指令碼退出

Linux 關機,重啟,登出命令

1關機命令 shutdown 好像ubuntu的終端中預設的是當前使用者的命令,只是普通使用者,因此在終端器中可以使用sudo sh 轉換到管理員root使用者下執行命令。1 shutdown help 可以檢視shutdown命令如何使用,當然也可以使用man shutdown命令。2 shutd...

LINUX 登出,關機,重啟命令

登出系統的logout命令 1,logout 登出是登陸的相對操作,登陸系統後,若要離開系統,使用者只要直接下達logout命令即可 root localhost root logout red hat linuxrelease 9 shike kernel 2.4.20.8 on an i686 ...

Linux關機 重啟 登出命令

關機 shutdown h now 立即關機 shutdown h 1 shutdown h 1 1min後關機 halt 立即停止系統,需人工切斷電源 poweroff 立即停止系統,且關閉電源 halt p p的含義 poweroff init 0 重啟 shutdown r 1 shutdow...