@olivierlambert Is there a way to make Xen Orchestra run a session full screen without the lag of the https connection?
At this point, I'm running xrdp on my Linux machines, and access everything from a shell script that I hard-link with different names;
#!/bin/bash
# Name the script the same as the machine you want to log into
Server=$(basename ${0})
# Get the credentials into an aray from .netrc, keys are the even references, values are the odds.
Creds=($(grep -A 2 "machine ${Server}" ~/.netrc))
# Open RDP session to the server, /sound and /microphone let Zoom work, opens full screen across multiple monitors.
xfreerdp /f /sound /microphone /multimon /u:${Creds[3]} /p:"${Creds[5]}" /v:${Server}
# Use <Ctrl>-<Alt>-<Enter> to switch fullscreen and allow disconnect
Argh, why doesn't this keep carriage returns the way they were typed?