Não é possível fazer login no ssh usando o gnome de volta no tempo

1

Estou tentando configurar um backup agendado com o tempo de volta.

Depois de inserir meus dados ssh (host, porta, nome de usuário, caminho) e clicar em OK, recebo:

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

Mesmo se eu inserir a senha na chave privada do SSH, recebo o mesmo.

Como posso inserir minha senha ssh no tempo do gnome?

    
por user1532587 20.04.2015 / 18:04

1 resposta

2

De 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.
    
por Germar 25.04.2015 / 21:59