Is it possible to restore files/directories which are deleted from terminal using rm
and rm -r
?. If a file is deleted from graphical interface, it could be restored from trash, but how do you restore a file if it is removed using the rm utility?.
To this end I use
trash-cli
package and the following alias in my~/.bashrc
And the
trash-cli
package can be installed by the followoing command:sudo apt-get install trash-cli
.The files you remove will be moved to trash, and you can see them in nautilus trashcan.
You can always access the real
rm
by using one of the following method:There are also commands to access the trashcan from terminal,
trash-list
,restore-trash
(ortrash-restore
),trash-empty
installable from package trash-cli (then see their man pages).Last note, it is not advisable to use such an alias for super-user, because it can interfere with system operations.
Deleting it from terminal deletes it permanently - recovery is very hard and sometimes impossible.
If your partition type is
ext3
(check it by using theSystem->Administration->Disk Utility
), then take a look at ext3undel.If it is not (if you installed Ubuntu with default settings), try the
extundelete
program.There is no guarantee you will recover anything though.
You are looking for: extundelete - utility to recover deleted files from ext3/ext4 partition
To find such a package, you can try:
apt-cache search undelete
To use the utility install it with:
sudo apt-get install extundelete
After installation invoke
man extundelete
and study it carefully.Just as an alternative, if you know specifically what type of file it is...
Now open up
/etc/foremost.conf
and you will see a long list of commented out lines. If your file type exists, uncomment the line (you may also want to remove the irrelevant lines).If your file type does not exist, add your own line. Say I want to recover a .css file and I know its around 40K. I could do add this:
The 2nd column refers to case-sensitivity, the third column refers to the upper limit for size, the 4th column is how the file starts (remember to use escaped characters) and the last column is how the file usually ends.
Use the following command (edit the disk accordingly. could check with
df
command)What will happen next is that foremost will create a folder called output and dump all the recovered data (in this case) into the folder. From there you could use
diff
ormeld
to compare the recovered 'files' and see which is the most up to date.Speaking in the most abstract terms, whenever you delete a file on the graphical interface, the file is "moved" to a special "buffer", a directory called
trash
. You can locate it in yourhome
directory,~/.local/share/Trash/
. Files "deleted" from this directory, will be really deleted. This real deletion is what happens when you userm
on a file.It's extremely hard to recover deleted files. Files in the file system are represented as nodes on a B-tree or the like. When a file is deleted using
rm
, the tree is updated, number of hardlinks are reduced, the corresponding entry in the directory listing is removed. If at all, your file had a hard link, your file is absolutely safe. You can do afile / -samefile filename
. You can search the file if you remember its inode number too (this is hardly the case).Another case is when none of the above possibilities is true. Whenever you
rm
a file, the file entry on the directory is removed, reducing the number of hardlinks by one. And if the number of hard links drops to zero, then the pointer to the file on the inode is dropped, or is marked to be deleted. Either way, your file "still" resides on the hard disk. The file is actually erased from hard disk only on subsequent remount. File recovery at such a time is extremely hard, involves going through the file system tree and the inodes representing actual disk block locations. There's a popular tool I've heard of, but never used it, calledextundelete
. Although there's no guarantee, its worth giving a try.Once you recover your files successfully or not, make haste to do regular backups. It's extremely simple on Ubuntu.
Sorry, but files deleted from a command-line with the "rm" and "rm -f" bypass the "Trashcan" you have on the Gnome desktop.
You may also want to ask if there are any extfs "undelete" tools like there are for FAT and NTFS. (I don't know of any, but I'd be surprised if there were none.)
"rm-trash" is
rm
just add an alias in your file in home folde
.bash_alias
or.bash_profile