Index
Récupérer un fichier supprimé dans un système de fichier ext3 / ext4
1. ExtUndelete
2. Ext3Grep
sudo ext3grep --dump-names /backup/sda1 | grep "wanted name" (1) (2)
sudo ext3grep --restore-file path/to/suppr/$file /backup/sda1 (3)
1 | Find the path of your suppressed file |
2 | Options exist : --directory --group GID --after dtime --depth X --restore-all … refer to man |
3 | Restore a particular file. Path must have been listed via --dump-names . |
|