The instructions I found on the net were outdated on how to do this and did not work correctly. I'm posting this here in case it helps someone.
I have a 4tb NAS 3 disk ZFS pool and wanted to make a snapshot backup on a hard drive so I had a backup of the data 'just in case'. I'll be periodically backing up to this, but at least I will have all my photos, etc from the BOT to now and the data set will be readable on Linux and I can rsync back to a new FreeNAS in case of catastrophe and my jails, etc are at least backed up somewhere.
I was able to hot plug a SATA disk to the machine. So, this is much faster than USB. It showed up as /dev/ada3. So I needed to format it and mount it as a UFS volume. I did this from the command line:
In the end I have a backup and was able to hot unplug it and put it in a safe place until next time. Would be nice if you could do this from the GUI.
Keith
I have a 4tb NAS 3 disk ZFS pool and wanted to make a snapshot backup on a hard drive so I had a backup of the data 'just in case'. I'll be periodically backing up to this, but at least I will have all my photos, etc from the BOT to now and the data set will be readable on Linux and I can rsync back to a new FreeNAS in case of catastrophe and my jails, etc are at least backed up somewhere.
I was able to hot plug a SATA disk to the machine. So, this is much faster than USB. It showed up as /dev/ada3. So I needed to format it and mount it as a UFS volume. I did this from the command line:
fdisk -BI /dev/ada3
bsdlabel -wB /dev/ada3s1
newfs -O2 -U /dev/ada3s1a
mount -t ufs /dev/ada3s1a /mnt/NAS_Backup/
rsync -av --progress /mnt/first_NAS/ /mnt/NAS_Backup/ &
bsdlabel -wB /dev/ada3s1
newfs -O2 -U /dev/ada3s1a
mount -t ufs /dev/ada3s1a /mnt/NAS_Backup/
rsync -av --progress /mnt/first_NAS/ /mnt/NAS_Backup/ &
In the end I have a backup and was able to hot unplug it and put it in a safe place until next time. Would be nice if you could do this from the GUI.
Keith