Understanding Man Pages Flashcards
How do you start the vncserver manually?
vncserver
How would you enable the vnc server to run automatically?
systemctl enable vncserver@:>n<
i. e systemctl enable vncserver@:1
* instance number 1 > correlates to port 5901
What is the default port vnc uses?
5900
5901+ used for multiple virtual displays
How do you connect to a node using vnc?
ip: :port
i. e 172.16.23.5::5901
On a man page what represents an arbitrary length of items that can be specified?
…
i.e ls [OPTION]… [FILE]…
On a man page, how do you know the order of arguments?
Denoted by brackets, remove the outermost bracket to get the order
i.e cal [options] [[[day] month] year]
order is: year month day
On a man page how do you differentiate between an optional and required parameter?
[] - optional (encased in brackets)
_ - required (underlined)