BackupPC-users

Re: [BackupPC-users] Error at full-backup

2011-01-31 11:13:30
Subject: Re: [BackupPC-users] Error at full-backup
From: "Ryan Blake" <rblake3 AT hotmail DOT com>
To: "General list for user discussion, questions and support" <backuppc-users AT lists.sourceforge DOT net>
Date: Mon, 31 Jan 2011 11:11:34 -0500
Daniel,

There are a couple of things you can try.  First off, we'll start with the 
basics by making sure your workstation firewall allows the rsyncd traffic. 
You might want to test this by simply temporarily disabling the firewall on 
the workstation (depending on your environment, this may not be 
possible...instead open port 873 completely).

You might also want to consider updating rsyncd on your server.  I am 
currently running 3.0.7 which may be the problem.

rsync  version 3.0.7  protocol version 30
Copyright (C) 1996-2009 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
Capabilities:
    64-bit files, 64-bit inums, 32-bit timestamps, 64-bit long ints,
    socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
    append, ACLs, xattrs, iconv, symtimes, SLP


You also might want to turn on verbosity by adding a -v to your rsync backup 
command to further troubleshoot this issue.

However, from what I can tell (the error message you provided), either the 
connection is being broken somehow between the client and the server 
(network issues, etc) or you have a firewall of some sort that's blocking 
the return files to the server.  Are any of the files transferring?  If you 
are using the .zip file I provided, did you use the cygwin1.dll file I 
provided?  I know I had problems when using a later version of that .dll 
with the modified rsync.exe

You might want to start up something like iptraf on the server and watch the 
actual traffic between the server and the client to ensure that data is 
actually passing back and forth.

If you could provide full logs from both the server and the client (for the 
particular backup session), that would be helpful.  You're more than welcome 
to directly reply to my email address instead of the entire listserv to 
spare them of the diagnostics.  I will, however, be sure to post a solution 
if/when one is found :-).

~Ryan



--------------------------------------------------
From: "Daniel Spannbauer" <ds AT marco DOT de>
Sent: Monday, January 31, 2011 10:13 AM
To: <backuppc-users AT lists.sourceforge DOT net>
Subject: Re: [BackupPC-users] Error at full-backup

