I did figure it out.
- I can remote from Ubuntu PC to Ubuntu PC by installing Xrdp Server on Traget Ubuntu PC. I assumed Remmina will install the necessary servers. It is not the case; after installing Remmina, install RDP Server, and configure ufw Firewall on Target PC.
Instructions are from How to Install Xrdp Server (Remote Desktop) on Ubuntu 20.04 | Linuxize.
Update first
Xrdp is incuded in the default Ubuntu repositories; to install, run:
$ sudo apt install xrdp
When installation is complete, the Xrdp service will automatically start. You can verify by typing:
$ sudo systemctl status xrdp
By default Xrdp uses the /etc/ssl/private/ssl-cert-snakeoil.key
file that is readable only by members of the ssl-cert
group. Run the following command to add the xrdp user to the group :
$ sudo adduser xrdp ssl-cert
Restart the Xrdp service for changes to take effect:
$ sudo systemctl restart xrdp
Firewall:
To allow access to the Xrdp server from a specific IP address or IP range, for example, 192.168.33.0/24, you would run the following command:
$ sudo ufw allow # from 192.168.33.0/24 to any port 3389
If you want to allow access from anywhere (which is highly discouraged for security reasons), run:
$ sudo ufw allow 3389
You can also connect via VNC, which is more "natural" for Linux than RDP which is a Windows protocol.>
Thank you for mentioning so; coming from Windows, thinking like using Windows OS; I will try out VNC, since you say it's more natural for Linux.. a nice way of putting it.. Thank you
– Aritus Jul 21 '20 at 03:23