Posted On December 1, 2020

How to Enable XRDP Session Sharing

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to Enable XRDP Session Sharing
# Edit the xrdp init file
sudo vim /etc/xrdp/xrdp.ini
# Add this at the bottom
[xrdp1]
name=sesman-Xvnc
lib=libvnc.so
username=
password=ask
ip=127.0.0.1
port=ask-1

# For local or distributed Users, edit this file
sudo vim /etc/pam.d/xrdp-sesman
# Add this line at the bottom 
session required pam_limits.so

# For users of xRDP same session management
sudo vim /etc/pam.d/common-session
# Add this line at the bottom
session required pam_limits.so

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Transfer Files Via SSH or WinRM

Secured Shell (SSH) is the prevalent standard for remote accessing of Linux systems. Even Microsoft…

How to Install OpenDNS Client on Ubuntu

Install the dynamic IP updater: # Install the appsudo apt-get install ddclient Press Enter repeatedly…

Kubernetes – Pausing Applications by Scaling Deployments or Stateful Sets

# Pause application kubectl scale deploy nextcloud --replicas=0 kubectl scale statefulsets nextcloud-db-postgresql --replicas=0 kubectl scale…