Difference between revisions of "Remote Desktop"
From SingletonMillerWiki
(Created page with "Category: RaspberryPi This describes hoy to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.") |
m |
||
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category: RaspberryPi]] | [[Category: RaspberryPi]] | ||
− | This describes | + | This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled. |
+ | |||
+ | Firstly, install the remote desktop package on you RPi: | ||
+ | |||
+ | <pre> | ||
+ | sudo apt-get install rdesktop | ||
+ | </pre> | ||
+ | |||
+ | Having installed the remote desktop on the RPi the remote machine is accessed by something such as the example below (linux). | ||
+ | You can also use the remote desktop gui on windows. | ||
+ | |||
+ | <pre> | ||
+ | rdesktop -x:l -r sound:remote hostname | ||
+ | </pre> | ||
+ | |||
+ | ''hostname'' can be replaced by an IP address | ||
+ | |||
+ | For a list of option see | ||
+ | |||
+ | <pre> | ||
+ | man rdesktop | ||
+ | </pre> | ||
+ | |||
+ | The example above indicates that the remote machine is on a LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine. | ||
+ | |||
+ | == References == | ||
+ | #[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=47&t=5814&p=90752 http://www.raspberrypi.org/phpBB3/viewtopic.php?f=47&t=5814&p=90752] |
Latest revision as of 01:36, 24 May 2013
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.
Firstly, install the remote desktop package on you RPi:
sudo apt-get install rdesktop
Having installed the remote desktop on the RPi the remote machine is accessed by something such as the example below (linux). You can also use the remote desktop gui on windows.
rdesktop -x:l -r sound:remote hostname
hostname can be replaced by an IP address
For a list of option see
man rdesktop
The example above indicates that the remote machine is on a LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.