Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • Thank you for the answer and for the pointer (I learned that creating a cpuset is as simple as mkdir). The cpuset pseudo-fs does not support ACLs, so here's what I did: (i) create a trusted-users group (ii) mount -t cpuset none /cpusets (this is the default mountpoint for the cset utility) (iii) chown -R :trusted-users /cpusets (iv) find /cpusets -perm -u=w -exec chmod g+w '{}' \+ Commented Feb 11, 2019 at 9:55
  • The files are actually at /sys/fs/cgroup/cpuset (as referenced in the link) but it might depend on the distro. Commented May 3, 2022 at 6:56