web-dev-qa-db-ja.com

バックインタイムGNOMEを使用してsshにログインできません

過去の時間でスケジュールされたバックアップを設定しようとしています。

Sshデータ(ホスト、ポート、ユーザー名、パス)を入力して[OK]をクリックすると、次のようになります。

Password-less authentication for [email protected] failed. Look at 'man backintime' for further instructions

SSH秘密鍵にパスワードを入力しても同じになります。

Gnomeに間に合うようにsshパスワードを入力するにはどうすればよいですか?

1
user1532587

man backintimeから:

To  prepare  your user account for ssh-mode you have to add the user
to group 'Fuse' by typing 'Sudo adduser <USER> Fuse' in terminal.  
To apply changes you have to logout and login again.

Next you have to create a password-less login to the remote Host 
(for further information look at http://www.debian-administration.org/articles/152).
Type  in terminal 'ssh-keygen -t rsa' hit enter for default path 
and enter a passphrase for the private key.

Finally type 'ssh-copy-id -i ~/.ssh/id_rsa.pub <REMOTE_USER>@<Host>'
and enter your password on remote Host.
2
Germar