Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

34
linux/rdesktop Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# rdesktop
> Remote Desktop Protocol client.
> It can be used to connect the remote computer using the RDP protocol.
> More information: <https://manned.org/rdesktop>.
- Connect to a remote computer (default port is 3389):
`rdesktop -u {{username}} -p {{password}} {{host:port}}`
- Simple Examples:
`rdesktop -u Administrator -p passwd123 192.168.1.111:3389`
- Connect to a remote computer with full screen (press `Ctrl + Alt + Enter` to exist):
`rdesktop -u {{username}} -p {{password}} -f {{host:port}}`
- Use the customed resolution (use the letter 'x' between the number):
`rdesktop -u {{username}} -p {{password}} -g 1366x768 {{host:port}}`
- Connect to a remote computer using domain user:
`rdesktop -u {{username}} -p {{password}} -d {{domainname}} {{host:port}}`
- Use the 16-bit color (speed up):
`rdesktop -u {{username}} -p {{password}} -a 16 {{host:port}}`