zoukankan      html  css  js  c++  java
  • ubuntu 的runlevel设定

    修改ubuntu的启动级别 runlevel

     

    -----------------------------------------------------------------------------------------------------

    37down voteaccepted

    Ubuntu 16.04 uses systemd instead of init and hence the concept of runlevels is replaced by the term targets. So there is indeed a mapping between init-based runlevels and systemd-based targets:

       Mapping between runlevels and systemd targets
       ┌─────────┬───────────────────┐
       │Runlevel │ Target            │
       ├─────────┼───────────────────┤
       │0        │ poweroff.target   │
       ├─────────┼───────────────────┤
       │1        │ rescue.target     │
       ├─────────┼───────────────────┤
       │2, 3, 4  │ multi-user.target │
       ├─────────┼───────────────────┤
       │5        │ graphical.target  │
       ├─────────┼───────────────────┤
       │6        │ reboot.target     │
       └─────────┴───────────────────┘
    

    Now, to just change the "runlevels" in 16.04, you can use for eg:

    sudo systemctl isolate multi-user.target
    

    To make this the default "runlevel", you can use:

    sudo systemctl enable multi-user.target
    sudo systemctl set-default multi-user.target
    

    From man systemctl

       isolate NAME
           Start the unit specified on the command line and its dependencies and stop all others. If
           a unit name with no extension is given, an extension of ".target" will be assumed.
    
           This is similar to changing the runlevel in a traditional init system. The isolate command
           will immediately stop processes that are not enabled in the new unit, possibly including
           the graphical environment or terminal you are currently using
    

    Also have a look at man systemd.special to know more about the targets in systemd.

  • 相关阅读:
    (1)前言——(10)jquery项目的历史(History of the jQuery project)
    JavaScript编程:使用DOM操作样式表
    机房收费系统总结之4——VB.NET 轻松解决判断文本框、组合框为空问题
    协同过滤及大数据处理
    Storm工作流程 vs. Spark Stream
    《大数据技术原理与应用》学习
    gdb的follow-fork-mode使用以及多线程操作
    回上海咯!继续学习计算广告
    美团技术博客
    这里面有一些关于依图工作的内容
  • 原文地址:https://www.cnblogs.com/oxspirt/p/9390332.html
Copyright © 2011-2022 走看看