Sử dụng RDP để remote vào Ubuntu Desktop

1. Cài package xrdp
sudo apt update 
sudo apt install xrdp -y 
sudo systemctl status xrdp 

 

sudo usermod -a -G ssl-cert xrdp 

 

sudo systemctl restart xrdp 

2. Mở port 3389 (port của RDP) để máy client có thể vào được Ubuntu qua cổng 3389

sudo ufw allow from any to any port 3389 

 

sudo ufw reload 

3. Cài đặt giao diện

Để giao diện giống với ubuntu desktop, cần tạo file .xsessionrc ở ~ của user mà client sẽ login vào.

cat < ~/.xsessionrc
export GNOME_SHELL_SESSION_MODE=ubuntu
export XDG_CURRENT_DESKTOP=ubuntu:GNOME
export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
EOF

=> Xong

Tham khảo:

https://askubuntu.com/questions/1233088/xrdp-desktop-looks-different-when-connecting-remotely

https://tecadmin.net/how-to-install-xrdp-on-ubuntu-22-04/