If someone would steal your computer and have some technical skills your account will be removed pretty quickly, and the root password will be replaced long before you have a shot at connecting to the computer. What we will need is therefore ssh autologin, and hope that it will not be detected. The way we do this is to the following in the terminal.
sudo su # become root, could also be only su on other unix-like-systems
ssh-keygen -b 4096 -t rsa # generate a high security key with rsa encryption for the user root. This will take a while, especially on a slower computer. Just press enter on all indata unless you know what you are doing.
cat ~/.ssh/id_rsa.pub
On the bottom you will have a cryptic text that starts with ssh-rsa. Copy the whole line (triple-click on ssh-rsa and Command-C). You now have a key on your computer. Now we are going to input some stuff in the server. It's recommended to SSH from your current computer to keep the copied text.
ssh youruser@IP
sudo su # become root, again, can be su. If you don't have root access you can jump down to the last step in this chapter (nano) but it will leave your account on the server open to attacks if the thief finds the cron-script
useradd -d /dev/null -g nobody USERNAME # create an user simply for listening
su USERNAME # become the new user
mkdir ~/.ssh/
nano ~/.ssh/authorized_keys # or emacs, or vi. Paste the code you copied from the other machine.