![]() |
Data recovery : most important areas of Ext4 filesystem - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: General (https://www.linuxliteos.com/forums/forumdisplay.php?fid=4) +--- Forum: Off Topic (https://www.linuxliteos.com/forums/forumdisplay.php?fid=15) +--- Thread: Data recovery : most important areas of Ext4 filesystem (/showthread.php?tid=6692) |
Data recovery : most important areas of Ext4 filesystem - minesheep - 01-03-2020 Faulty drive tried cloning, but didn't work. Where is the critical data for ext4 fs are stored? my drive size is exactly 31,406,948,352 bytes. Only first 512mibibytes seems not to be enough. No partition table just ext4 directly on the drive. The drive is filled with raw music without any headers. So photorec won't work. the drive is detected only untill I try to copy a lot of data (1gb+) off. Copying 512mb at time and connecting them to about 32gb image didn't work. Since I am doing this for personal use only even partitial recovery would be ok. Tried to open the whole image with audacity but the music jumps between multiple files because of lack of filesystem to manage the data. So I can copy data off the drive but getting all data the filesystem needs is my target now. Re: Data recovery : most important areas of Ext4 filesystem - minesheep - 01-10-2020 Tried cloning one 10gb file at 512mb at time Code: dd if=myimportantfile.raw of=/media/veracrypt1/part(x) bs=512M count=1 skip=x-1 Code: dd if=myimportantfile.raw of=/media/veracrypt1/part19 bs=512M count=1 skip=18 Re: Data recovery : most important areas of Ext4 filesystem - supergamer - 01-10-2020 Have you tried to repair the file system with fsck. I have recovered some data before using it. Just an idea and it may or may not fix your issue. https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/ Re: Data recovery : most important areas of Ext4 filesystem - minesheep - 01-11-2020 In my case it was not filesystem damage because Code: sudo dd if=/dev/sdx of=/dev/null Re: Data recovery : most important areas of Ext4 filesystem - minesheep - 01-19-2020 I did f3write and then kept the drive hot for about 16hours and cold for 3 hours. After after that f3read succeed. So I still have working drive. I will never know the exact problem. Drive fixed with simple overwrite with random data with dd. after that it no longer disappeared when reading data, even whole drive. Drive size is still the same. |