Remmina: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 53: Line 53:
* [https://askubuntu.com/questions/290824/ Remmina » Extract saved password]
* [https://askubuntu.com/questions/290824/ Remmina » Extract saved password]
* [https://superuser.com/questions/628371/ Remmina » Run from the Terminal]
* [https://superuser.com/questions/628371/ Remmina » Run from the Terminal]
* [https://gitlab.com/Remmina/Remmina/-/wikis/Usage/Remmina-debugging Remmina » Debugging]


| valign="top" |
| valign="top" |

Revision as of 21:32, 8 May 2024

remmina -?

Playground

remmina --encrypt-password
echo 'sadaqah!' | remmina --encrypt-password
echo 'sadaqah!' | remmina --encrypt-password &>/dev/null
remmina -c rdp://admin:@10.19.83.110
remmina -c rdp://admin:C4z3tyEVgqKUAbLjLP1zKg==@10.19.83.110
remmina -c vnc://admin:C4z3tyEVgqKUAbLjLP1zKg==@10.19.83.110

REMMINA_RDP_USER='admin'
REMMINA_RDP_PASS='sadaqah!'
REMMINA_RDP_HOST='10.19.83.110'

echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password &>/dev/null
REMMINA_RDP_ENCR="$(echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password | grep 'Encrypted password: ' | cut -d':' -f2- | tr -d ' ')"
remmina -c "rdp://${REMMINA_RDP_USER}:${REMMINA_RDP_ENCR}@${REMMINA_RDP_HOST}"

References