Skip to content

Instantly share code, notes, and snippets.

@seekr
Created October 13, 2016 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seekr/7260046c46e5bc144a2317597cb40635 to your computer and use it in GitHub Desktop.
Save seekr/7260046c46e5bc144a2317597cb40635 to your computer and use it in GitHub Desktop.
create a cloud desktop on digital ocean [by @ryanpq]
#!/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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment