systemd:如何创建一个新的.slice 文件?

systemd:如何创建一个新的.slice 文件?

我正在努力理解如何在我的 Debian 10 系统上设置新切片。我system-db.slice通过复制system.slice和更改一些内容创建了一个文件:

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=System DB Slice
Documentation=man:systemd.special(7)
DefaultDependencies=no
Before=slices.target
Requires=system.slice
After=system.slice

这似乎什么都没做;systemd-cgls例如,它没有出现在 中。另一方面,systemctl找到了它:

# systemctl status system-db.slice
● system-db.slice - System DB Slice
   Loaded: loaded (/etc/systemd/system/system-db.slice; static; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:systemd.special(7)

显然,有些事情我没有做,或者做错了。我应该怎么做?我可以在哪里了解更多相关信息?

答案1

仅当使用该切片的服务启动时,才会启动该切片。您无需手动启动它。而是将Slice=my.slice要受此切片限制的单元添加到其中。

相关内容