【linux就该这么学】-01

断了今生、忘了曾经 提交于 2020-02-03 05:51:59

【linux】-记"linux就该这么学"学习笔记-01

简述

    对环境的准备和基础知识的介绍,包括

  1. 虚拟机的安装
  2. 系统的安装
  3. 虚拟机的配置
  4. systemd初始化进程的简介
  5. systemctl管理服务进程
    System V init命令(RHEL6) Systemctl 命令(RHEL7) 作用
    service foo start systemctl start foo.service 启动服务

    service foo restart

    systemctl restart foo.service 重启服务
    service foo stop systemctl stop foo.service 停止服务
    service foo reload systemctl reload foo.service 重新加载配置文件(不终止服务)
    service foo status systemctl status foo.service 查看服务状态
  6. systemctl设置服务启动状态
    System V init命令(RHEL6) Systemctl 命令(RHEL7) 作用
    chkconfig foo on systemctl enable foo.service 开机自动启动
    chkconfig foo off systemctl disable foo.service 开机不自动启动
    chkconfig foo systemctl is-enabled foo.service 查看特定服务是否开机自动启动
    chkconfig --list systemctl list-unit-files --type=service 查看各个级别下服务的启动和禁用情况

收获

  1. 了解了虚拟的安装及系统的安装
  2. 虚拟机配置
  3. 系统基础命令的接触
  4. step by step
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!