Skip to content

Commit

Permalink
README: Replace ncat with nc
Browse files Browse the repository at this point in the history
  • Loading branch information
krnowak committed Aug 6, 2024
1 parent e4b347e commit 27d7509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ProxyCommand=
- using `--qemu-vnc 0`, it's possible to setup a VNC server. Similar to SSH you need to identify the PID of the `qemu` instance to setup a proxy:
```
mkfifo reply
ncat -kl 12800 < reply | sudo nsenter -t "${QEMUPID}" -n ncat localhost 5900 > reply
nc -kl 12800 < reply | sudo nsenter -t "${QEMUPID}" -n nc localhost 5900 > reply
rm reply
```
Now, you can access the VNC session on localhost:12800 using a VNC client.
Expand Down

0 comments on commit 27d7509

Please sign in to comment.