Undelete: acesso negado porque o volume NTFS já está aberto exclusivamente

4

Eu preciso restaurar alguns arquivos excluídos da prática.

ben@ben-V5-171:~$ sudo ntfsundelete /dev/sdb1
Access is denied because the NTFS volume is already exclusively opened.
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the 'fuser' command.
You can use force option to avoid this check, but this is not recommended
and may lead to data corruption.
ben@ben-V5-171:~$ fuser /dev/sdb1
ben@ben-V5-171:~$ sudo fuser /dev/sdb1
ben@ben-V5-171:~$ lsof /dev/sdb1
ben@ben-V5-171:~$ sudo lsof /dev/sdb1
lsof: WARNING: can't stat() fuse.gvfs-fuse-daemon file system /home/ben/.gvfs
      Output information may be incomplete.
ben@ben-V5-171:~$
    
por MInner 27.01.2014 / 07:18

1 resposta

0

Eu tive que manualmente umount minha unidade. Ele se tornou vfat fs, então, finalmente, a melhor maneira de restaurar arquivos na minha situação foi esta:

ben@ben-V5-171:~/tmp/flash$ sudo dd if=/dev/sdb1 of=fl.img bs=1024
ben@ben-V5-171:~/tmp/flash$ tsk_recover -e fl.img files/
    
por MInner 28.01.2014 / 11:27

Tags