NAS325-v2 volume missing after shut down.
tycoonlee
Posts: 16 Freshman Member
Does anybody know how to recovery the volume ? I have two disk, 1TB, and 2 TB. on raid1.
It shows no volume inside of storage gui page.
It serves me for almost two years and my wife turn off the power from the plug before our fmaily trip.
I believe my data is still insdie cause there is parition using after plugin to a linux reader.
Here is my /proc/mounts
It shows no volume inside of storage gui page.
It serves me for almost two years and my wife turn off the power from the plug before our fmaily trip.
I believe my data is still insdie cause there is parition using after plugin to a linux reader.
Here is my /proc/mounts
~ $ cat /proc/mounts
rootfs / rootfs rw 0 0
/proc /proc proc rw,relatime 0 0
/sys /sys sysfs rw,relatime 0 0
none /proc/bus/usb usbfs rw,relatime 0 0
devpts /dev/pts devpts rw,relatime,mode=600 0 0
/dev/mtdblock8 /zyxel/mnt/nand yaffs2 ro,relatime 0 0
/dev/sda1 /zyxel/mnt/sysdisk ext2 ro,relatime,errors=continue 0 0
/dev/loop0 /ram_bin ext2 ro,relatime,errors=continue 0 0
/dev/loop0 /usr ext2 ro,relatime,errors=continue 0 0
/dev/loop0 /lib/security ext2 ro,relatime,errors=continue 0 0
/dev/loop0 /lib/modules ext2 ro,relatime,errors=continue 0 0
/dev/ram0 /tmp/tmpfs tmpfs rw,relatime,size=5120k 0 0
/dev/ram0 /usr/local/etc tmpfs rw,relatime,size=5120k 0 0
/dev/ram0 /usr/local/var tmpfs rw,relatime,size=5120k 0 0
/dev/mtdblock4 /etc/zyxel yaffs2 rw,relatime 0 0
/dev/mtdblock4 /usr/local/apache/web_framework/data/config yaffs2 rw,relatime 0 0
#NAS_Dec_2019
#NAS_Dec_2019
0
All Replies
-
What is the output ofcat /proc/partitionscat /proc/mdstatsumdadm --examine /dev/sd[ab]2
0 -
Hi, Mijzelf, here are my output.
~ # cat /proc/partitionsmajor minor #blocks name7 0 143360 loop08 0 1953514584 sda8 1 514048 sda18 16 976762584 sdb8 17 514048 sdb18 18 976245952 sdb231 0 1024 mtdblock031 1 512 mtdblock131 2 512 mtdblock231 3 512 mtdblock331 4 10240 mtdblock431 5 10240 mtdblock531 6 48896 mtdblock631 7 10240 mtdblock731 8 48896 mtdblock8~ # cat /proc/mdstatPersonalities : [linear] [raid0] [raid1]unused devices: <none>~ # mdadm --examine /dev/sd[ab]2mdadm: cannot open /dev/sda2: No such device or addressmdadm: No md superblock detected on /dev/sdb2.
Could it be saved?0 -
The partition table on sda is damaged. /proc/partitions lists only the first partition. Yet the disk is alive, as sda1 is mounted.Your sdb disk has a valid partition table, but for some reason sdb2 doesn't contain a raid header.If your disks were really in raid1, sda2 should be as big as sdb2, although sda is twice as big as sdb.You can clone the partition table of sdb to sda, and see if the raid array member on sda2 is recognized:dd if=/dev/sdb of=/dev/sda count=32This will copy the first 32 sectors (16kB) from InputFile /dev/sdb to OutputFile /dev/sda. I don't know if your box uses MBR or GPT partitions, that depends on the firmware version when you created the array, but 16kB is enough for each.After that, reboot your box:rebootand cross your fingers while rebooting.0
-
Hi, Mijzelf
Thanks for the instruction.
After the table copy to sda2, I still could not find my volume from the GUI.
Here is the command out.# cat /proc/partitionsmajor minor #blocks name7 0 143360 loop08 0 1953514584 sda8 1 514048 sda18 2 976245952 sda28 16 976762584 sdb8 17 514048 sdb18 18 976245952 sdb231 0 1024 mtdblock031 1 512 mtdblock131 2 512 mtdblock231 3 512 mtdblock331 4 10240 mtdblock431 5 10240 mtdblock531 6 48896 mtdblock631 7 10240 mtdblock731 8 48896 mtdblock8~ # cat /proc/mdstatPersonalities : [linear] [raid0] [raid1]unused devices: <none>~ # mdadm --examine /dev/sd[ab]2mdadm: No md superblock detected on /dev/sda2.mdadm: No md superblock detected on /dev/sdb2.0 -
And you only pulled the plug on the wrong moment?On my 325 with volumes created in 2012 a version 0.9 superblock is used. Which means the header is at the end of the partition. It also means the start of the partition is also the start of the filesystem. So you can try to mount the filesystem directly:mkdir /mnt/attempt1mount -o ro /dev/sda2 /mnt/attempt1mkdir /mnt/attempt2mount -o ro /dev/sdb2 /mnt/attempt2If one of the mounts succeeds, you can copy your data elsewhere.As you started with raid1, the data on both disks should be identical.
0 -
Yes, I didn't do extra action except unplugging the power and it made me buy a UPS to protect.
After type these commands.~ # mkdir /mnt/attempt1mkdir: can't create directory '/mnt/attempt1': File exists~ # mount -o ro /dev/sda2 /mnt/attempt1mkdir /mnt/attempt2mount -o ro /dev/sdb2 /mnt/attempt2mount: you must specify the filesystem type~ # mkdir /mnt/attempt2mkdir: can't create directory '/mnt/attempt2': File exists~ # mount -o ro /dev/sdb2 /mnt/attempt2mount: you must specify the filesystem type
It shows file exists and do I still keep the data?0 -
It shows file exists and do I still keep the data?The file exists because you executed it twice. mkdir does 'make directory', and it will stay there until you reboot the box. (Or explicitly delete it). It has no influence on the contents of your disks.mount: you must specify the filesystem typetry:mount -t ext3 -o ro /dev/sda2 /mnt/attempt1
0 -
Glad to hear my data is still here.
I reboot it and try to mount it again following by your command.
Here is my output.~ # mkdir /mnt/attempt1~ # mount -o ro /dev/sda2 /mnt/attempt1mkdir /mnt/attempt2mount -o ro /dev/sdb2 /mnt/attempt2mount: you must specify the filesystem type~ # mkdir /mnt/attempt2~ # mount -o ro /dev/sdb2 /mnt/attempt2mount: you must specify the filesystem type~ # mount -t ext3 -o ro /dev/sda2 /mnt/attempt1mount: wrong fs type, bad option, bad superblock on /dev/sda2,missing codepage or helper program, or other errorIn some cases useful info is found in syslog - trydmesg | tail or so0 -
So no recognizable filesystem at the start of the partition. According to this post in 2018 a raid array was created with metadata version 1.2, which in our case means the offset of the inner data volume is at 2048 sectors.So let's create a loopdevice at that offset, and try to mount that.losetup /dev/loop1 -o 1048576 /dev/sdb2mkdir -p /mnt/attempt2mount -o ro /dev/loop1 /mnt/attempt2
0 -
Done.
All command is executed.
No other message is displayed.~ # losetup /dev/loop1 -o 1048576 /dev/sdb2~ # mkdir -p /mnt/attempt2~ # mount -o ro /dev/loop1 /mnt/attempt20
Categories
- All Categories
- 415 Beta Program
- 2.4K Nebula
- 144 Nebula Ideas
- 94 Nebula Status and Incidents
- 5.6K Security
- 237 USG FLEX H Series
- 267 Security Ideas
- 1.4K Switch
- 71 Switch Ideas
- 1.1K Wireless
- 40 Wireless Ideas
- 6.3K Consumer Product
- 247 Service & License
- 384 News and Release
- 83 Security Advisories
- 29 Education Center
- 10 [Campaign] Zyxel Network Detective
- 3.2K FAQ
- 34 Documents
- 34 Nebula Monthly Express
- 83 About Community
- 71 Security Highlight