From 5e63d488763a097747654b75eeb27d7957630502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=C3=A4tzold?= Date: Fri, 27 Mar 2026 22:51:07 +0100 Subject: [PATCH] XRDP: Install X11 --- client_software/0120_xrdp/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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