Files
tldr/pages.zh/linux/rdesktop.md

29 lines
862 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# rdesktop
> 远程桌面协议客户端。
> 它可以使用 RDP 协议连接到远程计算机。
> 更多信息:<https://manned.org/rdesktop>。
- 连接到远程计算机(默认端口为 3389
`rdesktop -u {{用户名}} -p {{密码}} {{主机:端口}}`
- 简单示例:
`rdesktop -u Administrator -p passwd123 192.168.1.111:3389`
- 以全屏模式连接到远程计算机(按 `Ctrl + Alt + Enter` 退出):
`rdesktop -u {{用户名}} -p {{密码}} -f {{主机:端口}}`
- 使用自定义分辨率(在数字之间使用字母 'x'
`rdesktop -u {{用户名}} -p {{密码}} -g 1366x768 {{主机:端口}}`
- 使用域用户连接到远程计算机:
`rdesktop -u {{用户名}} -p {{密码}} -d {{域名}} {{主机:端口}}`
- 使用 16 位颜色(加速):
`rdesktop -u {{用户名}} -p {{密码}} -a 16 {{主机:端口}}`