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

vncserver — Launch a VNC (Virtual Network Computing) desktop. More information: <https://manned.org/vncserver.1x

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

Problem

How to use the vncserver command: Launch a VNC (Virtual Network Computing) desktop. More information: <https://manned.org/vncserver.1x>.

Solution

vncserver — Launch a VNC (Virtual Network Computing) desktop. More information: <https://manned.org/vncserver.1x>.

Launch a VNC Server on next available display:
vncserver


Launch a VNC Server with specific screen geometry:
vncserver --geometry {{width}}x{{height}}


Kill an instance of VNC Server running on a specific display:
vncserver --kill :{{display_number}}

Code Snippets

Launch a VNC Server on next available display

vncserver

Launch a VNC Server with specific screen geometry

vncserver --geometry {{width}}x{{height}}

Kill an instance of VNC Server running on a specific display

vncserver --kill :{{display_number}}

Context

tldr-pages: linux/vncserver

Revisions (0)

No revisions yet.