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-keygen -t rsa -b 4096在 Ubuntu 上,我使用命令生成了一个密钥。尝试使用 将生成的密钥转换为 OpenSSH 格式时 ssh-keygen -i -f id_rsa.pub > id_rsa_openssh.pub,出现错误uudecode failed。知道如何解决此错误。
ssh-keygen -t rsa -b 4096
ssh-keygen -i -f id_rsa.pub > id_rsa_openssh.pub
可能为时已晚,但使用
ssh-keygen -e -f id_rsa.pub > id_rsa_openssh.pub
为我工作。