Report this

What is the reason for this report?

Vnc in ubuntu 17.10

Posted on April 9, 2018

Ubuntu 17.10 is new to me i want to vncserver for it but i dont know how i search but i dint found tut i also heard its gnome installed already how to enable it can someone help



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Gnome is included with the Desktop version of Ubuntu. All our disk images are the server version so they do not come with an included desktop environment. You can easily install one from the command line however.

This guide will walk you through setting up VNC on your server.

Another option is x2go which is an alternative open source remote desktop platform that generally provides better performance than VNC and automatically tunnels all connections over SSH so they are secure. You can set up x2go with the XFCE desktop by running the following commands.

#!/bin/sh
#
# This script will set up an xfce desktop environment which can be
# accessed remotely via the x2goclient http://wiki.x2go.org/doku.php/doc:installation:x2goclient
export DEBIAN_FRONTEND=noninteractive;
apt-get update;
apt-get -y install software-properties-common xubuntu-desktop;
add-apt-repository -y ppa:x2go/stable;
apt-get update;
apt-get -y install x2goserver x2goserver-xsession;

Once done you’ll be able to connect to your desktop using the x2go client.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.