Need to generate those dang SSH Keys?

Standard Linux

To create ssh keys run

ssh-keygen

on client only needed to be done once.

Then run

ssh-copy-id user@server.

Android connect Bot

Generate key in app settings then copy the PUBLIC key

SSH into server and run (this is an example key)

echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDQFSzet/Qu8SLklDQyNbX5k16MwOBVKuaY9bNJhb99BkIRIVbNpr61eHUG3gP6haNC6qreTbpHscq4AQV21gLvCgVmHsTci0QAK44weFyDzVwIBFH9uUN+f/k2NTY9zV8FaBqK9CW8hS2f50EB38mGYvE7/0/S1u7/jtxnKqwAgw== htc_aria" >> .ssh/authorized_keys

Then run

chmod 644 .ssh/authorized_keys