Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 SSH 上使用 rsync 时遇到问题。我的意思是输入密码的方式。进入该行后无法立即输入:
$ rsync -avz -e ssh remoteuser@remotehost:/remote/dir /this/dir/
我不知道该怎么做。有任何想法吗?
放
eval `keychain --eval id_rsa` #Or id_dsa / whatever you key is called
在您.bash_profile的终端上登录一些软件。(或者你可以简单地运行它)
.bash_profile
然后将其粘贴到您的脚本中(除非您的脚本是交互式的,否则您将不得不按照前面所述的其他方式运行它)
您需要预先安装钥匙串并阅读有关使用 ssh-keygen 制作钥匙的教程。
这是一个粗略问题的粗略答案。