How to install xRDP and GNOME Desktop GUI on Ubuntu 20 operating system
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.
- First, update the server.
sudo apt update -y; sudo apt upgrade -y;- After the update, run the following command to install the GNOME desktop.
sudo apt-get install ubuntu-gnome-desktop;- 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;- 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 -yCan'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-
How to Open Ports in Windows?
442 2
-
How to Grant Windows Administrator Privileges?
356 0
-
How to install Webmin on Ubuntu?
990 2
-
Linux SSH Terminal Commands and Explanations
937 3
-
CentOS Stream 10 Update Commands
1004 1
-
CentOS Stream 9 Update Commands
1551 2
-
CentOS Stream 8 Update Commands
770 0
-
What is FreeBSD?
964 2
-
Out: 452 4.3.1 Insufficient system storage
855 2
-
Turning Off Automatic Updates in Windows Operating Systems
987 1