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

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