daniel writes:

> Hi everyone. I'm trying to backup all the data of a backuppc server. I
> saw that backuppc 3.0 has a script to copy the directory pc/
> 
> So first I used rsync to copy everything except the directory pc/
> 
> rsync -aH --exclude /opt/backuppc/files/pc/ /opt/backuppc/ \
> [EMAIL PROTECTED]:/opt/backuppc/
> 
> This part works well, it doesn't take too much memory.
> 
> Now I'm trying to copy the directory pc with the script. I'd like to
> copy it directly without using a temporary file. So I tried this
> command:
> 
> sudo -u backuppc BackupPC_tarPCCopy /opt/backuppc/files/pc/ | gzip -c \
> | ssh [EMAIL PROTECTED] "(cd /opt/backuppc/files/pc && tar xzf -)"
> 
> it seems to work but on the sender side (the server I want to backup)
> I've got plenty of error messages like this (in french):
> 
> tar: ./127.0.0.1/149/f%2f/fvar/fspool/fsquid/f03/attrib: ne peut
> établir un lien vers `cpool/3/5/3/3530222493619acd2106c996347e9034':
> Aucun fichier ou répertoire de ce type

That's strange: the path in the hardlink should start with "../cpool"
not "cpool".

What output do you get when you do this:

    sudo -u backuppc BackupPC_tarPCCopy /opt/backuppc/files/pc/ | tar tvf -

In particular, do you see this (correct):

    hrw-r----- craig/None        0 2006-11-30 12:00 ./craigdell/12/attrib link 
to ../cpool/a/b/d/abde98f8cac551cb9273c093574dff6d

or this (incorrect):

    hrw-r----- craig/None        0 2006-11-30 12:00 ./craigdell/12/attrib link 
to cpool/a/b/d/abde98f8cac551cb9273c093574dff6d

Craig

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to