Installation and Configuration
Install xrdp
udo apt update
sudo apt upgrade
sudo apt install xrdpConfigure xrdp
sudo mkdir /etc/polkit-1/rules.d
sudo touch /etc/polkit-1/rules.d/02-allow-colord.rules
sudo nano /etc/polkit-1/rules.d/02-allow-colord.rulespolkit.addRule(function(action, subject) {
if ((action.id == "org.freedesktop.color-manager.create-device" ||
action.id == "org.freedesktop.color-manager.create-profile" ||
action.id == "org.freedesktop.color-manager.delete-device" ||
action.id == "org.freedesktop.color-manager.delete-profile" ||
action.id == "org.freedesktop.color-manager.modify-device" ||
action.id == "org.freedesktop.color-manager.modify-profile") &&
subject.isInGroup("vglusers")) {
return polkit.Result.YES;
}
});Enable the xrdp Service
Restart your system
Last updated