Create rm-rf_star.md
This commit is contained in:
parent
c6fda6d0c5
commit
7c008c914d
26
rm-rf_star.md
Normal file
26
rm-rf_star.md
Normal file
@ -0,0 +1,26 @@
|
||||
when you write rm -rf * on your home!!!
|
||||
----------------------------------------
|
||||
|
||||
|
||||
1: Dump jour journal of your ext4 hdd (before stop computer)
|
||||
```
|
||||
debugfs -R "dump <8> /PATH/journal.copy" /dev/DEVICE
|
||||
```
|
||||
|
||||
2: Umount your partition
|
||||
|
||||
3: Get the timestamp of the last time you want data history
|
||||
```
|
||||
date -d "-3day" +%s
|
||||
```
|
||||
|
||||
4: Create a new directory to store data
|
||||
```
|
||||
mkdir your_folder
|
||||
```
|
||||
|
||||
5: Extract data:
|
||||
```
|
||||
ext4magic /dev/nvme0n1p5 -j /tmp/JOURNAL.copy -a `date -d "-3day" +%s` -M -d your_folder/
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user