手贱rm -rf /path/之后,可以这样来

How to recover files I deleted now by running rm *? [duplicate]


This question already has an answer here:
Recovering accidentally deleted files 7 answers
By mistake I ran rm * on the current directory where I created many c program files. I had been working on these since morning. Now I can't take out again the time that I spent since morning on creating the files. Please say how to recover. They aren't in recycle bin also!

ubuntu rm data-recovery
shareimprove this question
edited Feb 21 '14 at 0:33

Braiam
13.9k73778 
asked Nov 15 '13 at 8:56

Ravi
61841334
marked as duplicate by Anthon, jasonwryan, slm♦, Bernhard, rahmu Nov 15 '13 at 22:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2     
Linux/Unix doesn't forgive :) – Jiri Xichtkniha Nov 15 '13 at 9:07
4     
Checkout them from the version control system you use. You use one, right? – choroba Nov 15 '13 at 9:08
2     
There are SOME ways to recover files/data. But most of them is very hard to do. Be sure you don't write any more to the disk or you are doomed completely. – Jiri Xichtkniha Nov 15 '13 at 9:12 
1     
When I did this, when I was young, it was not as bad as I thought. This is how I discovered that most of the time taken to write is in thinking. The second time around there will be less thinking, and you may even improve it. – richard Nov 15 '13 at 9:13
2     
Unmount the file system ASAP to avoid the blocks previously allocated for the deleted files from being overwritten. Assuming the underlying file system is either ext3 or ext4, you might have some luck recovering files using extundelete. – Thomas Nyman Nov 15 '13 at 9:14 
show 9 more comments
2 Answers
activeoldestvotes
up vote
13
down vote
If a running program still has the deleted file open, you can recover the file through the open file descriptor in /proc/[pid]/fd/[num]. To determine if this is the case, you can attempt the following:

$ lsof | grep "/path/to/file"
If the above gives output of the form:

progname 5383 user 22r REG 8,1 16791251 265368 /path/to/file               
take note of the PID in the second column, and the file descriptor number in the fourth column. Using this information you can recover the file by issuing the command:

$ cp /proc/5383/fd/22 /path/to/restored/file
If you're not able to find the file with lsof, you should immediately remount the file system which housed the file read-only:

$ mount -o remount,ro /dev/[partition]
or unmount the file system altogether:

$ umount /dev/[partition]
The reason for this is that as soon as the file has been unlinked, and there are no remaining hard links to the file in question, the underlying file system may free the blocks previously allocated for the deleted file, at which point the blocks may be allocated to another file and their contents overwritten. Ceasing any further writes to the file system is therefore time critical if any recovery is to be possible. If the file system is the root file system or cannot be made read-only or unmounted for some other reason, it might be necessary to shutdown the system (if possible) and continue the recovery from a live environment where you can leave the target file system read-only.

After writes to the file system have been prevented, there is no immediate hurry to attempt the actual recovery. To play it safe, you might want to make a backup of the file system to perform the actual recovery on:

$ dd bs=4M if=/dev/[partition] of=/path/to/backup
The next steps now depend on the file system type. Assuming a typical Ubuntu installation, you most likely have a ext3 or ext4 file system. In this case, you may attempt recovery using extundelete. Recovery may be attempted safely on either the backup, or the raw device, as long as it is not mounted (or it is mounted read-only). DO NOT ATTEMPT RECOVERY FROM A LIVE FILE SYSTEM. This will most likely bring the file system to an inconsistent state.

extundelete will attempt restore any files it finds to a subdirectory of the current directory named RECOVERED_FILES. Typical usage to restore all deleted files from a backup would be:

$ extundelete /path/to/backup --restore-all

   

   另外参考解决办法原文出处的样子:http://extundelete.sourceforge.net/

你可能感兴趣的:(手贱rm -rf /path/之后,可以这样来)