me
/
guix
Archived
1
0
Fork 0

doc: Fix Xvnc service example.

Reported by bost on #guix (thank you!)

* doc/guix.texi (VNC Services): Add the missing host argument in the SSH
command example.
Maxim Cournoyer 2023-01-20 11:33:12 -05:00
parent f00782294a
commit 2491a60404
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 2 additions and 1 deletions

View File

@ -31481,7 +31481,8 @@ on the remote machine on display number 10, and it could be displayed
locally via the @command{vncviewer} command:
@example
# Start xclock on the remote machine.
ssh -L5910:localhost:5910 -- guix shell xclock -- env DISPLAY=:10 xclock
ssh -L5910:localhost:5910 @var{your-host} -- guix shell xclock \
-- env DISPLAY=:10 xclock
# Access it via VNC.
guix shell tigervnc-client -- vncviewer localhost:5910
@end example