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!
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.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.