28

How can start the VNC server to make my desktop accessible?

Kees Cook
  • 17,473

4 Answers4

25

Install vino:

sudo apt-get install vino

Configure vino:

vino-preferences

It open this windows :

alt text

You start the server with :

/usr/lib/vino/vino-server

Enter this command in your Autostarted Apps if you wish vino to start automatically.

6

Here is the whole process I do to utilize VNC, simplified


ONE. SETUP server

install VNC: sudo apt-get install vnc

install openssh-server: sudo apt-get install openssh-server


TWO. SETUP remote access PC

install PuTTY

install VNC or VNC viewer


THREE. Connect and Launch:

From remote access PC:

  1. Run PuTTY

  2. Connect SSH into the servers IP

  3. Log into the server with Login ID and Password

  4. A Run: sudo x11vnc -display :0 -auth guess

    B Else if that doesn't work, run: sudo x11vnc -display :0 -auth <insert your path to your .Xauthority>

    C Else if that doesn't work, run the commands again but as root.

Then once connection is established...

  1. Launch VNC viewer

  2. When prompted, enter the servers IP and connect

You now have accessed your server via VNC and should be able to control and interact with that desktop.

Good Luck and Enjoy!!

  • Thx! I'm using this method and can connect in the active session; But the connection just still alive for fell seconds and ends showing:

    Restored X server key autorepeat to: 1 viewer exited. deleted 45 tile_row polling images.

    Can you help me to solve this?

    – leirbag Jan 18 '17 at 16:41
4

As root, run:

sudo apt-get install vino

As your user, run:

gsettings set org.gnome.Vino require-encryption false
vino-preferences
# replace eth0 in the following with your network interface
gsettings set org.gnome.Vino network-interface eth0
/usr/lib/vino/vino-server

A script can be written to automaticly start /usr/lib/vino/vino-server or you can just have your window manager start it directly once it loads and your network is UP, this method worked for me because I was having security type 18 issues with windows VNC Viewer not connecting and I had to turn off encryption

muru
  • 197,895
  • 55
  • 485
  • 740
  • 2
    I also did gsettings set org.gnome.Vino vnc-password '' for no password and gsettings set org.gnome.Vino prompt-enabled false to skip the acceptance prompt on the host computer, which should be fine for a trusted local network. (Make sure the router is not forwarding external connections to port 5900 on the host computer) – dw1 Mar 25 '20 at 06:32
4

For a bit more security, I don't leave VNC running the whole time. I SSH into the machine and then start the VNC server using the following command:

x11vnc -safer -localhost -nopw -once -display :0

For ease I have the command in a shell script, so it is just a case of SSH to the server, followed by the command startvnc.sh.

This way once you disconnect VNC is no longer available.

For even more security you can tunnel VNC over the SSH connection.

This link provides details on how to forward the correct ports.

Adam
  • 346