• Linux关机/重启/及注销命令


    #关机

    [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                           #退出当前登录的用户   既能退出登录式也能退出非登录式   主要用于脚本退出
     
     
     
     
     
     
     
     
     
  • 相关阅读:
    博客地址
    node学习2
    正则表达式总结
    Git命令操作
    IDEA快捷键
    hibernate多对多(权限管理)
    所有国家的下拉框英文全称
    所有国家的下拉框英文简写
    所有国家的下拉框中文
    poj-1248 Safecracker
  • 原文地址:https://www.cnblogs.com/chenlifan/p/13262963.html
Copyright © 2020-2023  润新知