Changes between Initial Version and Version 1 of Docs/825gen2/Dev/Networking/RemoteControl


Ignore:
Timestamp:
02/05/24 14:14:19 (9 months ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/Networking/RemoteControl

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