码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu systemctl 命令及模式切换

时间:2018-02-03 16:22:03      阅读:1836      评论:0      收藏:0      [点我收藏+]

标签:com   虚拟   ubuntu   依赖   ons   restart   systemd   upd   top   

转载 http://blog.csdn.net/jun2016425/article/details/53100963/

 

1.vim /etc/default/grub
        #GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
        GRUB_CMDLINE_LINUX="text"
        # Uncomment to disable graphical terminal (grub-pc only)
        GRUB_TERMINAL=console
2.update-grub

3.systemctl set-default multi-user.target 

4.systemctl start lightdm

 

 

转载 http://blog.csdn.net/zhengjie19/article/details/49069767

这篇文章记录了一些systemd常用的用法,大都是我自己会用到的。

    1. 启动级别配置
      由于工作需要,常常会在虚拟机中安装各类linux系统,而绝大部分时间,我们需要的只是一个文字界面,能够通过host ssh到VM中,图形界面没必要起着,白白浪费cpu和内存,通过systemctl命令配置默认进入文字界面,只需一行:

      systemctl set-default multi-user.target

      如果要切回图形界面,相应地:

      systemctl set-default graphical.target

    2. 开机启动服务

      systemctl enable ***.service

    3. 停止开机启动服务

      systemctl disable ***.service

    4. 启动/停止/重启服务

      systemctl start/stop/restart ***.service

    5. 查询服务状态

      systemctl status ***.service

    6. 在远程机器上执行命令,类似ssh user@host ""

      systemctl -H user@hostname

    7. 列出系统服务,-t后用tab键可以关联出所有支持的unit类型

      systemctl -t service

    8. 列出所有已经加载的units的状态

      systemctl -a

    9. 列出加载的units/sockets/timers

      systemctl list-units [pattern]
      systemctl list-sockets [pattern]
      systemctl list-timers [pattern]

    10. 查询某项服务是否active,以sshd.serice为例

      systemctl is-active sshd.service

    11. 直接查看某项服务的配置文件,以sshd.serice为例

      systemctl cat sshd.service

    12. 查看服务的依赖关系,以sshd.serice为例

      systemctl list-dependencies sshd.service

    13. 查看环境变量

      systemctl show-environment

ubuntu systemctl 命令及模式切换

标签:com   虚拟   ubuntu   依赖   ons   restart   systemd   upd   top   

原文地址:https://www.cnblogs.com/hardyyy/p/8409195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!