下面的命令在centos6.6上面测试ok。
以前都是需要连续输入3次回车,现在加入参数后,直接在~/.ssh目录下生成id_rsa和id_rsa.pub
ssh-keygen -t rsa -N ‘‘ -f id_rsa -q -b 2048
-N ‘‘ 是指密码为空;
-f id_rsa是指保存文件为~/.ssh/id_rsa和~/.ssh/id_rsa.pub;
-q是指静默模式,和unzip的-q参数一样的;
-b是指位数,可以指定1024这类的,默认是2048;
上面-q -b 2048可以不需要。
时间: 2024-12-17 07:44:44