Question

Grey pixelated screen when logging into server via VNC

I followed the VNC installation article instructions. Instead of installing xfce4 I went with ubuntu-gnome-desktop. Followed the rest of the install instruction, omitting startxfce4 & from the ~/.vnc/xstartup file because I didn’t install xfce4.

All the other steps went fine. I setup the connecting on my VNC client, Jump Desktop on iOS, and have a successful connection.

My problem is the following. I get a pixelated grey screen for a desktop. See linked image

Any ideas what I did wrong? I’ve done some digging online but nothing relating to this.


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Ryan Quinn
DigitalOcean Employee
DigitalOcean Employee badge
April 9, 2018
Accepted Answer

Your image link is broken but based on what you’ve described I think I know where you’re running into trouble. The current Gnome desktop is known to have issues with some remote desktop software and for it to work best, hardware accelerated graphics (which are not available on a droplet) is recommended.

The grey screen you are seeing is likely the default X.org view either because you did not include a line to launch a gnome-session in your xstartup file or because gnome was unable to start.

An alternative to VNC is to use X2go which generally provides better performance and tunnels over ssh by default so your connection is encrypted. From a clean 16.04 droplet this script will install and start x2go with xfce:

#!/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;

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel