<div dir="ltr"><div><div><div><div><div><div><div><div><div><div><div><div>I've had to head north to deal with an emergency (£13 smoke alarm, urgh) and am working remote via the magic of SSH port-forwarding which lets me have access to want I need (don't panic, the SSH server is certificate-only and has fail2ban cranked to "rabid" watching the logs).<br><br></div>To get RDP, I use something like this:<br></div>    ssh -L 1234:remote-box:3389 -p proxy-port user@proxy-address<br></div>And then:<br></div>   rdp://user@localhost:1234<br><br></div>That works rather nicely, but trying to use a VM on the remote box is a bit....yuck as it needs full screen repaints. The VM is Linux, so I was trying to X-Forward with:<br></div>    ssh -L 5678:remote-vm:22 -p proxy-port user@proxy-address<br></div>Then:<br></div>   ssh -X p- 5678 remote-user@localhost ~/some/program<br></div><div>(I tried -Y too, no difference)<br></div><div><br></div>This /almost/ works. I get the windows title and basic controls running, but then actual window never seems to fully paint. Jury-rigged local tests seem fine in similar configuration.<br><br></div>Have I missed something or is X-Forwarding simply too heavyweight for this scenario?<br></div>I might try forwarding VNC in that case.<br><br></div>J.<br></div>