QEMU monitor使用
QEMU monitor可以通过HMP和QMP链接虚拟机。1 HMP方式1.1 方式一1) 在启动qemu时添加如下命令:-qmp unix:/path/qmp-test,server,nowait \2)在host上使用命令链接:nc -U /path/qmp-test1.2 方式二1)在启动qemu时添加如下命令:-qmp telnet:127.0.0.1:4444,server,nowait
·
QEMU monitor可以通过HMP和QMP链接虚拟机。
1 HMP方式
1.1 方式一
1) 在启动qemu时添加如下命令:
-qmp unix:/path/qmp-test,server,nowait \
2)在host上使用命令链接:
nc -U /path/qmp-test
1.2 方式二
1)在启动qemu时添加如下命令:
-qmp telnet:127.0.0.1:4444,server,nowait \
2)在host上使用命令链接:
telnet 127.0.0.1:4444
2 QMP方式
2.1 方式一
1)启动qemu时添加命令:
-monitor unix:/path/qmp-test,server,nowait \
2)在host上使用命令链接:
nc -U /path/qmp-test
2.2 方式二
1)启动qemu时添加命令:
-monitor telnet:127.0.0.1:4444,server,nowait \
2)在host上使用命令链接:
telnet 127.0.0.1:4444
更多推荐
已为社区贡献9条内容
所有评论(0)