在Ubuntu系统中设置SSH密钥可以通过以下步骤进行:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
在命令中将"your_email@example.com"替换为您的电子邮件地址。
ssh-copy-id user@remote_host
将user替换为远程主机的用户名,将remote_host替换为远程主机的IP地址或域名。
Host remote_host
IdentityFile ~/.ssh/id_rsa
将remote_host替换为远程主机的IP地址或域名。
设置完成后,您可以使用SSH登录远程主机时,系统会自动使用您生成的SSH密钥进行身份验证。