检查cgroup v2 是否安装
cgroup 当前包含了v1, 以及v2 版本,v2 版本相比v1 在目录组织上更加清晰,管理更加方便,很多
时候我们可能需要检查我们安装的内核当前内核版本是否支持cgroup v2
文章内容来自 https://unix.stackexchange.com/questions/471476/how-do-i-check-cgroup-v2-is-installed-on-my-machine
方法一
通过文件系统挂载方式
mount -t cgroup2 none $MOUNT_POINT
- 测试
mkdir /opt/dalong-cgroupv2
mount -t cgroup2 none /opt/dalong-cgroupv2
如果没有报错说明是没有问题的,同时应该也能看挂载的文件目录
效果
├── cgroup.controllers
├── cgroup.max.depth
├── cgroup.max.descendants
├── cgroup.procs
├── cgroup.stat
├── cgroup.subtree_control
└── cgroup.threads
方法二
检查文件系统
grep cgroup /proc/filesystems
- 测试效果
如果包含有cgroup2 的就是安装了的
grep cgroup /proc/filesystems
nodev cgroup
nodev cgroup2
参考资料
https://unix.stackexchange.com/questions/471476/how-do-i-check-cgroup-v2-is-installed-on-my-machine