-
生成新的 SSH Key 1ssh-keygen -t rsa -b 4096 -C "your_email@example.com" 2... 3Enter a file in which to save the key (/home/you/.ssh/algorithm): <key_name> 4Enter passphrase (empty for no passphrase): [输入密码] 5Enter same passphrase again: [再次输入密码] 将新的 SSH Key 添加到 Github 将公钥文件的内容COPY
阅读更多 -
记录系统初始化应操作的一系统步骤,也可以直接下载初始化脚本。 1. 系统更新 Yum 版本库管理 2. 远程公私钥登录 1# 生成公钥、私钥 2ssh-keygen -t rsa -b 4096 -C "your_email@example.com" 3... 4Enter a file in which
阅读更多