Ask HN: Good remote developer workstation setup?
I've been trying to setup a remote developer workstation environment on an Ubuntu server (behind an lxc container, accessing with a Mac client), but the results are far from satisfying.
I've tried the following: native X forward, vnc (with and without xvfb), xrdp, x2go, even guacamole (with both vnc and rdp), but some things seems to be hopelessly broken across the board, e.g. there is no clipboard sharing/sync, non-US keyboard layouts do not really work, and TAB and other special keys usually don't work the way I expect them.
Do you have a remote workstation setup that does not suck?
6 comments
[ 3.5 ms ] story [ 12.2 ms ] threadI have no idea if the above would be covered under that, but it is so much better than any remote setup I've used that I would pay for it in an instant.
Link: https://www.nomachine.com/
Just make sure you configure your local machine so that all ssh commections to the remote machine use key-based authentication, so that Emacs doesn't have to prompt you for a password when it connects. SSH can also share connections between ssh processes, which speeds everything up. In the ssh_config documentation look for the ControlMaster option for how to set it up.
The advantage of this setup is that your editor stays on your local machine where your keyboard is correctly configured, but your work is all on the remote machine as desired. I'm sure other editors can be configured similarly.