We will install xrdp on a server with Ubuntu 20.04 operating system and GNOME interface to connect via RDP from Windows. Follow the steps below in order.
sudo apt update -y; sudo apt upgrade -y;
sudo apt-get install ubuntu-gnome-desktop;
sudo apt-get install -y xrdp;
sudo sed -i 's/allowed_users=console/allowed_users=anybody/' /etc/X11/Xwrapper.config;
sudo nano /etc/polkit-1/localauthority.conf.d/02-allow-colord.conf
Paste the following section and save it.
polkit.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("{group}")) {
return polkit.Result.YES;
}
});
Finally, install Gnome Tweak Tool for Ubuntu Dock with the following command.
sudo apt-get install gnome-tweak-tool -y
You have examined the knowledge base in detail, but if you cannot find the information you need,
Create a Support Ticket