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

link|improve this question
feedback

migrated from stackoverflow.com May 11 '11 at 18:04

This question came from our site for professional and enthusiast programmers.

4 Answers

up vote 5 down vote accepted

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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

$ sudo apt-get install rdesktop
$ rdesktop <WIN_IP_ADDRESS>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.