I\'d like to access my Ubuntu 16.10 VPS (Contabo) with using a GNOME environment with VNC, however I am still facing some issues that I couldn\'t solve so far. To install and co
For security reasons, X11 has disabled indirect GLX rendering by default. This change has finally made it into the mainstream Linux flavors. To enable IGLX, edit the Xorg file and add the “+iglx” flag. Then reboot the machine.
sudo vi /usr/bin/Xorg
basedir=/usr/lib/xorg
if [ -x "$basedir"/Xorg.wrap ]; then
exec "$basedir"/Xorg.wrap "$@"
else
exec "$basedir"/Xorg "$@" +iglx
fi