X
X

Select Your Currency

Türk Lirası $ US Dollar
X
X

Select Your Currency

Türk Lirası $ US Dollar
Yıllık Satın Alımlarda %15 İndirim: Şimdi Tasarruf Edin! Detaylı Bilgi İçin Tıklayın!

Knowledge Base

HomepageKnowledge BaseUbuntuHow to install xRDP and GNOME Deskt...

How to install xRDP and GNOME Desktop GUI on Ubuntu 20 operating system

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.

  1. First, update the server.
sudo apt update -y; sudo apt upgrade -y;
  1. After the update, run the following command to install the GNOME desktop.
sudo apt-get install ubuntu-gnome-desktop;
  1. To install xRDP, run the following commands in order.
sudo apt-get install -y xrdp; sudo sed -i 's/allowed_users=console/allowed_users=anybody/' /etc/X11/Xwrapper.config;
  1. After applying the commands from the previous step, RDP access should be available. To prevent the Ubuntu login screen from appearing after the RDP connection, run the following commands.
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

Can't find the information you're looking for?

You have examined the knowledge base in detail, but if you cannot find the information you need,

Create a Support Ticket
Did you find it useful?
(1020 times viewed. / 1 people found helpful.)