重定向密码提示警报

Redirect the password prompt alert

是否可以将密码提示警报重定向到文件或使其静音?

[lnx51 ~]$ ssh root@192.168.1.1 root@192.168.1.1's password:

使用批处理模式防止 ssh 提示输入密码等,尤其是如果您 运行 通过 rsync。 (我假设您将设置基于密码的身份验证)

ssh -o BatchMode=yes root@hostname command

要避免密码验证,您可以使用下一句:

  ssh -o PasswordAuthentication=no root@192.168.1.1

这会禁用 'manual' 身份验证,但您需要另一种登录方法,否则您将收到类似这样的错误:

  Permission denied (publickey,password).

也许您的 id_rsa

有问题

如果您想与 rsync 一起使用(如您的示例),您必须在命令中加上引号 ("):

   rsync -v -r -l -e "ssh -o PasswordAuthentication=no"  ctxt root@192.168.6.2:/home/

您可以在 here

查看 rsync 选项