DebianDebian Based

How To Install Remmina on Debian 12

Install Remmina on Debian 12

In this tutorial, we will show you how to install Remmina on Debian 12. Remmina shines as a beacon for system administrators and remote workers, offering a versatile and powerful tool for remote desktop access. Its open-source nature not only underscores its reliability and security but also highlights the vibrant community supporting its development. With support for a plethora of network protocols including RDP, VNC, NX, XDMCP, and SSH, Remmina ensures seamless connectivity across different platforms and operating systems.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of the Remmina remote desktop client on Debian 12 (Bookworm).

Prerequisites

Before proceeding with the installation of Remmina on Debian 12, ensure you meet the following requirements:

  • A server running one of the following operating systems: Debian 12 (Bookworm).
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • SSH access to the server (or just open Terminal if you’re on a desktop).
  • An active internet connection. You’ll need an internet connection to download the necessary packages and dependencies for Remmina.
  • A user account with sudo privileges to execute administrative commands.

Install Remmina on Debian 12 Bookworm

Step 1. Before diving into the installation process, it’s crucial to ensure that your Debian 12 system is up-to-date. This can be achieved with a simple command:

sudo apt update
sudo apt upgrade

This step is vital for the smooth installation and operation of software, paving the way for a secure and stable environment.

Step 2. Installing Flatpak.

  • Installing Remmina Using Flatpak

Flatpak emerges as a modern software deployment and package management system, designed to offer a sandboxed environment for applications, enhancing security and cross-distribution compatibility. To install Remmina using Flatpak on Debian 12, follow these steps:

sudo apt install flatpak

Add the Flathub repository:

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

With Flatpak installed and the Flathub repository added, you can now proceed to install Remmina:

flatpak install flathub org.remmina.Remmina
  • Installing Remmina Using Snap

Snap, another innovative app packaging system, offers ease of installation and automatic updates, making it a favorable choice for many users. To install Remmina using Snap on Debian 12:

sudo apt install snapd

Enable Snapd and AppArmor:

sudo systemctl enable --now snapd apparmor

Now install Remmina using the following command below:

sudo snap install remmina

Step 4. Launch Remmina on Debian.

Once the installation is complete, Remmina can be launched from your applications menu or directly from the terminal using the command:

flatpak run org.remmina.Remmina # For Flatpak installation
remmina # For Snap installation

Install Remmina on Debian 12 Bookworm

Congratulations! You have successfully installed Remmina. Thanks for using this tutorial to install the latest version of the Remmina open-source remote desktop client on Debian 12 Bookworm. For additional help or useful information, we recommend you check the official Remmina website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is a seasoned Linux system administrator with a wealth of experience in the field. Known for his contributions to idroot.us, r00t has authored numerous tutorials and guides, helping users navigate the complexities of Linux systems. His expertise spans across various Linux distributions, including Ubuntu, CentOS, and Debian. r00t's work is characterized by his ability to simplify complex concepts, making Linux more accessible to users of all skill levels. His dedication to the Linux community and his commitment to sharing knowledge makes him a respected figure in the field.
Back to top button