在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密鑰進行身份驗證。