How To Install & Configure x11vnc Server on Ubuntu 14.04
Q. What is VNC?
-- Virtual Network Computing (VNC) is a graphical desktop sharing system that uses the Remote Frame Buffer protocol (RFB) to remotely control another computer.
Step: 1. Update the System :
# apt-get update
Step: 2. Install VNC :
# apt-get -y install x11vnc
Step: 3. Create VNC Password & Save the Password to /etc/x11vnc.pass :
# x11vnc -storepasswd password /etc/x11vnc.pass
(Here vnc password will be password)
Step: 4. Make the x11vnc Service Starting at Boot Time :
# vi /etc/init/x11vnc.conf
start on login-session-start
script
/usr/bin/x11vnc -xkb -auth /var/run/lightdm/root/:0 -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /var/log/x11vnc.log
end script
-- Save & Quit (:wq)
Step: 5. Run this Command to Start the x11vnc without Reboot :
# /usr/bin/x11vnc -xkb -auth /var/run/lightdm/root/:0 -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /var/log/x11vnc.log
Step: 6. Install VNC viewer & Connect the Server :
https://www.realvnc.com/download/viewer/
Thanks For Visiting on My Blog, For More Tutorials Keep Visiting My Blog
0 comments:
Post a Comment