今次好似自問自答.有方法解決到.
1. linux system ubuntu with PC. (不過原理上, 有Raspberry PI 也可以做到.)
2.在WD HD 盒 燒板之要讀回Files ,我個case 係最簡單的了.
3. Ubuntu 有 live usb boot 機.也救到data.
我用緊.I5 4690, 8Gram, 32G ssd. 多一條sata data cable. 另外一隻足夠大的 HD, 可以係USB HD,internal HD,保存 救回的 files.
下面 2條, 是主要的.
https://github.com/andlabs/reallymine
https://github.com/themaddoctor/linux-mybook-tools/issues/21
我個情況只要兩三行 command 如下
https://github.com/themaddoctor/linux-mybook-tools/issues/40
以下是用LIVE USB 做到見到FILE 地部. 如何讀回,SAVE 去另一隻HD 要自行設立了.
sudo mkdir -p /mnt/wd
sudo losetup -o 1048576 -f /dev/sda
sudo losetup -j /dev/sda
(and use it to mount:)
sudo mount /dev/loopX /mnt/wd
( where you replace X with the right number.)
也祝各位好運. |