diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.cli | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index 3d9e011..5c1ba3c 100644 --- a/doc/manual.cli +++ b/doc/manual.cli @@ -553,13 +553,18 @@ build host. \h#machines-login|Logging into a Machine| A running QEMU/KVM machine (that is, one being bootstrapped or used for -building) can be accessed with a VNC client. @@ TODO +building) can be accessed with a VNC client. Clients based on \c{gtk-vnc}, +such as \c{vinagre}, are known to work reasonably well. For example: \ -echo cont | ssh build@build socat - UNIX-CONNECT:/tmp/<toolchain>-monitor +ssh -f -L 5901:127.0.0.1:5901 build@build sleep 1 && vinagre 127.0.0.1:5901 \ +If the machine has been suspended, it can be resumed using the following +command: + \ -ssh -f -L 5901:127.0.0.1:5901 build@build sleep 1 && vncviewer 127.0.0.1:5901 +echo cont | ssh build@build socat - UNIX-CONNECT:/tmp/<toolchain>-monitor \ + " |