diff --git a/client_software/0120_xrdp/install.sh b/client_software/0120_xrdp/install.sh index 0d27516..a853aa7 100755 --- a/client_software/0120_xrdp/install.sh +++ b/client_software/0120_xrdp/install.sh @@ -11,11 +11,13 @@ if [ "$EUID" -ne 0 ]; then exit 1 fi -dnf install xrdp -y +#Currently xrdp needs X11 - wayland not ye possible +dnf install xrdp xorgxrdp plasma-workspace-x11 -y XRDP_SERVICESTATUS=$( systemctl is-enabled xrdp ) if [ ${XRDP_SERVICESTATUS} != "enabled" ]; then echo "Enabling XRDP Service and Firewall:" systemctl enable xrdp + systemctl enable xrdp-sesman systemctl start xrdp firewall-cmd --permanent --add-port=3389/tcp firewall-cmd --reload