将rsa-keys添加到系统中

时间:2017-10-18 15:18:21

标签: git ubuntu ssh rsa

有人用拉链发送了我的rsa密钥,用ssh密钥然后我应该能够克隆一个bitbucket repo。确切地说,他给我发了一个包含2个档案的拉链:

  • key.rsa

然后,该怎么办?我在ubuntu,我不知道如何继续处理这些文件,以便下载回购

1 个答案:

答案 0 :(得分:2)

您不仅必须将它们复制到〜/ .ssh文件夹中,还需要确保:

  • 它们的名称是正确的:

    id_rsa (for the bigger of the two files)
    id_rsa.pub (for the smaller)
    
  • 他们受到正确保护

    chmod 600 id_rsa*
    

然后你can copy id_rsa.pub (make sure it is in one line) in your BitBucket account, ssh keys section

最后,您可以测试是否可以使用

ssh -Tv git@bitbucket.org

最后,您应该看到:

logged in as <yourBitBucketAccount>.
You can use git or hg to connect to Bitbucket. Shell access is disabled.

这意味着您已经过适当的身份验证,并且可以像自己一样回到Bitbucket 如果您没有看到,前面的行允许您仔细检查ssh考虑的文件。