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

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Accepted Answer
even xvfb would still require X so I would recommend going with a lightweight X.org based solution. This script can be used from the CLI or as a user-data script on the create page and will set up a super lightweight remotely accessible X.org desktop:
#!/bin/sh
export DEBIAN_FRONTEND=noninteractive;
apt-get update;
apt-get -y install blackbox xterm;
add-apt-repository -y ppa:x2go/stable;
apt-get update;
apt-get -y install x2goserver x2goserver-xsession;
(If you run this as a user-data script it may take 5+ minutes to complete after your droplet comes online, you can view it’s progress if you log in before it completes with tail -f /var/log/cloud-init-output.log (use Ctrl+c to stop tailing the file).
Once this script has finished running you can connect to it with the X2Go client. Select a “Custom Desktop” instead of one of the pre-defined options and enter “blackbox” as the command to run.
This will give you a window manager. Right-clicking the desktop will display a menu with one option being to start up xterm.
This comment has been deleted