Remmina: Difference between revisions
Jump to navigation
Jump to search
Line 73: | Line 73: | ||
* [[Terraform]] | * [[Terraform]] | ||
* [[OpenVPN]] | * [[OpenVPN]] | ||
* [[X11VNC]] | |||
* [[Podman]] | * [[Podman]] | ||
* [[ | * [[XRDP]] | ||
| valign="top" | | | valign="top" | | ||
* [[Academia JavaEE Workspace in Ubuntu]] | * [[Academia JavaEE Workspace in Ubuntu]] | ||
* [[Docker Compose]] | * [[Docker Compose]] | ||
* [[Linux Containers]] | * [[Linux Containers]] | ||
* [[Vagrant]] | |||
* [[Ansible]] | * [[Ansible]] | ||
* [[Base64]] | * [[Base64]] | ||
* [[Docker]] | |||
* [[HTTPie]] | * [[HTTPie]] | ||
* [[Jasypt]] | * [[Jasypt]] | ||
Line 90: | Line 90: | ||
| valign="top" | | | valign="top" | | ||
* [https://superuser.com/questions/513496/ Linux » Terminal » Non Blocking Command] | |||
* [https://askubuntu.com/questions/1499789/ RDP » Linux » Enable from the Terminal] | |||
|} | |} |
Revision as of 01:04, 9 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:[email protected]'
remmina -c 'rdp://admin:[email protected]'&
| |
| ||
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
| ||