atomical
atomical

Reputation: 297

qemu vnc server for remote address

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

Answers (1)

kanaka
kanaka

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

Related Questions