Linux: How to remote desktop to Fedora Linux from a Windows 10

By | March 2, 2018

After connecting my two sites using IPSEC see ipsec site-to-site with virtual tunnel interface/

it is easy to ssh to the remote site and OpenVPN see OpenVPN site to site

Let us go a step further and activate also remote desktop. I want to be able to connect from my Linux machines but also from the Windows 10 machine I usually use as the monitor console client for all my internal network.

STEP 1: Install dependencies
Install on the remote Fedora server the xrdp and tigervnc server.

su -
dnf install xrdp tigervnc-server

STEP 2: Firewall rules
To be able to connect to the remote desktop we need to open the remote desktop ports.
The following ports have to be oppened in the remote system local firewall:

3389/tcp
3350/tcp

Note that we are not going to open this ports in the site firewall (EdgeRouter Lite), DO NOT DO THAT you do not want to expose the server to the internet. By opening the ports only in the remote server local firewall we make sure that only internal systems can access the remote desktop.

STEP 3: Security context
Just in case selinux is active change the security context of the xrdp binaries.

chcon --type=bin_t /usr/sbin/xrdp
chcon --type=bin_t /usr/sbin/xrdp-sesman


STEP 4: Force MATE desktop

I do not want to hog the connection between sites we force a more traditional desktop like GNOME 2. We can do this by forcing as prefered desktop MATE desktop project see MATE

echo PREFERRED=mate-session> /etc/sysconfig/desktop

STEP 5: Start and enable remote desktop services

systemctl start xrdp-sesman
systemctl start xrdp
systemctl enable xrdp
systemctl enable xrdp-sesman


STEP 6: Test connection

1. Start the “Remote Desktop Connection” windows client.
2. Enter the IP of the remote server and the user under which we want to connect.
3. Make sure to go to “Display” tab and change “Choose the color depth of the remote session” to True color (24bit). The default True color (32bit) is not supported by our remote rdp server.

Contribute to this site maintenance !

This is a self hosted site, on own hardware and Internet connection. The old, down to earth way 🙂. If you think that you found something useful here please contribute. Choose the form below (default 1 EUR) or donate using Bitcoin (default 0.0001 BTC) using the QR code. Thank you !

€1.00

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.