generate ssh public key and using your email as a public key?
ssh-keygen -t rsa -C “your_email@example.com”
command to use to copy a file to remote server?
scp
how to add one’s public ssh key to a remote server?
cat ~/.ssh/id_rsa.pub | ssh user@remote.server “cat»_space; ~/.ssh/authorized_keys”
toggle ssh session using escape character
~ and ctrl+Z
go back to the stopped ssh session
fg %1