Linux - How to recover deleted files, Linux or UNIX Recover deleted files - undelete files
How to recover deleted files
Linux or UNIX Recover deleted files - undelete files
If you run rm command accidentally and deleted important a file, recovery becomes critical under Linux and/or UNIX oses.
Since Linux is multiuser and multitasking operating system other users/process can overwrite deleted file disk space. So you need to take down system to single user mode.
First use wall (only the super-user can write on the terminals of users) command write a message to all users, then use init (process control initialization) command to take system to single user mode.
Procedure
Following are generic steps to recover text files.
First use wall command to tell user that system is going down in a single user mode:
# wall
Output:
System is going down to .... please save your work. Press CTRL+D to send message.
Next use init 1 command to take system to a single user mode:
# init 1
Using grep (traditional UNIX way) to recover files
Use following grep syntax:
# grep -b 'search-text' /dev/partition > file.txtOR
grep -a -B[size before] -A[size after] 'text' /dev/[your_partition] > file.txtWhere,
* -i : Ignore case distinctions in both the PATTERN and the input files i.e. match both uppercase and lowercase character. * -a : Process a binary file as if it were text * -B Print number lines/size of leading context before matching lines. * -A: Print number lines/size of trailing context after matching lines.To recover text file starting with "w3calculator" word on /dev/sda1 you can try following command:
# grep -i -a -B10 -A100 'w3calculator' /dev/sda1 > file.txtNext use vi to see file.txt. This method is ONLY useful if deleted file is text file. If you are using ext2 file system, try out recover command.
The topic on Linux - How to recover deleted files is posted by - Mani
Hope you have enjoyed, Linux - How to recover deleted filesThanks for your time