Reputation: 297
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.
Upvotes: 1
Views: 9312
Reputation: 73091
Try qemu -vnc :1
. 0.0.0.0 should work, but according to man qemu
omitting it should allow connections from any host.
Upvotes: 4