Connect your Ubuntu VPS Using RDP
In this video I demonstrated how to connect your Ubuntu VPS with Remote Desktop Protocol. I installed full ubuntu desktop (GNOME).
Commands:
## Update
apt update
## Install tasksel
apt install tasksel
## Install Ubuntu Desktop (GNOME)
tasksel install ubuntu-desktop
## Install xrdp
apt install xrdp
## Allow 3389 Port
ufw allow 3389/tcp
## Restart xrdp
service xrdp restart
## Set a password for a user
passwd username
Connect:
[Your-IP]:3389
ubuntu