| | 1 | = Remote Control = |
| | 2 | The 825gen2 uses the Wayland graphics library. There is support for remote control available. |
| | 3 | |
| | 4 | There is not yet a setup option to enable/disable and configure remote control. |
| | 5 | |
| | 6 | {{{ |
| | 7 | mkdir -p /etc/freerdp/keys/ |
| | 8 | winpr-makecert -rdp -path /etc/freerdp/keys/ |
| | 9 | }}} |
| | 10 | |
| | 11 | Rename the generated keys to server.crt and server.key |
| | 12 | |
| | 13 | Edit the /etc/xdg/weston/weston.ini file and change the [screen-share] section to be like the following |
| | 14 | {{{ |
| | 15 | [screen-share] |
| | 16 | command=/usr/bin/weston --backend=rdp-backend.so --rdp-tls-cert=/etc/freerdp/keys/server.crt --rdp-tls-key=/etc/freerdp/keys/server.key --shell=fullscreen-shell.so -no-clients-resize |
| | 17 | start-on-startup-true |
| | 18 | }}} |
| | 19 | |
| | 20 | Modify the Weston systemd service |
| | 21 | {{{ |
| | 22 | ExecStart=/usr/bin/weston --modules=systemd-notify.so,screen-share.so |
| | 23 | }}} |
| | 24 | |
| | 25 | Remote connection may be achieved from Windows using remote desktop. |
| | 26 | |
| | 27 | From Linux running Wayland: |
| | 28 | {{{ |
| | 29 | wlfreerdp /v:<ip> |
| | 30 | }}} |
| | 31 | |
| | 32 | From Linux running X11: |
| | 33 | {{{ |
| | 34 | xfreerdp /v:<ip> /u:weston |
| | 35 | }}} |