ユーザ用ツール

サイト用ツール


01_linux:08_仮想化:kvm:01_qemu_monitor

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
01_linux:08_仮想化:kvm:01_qemu_monitor [2017/03/02 06:48] matsui01_linux:08_仮想化:kvm:01_qemu_monitor [2021/01/07 05:58] (現在) matsui
行 1: 行 1:
 +====== 01 KVM qemu monitor ======
 +
 +[[http://d.hatena.ne.jp/satoru739/20130203/p1]]
 +
 +
 +===== virsh からqemuコマンド =====
 +
 +<code>
 +# virsh qemu-monitor-command --hmp vmname 'info kvm'
 +kvm support: enabled
 +
 +# virsh qemu-monitor-command --hmp vmname 'info balloon'
 +balloon: actual=1024
 +</code>
 +
 +
 +==== ballooning変更 ====
 +
 +<code>
 +# virsh qemu-monitor-command --hmp one-300 'info balloon'
 +balloon: actual=2048
 +
 +# virsh qemu-monitor-command --hmp one-300 'balloon 1024'
 +
 +# virsh qemu-monitor-command --hmp one-300 'info balloon'
 +balloon: actual=1024
 +</code>
 +
 +{{tag>kvm}}