LinuxCommandLibrary

remmina

TLDR

Launch Remmina

$ remmina
copy
Connect to saved connection
$ remmina -c [connection_name]
copy
Connect to RDP server
$ remmina -c rdp://[user]@[host]
copy
Connect to VNC server
$ remmina -c vnc://[host]
copy
Connect to SSH
$ remmina -c ssh://[user]@[host]
copy

SYNOPSIS

remmina [options] [file]

DESCRIPTION

Remmina is a GTK remote desktop client supporting multiple protocols including RDP, VNC, SSH, SPICE, and more. It provides a unified interface for managing remote connections.

PARAMETERS

-c, --connect uri

Connect to URI or file.
-e, --edit file
Edit connection file.
-n, --new
New connection.
--protocol protocol
Protocol (RDP, VNC, SSH).
-s, --server server
Server address.

EXAMPLES

$ # Launch GUI
remmina

# Connect to RDP
remmina -c rdp://administrator@192.168.1.100

# Connect to VNC
remmina -c vnc://192.168.1.100:5900

# SSH connection
remmina -c ssh://user@server.example.com

# Connect using saved profile
remmina -c ~/.local/share/remmina/myserver.remmina
copy

PROTOCOLS

$ RDP    - Windows Remote Desktop
VNC    - Virtual Network Computing
SSH    - Secure Shell
SPICE  - Virtual machine display
NX     - NoMachine protocol
SFTP   - Secure file transfer
copy

CAVEATS

Requires protocol plugins. FreeRDP for RDP support. Some features require additional packages.

HISTORY

Remmina was forked from grdc in 2009 by Vic Lee to create a more feature-rich remote desktop client.

SEE ALSO

xfreerdp(1), vncviewer(1), ssh(1)

Copied to clipboard