### Step #1
First make sure the motion sensor box has a SSH private key set up on it: `ssh-keygen`.
### Step #2
Then make sure the public key for said private key is on the more powerful computer. You need to put it at the end of a file with a name like this:
/home/${user}/.ssh/authorized_keys
**NOTE:** ${user} is your user's name on the more powerful computer.
Also, make sure on the powerful computer, `/home/${user}/.ssh/` has the permissions 700 (`drwx------`), and `/home/${user}/.ssh/authorized_keys` has permissions 600 (`-rw-------`). You can use the `chmod` to set permissions.
$ chmod 700 /home/${user}/.ssh/
$ chmod 600 /home/${user}/.ssh/authorized_keys
### Step #3
Then, from the remote sensor computer, run something like:
$ ssh user@more-powerful-computer '/usr/local/bin/process_motion_event'