Remmina - The GTK+ Remote Desktop Client  v1.4.33
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Remmina-command-line-examples.md
Go to the documentation of this file.
1 ## Connect to multiple profiles from a terminal
2 
3 ```shell
4 ╭─antenore@bigmom /data/remmina/profiles
5 ╰─$ remmina -c barfoo.remmina -c foobar.remmina
6 ```
7 
8 ## Edit settings of existing profiles
9 
10 ```shell
11 ╭─antenore@bigmom /data/remmina/profiles
12 ╰─$ cp test-spice_spice_ubu20_192-168-1-39.remmina test-spice_spice_ubu20_192-168-1-28.remmina
13 ╭─antenore@bigmom /data/remmina/profiles
14 ╰─$ remmina --set-option server=192.168.1.28 --update-profile test-spice_spice_ubu20_192-168-1-28.remmina
15 ╭─antenore@bigmom /data/remmina/profiles
16 ╰─$ diff test-spice_spice_ubu20_192-168-1-28.remmina test-spice_spice_ubu20_192-168-1-39.remmina
17 8c8
18 < server=192.168.1.28
19 ---
20 > server=192.168.1.39
21 ```
22 
23 `--set-option` can be used multiple times and the last one must be followed by `--update-profile` and the connection profile file (.remmina)
24 
25 ## Encrypt a password
26 
27 ```shell
28 $ echo foopass | remmina --encrypt-password test-spice_spice_ubu20_192-168-1-28.remmina
29 Enter the password you want to encrypt:
30 Encrypted password: G1/IJfT3evw=
31 
32 Usage:
33 rdp://username:G1/IJfT3evw=@server
34 vnc://username:G1/IJfT3evw=@server
35 vnc://server?VncUsername=user\&VncPassword=G1%2FIJfT3evw%3D
36 ```
37 
38 This is the password using the default Remmina password encryption algorithm, but consider that is not safe.
39 
40 If you want to be safe, use kwallet or gnome-keyring, in the password field use a `.` (dot) and search how to add secrets from the command line in kwallet or gnome-keyring