So I wrote steps manual what to do if you want to recover files from your NAS hard drive.
I dismounted hard drive from Synology NAS device. I recall that file system on disk is not corrupted and HDD is not broken. Just Synology software crashed after update. You need to connect HDD to computer, you can insert and connect it directly into desktop computer via SATA cables or use e-Sata connector (my case).
- Create Ubuntu bootable USB flash stick.
We will start Ubuntu from USB stick, so no OS installation is needed and no changes will be made. Download Ubuntu desktop ISO file and USB installer from url's below:
http://www.ubuntu.com/download/desktop
http://www.pendrivelinux.com/universal- ... -as-1-2-3/
Set some persistent file size for storing changes (at least 400 MB). edit: eik's post - Boot Ubuntu from USB stick.
Connect NAS HDD and USB stick to computer, then turn it on. Select boot from USB stick (press Esc or F12, depends on computer, for boot menu and select your USB device. In first menu, select first option 'Run Ubuntu from this USB'. - Check HDD drive.
When desktop boots, press Windows key (it's funny, I know, but it works) and type Disk. You should see Disk Utility icon. Double click it. You should see an Extended Partition and RAID component.
- Install RAID drivers.
Now we need to install Linux RAID driver. Press Win key, search for Terminal and run it. Type this and press enter: It will require Postfix installation, install it and select 'No configuration' in installation menu.Now we will search and assemble RAID arrays.Code: Select all
sudo apt-get install mdadm
Open Disk Utility again and you should see RAID array components. See picture:Code: Select all
sudo mdadm --assemble --scan
- Install LVM2 driver.
Now run Disk Utility, select "vg1" in "Multi-disk Devices" option. Select "Start Volume Group". Now you should be able to see new device in list - "1.41.3-1167" for me.
Code: Select all
sudo apt-get install lvm2 sudo vgscan --mknodes
Here are all your files.