web-dev-qa-db-ja.com

削除の取り消し:NTFSボリュームが既に排他的に開かれているため、アクセスが拒否されました

Pratitionから削除されたファイルを復元する必要があります。

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:~$
4
MInner

ドライブを手動でumountしなければなりませんでした。それはvfat fsになったので、最後に、私の状況でファイルを復元する最良の方法はこれでした:

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/
0
MInner