From 45de439ec37da286e40406daa88acaf2562732ab Mon Sep 17 00:00:00 2001 From: Xiang Wang Date: Fri, 16 Sep 2016 01:31:42 +0800 Subject: [PATCH] add the page of rdesktop command --- pages/linux/rdesktop.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/rdesktop.md diff --git a/pages/linux/rdesktop.md b/pages/linux/rdesktop.md new file mode 100644 index 000000000..3885a6e38 --- /dev/null +++ b/pages/linux/rdesktop.md @@ -0,0 +1,28 @@ +# rdesktop + +> Remote Desktop Protocol client. +> It can be used to connect the remote computer using the RDP protocol. + +- 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}}`