1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/rdesktop.md

30 lines
880 B
Markdown
Raw Normal View History

2016-09-16 01:31:42 +08:00
# rdesktop
> Remote Desktop Protocol client.
> It can be used to connect the remote computer using the RDP protocol.
> More information: <https://manned.org/rdesktop>.
2016-09-16 01:31:42 +08:00
- 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):
2016-09-16 01:31:42 +08:00
`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):
2016-09-16 01:31:42 +08:00
`rdesktop -u {{username}} -p {{password}} -a 16 {{host:port}}`