views:

812

answers:

3

At work I use Windows Server 2008. At home, I just got a openSUSE laptop. Is there an RDP client I can use?

+7  A: 

http://www.rdesktop.org/

Brad Wilson
+5  A: 

rdesktop and tsclient both work well in my experience on Red Hat and Ubuntu. I expect that either or both would be available for SuSe. I use a little shell script to access windows over RDP:

#!/bin/sh

SERVER=name.of.windows.machine

/usr/bin/rdesktop -g 1152x864 \
-a 16 \
-u windowsusername \
-d windowsdomain \
-r sound:local \
$SERVER
robc
A: 

You could use VNC. The VNC server can be installed on your Windows box and the VNC client installed on your Linux laptop. VNC is free and very good, I tend to use it in preference to Remote Desktop.

stevechol
Why has this answer been downvoted. It it not correct ?
dub