diff options
author | [object Object] | 2023-09-10 07:26:05 +0300 |
---|---|---|
committer | [object Object] | 2023-09-10 07:40:52 +0300 |
commit | 92cfd60ecc5ccef9bb8634165e8c0239b3a82f16 (patch) | |
tree | 47f1ef36ec96d4d76f801e7803b142704df600e4 /configure_xrdp.sh | |
parent | b5964c905e79a9ae9b5ce9729f840be5a911463b (diff) | |
download | aur-92cfd60ecc5ccef9bb8634165e8c0239b3a82f16.tar.gz |
fix kde issue, message format
Diffstat (limited to 'configure_xrdp.sh')
-rw-r--r-- | configure_xrdp.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure_xrdp.sh b/configure_xrdp.sh index 5ceaf0730531..90aec6be18a4 100644 --- a/configure_xrdp.sh +++ b/configure_xrdp.sh @@ -12,12 +12,15 @@ if grep -qE '1|y|Y' "$XRDP_CONFIGURED" 2>/dev/null; then exit 0 fi -# both vsock/tcp +# use both vsock/tcp # https://github.com/neutrinolabs/xrdp/issues/1260#issuecomment-753970464 + +# https://devicetests.com/fix-xrdp-connection-issue-kde-plasma-ubuntu-20-04 sed -i_orig -e 's/port=3389/port=vsock:\/\/-1:3389 tcp:\/\/:3389/g' \ -e 's/security_layer=negotiate/security_layer=rdp/g' \ -e 's/crypt_level=high/crypt_level=none/g' \ -e 's/bitmap_compression=true/bitmap_compression=false/g' \ + -e 's/^new_cursors=true/new_cursors=false/g' \ /etc/xrdp/xrdp.ini # rename the redirected drives to 'shared-drives' |