# Install xrdp

## Introduction

## Fedora

```bash
sudo dnf install -y xrdp xorgxrdp
sudo systemctl enable xrdp
sudo systemctl start xrdp
sudo systemctl status xrdp
```

Create the group tsusers and add all users using Remote Desktop to it

Open Firewall on port 3389

<p class="callout warning">Check if the service is listening on tcp4</p>

```bash
sudo nano /etc/xrdp/xrdp.ini
```

```ini
port=tcp://:3389


; Some session types such as Xorg and Xvnc start a display server.
; Startup command-line parameters for the display server are configured
; in sesman.ini. See and configure also sesman.ini.
[Xorg]
name=Xorg
lib=libxup.so
username=ask
password=ask
port=-1
code=20

```