However it wasn't as straight forward as installing xrdp, as I had a couple of issues, namely:
- Blank (plain with just the desktop) screen when connecting
- The 'd' key caused all windows to be minimized.
Installing xrdp
This is the easy bit. Open up the terminal (Ctrl+T) and type in:
sudo apt-get install xrdpFixing the plain screen
The problem seems to lay with the Unity interface, so unfortunately if you are wanting to use that then this fix isn't for you. However, you can use the older Gnome interface by first checking you have it installed:sudo apt-get install gnome-fallback
cd /home/adrian
echo "gnome-session --session=ubuntu-2d" > .xsession
sudo /etc/init.d/xrdp restart
echo "gnome-session --session=ubuntu-2d" > .xsession
sudo /etc/init.d/xrdp restart
Fixing the 'd' key problem
This problem appears to be due to one of xrdp's dependencies (as I had the same issue using VNC too), and I didn't have the problem when using the machine with a keyboard directly.
It seems that the <super> key is ignored when remoting in, and so any key combinations that require the super key are simply ignored. Clearly this is quite frustrating and so I just disabled them.
Open the dconf Editor:
dconf-editor
and navigate to:
org > gnome > desktop > wm > keybindings
Find anything with the "<super>" in it and either remove it all together (leaving behind square brackets "[]"), or replace it with another key.
After these fixes it's all up and running great!
Open the dconf Editor:
dconf-editor
org > gnome > desktop > wm > keybindings
After these fixes it's all up and running great!