I use the following commands on computer A to generate authentication key for ssh from computer A to computer B
ssh-keygen -t rsa
scp ~/.ssh/id_rsa.pub B:.ssh/authorized_keys2
If further I need to generate authentication keys for ssh from Computer C to Computer B, how to prevent overwriting the existing file .ssh/authorized_keys2 on B for A to B?
Thanks and regards!