We have had very good results using Symantec's CarrierScan product, which is designed specifically for the filer.
Rick Wurster SBCCOM / DSTI 410-436-3824 DSN 584-3824 mailto:rick.wurster@sbccom.apgea.army.mil
-----Original Message----- From: David Papas [mailto:david.papas@newisys.com] Sent: Thursday, March 13, 2003 12:24 PM To: toasters@mathworks.com Subject: antivirus software
Just curious which antivirus software, if any, folks are using on their filers out there. We're considering either Symantec or Trend's for an F820 and was wondering what people's experience with scanning filers has been like.
Thanks all, David Papas
I want to move two big directories from an old volume to a new volume, but just the files -- not the snapshot subdirectories. So far I've tried
find . -type d -name '.snapshot' -prune -o -print | cpio -pdm /newvol
from the adminhost, which works but isn't blazingly fast. Are there any other ways people can suggest?
I want to move two big directories from an old volume to a new volume, but just the files -- not the snapshot subdirectories. So far I've tried
find . -type d -name '.snapshot' -prune -o -print | cpio -pdm /newvol
from the adminhost, which works but isn't blazingly fast. Are there any other ways people can suggest?
To avoid snapshots, just create a snapshot and copy from within it. There are no snapshots below a snapshot. You are better off copying a snapshot anyway because it cannot change during the copy.
cd dir/.snapshot/mysnap find . -print | cpio -pdm /newvol
Or else check out ndmpcopy. This command comes with 6.3 and above. For earlier releases, you have to install ndmpcopy on a unix host and run it from there.
Steve Losen scl@virginia.edu phone: 434-924-0640
University of Virginia ITC Unix Support