fedora23禁用不需要的服务?--systemd服务单元?
sign up: 签约; 登记, 注册.
i'll sign up and go to the front and fight.
he persuaded the company to sign up the singer. persuade : [p2' sweid]: u: 发w音.
log in 才是登录.
========================================
设计 完全是个人的 个性的事, 只要是为实现功能的 合理的任何形式的 设计都是可以的, 完全没有限定的 应该完全抛弃那些头脑中的 固有的 条条框框.
其他也只是一个建议: 如浅灰色的背景上, 多以白色方块来组合/划分. 对于crud比较复杂的项目items, 可以将这些 操作 按钮 放在每个item上, 而且
是动态的: (鼠标移动上去的时候, 有明显的 "激活" 标志和 特征... 并且操作按钮是动态出现的).
==================================================
用systemd来取代sysv, 其中, systemctl时systemd的主要工具.
systemctl是service和 chkconfig的组合.
即可以操作服务, 也可以配置 开机时启动...
man systemctl可以知道, systemctl可以有很多命令, 如 is-loaded, is-active, list-unit-files, ... 并不只是
start, stop等那么简单.
单元: units: (包括服务service/设备mount/系统管理等等)
单元文件: 描述/启动单元的文件: 如: httpd.service
可以管理启动成功的 list-units , list-unit-files, 管理失败的 --failed,
可以 管理 设备mount 文件...
要查看某一类型的单元文件, 使用过滤器: --type=mount, socket, ....
===============================================
单元文件所在的位置, 有两个:
- /etc/systemd/system/
这个里面有*.service文件, 也有目录, 如: printer.target.wants, multi-user.target.wants等等, 他们里面包含
更多的service文件 - /usr/lib/systemd 以及systemd下的system/...
!!! 这些 unit files 在 /usr/lib/systemd (and/or) /system下 是一致存在的,
只有当systemctl enable .service设置为开机启动服务后 , 才在/etc/systemd/system/下创建 软链接 到 /usr/lib....
的.service文件去!
也就说, 当/etc/systemd/system/ 下有了单元文件, 如httpd.service, 才表示设置成功 开机启动 服务.
- systemctl [-l ] 查看当前服务.(只是显示已经启动的服务...)
- systemctl status *.service 查看某个服务的状态
- systemctl enable *.service // 开机启动 (相当于 chkconfig命令).
- systemctl start/restart/stop *.service
========================================
表示阻止, 禁止, 抑制等含义的词:
ban
forbid -> forbidden
prohibit
inhibit:
[[ his absence inhibit me from asking questions. they passed a law to inhibit people from parking in the street.]]
prevent
withhold
========================================
[[required: 是指你要完成某事/做某事时, 需要出示的证件/ 凭证/ 授权等等, 或者你被要求的 条件.
required通常时被需要的. 如: authentication is required to manage system service .]]
{ 注意: 如果服务没有Install段落,一般意味着应该通过其它服务自动调用它们。如果真的需要手动安装,可以直接连接服务,如下(将foo替换为真实的服务名:
ln -s /usr/lib/systemd/system/foo.service /etc/systemd/system/graphical.target.wants/)
}
参考文章: