Caterpillar Asked: 2011-05-06 12:25:41 +0800 CST2011-05-06 12:25:41 +0800 CST 2011-05-06 12:25:41 +0800 CST Recovering any deleted file using Inode value? 772 Please correct me If I'm wrong Is possible to recover the deleted file if you have inode number of file. linux inode 1 Answers Voted Best Answer user9517 2011-05-06T13:25:08+08:002011-05-06T13:25:08+08:00 If the file is held open by another process then you can recover the file by using the inode number. find /path/to/check -inum 1023564 -exec cp {} recoveredfile \; If the file not held open by another process then your out of luck with using the inode.
If the file is held open by another process then you can recover the file by using the inode number.
If the file not held open by another process then your out of luck with using the inode.