Last active
January 3, 2018 21:12
-
-
Save jmewes/bef994806f4027b69e7bcedf161dfd4d to your computer and use it in GitHub Desktop.
How to connect to a RDP server?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install rdesktop | |
| sudo apt update | |
| sudo apt install rdesktop -y | |
| # Connect directly with username and password | |
| rdesktop $IP -u $USER -p $PASSWORD | |
| # Connect using with a non-default port (default is 3389) | |
| rdesktop $IP:$PORT | |
| # Open remote desktop in full screnn mode | |
| rdesktop $IP -f # you can exit the full screen mode with the key combination Ctrl + Alt + Enter | |
| # Open remote desktop with specific screen resolution, e.g. 80% of the whole screen | |
| rdesktop $IP -g 80% |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An alternative approach might be TeamViewer or Chrome Remote Desktop.