<div dir="ltr"><div>Hi</div><div><br></div><div>I am making an Ubuntu 18.04 server with  xfce on top. The reason is that I want a cloud VM with X.</div><div><br></div><div>I
 followed the instructions 
<a href="https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-16-04">https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-16-04</a> 
 and 
<a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-04">https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-04</a></div><div><br></div><div>which correspond to these commands [1]</div><div><br></div><div>I
 can connect fine to the remote machine via VNC and I can do GUI actions
 like clicking on the time, the startup/xfce mouse menu.</div><div><br></div><div>However, when I click on the terminal nothing happens. dpgk shows that 0.8.7.3-0ubuntu1 is installed.</div><div><br></div><div>Any ideas on how I can debug/solve the problem?</div><div><br></div><div>Regards</div><div>Vangelis<br></div><div></div><div><br></div><div>[1]<br></div><div># root<br>$ adduser vangelis<br>$ usermod -aG sudo vangelis <br><br># my user<br>$ mkdir ~/.ssh<br>$ chmod 700 ~/.ssh<br>$ cat > ~/.ssh/authorized_keys</div><div>ssh-rsa ABCDEFG... vangelis@machine<br></div><div>$ chmod 600 ~/.ssh/authorized_keys<br>$ sudo ufw app list<br>$ sudo ufw allow OpenSSH<br>$ sudo ufw enable<br>$ sudo ufw status<br><br>$ sudo apt-get update<br>$ sudo apt install xfce4 xfce4-goodies tightvncserver<br>$ vncserver<br>$ vncserver -kill :1<br>$ mv ~/.vnc/xstartup ~/.vnc/xstartup.bak<br>$ cat > ~/.vnc/xstartup</div><div>#!/bin/bash<br>xrdb $HOME/.Xresources<br>startxfce4 &</div><div><br></div><div>$ sudo chmod +x ~/.vnc/xstartup<br><br>$ vncserver -depth 16 -geometry 800x600 # start<br>$ vncserver -kill :1 # stop<br></div><br></div>