linux ubuntu how to generate the key code example
Example 1: linux create public key
ssh-keygen -t rsa -C "[email protected]"
Example 2: ubuntu create a ssh key
cat ~/.ssh/id_rsa.pub | ssh username@remote_host "mkdir -p ~/.ssh && touch ~/.ssh/authorized_keys && chmod -R go= ~/.ssh && cat >> ~/.ssh/authorized_keys"