How to retrieve data from old disks?

DenoBeno

Cadet
Joined
Feb 18, 2014
Messages
4
Hi, everyone,

I've been using FreeNAS few years ago, but I haven't done anything with it for 3+ years and forgot like 99% of what I learned back then.
Now I need to access the data from a FreeNAS 9.2 system that has been sitting disabled for a few years.

Unfortunately, the USB boot disk didn't work and so I made a new one, rebooted and tried "auto import volume". Not sure if that did any good though. Here is what I can see on the web interface:

1) under storage/active volumes /view discs - nothing shown (?)
2) However, on the left-hand side, under volumes there is /mnt/vol01 with the whole tree, including the /mnt/vol01/media that I am most interested in.

Using the console, I can see the following:

# zfs|grep media
vol01/media 231G 662G 205G /mnt/vol01/media
# mount |grep media
vol01/media on /mnt/vol01/media (zfs, local, nfsv4acls)
# ls /mnt/vol01/media
- nothing returned.

So, it would seem that I have 231GB of data mounted on /mnt/vol01/media but none of it is showing. What do I need to do to access this data again?
 
Last edited:

DenoBeno

Cadet
Joined
Feb 18, 2014
Messages
4
I'm looking at the similar thread on https://forum.level1techs.com/t/freenas-my-usb-stick-died-need-help-restoring-my-volumes/117690/4 to save some time...

[root@denonasnas ~]# zpool status
pool: vol01
state: ONLINE
scan: scrub repaired 0 in 1h11m with 0 errors on Sun Nov 27 01:11:17 2016
config:

NAME STATE READ WRITE CKSUM
vol01 ONLINE 0 0 0
mirror-0 ONLINE 0 0 0
gptid/61e1bf63-9a73-11e3-bae7-00012e277a45 ONLINE 0 0 0
gptid/62e0cc1f-9a73-11e3-bae7-00012e277a45 ONLINE 0 0 0

[root@denonasnas ~]# zfs get mountpoint vol01/media
NAME PROPERTY VALUE SOURCE
vol01/media mountpoint /mnt/vol01/media default
 
Top