> The problem that I have now is that each created snapshot is always
> equal to zero... zfs just not storing changes that I have made to the
> file system before making a snapshot.
> 
>  r...@sl-node01:~# zfs list
> NAME                            USED  AVAIL  REFER  MOUNTPOINT
> mypool01                       91.9G   137G    23K  /mypool01
> mypool01/storage01             91.9G   137G  91.7G  /mypool01/storage01
> mypool01/storag...@30032010-1      0      -  91.9G  -
> mypool01/storag...@30032010-2      0      -  91.9G  -
> mypool01/storag...@30032010-3      0      -  91.7G  -
> mypool02                       91.9G   137G    24K  /mypool02
> mypool02/copies                  23K   137G    23K  /mypool02/copies
> mypool02/storage01             91.9G   137G  91.9G  /mypool02/storage01
> mypool02/storag...@30032010-1      0      -  91.9G  -
> mypool02/storag...@30032010-2      0      -  91.9G  -

Try this:
zfs snapshot mypool01/storag...@30032010-4
dd if=/dev/urandom of=/mypool01/storage01/randomfile bs=1024k count=1024
zfs snapshot mypool01/storag...@30032010-5
rm /mypool01/storage01/randomfile
zfs snapshot mypool01/storag...@30032010-6
zfs list

And see what happens.

_______________________________________________
zfs-discuss mailing list
zfs-discuss@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Reply via email to