Re: [zfs-discuss] Move files between ZFS folder/Datasets ?

2012-03-14 Thread Paul Kraus
On Wed, Mar 14, 2012 at 5:57 AM, Svavar Örn Eysteinsson sva...@fiton.is wrote: I'm running OpenIndiana 151 and have some files on a ZFS folder (located under /datapool/stuff). I'm in the need to create a new ZFS folder (/datapool/temp) and move some files from stuff. What's the best way to

Re: [zfs-discuss] Move files between ZFS folder/Datasets ?

2012-03-14 Thread Jim Klimov
2012-03-14 13:57, Svavar Örn Eysteinsson wrote: Hello. I can't seem to find any good info about this case. I'm running OpenIndiana 151 and have some files on a ZFS folder (located under /datapool/stuff). I'm in the need to create a new ZFS folder (/datapool/temp) and move some files from

Re: [zfs-discuss] Move files between ZFS folder/Datasets ?

2012-03-14 Thread Jim Klimov
2012-03-14 16:38, Paul Kraus wrote: On Wed, Mar 14, 2012 at 5:57 AM, Svavar Örn Eysteinssonsva...@fiton.is wrote: I'm running OpenIndiana 151 and have some files on a ZFS folder (located under /datapool/stuff). I'm in the need to create a new ZFS folder (/datapool/temp) and move some files

Re: [zfs-discuss] Move files between ZFS folder/Datasets ?

2012-03-14 Thread Svavar Örn Eysteinsson
Thanks guys. I'm only planning to move some directories. Not the complete dataset. Just a couble of Gb's. Would it be save to use mv There are no ACL's on the files. (at least ls -v dosn't show any acl information) Using rsync -avPHK --remove-source-files SRC/ DST/ isn't that just as copying

Re: [zfs-discuss] Move files between ZFS folder/Datasets ?

2012-03-14 Thread Paul Kraus
On Wed, Mar 14, 2012 at 9:12 AM, Svavar Örn Eysteinsson sva...@fiton.is wrote: Would it be save to use mv mv is safe, I just prefer to use cp and rm when done if I have the space. There are no ACL's on the files. (at least ls -v dosn't show any acl information) Using rsync -avPHK

Re: [zfs-discuss] Move files between ZFS folder/Datasets ?

2012-03-14 Thread Anonymous
Thanks guys. I'm only planning to move some directories. Not the complete dataset. Just a couble of Gb's. Would it be save to use mv Of course, provided your system doesn't crash during the move. Using rsync -avPHK --remove-source-files SRC/ DST/ isn't that just as copying files ?