Remmina
Remmina is a remote desktop client written in GTK+. It supports the following protocols:
- SSH
- VNC
- RDP
- NX
- SFTP
- XDMCP
Installation
Install the remmina package from the official repositories. If you want RDP support, also install freerdp.
Using from command line
You can do
$ remmina -c ~/.remmina/file-name.remmina
to open previously saved connection profile.
Here is the script, which renames connection profile files basing on name= property to make it human readable.
#!/bin/bash cd ~/.remmina ls -1 *.remmina | while read a; do N=`grep '^name=' "$a" | cut -f2 -d=`; [ "$a" == "$N.remmina" ] || mv "$a" "$N".remmina; done
To minimize to tray on startup, run:
remmina -i