zoukankan      html  css  js  c++  java
  • 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                           #退出当前登录的用户   既能退出登录式也能退出非登录式   主要用于脚本退出
     
     
     
     
     
     
     
     
     
  • 相关阅读:
    Geoserver通过ajax跨域访问服务数据的方法(含用户名密码认证的配置方式)
    123
    递归____蛮好的例子 蓝桥
    博弈_____威佐夫博奕
    123123
    sort
    int ,long , long long类型的范围
    数学推导_循环小数转分数
    下一步:结构体 背包 库函数
    回溯____蓝桥 棋盘
  • 原文地址:https://www.cnblogs.com/chenlifan/p/13262963.html
Copyright © 2011-2022 走看看