ssh-copy-id命令实现ssh免密登陆多个树莓派
ssh-copy-id -i ~/.ssh/id_rsa.pub user@ip
给github配置公钥
首先在家目录下自己创建一个叫.ssh
的隐藏目录,用来存放密钥。
生成密钥命令:ssh-keygen -t rsa
生成密钥全程只需要一直按回车就好,不需要输入什么。
运行结果会生成两个文件:其中,右边的id_rsa.pub
是我们需要的公钥(左边是私钥,不能给别人看)
将生成的公钥用vim打开,复制到github的https://github.com/settings/keys
点击右边的New SSH key
绿色按钮,将公钥复制进去,保存
查看公钥是否配置成功:ssh -T git@github.com
执行这条命令后,你可能会看到告警信息,如下:
The authenticity of host 'github.com (207.97.227.239)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)?
直接输入yes
如果看到下面信息,就说明已配置成功
Hi username! You’ve successfully authenticated, but GitHub does not provide shell access.
关于 .bashrc
export CDPATH=.:~:~/Code:~/Code/program/