你能创建自己的顶级cgroup吗?

你能创建自己的顶级cgroup吗?

文档似乎表明这应该有效

# mkdir /sys/fs/cgroup/mytest
# mount -t cgroup mytest  /sys/fs/cgroup/mytest
mount: /sys/fs/cgroup/mytest: mytest already mounted or mount point busy.

我缺少什么?

这是 centos-8 上的 cgroups-v1。

答案1

您是否正在寻找类似的东西(路径可能与我的示例不同,因为我使用的是不同的 Linux 版本):

Create the cgroup
# mkdir /sys/fs/cgroup/unified/mytest

Put the shell in the cgroup
# echo $$ > /sys/fs/cgroup/unified/mytest/cgroup.procs

Verify that the shell process is in the given cgroup
# cat /proc/$$/cgroup | grep mytest
0::/mytest

相关内容