# yum install -y libcgroup libcgroup-tools建立控制組cgcreate -g cpu:/testcgcreate -g cpu:/test2禁用quotacgset -r cpu.cfs_quota_us=-1 testcgset -r cpu.cfs_quota_us=-1 test2設置權重cgset -r cpu.shares=1024 testcgset -r cpu.shares=1024 test2# cat test.sh #!/bin/shx=0while [ True ];do x=$x+1done;測試# cgexec -g cpu:/test ./test.sh # cgexec -g cpu:/test2 ./test.sh分別運行三組,cpu使用率是1:1test設置成512cpu使用率是1:2