From 7b7bd9e948ce53c9012788abb8702ad38f1cb6c5 Mon Sep 17 00:00:00 2001 From: "ithink.chan" Date: Fri, 14 Feb 2020 15:33:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=20Remmina=20=E8=BF=9C?= =?UTF-8?q?=E7=A8=8B=E8=BF=9E=E6=8E=A5.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ithink.chan --- .../Applications/Remmina/Remmina_远程连接.md | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Software/Applications/Remmina/Remmina_远程连接.md diff --git a/Software/Applications/Remmina/Remmina_远程连接.md b/Software/Applications/Remmina/Remmina_远程连接.md new file mode 100644 index 0000000..62182e5 --- /dev/null +++ b/Software/Applications/Remmina/Remmina_远程连接.md @@ -0,0 +1,41 @@ +# Remmina 远程连接 + +Remmina is a remote desktop client written in GTK from the FreeRDP project. It supports the following protocols: SSH, VNC, RDP, NX and XDMCP. + +## Installation + +Install the remmina package. + +For VNC support install the libvncserver package. + +If you need RDP support, also install the optional freerdp or remmina-plugin-rdesktopAUR. For these note: + +* If the RDP option is not available in the Remmina dropdown menu after installing freerdp, make sure to completely quit Remmina first: run killall remmina. When you restart Remmina, RDP should be available. +* As of Remmina 1.2.0, some users report RDP connections using freerdp suffer from frequent unrequested disconnections, but rdesktop RDP connections being more reliable. +* Password saving depends on GNOME Keyring. + +## Usage + +To open previously saved connection profile you can do: + +```sh +remmina -c ~/.remmina/file-name.remmina +``` + +Here is the script, which renames connection profile files basing on name= property to make it human readable: + +```sh +#!/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, use -i option. + +## See also + +[Remmina GitLab Repository](https://gitlab.com/Remmina/Remmina) +[FreeRDP Wiki](https://github.com/FreeRDP/FreeRDP/wiki)