我正在努力了解如何在我的 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)
显然有些事情我没有做或做错。我应该怎么做?我在哪里可以了解更多信息?
仅当启动使用该切片的服务时才会启动该切片。您无需手动启动它。相反,您添加
Slice=my.slice
到要受此切片限制的单元。