是否可以通过某些来自第三方应用程序的api发送mouse_move,mouse_button,sendkey事件?
答案 0 :(得分:2)
您可以在命令行中使用telnet
选项:
qemu-system-x86_64 -enable-kvm -m 1024 -monitor telnet:localhost:9312,server,nowait -drive file=my.img,cache=none
然后,您可以使用任何套接字API连接到该服务器并向其发送事件:
echo 'sendkey i' | telnet localhost 9312