kvm 에서 작동중에 cpu를 추가하는 방법
반대로 빼는건 좀 복잡한 듯
추가하기 # virsh setvcpus UAKVM2 2
제거하기 # virsh setvcpus --live --guest UAKVM2 1
설정 저장하기 |
[링크 : https://www.unixarena.com/2015/12/linux-kvm-how-to-add-remove-vcpu-to-guest-on-fly.html/]
+
2019.04.20
현재 2개인데
줄이는 것 일단 안되는데 착각해서 해보고..
# virsh setvcpus testvm 1 오류:지원되지 않는 설정: failed to find appropriate hotpluggable vcpus to reach the desired target vcpu count |
늘리는 건 최대 값 설정된게 있는데 그걸 넘어서 안된다고 하네..
# virsh setvcpus testvm 4 오류:잘못된 인수: requested vcpus is greater than max allowable vcpus for the live domain: 4 > 2 |
이것저것 해보는데.. maximum live는 어떻게 올리지? ㅠㅠ
# virsh vcpucount testvm
# virsh setvcpus testvm 4 --live
# virsh setvcpus testvm 4 --live --maximum --config |
아래 명령으로 2를 4로 바꾸었는데
# virsh edit testvm <vcpu placement='static'>4</vcpu> |
maximum live는 안올라가네.. 그래서 여전히 설정이 안된다.. ㅠㅠ
# virsh vcpucount testvm maximum config 4 maximum live 2 current config 4 current live 2 |
chcpu로 코어를 끄고 켤 수 있는 듯?
# chcpu Usage: chcpu [options] Options: -h, --help print this help -e, --enable enable cpus -d, --disable disable cpus -c, --configure configure cpus -g, --deconfigure deconfigure cpus -p, --dispatch set dispatching mode -r, --rescan trigger rescan of cpus -V, --version output version information and exit |
[링크 : https://www.ibm.com/.../ldva_t_modifyingCPUNumber.html]
'프로그램 사용 > kvm(virt-manager)' 카테고리의 다른 글
리눅스 콘솔창 해상도 변경하기 (0) | 2019.04.26 |
---|---|
VDI GPU passthrough (0) | 2019.04.24 |
kvm과 HT 그리고 affinity (0) | 2019.04.16 |
virsh domstats 로 가상머신의 cpu 사용율 확인하기 (0) | 2019.03.29 |
kvm snapshot (0) | 2019.03.17 |