Access Windows box from Linux

6

how can I access Windows box from Linux both GUI, or non GUI? opposite of something like VNC or SSH.

user81572

Posted 2011-05-11T17:28:43.423

Reputation: 163

Answers

9

rdesktop

rdesktop is an open source client for Windows Remote Desktop Services, capable of natively speaking Remote Desktop Protocol (RDP) in order to present the user's Windows desktop.

Paul Rubel

Posted 2011-05-11T17:28:43.423

Reputation: 291

3

SSH and VNC are platform-indipendent, so you can use them in both directions.

abaumg

Posted 2011-05-11T17:28:43.423

Reputation: 178

2

Just use RDP client for Linux. For example, if you are using linux:

$ sudo apt-get install rdesktop
$ rdesktop <WIN_IP_ADDRESS>

Mic

Posted 2011-05-11T17:28:43.423

Reputation:

2

If you want to use the same system in either direction you can run a VNC server on Windows:

kanaka

Posted 2011-05-11T17:28:43.423

Reputation: 251