Ver Mensaje Individual
  #8 (permalink)  
Antiguo 04/02/2011, 04:40
Avatar de Jokin
Jokin
 
Fecha de Ingreso: enero-2002
Mensajes: 725
Antigüedad: 22 años, 4 meses
Puntos: 1
Respuesta: Es posible acceder a la información de un NAS en RAID 5 con un disco de 4

"Procede indicar el sistema de archivo asignado en el HDD,"

Según indica el parted magic aparecen en cada disco duro 3 unidades lógicas y una lvm. Y no podíamos acceder a esta última.


Prueba acceder al HDD atraves del algún Cdlive

Lo hemos intentado, pero no nos ha dejado.

Por si te vale de información, se trata del NAS de WD Sharespace de 4 TB:
http://www.wdc.com/en/products/products.aspx?id=270

Aquí hay un post de gente que tiene el mismo problema:

http://community.wdc.com/t5/WD-Share...highlight/true

Hay alguno que lo ha conseguido, pero la verdad es que mis conocimientos no llegan a tanto:

Cita:
I had the exact same problem and 16+ hours of work later I have recovered all the data and am copying it off.

Disclaimer: This will not restore your device to normal working condition but I was able to connect to it over the network and copy my data after these steps. Also the info here is for one RAID 5 2.7TB volume on the 4TB Sharespace NAS.



Here is what I did. First you will need to SSH into the device. You might need to go ahead and update the firmware to the latest to get the option. I did. Under the network services enable SSH.

Connect to the device. I used the free program Putty

username: admin

password: welc0me



This is Linux so everything is case sensitive.



at the prompt type: mdadm -D /dev/md2

You should get a message about it not existing. If it does then this might not be the solution for you.

Then type: mdadm --assemble /dev/md2 /dev/sda4 /dev/sdb4 /dev/sdc4 /dev/sdd4

Then type: pvcreate /dev/md2

Then type: vgcreate lvmr /dev/md2

Then type: lvcreate -l 714329 lvmr -n lvm0



Now we need to rebuild the journal and check the FS.

Type: **bleep**.ext3 /dev/lvmr/lvmr0

This will take a really long time. I then asked me a ton of Yes/No questions. Prob 1000+ to answer. I ended up just holding down the enter key to just shoot through them.

After it was finally done I just typed: mount -t ext3 /dev/lvmr/lvmr0 /DataVolume -o rw,noatime

I was then able to access it from my Windows 7 computer using the UNC (\\192.168.1.6) and copy the data off.

Be warned if you reboot the NAS you will have to do this all again. I'm not spendning any time to learn how to make the config work ever time. I am just copying off my data and then resetting this thing back to factory defaults wipping it out completly and then copying the files back.



Hope this helps!
__________________