Created
October 13, 2016 18:18
-
-
Save seekr/7260046c46e5bc144a2317597cb40635 to your computer and use it in GitHub Desktop.
create a cloud desktop on digital ocean [by @ryanpq]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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