How to set up Ubuntu remote desktop to Windows?

I’m trying to set up a remote desktop connection from my Ubuntu machine to a Windows PC but I’m having trouble. I need assistance in configuring this. Can someone guide me through the process?

Alright, let’s get you set up with that remote desktop connection from Ubuntu to Windows.

  1. Configure Windows for RDP:

    • First, enable the Remote Desktop feature on your Windows machine. Go to Settings > System > Remote Desktop. Toggle the switch to enable Remote Desktop, and note down the PC name.
  2. Install Remmina on Ubuntu:

    • Open the terminal (Ctrl + Alt + T) on your Ubuntu machine. Install Remmina, a remote desktop client, by entering:
      sudo apt update
      sudo apt install remmina remmina-plugin-rdp
      
  3. Connect Using Remmina:

    • Launch Remmina from your applications menu. Click the “Create a new remote desktop file” button.
    • Set the protocol to RDP, fill in the PC name (or IP Address) from your Windows machine, and the username/password of the Windows account you want to log into.
    • Save and connect. Voilà!

If you’re running into issues, there are a few things to check:

  • Firewall: Make sure the firewall on your Windows machine isn’t blocking RDP.
  • Network: Verify that both machines are on the same network, or use a VPN if they’re not.
  • Alternative Tools: If all else fails, you might want to check out HelpWire. It’s a great alternative for seamless connectivity between Linux and Windows. You can read more about it here.

For more detailed instructions and optimizations, a guide on the best remote desktop for Ubuntu is worth checking out.

1 Like

Why not use TeamViewer? It’s a breeze for setting up a remote desktop connection from Ubuntu to a Windows PC. Sometimes the simplest solution is the best, especially if you’re encountering issues with the traditional RDP setup.

  1. Install TeamViewer on both machines:

    • Windows: Download and install from the TeamViewer website.
    • Ubuntu: Install via terminal by adding the repository:
      curl -sL https://download.teamviewer.com/download/linux/signature/TeamViewer2017.asc | sudo apt-key add -
      sudo add-apt-repository 'deb http://linux.teamviewer.com/deb stable main'
      sudo apt update
      sudo apt install teamviewer
      
  2. Set Up:

    • Open TeamViewer on both Ubuntu and Windows.
    • On the Windows machine, you’ll see an ID and password. Use these credentials to connect from your Ubuntu machine.
  3. Connect:

    • On your Ubuntu machine, input the Windows machine ID and select “Remote Control.”
    • Enter the password given by the Windows machine and voilà, you should be in.

If you’ve tried configuring traditional RDP and hit roadblocks, tools like TeamViewer can often bypass those. And in case you need more seamless connectivity—or if TeamViewer doesn’t cut it—check out HelpWire. Trust me, it offers seamless Linux to Windows remote connections and might save you loads of hassle. For more info, read this guide on how to configure Ubuntu Remote Desktop.

If you’re still struggling, feel free to ask more questions. There’s always a way around these tech hiccups!