ZFS Snapshot Issues- -Was UFSDUMP & FSSNAP Errors
I create a zfs snapshot with the following commands:
zfs snapshot -r rpool/ROOT/solaris@shadowdump
zfs send rpool/ROOT/solaris@shadowdump > /mnt/shadowdump/shadowdumpJan162014Then I add a comment to a file to see if I can restore the snapshot and have my change removed using the following commands:
zfs receive -F rpool/shadowdump < /root/shadowdumpJan162014
zfs rollback rpool/shadowdump@shadowdump
It all works with no erros but my change was not removed, so the snapshot didn't really get restored. Am I doing something wrong?0