Install Remmina on Ubuntu 22.04: Free Remote Desktop
In this guide, you will learn to Install Remmina on Ubuntu 22.04 in the latest version. Remmina is a free, open-source, and powerful remote desktop client for Linux. It boasts numerous features beneficial for anyone needing to control computers remotely. Furthermore, it supports a wide array of network protocols, including RDP, VNC, NX, XDMCP, and SSH. This makes it a versatile tool for managing diverse remote environments.
Now, follow the steps below to Install Remmina on Ubuntu 22.04 using the PPA repository.
To Install Remmina on Ubuntu 22.04, ensure you have access to your server as a non-root user with sudo privileges. For guidance on this, you can refer to a guide on Initial Server Setup with Ubuntu 22.04.
Step 1 – Add Remmina PPA Repository
The default Ubuntu 22.04 repository doesn’t contain the latest LTS version of Remmina. Therefore, we will utilize the PPA repository to install it.
To add the Remmina PPA repository, execute the following command:
sudo add-apt-repository ppa:remmina-ppa-team/remmina-next
Press Enter to proceed. Once completed, update the system:
sudo apt update
Step 2 – Install Remmina on Ubuntu using Terminal
With the Remmina PPA repository successfully added, you can now install Remmina on Ubuntu 22.04 by running this command in your terminal:
sudo apt install remmina -y
Step 3 – Installing RDP Plugin for Remmina on Ubuntu
To enhance Remmina’s functionality, particularly for RDP connections, install the Remmina RDP plugin and other useful plugins using the following command on your Ubuntu 22.04 system:
sudo apt install remmina-plugin-rdp remmina-plugin-secret remmina-plugin-spice -y
Step 4 – How To Run and Use Remmina on Ubuntu?
At this stage, you can access the Remmina remote desktop application. To do so, from your desktop, navigate to your application launcher and search for "Remmina." Click on the icon to launch the application.
Within the Remmina app, click the + icon on the left side and select the desired protocol.

For instance, choose the RDP protocol for Windows connections and input the IP address, username, and password of the target machine. Then, click "Connect."

Remmina facilitates the management of connection profiles, organized by groups. It supports quick connections via direct server address input and offers a tabbed interface, optionally managed by groups, among other features.
For detailed information, visit Remmina Features.
Step 5 – Update Remmina on Ubuntu Desktop
Since Remmina was installed using APT, updates are streamlined through the system update and upgrade process. Your Remmina application will be automatically updated on your Ubuntu 22.04 system with the following commands:
sudo apt update
sudo apt upgrade
Step 6 – Remove or Uninstall Remmina from Ubuntu
If Remmina is no longer required, you can remove the application and its associated plugins using the following command:
sudo apt remove remmina remmina-plugin-rdp remmina-plugin-secret remmina-plugin-spice
Additionally, you can remove the PPA repository:
sudo add-apt-repository --remove ppa:remmina-ppa-team/remmina-next -y
How to install an RDP client on Ubuntu?
As demonstrated, installing Remmina on your Ubuntu server provides access to a robust remote desktop client.
Conclusion
By this point, you have successfully learned how to Install Remmina on Ubuntu 22.04, specifically the LTS version, using the PPA repository. You also learned how to launch the application and how to connect to other computers. Remmina is a powerful and versatile remote desktop app.
Hope you enjoy it.
Now, let’s explore alternative approaches to achieve the same goal of installing a remote desktop client on Ubuntu 22.04.
Alternative Solution 1: Using Flatpak
Flatpak is a universal package manager that allows you to install applications across different Linux distributions, including Ubuntu. This offers an alternative to using PPA repositories, providing a more sandboxed and potentially more secure installation method. The process to Install Remmina on Ubuntu 22.04 using Flatpak is quite straightforward.
Steps:
-
Install Flatpak: If Flatpak is not already installed on your system, you can install it using the following command:
sudo apt install flatpak
-
Add the Flathub repository: Flathub is the most popular Flatpak app store. Add it using:
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
-
Install Remmina via Flatpak: You can now install Remmina using Flatpak with this command:
flatpak install flathub org.remmina.Remmina
Confirm any prompts during the installation.
-
Run Remmina: After installation, you can run Remmina using:
flatpak run org.remmina.Remmina
Explanation:
Flatpak packages applications and their dependencies in a sandbox, isolating them from the rest of the system. This can enhance security and prevent conflicts with other installed software. The flatpak install flathub org.remmina.Remmina
command retrieves the Remmina package from the Flathub repository and installs it within the Flatpak environment.
Alternative Solution 2: Using Snap
Snap is another universal package manager developed by Canonical, the company behind Ubuntu. Like Flatpak, it provides a way to install applications in a sandboxed environment. Using Snap to Install Remmina on Ubuntu 22.04 is a one-line command.
Steps:
-
Install Remmina via Snap: Snaps are enabled by default on Ubuntu, so you can install Remmina directly using the following command:
sudo snap install remmina
-
Run Remmina: Once installed, you can launch Remmina from your application launcher or by running the following command:
remmina
Explanation:
Snap packages are self-contained and include all the necessary dependencies to run an application. This eliminates dependency conflicts and simplifies the installation process. The sudo snap install remmina
command downloads and installs the Remmina snap package, making it available for use on your system. Snap applications are automatically updated in the background, ensuring you always have the latest version.