HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

vncviewer — Launch a VNC (Virtual Network Computing) client. More information: <https://manned.org/vncviewer>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualcomputingcommandnetworklaunchclivncvncviewer
linux

Problem

How to use the vncviewer command: Launch a VNC (Virtual Network Computing) client. More information: <https://manned.org/vncviewer>.

Solution

vncviewer — Launch a VNC (Virtual Network Computing) client. More information: <https://manned.org/vncviewer>.

Launch a VNC client which connects to a host on a given display:
vncviewer {{host}}:{{display_number}}


Launch in full-screen mode:
vncviewer -FullScreen {{host}}:{{display_number}}


Launch a VNC client with a specific screen geometry:
vncviewer --geometry {{width}}x{{height}} {{host}}:{{display_number}}


Launch a VNC client which connects to a host on a given port:
vncviewer {{host}}::{{port}}

Code Snippets

Launch a VNC client which connects to a host on a given display

vncviewer {{host}}:{{display_number}}

Launch in full-screen mode

vncviewer -FullScreen {{host}}:{{display_number}}

Launch a VNC client with a specific screen geometry

vncviewer --geometry {{width}}x{{height}} {{host}}:{{display_number}}

Launch a VNC client which connects to a host on a given port

vncviewer {{host}}::{{port}}

Context

tldr-pages: linux/vncviewer

Revisions (0)

No revisions yet.