Created
October 6, 2017 14:54
-
-
Save gitfvb/15351755c12b98b3ca29329f2b34ba9e to your computer and use it in GitHub Desktop.
rescue files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # aus ct http://epaper.heise.de/download/archiv/d797d41f4c80/ct.16.06.160.pdf | |
| # create image | |
| sudo apt-get install gddrescue | |
| lsblk -f -o +SIZE,MODEL | |
| sudo ddrescue /dev/sdx image.img | |
| cp image.img image.img.bak | |
| # rescue files | |
| # https://wiki.ubuntuusers.de/Datenrettung/ | |
| sudo apt-get install sleuthkit | |
| tsk_recover -a dd_image_datei.img Ausgabeordner | |
| # OR rescue pictures | |
| sudo apt-get install testdisk | |
| photorec image.img | |
| # read data from images | |
| sudo apt-get install libimage-exiftool-perl | |
| exiftool -v "-FileName<CreateDate" -d "%Y-%m-%d_%H-%M-%S-%.c.%%e" recup_dir. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment