cgcreate: add page (#6768)

feature/windows-fix-syntax-2
Ray Voice 2021-11-09 12:53:58 +05:00 committed by GitHub
parent 69267420f7
commit 30e7368b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
pages/linux/cgcreate.md Normal file
View File

@ -0,0 +1,17 @@
# cgcreate
> Create cgroups, used to limit, measure, and control resources used by processes.
> `cgroups` types can be `memory`, `cpu`, `net_cls`, etc.
> More information: <https://manned.org/cgcreate>.
- Create a new group:
`cgcreate -g {{group_type}}:{{group_name}}`
- Create a new group with multiple cgroup types:
`cgcreate -g {{group_type1}},{{group_type2}}:{{group_name}}`
- Create a subgroup:
`mkdir /sys/fs/cgroup/{{group_type}}/{{group_name}}/{{subgroup_name}}`