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                           #退出当前登录的用户   既能退出登录式也能退出非登录式   主要用于脚本退出
     
     
     
     
     
     
     
     
     
  • 相关阅读:
    删除svn版本信息
    ArcGIS Server中创建ao对象的CLSID如何获得
    操作系统引导
    有关IHttpModule与页面的执行顺序
    使用python查询中文汉字的Unicode
    VIM 入门(转载)
    Visual Studio 2010 添加vim支持
    win7 安装arcgis后出现问题解决方案
    C++中动态链接库的一些概念及入门(2)
    VS2010 MSDN
  • 原文地址:https://www.cnblogs.com/chenlifan/p/13262963.html
Copyright © 2011-2022 走看看