One of best things in Linux is that it gives you for free features that, in other operating systems, are supposed to be limited to professional versions.
One of the first things I learnt about Linux has been how to remote control it. Not surprising if you think the first Linux machine I regularly started working with (PIII550) is a headless one.
Installing OpenSSH daemon
In order to remote access a Linux machine a SSH server daemon must be installed (
OpenSSH in this case). In Ubuntu this is just matter of a single
apt-get command
sudo apt-get install openssh-server
once install completed you can access the remote machine by typing
ssh remote-machine-ip-address
Tired of command line?
Remote control in Linux is not limited to command line. If you type from your client machine:
ssh -X remote-machine-ip-address
then, while in the remote machine, you might need to set the DISPLAY environment variable:
export DISPLAY=local-machine-ip-address:0
you can then run your X11 applications