#!/bin/bash
x11vnc -display :0 -forever -shared -o /home/snowtv/x11vnc.log -bg -rfbauth /home/snowtv/vncpasswd
#
#
# The parameters passed are;
#
#-forever: If a client is connected, new connection does not end the previous connection.
#
#-shared: If you want to enable multiple user logins simultaneously to vnc server
#
#-bg: Server process returns to background after initialization
#
#-o: write error output to the log file
#
#-display: To mention the display number, it is :0 in our case
#
#-rfbauth: authorization through passwd file

