tar of small files
Hello I am trying to generate a backup of small files in my server, to
archive it on a dvd. I ran
find $path -size -1000| xargs tar cvf $FILENAME.tar
but the backup ran for many hours and ended with a 18MB file, some
how every time there was an error the file got reset to zero and tar
started over. Now i am trying
find $path -type f -size -1000 -exec tar rvf $FILENAME.tar {} \;
but it looks like it will take forever. I notice that without -type f,
I would backup folders and the -size flag would not take any effect.
any suggestions?
.
Relevant Pages
- RE: SBS Back up Failure
... attached the log and report from yesterday's backup also. ... One or more components of Small Business Server Backup failed. ... recommended that you review errors in the Event log related to the service. ... Notifications task in the Server Management Monitoring and Reporting taskpad. ... (microsoft.public.windows.server.sbs) - Re: MSKB 891957, VSS Update for Windows Server 2003
... Well, it turns out the RDP connection dropping issue won't go away, ... level to the server in the office may have an affect on the issue. ... I just remembered I also re-installed RDP Client V6 last night as ... I left the server with user Backup logged in when I left the ... (microsoft.public.windows.server.general) - Re: MSKB 891957, VSS Update for Windows Server 2003
... I left the connection sit idle and checked back in an hour. ... server and browsed around for a few minutes. ... it would seem that there is still some issue with the V6 RDP ... I left the server with user Backup logged in when I left the ... (microsoft.public.windows.server.general) - Re: SCO 5.0.7 MP5 network hung up
... The last time I had a problem with streams on 5.0.7 it was caused by ... Is Samba in the mix? ... own directory, such as '/var/fetch', so it can be left out of backup ... "floating" IP address and be served by the backup server. ... (comp.unix.sco.misc) - RE: Server Management Backup Page Not Found
... reinstall backup and monitoring components. ... Perform a full backup of the SBS server. ... (microsoft.public.windows.server.sbs) |
|