10

I have Debian 7 box and little issue:

mkdir /cgroups/test
echo 500 > /cgroups/test/cpu.shares
echo 3167 > /cgroups/test/tasks
bash: echo: write error: No space left on device

How can I fix it?


In fstab:

cgroup /cgroups cgroup defaults 0 0

I have installed: cgroup-bin, libcgroup1, libpam-cgroup

Guest
  • 103
  • 1
  • 5

1 Answers1

19

I have been able to reproduce and solve the issue doing :

/bin/echo 0 >/cgroups/test/cpuset.mems
/bin/echo 0 >/cgroups/test/cpuset.cpus

Seems that CPUs and Memory Nodes' list for the cpuset were created with empty values when the test folder was created.

Hope it will work for you also.

krisFR
  • 12,830
  • 3
  • 31
  • 40
  • Thanks U! It works! :) I can't add +1 vote to your post because I don't have required reputation. – Guest Mar 03 '14 at 21:48
  • 1
    Hello! Has a bug report been filed for this? I didn't see one with a cursory search. This one needs to go upstream. https://bugzilla.kernel.org Thanks. At the very least, we should get a warning in the kernel logs. – Daniel Santos May 17 '19 at 23:11