Recuperar o diretório inicial do ecryptfs a partir do disco rígido danificado [fechado]

2

Meu disco rígido está danificado. Eu tenho um novo e agora estou tentando recuperar meu antigo diretório home (Ubuntu 14.04) do HD antigo. Eu poderia montá-lo sem nenhum problema, mas minha casa foi criptografada com ecryptfs e tenho problemas para montá-lo (possivelmente devido ao fato de que a unidade está danificada).

Estou em um USB ativo agora e estou tentando usar este guia . O "caminho curto" não funciona, com este erro:

user@lubuntu:~$ ecryptfs-mount-private 
Enter your login passphrase:
Inserted auth tok with sig [xxxxxxxxxxx] into the user session keyring
open: Permission denied
Error locking counter

A versão "longa" também não funciona:

lubuntu@lubuntu:~$ sudo mount -t ecryptfs /tmp/ecryptfs.CP9YxtzK/.ecryptfs/user/.Private /home/user
Passphrase: 
Select cipher: 
 1) aes: blocksize = 16; min keysize = 16; max keysize = 32
 2) blowfish: blocksize = 8; min keysize = 16; max keysize = 56
 3) des3_ede: blocksize = 8; min keysize = 24; max keysize = 24
 4) twofish: blocksize = 16; min keysize = 16; max keysize = 32
 5) cast6: blocksize = 16; min keysize = 16; max keysize = 32
 6) cast5: blocksize = 8; min keysize = 5; max keysize = 16
Selection [aes]: aes
Select key bytes: 
 1) 16
 2) 32
 3) 24
Selection [16]: 16
Enable plaintext passthrough (y/n) [n]: n
Enable filename encryption (y/n) [n]: y
Filename Encryption Key (FNEK) Signature [yyyyyyyyyy]: xxxxxxxxxx
Attempting to mount with the following options:
  ecryptfs_unlink_sigs
  ecryptfs_fnek_sig=xxxxxxxxxx
  ecryptfs_key_bytes=16
  ecryptfs_cipher=aes
  ecryptfs_sig=yyyyyyyyyy
WARNING: Based on the contents of [/root/.ecryptfs/sig-cache.txt],
it looks like you have never mounted with this key 
before. This could mean that you have typed your 
passphrase wrong.

Would you like to proceed with the mount (yes/no)? : yes
Would you like to append sig [yyyyyyyyy] to
[/root/.ecryptfs/sig-cache.txt] 
in order to avoid this warning in the future (yes/no)? : yes
Successfully appended new sig to user sig cache file
mount: wrong fs type, bad option, bad superblock on /tmp/ecryptfs.CP9YxtzK/.ecryptfs/user/.Private,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

Error mounting eCryptfs: [-1] Operation not permitted
Check your system logs; visit <http://ecryptfs.org/support.html>

dmesg produz as seguintes entradas:

[  730.561447] Valid eCryptfs headers not found in file header region or xattr region, inode 786440
[  730.561789] Valid eCryptfs headers not found in file header region or xattr region, inode 786439
[  734.636311] Valid eCryptfs headers not found in file header region or xattr region, inode 786439
[  734.748038] Valid eCryptfs headers not found in file header region or xattr region, inode 786889
[  778.327144] Valid eCryptfs headers not found in file header region or xattr region, inode 786439
[  778.435321] Valid eCryptfs headers not found in file header region or xattr region, inode 786889
[  797.091759] Valid eCryptfs headers not found in file header region or xattr region, inode 786439
[  797.192579] Valid eCryptfs headers not found in file header region or xattr region, inode 786889
[ 1462.402354] Mount on filesystem of type eCryptfs explicitly disallowed due to known incompatibilities

E o syslog contém isso:

Dec 29 08:16:36 lubuntu mount.ecryptfs: Failed to perform eCryptfs mount: [-32]
Dec 29 08:16:36 lubuntu kernel: [ 1462.402354] Mount on filesystem of type eCryptfs explicitly disallowed due to known incompatibilities
Dec 29 08:16:36 lubuntu kernel: [ 1462.402448] Reading sb failed; rc = [-22]

Estou fazendo algo errado? Ou a casa do meu ecryptf foi perdida devido a danos no disco?

Obrigado!

P.S .: Eu tenho um backup dos arquivos principais, mas recuperar todo o diretório seria muito melhor ...

    
por jivemind 29.12.2016 / 10:07

1 resposta

1

Após uma reinicialização USB ativa, consegui recuperar os dados usando o "caminho curto". Ele me deu um "contador de bloqueio de erro Ecryptfs", mas resolvi-o adicionando uma entrada tmpfs em / etc / fstab (dentro do ambiente chrooted) como descrito aqui . Aparentemente, não há problemas no disco rígido até agora. Deixo isto aqui no caso de alguém ter problemas semelhantes.

    
por jivemind 30.12.2016 / 09:53