Last week, my Windows machine was down and I was struggling to connect to a remote server as I'm using Fedora Linux at home.
I tried installing and using GNOME Connections but it crashed and didn't work well for me. I found another tool named rdesktop
which was stable and worked well for my case.
Installing it is as easy as typing the following command using the dnf
package manager:
sudo dnf install rdesktop
Now, you can connect to your remote desktop machine using the following command:
rdesktop -d <domain> -u <username> -p - <ipaddress>
Upon execution of this command, you'll be prompted to enter the password and after that, you're all good to go!
Hope you found this tip useful!