mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
479 B
Plaintext
22 lines
479 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|