cgroup을 마운트할 수 없습니다.

cgroup을 마운트할 수 없습니다.

이 문제에 대한 해결책을 찾고 있지만 아무 것도 작동하지 않습니다.

LXC 컨테이너를 시작하고 싶지만 먼저 cgroup을 마운트해야 합니다.

[root@stag-devCentOs ~]# lxc-start -n debianLxc
lxc-start: cgroup is not mounted
lxc-start: failed to spawn '/sbin/init'
lxc-start: cgroup is not mounted

내 내용에 다음 줄을 추가해야 한다는 내용을 읽었습니다./etc/fstab

cgroup                  /sys/fs/cgroup          cgroup  defaults        0 0

mount /sys/fs/cgroup그런 다음 또는 를 입력해야 합니다 mount -a.

모든 작업을 수행했지만 여전히 다음 오류가 발생합니다.

mount: wrong fs type, bad option, bad superblock on cgroup,
    missing codepage or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so

저는 3.2.60-1.el5.elrepo 커널과 함께 CentOS 5.10을 사용하고 있습니다.

dmesg|tail을 사용할 때 얻은 결과는 다음과 같습니다.

[root@stag-devCentOs ~]# dmesg | tail
Bluetooth: RFCOMM ver 1.11
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
br0: no IPv6 routers present
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
SELinux: initialized (dev proc, type proc), uses genfs_contexts
SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
SELinux: initialized (dev proc, type proc), uses genfs_contexts

내 콘텐츠를 보려면 /etc/fstab여기를 클릭하세요.

LABEL=/                 /                       ext3    defaults        1 1
/dev/vglxc/lvhome       /home                   ext3    defaults        1 1
/dev/vglxc/lvopt        /opt                    ext3    defaults        1 1
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
LABEL=SWAP-sda2         swap                    swap    defaults        0 0
cgroup                  /sys/fs/cgroup          cgroup  defaults        0 0

LVM을 계속 사용해야 /home하고 /opt이렇게 해야 하고, lxc 버전을 0.6.4로 유지해야 합니다.

이러한 문제를 해결하는 방법이나 무엇이 잘못되었는지 설명하는 방법에 대한 아이디어가 있습니까?

관련 정보