> Hello Ryan,
>
> first of all:Thanks for your reply.
> I tried your rsyncd, it also fails (but with a different error).
> Now, the log shows:
>
>
> 2011/01/31 09:21:10 [2968] file has vanished: "Programme/Microsoft
> Office/Templates/1049/??????_?????????_????????.xltx" (in cDrive)
> 2011/01/31 09:21:10 [2968] file has vanished: "Programme/Microsoft
> Office/Templates/1049/??????_??????_??_?????.xltx" (in cDrive)
> 2011/01/31 09:21:10 [2968] file has vanished: "Programme/Microsoft
> Office/Templates/1049/?????_?_????????.xltx" (in cDrive)
> 2011/01/31 09:21:10 [2968] file has vanished: "Programme/Microsoft
> Office/Templates/1049/???????_??????.xltx" (in cDrive)
> 2011/01/31 09:21:10 [2968] file has vanished: "Programme/Microsoft
> Office/Templates/1049/?????????.xltx" (in cDrive)
> 2011/01/31 10:00:02 [2968] Using VSS volume:
> \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1
> 2011/01/31 14:30:16 [2968] rsync: writefd_unbuffered failed to write 4
> bytes to socket [sender]: Connection reset by peer (104)
> 2011/01/31 14:30:17 [2968] rsync error: error in rsync protocol data
> stream (code 12) at io.c(1525) [sender=3.0.6]
>
>
> These are messages from rsyncd on the Windows-Machine.
>
> Any idea how to fix this?
>
> Regards
>
> Daniel
>
>
>
>
> Am 28.01.2011 14:48, schrieb Ryan Blake:
>> Daniel,
>>
>> That would be why you are having problems.  rsyncd running from within
>> cygwin uses different paths than native WINDOWS.  Please see below for an
>> example of a correct rsyncd.conf:
>>
>> uid = 0
>> gid = 0
>> use chroot = false
>> max connections = 4
>> lock file = /cygdrive/c/rsyncd/rsyncd.lock
>> [cDrive]
>>     path = /cygdrive/c/
>>     comment = Entire Drive
>>     auth users = UsernameOfYourChoice
>>     secrets file = /cygdrive/c/rsyncd/rsyncd.secrets
>>     hosts allow = IP.Address.Of.YourBackupServer
>>     strict modes = false
>>     read only = false
>>     list = false
>>
>> If you would like to take a look at the setup I made, visit
>> http://www.cyberdeath.us/backuppc/rsyncd.zip
>> I know for certain that this works because I use it every day. NOTE: The
>> above files have only been tested on 32-bit Windows.
>> Much thanks to Leen Besselink for making copying open files (such as
>> Outlook.pst) with his contributions (rsyncd.exe included in .zip).
>>
>> ~Ryan
>>
>> --------------------------------------------------
>> From: "Daniel Spannbauer" <ds AT marco DOT de>
>> Sent: Friday, January 28, 2011 2:24 AM
>> To: <backuppc-users AT lists.sourceforge DOT net>
>> Subject: Re: [BackupPC-users] Error at full-backup
>>
>>> Hello Luis,
>>>
>>> thanks for your answer. I don't have this path in any file.
>>> Heres me rsyncd.conf:
>>>
>>> use chroot = false
>>> max connections = 4
>>> pid file = c:/rsyncd/rsyncd.pid
>>> lock file = c:/rsyncd/rsyncd.lock
>>> [cDrive]
>>>    path = c:
>>>    comment = Entire Drive
>>>    auth users = backup
>>>    secrets file = c:/rsyncd/rsyncd.secrets
>>>    # hosts allow = 172.16.0.17
>>>    strict modes = false
>>>    read only = true
>>>    list = false
>>>
>>> There isn't a path with "/cygdrive" or similar anywhere.
>>>
>>> User and Password for Backup are correct.
>>>
>>> Regards
>>>
>>> Daniel
>>>
>>>
>>>
>>> Am 27.01.2011 17:15, schrieb Luis Calvo:
>>>> Hi Daniel,
>>>>
>>>> The references to "ygdrive/c/WINDOWS/system32/c:/Dokumente"
>>>>
>>>> must be /cygdrive/c/WINDOWS/system32/Dokumente
>>>>
>>>> on the configuration file rsyncd.conf on the windows server.
>>>>
>>>> and you must be sure about the user and password to connect to rsyncd 
>>>> on
>>>> the windows server.
>>>>
>>>> I hope it's help you.
>>>>
>>>> regards.
>>>>
>>>> Luis
>>>>
>>>>
>>>> On Thu, Jan 27, 2011 at 4:00 PM, Daniel Spannbauer <ds AT marco DOT de
>>>> <mailto:ds AT marco DOT de>> wrote:
>>>>
>>>>     Hello,
>>>>
>>>>     I try to implement a backup-solution, so I found backuppc. One
>>>> criterion
>>>>     was backuping with rsync and hardlinks, so backuppc seems to be
>>>> perfect
>>>>     for this job.
>>>>
>>>>     So, I installed rsyncd on a windows-xp-Machine and tried to make a
>>>> full
>>>>     backup. But the Backup always fails. Some pathes are looking very
>>>> weird,
>>>>     but Idont know why.
>>>>
>>>>     Below, there is the last bad xfer.log.
>>>>
>>>>     Any idea how to get this to work?
>>>>
>>>>     Regards
>>>>
>>>>     Daniel
>>>>
>>>>
>>>>     full backup started for directory cDrive
>>>>     Connected to b-xp:873, remote version 29
>>>>     Negotiated protocol version 28
>>>>     Got response: f52563fd8a56c8d100109a9bb2f2c03f
>>>>     Auth: got challenge: CrnZpTmIFnGVv50FB2c0Eg, reply: backup
>>>>     9SVj/YpWyNEAEJqbsvLAPw
>>>>     Connected to module cDrive
>>>>     Sending
>>>> args: --server --sender --numeric-ids --perms --owner --group -D
>>>>     --links --hard-links --times --block-size=2048 --recursive --sparse
>>>>     --partial --modify-window=2 -v --compress --ignore-times . .
>>>>     Checksum seed is 1296103735
>>>>     Got checksumSeed 0x4d40f937
>>>>     Remote[1]: rsync: opendir "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/ds.MARCO/.nx/cache-unix-desktop" (in cDrive) failed:
>>>>     Permission denied (13)
>>>>     Remote[1]: rsync: opendir "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/ds.MARCO/.nx/D-b-xp-A1A815D9DC8DFCF37C4D86805464141A"
>>>> (in
>>>>     cDrive) failed: Permission denied (13)
>>>>     Remote[1]: rsync: opendir "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/ds.MARCO/.ssh" (in cDrive) failed: Permission denied
>>>> (13)
>>>>     Remote[2]: file has vanished:
>>>> "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>>     und
>>>>
>>>> Einstellungen/elena/Anwendungsdaten/Microsoft/Office/Recent/pm32_system_gos3_appendix2_09
>>>>     (1) ?????????? 2 10.LNK" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>> "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>>     und Einstellungen/elena/Recent/pm32_system_gos3_appendix2_09 (1)
>>>>     ?????????? 2 10.lnk" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>> "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>>     und
>>>>
>>>> Einstellungen/harald.MARCO/Anwendungsdaten/Microsoft/Office/Recent/????????.LNK"
>>>>     (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>> "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>>     und Einstellungen/harald.MARCO/Recent/????????.lnk" (in cDrive)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/6ZOJ45QH/s_groups;tpc=modern_oses;tpc=independent;tpc=linux;tpc=posix;tpc=c;tpc=printing;tpc=viewers;tpc=conversion;tpc=graphics;tpc=multimedia;ord=7801743490785189"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/CHO94PAX/s_groups;tpc=modern_oses;tpc=independent;tpc=linux;tpc=posix;tpc=c;tpc=printing;tpc=viewers;tpc=conversion;tpc=graphics;tpc=multimedia;ord=7801743490785189"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/CHO94PAX/x02,x31,x32,x33,Top1,Top2,Top3,Top,Left1,Left2,Left3,x04,x41,x42,x43,x44,x45,x51,x52,x53,x54,x55,x56,x57,x58,x59,x60,Frame1,Frame2,x11,x12,x13,x14,x15[1]"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/H1GHCJM2/CAQZ2FLX.1189709337&ga_sid=1189709337&ga_hid=1822037257&ga_fc=true&flash=6&u_h=1024&u_w=1280&u_ah=994&u_aw=1280&u_cd=16&u_tz=120&u_his=5&u_java=true"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/H1GHCJM2/s_groups;tpc=modern_oses;tpc=independent;tpc=linux;tpc=posix;tpc=c;tpc=printing;tpc=viewers;tpc=conversion;tpc=graphics;tpc=multimedia;ord=7328517206540384"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/H1GHCJM2/s_groups;tpc=modern_oses;tpc=independent;tpc=linux;tpc=posix;tpc=c;tpc=printing;tpc=viewers;tpc=conversion;tpc=graphics;tpc=multimedia;ord=7801743490785189"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/HW448L6P/s_groups;tpc=modern_oses;tpc=independent;tpc=linux;tpc=posix;tpc=c;tpc=printing;tpc=viewers;tpc=conversion;tpc=graphics;tpc=multimedia;ord=7328517206540384"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[1]: rsync: readlink "ygdrive/c/WINDOWS/system32/c:/Dokumente
>>>> und
>>>>     Einstellungen/root/Lokale Einstellungen/Temporary Internet
>>>>
>>>> Files/Content.IE5/HW448L6P/s_groups;tpc=modern_oses;tpc=independent;tpc=linux;tpc=posix;tpc=c;tpc=printing;tpc=viewers;tpc=conversion;tpc=graphics;tpc=multimedia;ord=7801743490785189"
>>>>     (in cDrive) failed: File name too long (91)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/1045/DataServices/+Nowe polaczenie z serwerem
>>>> SQL.odc"
>>>>     (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/1045/DataServices/+Polacz z nowym zr�dlem 
>>>> danych.odc"
>>>>     (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/1049/DataServices/+????? ??????????? ?
>>>> SQL-???????.odc"
>>>>     (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/1049/DataServices/+??????????? ? ?????? ?????????
>>>>     ??????.odc" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/2052/DataServices/+? SQLServer ??.odc" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/2052/DataServices/+???????.odc" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/Kursy gieldowe MSN MoneyCentral 
>>>> Investor.iqy"
>>>>     (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/MSN MoneyCentral ???????.iqy" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/MSN MoneyCentral ?????.iqy" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/MSN MoneyCentral ????.iqy" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/???????? ??????? MSN MoneyCentral
>>>> Investor.iqy"
>>>>     (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/???????? ????????? MSN MoneyCentral
>>>>     Investor.iqy" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Office12/QUERIES/????? ????? MSN MoneyCentral Investor.iqy"
>>>> (in
>>>>     cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/?????????_?????.xltx" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/???????_??_?????.xltx" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/??????_?????????_????????.xltx" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/??????_??????_??_?????.xltx" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/?????_?_????????.xltx" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/???????_??????.xltx" (in cDrive)
>>>>     Remote[2]: file has vanished:
>>>>     "ygdrive/c/WINDOWS/system32/c:/Programme/Microsoft
>>>>     Office/Templates/1049/?????????.xltx" (in cDrive)
>>>>     Got file list: 213073 entries
>>>>     Child PID is 6166
>>>>     Xfer PIDs are now 6166
>>>>     Sending csums, cnt = 213073, phase = 0
>>>>      create d 755   400/401           0 .
>>>>      create d 755   400/401           0 2259a5ef536ecb3ad6d3cc
>>>>      create d 755   400/401           0 2259a5ef536ecb3ad6d3cc/1025
>>>>     Parent read EOF from child: fatal error!
>>>>     Sending csums, cnt = 188412, phase = 1
>>>>     Done: 0 files, 0 bytes
>>>>     Got fatal error during xfer (Child exited prematurely)
>>>>     Backup aborted (Child exited prematurely)
>>>>     Not saving this as a partial backup since it has fewer files than 
>>>> the
>>>>     prior one (got 0 and 0 files versus 824)
>>>>
>>>>
>>>>     --
>>>>     Daniel Spannbauer                         Software Entwicklung
>>>>     marco Systemanalyse und Entwicklung GmbH  Tel   +49 8333 9233-27
>>>> Fax -11
>>>>     Rechbergstr. 4 - 6, D 87727 Babenhausen   Mobil +49 171 4033220
>>>>     http://www.marco.de/                      Email ds AT marco DOT de
>>>>     <mailto:ds AT marco DOT de>
>>>>     Geschäftsführer Martin Reuter             HRB 171775 Amtsgericht
>>>> München
>>>>
>>>>     
>>>> ------------------------------------------------------------------------------
>>>>     Special Offer-- Download ArcSight Logger for FREE (a $49 USD 
>>>> value)!
>>>>     Finally, a world-class log management solution at an even better
>>>>     price-free!
>>>>     Download using promo code Free_Logger_4_Dev2Dev. Offer expires
>>>>     February 28th, so secure your free ArcSight Logger TODAY!
>>>>     http://p.sf.net/sfu/arcsight-sfd2d
>>>>     _______________________________________________
>>>>     BackupPC-users mailing list
>>>>     BackupPC-users AT lists.sourceforge DOT net
>>>>     <mailto:BackupPC-users AT lists.sourceforge DOT net>
>>>>     List: 
>>>> https://lists.sourceforge.net/lists/listinfo/backuppc-users
>>>>     Wiki:    http://backuppc.wiki.sourceforge.net
>>>>     Project: http://backuppc.sourceforge.net/
>>>>
>>>>
>>>>
>>>>
>>>> -- 
>>>> *Luis Alberto Calvo Muñiz*
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
>>>> Finally, a world-class log management solution at an even better
>>>> price-free!
>>>> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
>>>> February 28th, so secure your free ArcSight Logger TODAY!
>>>> http://p.sf.net/sfu/arcsight-sfd2d
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> BackupPC-users mailing list
>>>> BackupPC-users AT lists.sourceforge DOT net
>>>> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
>>>> Wiki:    http://backuppc.wiki.sourceforge.net
>>>> Project: http://backuppc.sourceforge.net/
>>>
>>>
>>> -- 
>>> Daniel Spannbauer                         Software Entwicklung
>>> marco Systemanalyse und Entwicklung GmbH  Tel   +49 8333 9233-27 Fax -11
>>> Rechbergstr. 4 - 6, D 87727 Babenhausen   Mobil +49 171 4033220
>>> http://www.marco.de/                      Email ds AT marco DOT de
>>> Geschäftsführer Martin Reuter             HRB 171775 Amtsgericht München
>>>
>>> ------------------------------------------------------------------------------
>>> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
>>> Finally, a world-class log management solution at an even better
>>> price-free!
>>> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
>>> February 28th, so secure your free ArcSight Logger TODAY!
>>> http://p.sf.net/sfu/arcsight-sfd2d
>>> _______________________________________________
>>> BackupPC-users mailing list
>>> BackupPC-users AT lists.sourceforge DOT net
>>> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
>>> Wiki:    http://backuppc.wiki.sourceforge.net
>>> Project: http://backuppc.sourceforge.net/
>>>
>>
>> ------------------------------------------------------------------------------
>> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
>> Finally, a world-class log management solution at an even better 
>> price-free!
>> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
>> February 28th, so secure your free ArcSight Logger TODAY!
>> http://p.sf.net/sfu/arcsight-sfd2d
>> _______________________________________________
>> BackupPC-users mailing list
>> BackupPC-users AT lists.sourceforge DOT net
>> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
>> Wiki:    http://backuppc.wiki.sourceforge.net
>> Project: http://backuppc.sourceforge.net/
>
>
> -- 
> Daniel Spannbauer                         Software Entwicklung
> marco Systemanalyse und Entwicklung GmbH  Tel   +49 8333 9233-27 Fax -11
> Rechbergstr. 4 - 6, D 87727 Babenhausen   Mobil +49 171 4033220
> http://www.marco.de/                      Email ds AT marco DOT de
> Geschäftsführer Martin Reuter             HRB 171775 Amtsgericht München
>
> ------------------------------------------------------------------------------
> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
> Finally, a world-class log management solution at an even better 
> price-free!
> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
> February 28th, so secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsight-sfd2d
> _______________________________________________
> BackupPC-users mailing list
> BackupPC-users AT lists.sourceforge DOT net
> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:    http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/
> 

------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
_______________________________________________
BackupPC-users mailing list
BackupPC-users AT lists.sourceforge DOT net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/
<Prev in Thread] Current Thread [Next in Thread>