StoreEver Tape Storage
1753424 Members
5149 Online
108793 Solutions
New Discussion юеВ

Re: backing up old files to tape.

 
LithiumKid1976
Advisor

backing up old files to tape.

Hi,
i have a Windows 2000 server with a lot of old files on it.
theres about 320 gigs of information that i need to sift through and archive files that havent been accessed in about a year or more.

i then plan to backup these files to tape before removing them off the system, (as they are just taking up space at the moment).

has any one got any ideas on the best way to do this?

is there any commands / programs that will find foldders that has not been accessed in a year, and move them to a new folder for back up?


any help or suggesstions appreaciated.

Thanks
Damien
4 REPLIES 4
Sheriff Andy
Trusted Contributor

Re: backing up old files to tape.

Do you have a unix or linux server with samba installed?
Gilles Cadrin
Trusted Contributor

Re: backing up old files to tape.

Damien

Look at HP's File System Extender


HP StorageWorks File System Extender (FSE)

http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=120&prodSeriesId=434256&prodTypeId=12169&objectID=c00285313

The manuals can be found at

http://h20000.www2.hp.com/bizsupport/TechSupport/DocumentIndex.jsp?contentType=SupportManualтМй=en&cc=us&docIndexId=179911&taskId=101&prodTypeId=12169&prodSeriesId=434256#1


Best regards

Gilles
LithiumKid1976
Advisor

Re: backing up old files to tape.

hi,
i dont have any linux machines running samba on this network.

i will have a look through the storage works pdf for the moment.

regards
Damien
wien lam
Advisor

Re: backing up old files to tape.


get the find.exe unix to windows port from the link below

http://gnuwin32.sourceforge.net/packages/findutils.htm

also get the mv.exe from the same site,

use a script to find and move what was found to a prep folder ready for archiving:

find.exe C:\OLD\. -atime +365 -exec mv.exe {} C:\PREP\ ;

Thanks, wienlam