用于远程地址的 qemu vnc 服务器
qemu -vnc 0.0.0.0:1 -monitor stdio -hda ubunt*
我正在运行此命令,但它没有打开端口。我用netstat检查过。我的目标是在本地以外的其他地方登录 VNC 服务器。
qemu -vnc 0.0.0.0:1 -monitor stdio -hda ubunt*
I am running this command but it isn't opening a port. I have checked it with netstat. My goal is to log into the VNC server somewhere else besides locally.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
qemu -vnc :1
。 0.0.0.0 应该可以工作,但根据man qemu
省略它应该允许来自任何主机的连接。Try
qemu -vnc :1
. 0.0.0.0 should work, but according toman qemu
omitting it should allow connections from any host.