Partlix Host
  • 👋Welcome To Partlix Docs
  • 🪟Windows Server
    • Change RDP Port
    • Change Language
    • Disable UDP for RDP
    • Open Ports (Port Forwarding)
    • How to use WireShark
    • Install MariaDB
    • Install FiveM Server
    • External FTP Access
  • 🐧Linux Server
    • SFTP Connection
    • Generate SSH Key
    • Change SSH Port
    • Link SSH to Visual Studio Code
    • Install xRDP
    • Install Docker
    • Install OpenVPN
    • Install FTP Server
    • Install FiveM Server
    • Install MySQL & Phpmyadmin
  • Game Servers
    • External Pma-Voice (FiveM)
    • External Mumble VoiP (FiveM)
    • Convars Definitions (FiveM)
    • Convars Definitions (txAdmin)
Powered by GitBook
On this page
  1. Linux Server

Install xRDP

Important: At least Ubuntu 18.04 LTS (Bionic Beaver) or Debian 10 (Buster) must be used as OS. Newer versions are recommended.

First, the server should be updated:

// Debian
sudo apt update; sudo apt upgrade -y

// Ubuntu
sudo apt update; sudo apt upgrade -y

After the update, the necessary packages will be installed:

// Debian
sudo apt install xfce4 xfce4-goodies xorg dbus-x11 x11-xserver-utils -y

// Ubuntu
sudo apt install ubuntu-desktop -y

Then xRDP can be installed:

// Debian
sudo apt install xrdp

// Ubuntu
sudo apt install xrdp

After installation, the status should return "active":

// Debian
sudo systemctl status xrdp

// Ubuntu
sudo systemctl status xrdp

If the status is okay, a user still needs to be created. Then the xRDP service has to be restarted:

// Debian
sudo adduser xrdp ssl-cert; sudo systemctl restart xrdp

// Ubuntu
sudo adduser xrdp ssl-cert; sudo systemctl restart xrdp

When finishing the configuration, you can connect to the root or the respective user data of the server via Remote Desktop. The default port is: 3389

The connection can be made via any RDP tool, connected with IP:PORT. When connecting you will be asked for the login data:

After successful login you see the desktop. With Ubuntu it looks a bit different than with Debian:

Ubuntu:

Debian:

PreviousLink SSH to Visual Studio CodeNextInstall Docker

Connection

🐧
​