Skip to main content

Setup VNC Server on Ubuntu/Linux Mint / Xbuntu / Zorin OS/ Chromium OS

   Virtual Network Computing (VNC) is a graphical desktop sharing system that uses the Remote Frame Buffer protocol (RFB)to remotely control another computer. It transmits the keyboard and mouse events from one computer to another, relaying the graphical screen updates back in the other direction, over a network.
   VNC is platform-independent – there are clients and servers for many GUI-based operating systems and for Java. Multiple clients may connect to a VNC server at the same time. Popular uses for this technology include remote technical support and accessing files on one's work computer from one's home computer, or vice versa.
   X11VNC is the popular VNC server for creating remote desktop connection and access remote desktop. It works will almost all the desktop environment available for Ubuntu and Debian based systems. Using remote desktop connection we can connect any remote system and access graphical user interface and work. We can use any available vnc viewer like the tight vnc viewer, real vnc viewer or ultra vnc viewer.
   X11VNC can be a better remote support software for you. This tutorial will help you to setup x11vnc server on your Ubuntu, LinuxMint & Debian system and connect using vnc viewer from the client system.

Step 1 – Install X11VNC
X11vnc packages are available under default repositories, So just update default repositories and install.
nikul@bapu:~$ sudo apt-get update
nikul@bapu:~$ sudo apt-get install x11vnc
Step 2 – Create Password
Now create a password to connect using vnc viewer from client system.
nikul@bapu:~$ x11vnc -storepasswd
Enter VNC password: *********
Verify password: ********* 
Write password to /home/nikul/.vnc/passwd?  [y]/n y
Password written to: /home/nikul/.vnc/passwd
Step 3 – Start X11VNC Server
After successful installation of x11vnc server on your system. Let’s start it using following command. Change the parameters as per your setup.
$ sudo x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /home/nikul/.vnc/passwd -rfbport 5900 -shared
The VNC server will start on port 5900. In case port 5900 is busy, it will switch to next available port.

Step 4 – Connect from VNC Client

To connect to the server using VNC, you need a VNC client on your system. For this tutorial, I am using RealVNC viewer on our system. You can use any other client of your choice.

Step 5 – Setup AutoStart on Boot

Finally setup the auto start of x11vnc server on system boot. Create a x11vnc.conf file under /etc/init/ directory using following content.
nikul@bapu:~$ sudo vi /etc/init/x11vnc.conf
# description "Start x11vnc on system boot"
description "x11vnc"
start on runlevel [2345]
stop on runlevel [^2345]
console log
respawn
respawn limit 20 5
exec /usr/bin/x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /home/nikul/.vnc/passwd -rfbport 5900 -shared

 --Thanks

You can comment for any error on installing. 

Comments

  1. Replies
    1. Sorry for Inconvenient. Please share me the Error screen shot, i will make and update resolution in Page.
      Thanks

      Delete
  2. I was extremely pleased to discover this great site. I want to to thank you for your time for this wonderful read!! I definitely loved every part of Jio Lottery Winner website and i also have you bookmarked to check out new stuff in your website.

    ReplyDelete
    Replies
    1. Thank You Jaswal Gupta, i will definitely Updates new stuff and share the helpful knowledge.

      Delete
  3. Setup Vnc Server On Ubuntu/Linux Mint / Xbuntu / Zorin Os/ Chromium Os >>>>> Download Now

    >>>>> Download Full

    Setup Vnc Server On Ubuntu/Linux Mint / Xbuntu / Zorin Os/ Chromium Os >>>>> Download LINK

    >>>>> Download Now

    Setup Vnc Server On Ubuntu/Linux Mint / Xbuntu / Zorin Os/ Chromium Os >>>>> Download Full

    >>>>> Download LINK aQ

    ReplyDelete
  4. Setup Vnc Server On Ubuntu/Linux Mint / Xbuntu / Zorin Os/ Chromium Os >>>>> Download Now

    >>>>> Download Full

    Setup Vnc Server On Ubuntu/Linux Mint / Xbuntu / Zorin Os/ Chromium Os >>>>> Download LINK

    >>>>> Download Now

    Setup Vnc Server On Ubuntu/Linux Mint / Xbuntu / Zorin Os/ Chromium Os >>>>> Download Full

    >>>>> Download LINK Bs

    ReplyDelete

Post a Comment

Popular posts from this blog

Install fusioninventory-agent on Ubuntu / Linux Mint

Step 1:  For fusioninventory-agent, you’ll need to install these dependencies: sudo apt-get install  dmidecode hwdata ucf hdparm perl libuniversal-require-perl libwww-perl libparse-edid-perl libproc-daemon-perl  libproc-pid-file-perl libfile-which-perl libxml-treepp-perl libyaml-perl libnet-cups-perl libnet-ip-perl libdigest-sha-perl libsocket-getaddrinfo-perl libtext-template-perl Step 2 : For fusioninventory-agent-task-network, you’ll need to install these other dependencies:   sudo apt-get install  nmap libnet-snmp-perl libcrypt-des-perl libnet-nbname-perl FusionInventory website with documentation and news of this wonderful inventory and software deployment tool. Step 3 : For fusioninventory-agent-task-deploy, you’ll need to install these other dependencies: sudo apt-get install libfile-copy-recursive-perl libparallel-forkmanager-perl Step 4 : Install fusioninventory-agent sudo apt-get install fusioninventory-agent ...

Install and Setup FTP Server on CentOS 7 easy

In the IT Company, we are facing many Issue in FTP Server setup. I have to write my blog on easy setup of FTP Server, And easily use to our Employee. For that Implementation, i suggest to Install CentOS 7 Server, Because its Very good Performing and Scalable Server and Easy to configure.  Lets start with Steps: Step 1: Open Putty.exe and  Connect SSH (22) Protocol to CentOS 7 Server. Step 2: After Login Update OS Repository by  yum -y update Step 3 : Install the VSFTPD for FTP Server. yum install -y vsftpd Step 4 : Start the service  systemctl start vsftpd.service systemctl enable vsftpd.service Step 5 : Configure vsftpd package by edit /etc/vsftpd/vsftpd.conf you can do this with nano.   nano /etc/vsftpd/vsftpd.conf File : # Example config file /etc/vsftpd/vsftpd.conf # # The default compiled in settings are fairly paranoid. This sample file # loosens things up a bit, to make the ftp...