Skip to content

Commit

Permalink
hdd復旧話
Browse files Browse the repository at this point in the history
  • Loading branch information
ybasviel committed Nov 3, 2024
1 parent b352d48 commit 47a4c2f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/blog/2024-11-03/2024-08-16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# RAID1で構成されたNASのHDDからデータを復旧しようとした話
## 概要

よく分かってないからあんまり参考にしないほうがいいかもしれません。

## やったこと

Linux RAID Partitionで構成されているパーティションをマウント(activate?)する。しなくてもいいかも。mdadmないひとはインストールしてね。
```shell
sudo mdadm /dev/md10 --grow --raid-devices=1 --force
```

/proc/mdstatを覗くと、選択したパーティションがactiveになっている。
```shell
> cat /proc/mdstat

md10 activeみたいな表示になっている
```

foremostでデータを引っこ抜く。190GBくらいで12時間くらいかかった。
```shell
mkdir output
sudo foremost -t all -i /dev/sda6 -o ./ouput_path
```

引っこ抜かれたデータの所有者がrootになるのでなおす。
```shell
sudo chown USER:USER ./output_path
```

0 comments on commit 47a4c2f

Please sign in to comment.