Buffalo Forums

Products => Solved Storage Threads => : svensson October 09, 2019, 04:26:24 PM

: How to read out my data from a Harddisk
: svensson October 09, 2019, 04:26:24 PM
Hi,
my Linkstation Pro Duo just died after Powerbreakdown at my house. So no i Need to recover my data untill i get a new one.
I did not use RAID, but had them as two separate disks.
I have googled, but im not getting any closer to how i might get the data on to my Windows PC. I tried the UFS Explorer, but somehow i cannot find my way around it.
Is there anybody out there which can help out here?

Best Regards
Torben
: Re: How to read out my data from a Harddisk
: 1000001101000 October 09, 2019, 04:44:02 PM
The data will be stored on the last partition of the drive (or in a software raid volume spanning the last partition(s) if using raid) in an XFS filesystem.

Assuming the drive still works and the partition table is intact you can mount the XFS volume on a PC running Linux (such as from a livecd). 
: Re: How to read out my data from a Harddisk
: svensson October 10, 2019, 03:37:07 AM
Hi,
is there any Tools that i can use to mount the volume on a Windows 7 machine?
Torben
: Re: How to read out my data from a Harddisk
: oxygen8 October 11, 2019, 12:31:37 AM
JBOD also uses a mdadm volume.
You have to start the software raid and then you can analyse the xfs filesystem

use a linux bootcd

search your nas harddrive with

:
cat /proc/partitions
you need a disk with 6 partitions



a example with sdb:

:
mkdir /mnt/daten;
mdadm --assemble --run /dev/md1 /dev/sdb6;
mount /dev/md1 /mnt/daten;
ls -l /mnt/daten


from

https://web.archive.org/web/20181010194824/http://forum.nas-hilfe.de/buffalo-technology-nas-anleitungen/blaues-blinken-raeparatur-einer-beschaedigten-linkstation-duo-ls-wvl-ls-wxl-t2014.html
: Re: How to read out my data from a Harddisk
: Mathew23 August 29, 2022, 11:29:59 PM
Does look like there is a commercial program worth trying, otherwise most suggest linux livecd/vm:
https://www.google.com/search?q=xfs+windows+7&ie=UTF-8&oe=UTF-8&hl=en-us&client=safari dordle (https://dordle.online/)
Just load Linux into a VM and mount the USB from there. Then use whatever file sharing method (ftp, scp, samba, etc...) you want to transfer the files to your Windows system from there.