WHAT?!?!
Please explain. I never knew something like this was possible. You telling me that I might be able check my MS Outlook email from my PS3?
Sure. If you have a Windows XP PRO PC running on the same network, you can log into it with rdesktop (uses Microsoft's Citrix-like Remote Desktop protocol). If you have an Windows XP Home, you have to use VNC to do the same since RDP is not included. In both cases, you get a Windows session in a Window on your PS3. RDP will use much less bandwidth than VNC, remote X, or SSH, although on a LAN both are no problem.
The problem with Windows though is that it is a single user OS and will not let more than one user log in at a time, so if someone else is logged in already you have to kick them off (Windows Terminal Server allows some windows programs to run as multi-user, but a lot of applications are incompatible, and performance is poor, because Windows is basically a desktop OS pretending to be a multi-user OS. It is also extortionate in terms of pricing).
Linux on the other hand is a variant of Unix and is designed as a multi-user network OS from the onset and puts Windows to shame in these respects. You can have one local GUI session per local display (X-server), but you can have as many simultaneous independent logins and remote GUI sessions as you like. So if you have Linux installed on your PC, and someone is using it, you can configure it to allow remote GUI sessions, and you can log in and do whatever you like (like check your email, edit a document etc.) from your PC without disturbing the person on the PC, or even without him/her knowing.
Remote X with XDMCP gives you a login prompt from an xnest window on Linux to get a remote GUI session on a Linux PC from another Linux PC eg. "xnest :1 -query 192.168.5.1 -cookie mcookie". From a Windows PC, you can do the same with Cygwin/XFree + XWinlogin
http://sourceforge.net/projects/xwinlogon/ to get a session on a Linux PC
http://www.opensourceheaven.net/images/xwinlogon/kdecontrol.jpg . X protocol is not compressed oe encrypted, so it should only be used on a trusted LAN.
Nomachine NX protocol servers (and FreeNX which is the free version) is equivalent to Citrix metaframe servers and runs on Linux servers. Free NX clients are available for Lin ux and Windows. NX uses a highly compressed format to reduce bandwidth to similar levels and is encrypted (similar bandwith and security to Citrix) which allows it to be used over a WAN or modem.
http://www.nomachine.com/screenshots.php
VNC is in between X and NX and but the bandwidth means it is only suitable for LAN. VNC clients and servers are available for Windows and Linux.
http://www.csd.uwo.ca/~magi/doc/vnc/screenshots.html
You can also set up SSH X forwarding on the Linux server, and use SSH on the PS3 to run a single remote application in a Window on the PS3 by typing something like:
"ssh -X spm@192.168.5.3 firefox" on the command line (or putting it in a shortcut) will get you a window running Firefox on remote machine with IP address 192.168.5.3. SSH has strong encryption and compression , but the bandwidth is too low for WAN use.