Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lessons/02-crafting-containers-by-hand/D-cgroups.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ echo <PID> > /sys/fs/cgroup/sandbox/cgroup.procs
cat /sys/fs/cgroup/sandbox/cgroup.procs

# should see the process no longer in the root cgroup - processes belong to exactly 1 cgroup
cat /sys/fs/cgroup/cgroup.proc
cat /sys/fs/cgroup/cgroup.procs
```

We now have moved our unshared bash process into a cgroup. We haven't placed any limits on it yet but it's there, ready to be managed. We have a minor problem at the moment though that we need to solve.
Expand Down