Re: [BackupPC-users] rsyncd on Windows XP Home

2006-10-03 Thread Karl McMurdo
I'd suggest stripping down the config file to it's barest essentials, 
that way there is nothing extra to cause problems, the complaint
is about the docs section which you probably aren't using.
I have run into issues with some firewall software (Computer Associates 
Firewall causes me major grief on a couple laptops,
but other than that rsyncd has been flawless)

I have got a windows installer for the rsync service built that creates 
[?Drive] sections for each hard drive found on the
system, has the option to open the required ports etc on the MS XP 
firewall, installs and starts the service with proper descriptions
in the services panel, and proper location of the output files (which by 
default goes to C:/VAR) and will make it available as soon as I
add a prompt for auth user/passwd (my current version has them hard 
coded for use on our office machines.)

This should be all you need, you may want to change the read only 
setting, I like it because I don't have to do anything to restore a file
to a machine, and since we are behind a decent firewall, the backuppc 
server is well locked down, and the rsyncd password is 32
characters generated by doing an md5sum on a jpeg that was handy, I'm 
not all that worried about it.
Besides, the users are astonished when they call about losing a file and 
it "appears" back on their machine, good for keeping up
the "Miracle Worker" image :)

#
use chroot = false
max connections = 4
log file = c:/rsyncd/rsyncd.log
pid file = c:/rsyncd/rsyncd.pid
lock file = c:/rsyncd/rsyncd.lock

[cDrive]
path = C:
comment = Entire C Drive
auth users = backuppc
secrets file = c:/rsyncd/rsyncd.secrets
strict modes = false
read only = false
list = false
#


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/


Re: [BackupPC-users] rsyncd on Windows XP Home

2006-09-30 Thread Les Stott
>>
>> Here is the host config file on the server:
>> $Conf{XferMethod} = 'rsyncd';
>> $Conf{RsyncdUsername} = 'backuppc';
>> $Conf{RsyncdPasswd} = 'password';
>> $Conf{RsyncShareName} = ['cDrive'];
>>
>> Thanks in advance for any help.  
>>
>> Aaron
>>
>> 
This may be just a typo in the host config..

Try...

$Conf{RsyncdUserName}

Not

$Conf{RsyncdUsername}

The case sensitivity probably matters. Other than that everything looks 
right.

Les





-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/


Re: [BackupPC-users] rsyncd on Windows XP Home

2006-09-30 Thread Barry Robinson
I too am running Ubuntu Dapper 6.06 with an XP client.
 Have a look at my config files.  It took me some time
to figure this all out.  This is what works for me.  
My XP is Pro but the difference here should not
matter.

/var/etc/backuppc/pc/client/config.pl
##Rsyncd for XP
$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncShareName} = ['C', 'D'];
$Conf{BackupFilesExclude} =
['/$ntservicepackuninstall$', '/Documents and
Settings/*/Local Settings', '/RECYCLER', 'System
Volume Information', '/pagefile.sys', 'Temp',
'*/Temp', '*/temp'];
$Conf{RsyncdUserName} = 'backuppc';
$Conf{RsyncdPasswd}  = '';
$Conf{XferLogLevel} = 9

C:\rsyncd\rsyncd.conf
hosts allow = 192.168.1.10 
use chroot = false
log file = c:\rsyncd\rsyncd.log
pid file = c:\rsyncd\rsyncd.pid
lock file = c:\rsyncd\rsyncd.lock
strict modes = false
auth users = backuppc
secrets file = c:\rsyncd\rsyncd.secrets
read only = false
list = false
[C]
 path = C:
 comment = Entire C
[D]
 path = D:
 comment = Entire D

--- Aaron Throckmorton <[EMAIL PROTECTED]>
wrote:

> I have a BackupPC installation running on Ubuntu
> Server 6.06 LTS.  The
> server is working fine, but I can't get a Windows XP
> Home computer to
> successfully backup.  I installed the rsyncd service
> (downloaded from
> the backuppc project page on sourceforge).  When I
> attempt a backup I
> get the following error message:
> 
> "auth failed on module docs"
> 
> I switched it to the cDrive module, but I get the
> same error.  
> 
> I have double and triple checked the host config
> file on the backuppc
> server to ensure the user name and password
> (RsyncdUsername and
> RsyncdPasswd) match what I have in the
> rsyncd.secrets file.
> 
> I've been googling and searching the list archives
> but haven't found my
> answer.
> 
> Here is the rsyncd.conf file:
> 
> #
> # A sample rsyncd.conf file usable with BackupPC.
> This file does not
> # completely document all of the settings for
> rsyncd.conf - see the
> # man page that comes with the rsync ditribution for
> a comprehensive
> # overview off all available settings.
> #
> 
> #
> # Allow rsync to change the root directory to the
> module location
> # upon connection of a client. This is disabled for
> Win32 as we do
> # not provide a full Cygwin environment.
> #
> # Warning: with a setting of "false", absolute
> symlinks will be
> # stripped of their leading "/".  See "use chroot"
> in the rsyncd.conf
> # man page.  This is relevant for machines that
> support symlinks
> # (WinXX machines do not).
> #
> use chroot = false
> 
> #
> # Limit the simultaneous rsync connections to 4.
> Changing
> # this to '1' should be sufficient for BackupPC.
> #
> max connections = 1
> 
> #
> # Uncomment this line and change the path if
> # you would like to log rsync messages.
> #
> log file = c:/rsyncd/rsyncd.log
> 
> #
> # The location of the rsync process ID file
> #
> pid file = c:/rsyncd/rsyncd.pid
> 
> #
> # The locations of the rsync lock file
> #
> lock file = c:/rsyncd/rsyncd.lock
> 
> #
> # This is where we define the rsyncd modules. Add as
> many directories or
> # files are you wish.  To backup this module using
> BackupPC, set
> # $Conf{RsyncShareName} to "docs" in this client's
> config.pl.
> #
> [docs]
> #
> # Exact DOS style path to the file or directory
> to be rsync
> accessible
> #
> path = c:/Documents and Settings
> 
> #
> # A short description of the module. This is
> what is printed when
> # using rsync to "browse" the server for what
> modules are available.
> #
> comment = Documents and Settings
> 
> #
> # Does rsyncd ensure that the secrets file is
> read only by the
> # user running the process? If this is false
> then no check is
> # performed (useful for Win32 systems). However,
> you can change
> # this to "true" and make the secrets file READ
> ONLY by the user
> # running the rysncd process. If running from
> the command line
> # or upon login, this should be the user who is
> logged in. If
> # running as a Win32 service, then the SYSTEM
> account should be
> # the only account that can read the secrets
> file.
> #
> strict modes = false
> 
> #
> # What user(s) have access to this module. The
> user(s) must be
> # defined in the secrets file. A comma or space
> separated list.
> #
> # Example:
> #   auth users = backup, root, larry
> #   auth users = backup root larry
> #
> auth users = backuppc backup
> 
> #
> # The location of the secrets file. Permissions
> must be READ ONLY
> # for the account running the rsyncd process
> unless
> # strict modes = false is set above.
> #
> secrets file = c:/rsyncd/rsyncd.secrets
> 
> #
> # What hosts are allowed access to this module?
> By default, all
> # hosts are allowed access. If you wish to
> further strengthen
> # the security of your setup, uncomment and
> replace with the IP
> # address your BackupPC server. Th

Re: [BackupPC-users] rsyncd on Windows XP Home

2006-09-30 Thread Eric Snyder




I had problems making rsyncd work on XP pro. I ended up giving up and
using Samba rather than rsyncd. After I got past the authentication
problem with rsyncd the backup would eventually not finish for some
reason that I could never track down. Samba did not work well until I
added a list of files to exclude which looks like this:
$Conf{BackupFilesExclude} = [
  '*/Cookies/*',
  '/BACKUP/*',
  '/backuppc/*',
  '/Documents and Settings/*/Application Data/Adobe/*',
  '/Documents and Settings/*/Application Data/Identities/*',
  '/Documents and Settings/*/Application Data/Macromedia/*',
  '/Documents and Settings/*/Application Data/Microsoft/*',
  '/Documents and Settings/*/Application Data/Real/*',
  '/Documents and Settings/*/Application Data/Talkback/*',
  '/Documents and Settings/*/Local Settings/History/*',
  '/Documents and Settings/*/Local Settings/Temp/*',
  '/Documents and Settings/*/Local Settings/Temporary  Internet Files/*',
  '/Documents and Settings/*/NetHood/*',
  '/Documents and Settings/*/NetHood/*',
  '/Documents and Settings/*/PrintHood/*',
  '/Documents and Settings/*/PrintHood/*',
  '/Documents and Settings/*/Recent/*',
  '/Documents and Settings/*/Recent/*',
  '/Documents and Settings/*/Templates/*',
  '/Documents and Settings/*/UserData/*',
  '/Documents and Settings/admin/*',
  '/Documents and Settings/Administrator/*',
  '/Documents and Settings/Administrator/*',
  '/Documents and Settings/All Users/*',
  '/Documents and Settings/All Users/*',
  '/Documents and Settings/Default User/*',
  '/Documents and Settings/Default User/*',
  '/Documents and Settings/DELL/*',
  '/Documents and Settings/LDAP/.',
  '/Documents and Settings/LocalService/*',
  '/Documents and Settings/LocalService/*',
  '/Documents and Settings/NetworkService/*',
  '/Documents and Settings/NetworkService/*',
  '/I386/*',
  '/Multimedia Files/*',
  '/My Downloads/*',
  '/My Music/*',
  '/ocs-ng/*',
  '/Program Files/*/*',
  '/QUARANTINE/*',
  '/QUARANTINE/*',
  '/RECYCLER/*',
  '/System Volume Information/*',
  '/Temp/*',
  '/temp/*',
  '/tmp/*',
  '/TMP/*',
  '/WINDOWS/*',
  '/WINNT/*',
  '/WUTemp/*',
  '*/openv/var/vnetd/*',
  '*.sys',
  '*/.bash_history',
  '*/*.dll',
  '*/*.DLL',
  '*/*.sys',
  '*/*.TMP',
  '*/*.tmp',
  '*/~*',
  '*/$*$',
  '*/4gl/Database/*.bin',
  '*/4gl/Database/*.bin',
  '*/4gl/Database/CardCnf.dat',
  '*/Cache/*',
  '*/DataStore/*.edb',
  '*/dllcache/*',
  '*/FOXUSER.DBF',
  '*/FOXUSER.FPT',
  '*/History.IE*/*',
  '*/ntuser.dat*',
  '*/NTUSER.DAT*',
  '*/parent.lock',
  '*/Recent/*.lnk',
  '*/ServicePackFiles/*',
  '*/System Volume Information/*',
  '*/Temporary Internet Files/*',
  '*/Thumbs.db',
  '*/UsrClass.dat.LOG',
  '*/UsrClass.dat',
  '*/*.exe',
  '*/*.EXE',
  '*/*.*_'
];
After I added the file exclusion list it has been working faithfully
every day. Every time I look at a nd browse backups I get a really warm
fuzzy that I have this info getting backed up.

One other thing I changed is the number of full backups to keep. I set
this up to look like this:
$Conf{FullKeepCnt} = [4, 4, 4, 2, 1, 1];

Make sure to read this part and see if you like how it is handling how many backups to keep. I *think* that it defaults to keeping one backup.

Hope this helps,
Eric

Aaron Throckmorton wrote:

  I have a BackupPC installation running on Ubuntu Server 6.06 LTS.  The
server is working fine, but I can't get a Windows XP Home computer to
successfully backup.  I installed the rsyncd service (downloaded from
the backuppc project page on sourceforge).  When I attempt a backup I
get the following error message:

"auth failed on module docs"

I switched it to the cDrive module, but I get the same error.  

I have double and triple checked the host config file on the backuppc
server to ensure the user name and password (RsyncdUsername and
RsyncdPasswd) match what I have in the rsyncd.secrets file.

I've been googling and searching the list archives but haven't found my
answer.

Here is the rsyncd.conf file:

#
# A sample rsyncd.conf file usable with BackupPC. This file does not
# completely document all of the settings for rsyncd.conf - see the
# man page that comes with the rsync ditribution for a comprehensive
# overview off all available settings.
#

#
# Allow rsync to change the root directory to the module location
# upon connection of a client. This is disabled for Win32 as we do
# not provide a full Cygwin environment.
#
# Warning: with a setting of "false", absolute symlinks will be
# stripped of their leading "/".  See "use chroot" in the rsyncd.conf
# man page.  This is relevant for machines that support symlinks
# (WinXX machines do not).
#
use chroot = false

#
# Lim

[BackupPC-users] rsyncd on Windows XP Home

2006-09-30 Thread Aaron Throckmorton
I have a BackupPC installation running on Ubuntu Server 6.06 LTS.  The
server is working fine, but I can't get a Windows XP Home computer to
successfully backup.  I installed the rsyncd service (downloaded from
the backuppc project page on sourceforge).  When I attempt a backup I
get the following error message:

"auth failed on module docs"

I switched it to the cDrive module, but I get the same error.  

I have double and triple checked the host config file on the backuppc
server to ensure the user name and password (RsyncdUsername and
RsyncdPasswd) match what I have in the rsyncd.secrets file.

I've been googling and searching the list archives but haven't found my
answer.

Here is the rsyncd.conf file:

#
# A sample rsyncd.conf file usable with BackupPC. This file does not
# completely document all of the settings for rsyncd.conf - see the
# man page that comes with the rsync ditribution for a comprehensive
# overview off all available settings.
#

#
# Allow rsync to change the root directory to the module location
# upon connection of a client. This is disabled for Win32 as we do
# not provide a full Cygwin environment.
#
# Warning: with a setting of "false", absolute symlinks will be
# stripped of their leading "/".  See "use chroot" in the rsyncd.conf
# man page.  This is relevant for machines that support symlinks
# (WinXX machines do not).
#
use chroot = false

#
# Limit the simultaneous rsync connections to 4. Changing
# this to '1' should be sufficient for BackupPC.
#
max connections = 1

#
# Uncomment this line and change the path if
# you would like to log rsync messages.
#
log file = c:/rsyncd/rsyncd.log

#
# The location of the rsync process ID file
#
pid file = c:/rsyncd/rsyncd.pid

#
# The locations of the rsync lock file
#
lock file = c:/rsyncd/rsyncd.lock

#
# This is where we define the rsyncd modules. Add as many directories or
# files are you wish.  To backup this module using BackupPC, set
# $Conf{RsyncShareName} to "docs" in this client's config.pl.
#
[docs]
#
# Exact DOS style path to the file or directory to be rsync
accessible
#
path = c:/Documents and Settings

#
# A short description of the module. This is what is printed when
# using rsync to "browse" the server for what modules are available.
#
comment = Documents and Settings

#
# Does rsyncd ensure that the secrets file is read only by the
# user running the process? If this is false then no check is
# performed (useful for Win32 systems). However, you can change
# this to "true" and make the secrets file READ ONLY by the user
# running the rysncd process. If running from the command line
# or upon login, this should be the user who is logged in. If
# running as a Win32 service, then the SYSTEM account should be
# the only account that can read the secrets file.
#
strict modes = false

#
# What user(s) have access to this module. The user(s) must be
# defined in the secrets file. A comma or space separated list.
#
# Example:
#   auth users = backup, root, larry
#   auth users = backup root larry
#
auth users = backuppc backup

#
# The location of the secrets file. Permissions must be READ ONLY
# for the account running the rsyncd process unless
# strict modes = false is set above.
#
secrets file = c:/rsyncd/rsyncd.secrets

#
# What hosts are allowed access to this module? By default, all
# hosts are allowed access. If you wish to further strengthen
# the security of your setup, uncomment and replace with the IP
# address your BackupPC server. This is a flexible setting and
# can be one of:
#
#   a dotted decimal IP address: 172.16.0.17
#   a address/mask in the form  a.b.c.d/n: 172.16.0.0/24
#   an address/mask in the form ipaddr/maskaddr:
172.16.0.0/255.255.255.0
#   a hostname: backupserver
#   a hostname pattern using wildcards: backup*
#
# hosts allow = 172.16.0.17

#
# Only allow clients to READ from the server. This prevents uploads
# from remote machines. If you wish to allow uploads, change this
too
# "true".
# 
# WARNING: Setting this to true means that BackupPC restores via
# rsyncd will fail. You most likely want to set this to "false".
#
read only = false

#
# Don't list this module if a client asks (provides another modest
# layer of security since an attacker also has to guess the module
# name - you could make it obscure if you want - but remember the
# module name is sent in plain text so it can be sniffed).
#
list = false

#
# Example of how to share the entire C: drive.  For BackupPC "cDrive"
# is the share name (ie: the value of $Conf{RsyncShareName}).
#
[cDrive]
path = c:
comment = Entire Drive
auth users = backuppc
secrets file = c:/rsyncd/rsyncd.secrets
# hosts allow = 172.16.0.17
strict modes = false
read only = true
 

Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Barry Robinson
Finally got it figured out!
There was a file in the .nx temp folder that did not
have Administrator privileges.  I gave it the correct
right and still no good so I excluded */temp and
everything runs great now.

Thanks so much for all your help!

Since I had such a difficult time finding sample files
I have included my config.pl and rsyncd.conf files.  I
can't tell any difference between having a / before a
folder name or not.  Either way the folders are not
backed up. 

/var/etc/backuppc/pc/client/config.pl
$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncShareName} = ['C', 'D'];
$Conf{BackupFilesExclude} =
['/$ntservicepackuninstall$', '/Documents and
Settings/*/Local Settings', '/RECYCLER', 'System
Volume Information', '/pagefile.sys', '/Temp',
'*/temp'];
$Conf{RsyncdUserName} = 'backuppc';
$Conf{RsyncdPasswd}  = '*';
$Conf{XferLogLevel} = 9

C:\rsyncd\rsyncd.conf
hosts allow = 192.168.1.10
use chroot = false
log file = c:\rsyncd\rsyncd.log
pid file = c:\rsyncd\rsyncd.pid
lock file = c:\rsyncd\rsyncd.lock
strict modes = false
auth users = backuppc
secrets file = c:\rsyncd\rsyncd.secrets
read only = false
list = false
[C]
 path = C:
 comment = Entire C
[D]
 path = D:
 comment = Entire D

--- Les Stott <[EMAIL PROTECTED]> wrote:

> 
> >
> > $Conf{BackupFilesOnly} = ['rsyncd', 'Documents and
> Settings'];
> > $Conf{BackupFilesExclude} = ['Documents and
> > Settings/*/Local Settings', [Documents and
> Settings/.nx', '*/Temp', 'RECYCLER',
> > 'System Volume Information', '*/Cache',
> > 'pagefile.sys'];
> >
> >
> >   
> sorry, that should be
> 
> $Conf{BackupFilesOnly} = ['rsyncd', 'Documents and
> Settings'];
> $Conf{BackupFilesExclude} = ['Documents and
> Settings/*/Local Settings', 'Documents and
> Settings/.nx', '*/Temp', 'RECYCLER',
> 'System Volume Information', '*/Cache',
> 'pagefile.sys'];
> 
> 
> Les
> 
>
-
> 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/
> 


†††

Hosea 4:6
my people are destroyed from lack of knowledge.

Galatians 5:1
It is for freedom that Christ has set us free.

Romans 10:9 
That if you confess with your mouth, "Jesus is Lord," and believe in your heart 
that God raised him from the dead, you will be saved.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Randy Barlow
Barry Robinson wrote:
> Remote[1]: rsync: opendir
> "ygdrive/c/WINDOWS/system32/C:/Documents and
> Settings/Administrator/.nx/D-wolf-29747BE96EB94528967E88C81B0BD7DC"

Shouldn't that be "cygdrive/c/..."?

R

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Les Stott

>
> $Conf{BackupFilesOnly} = ['rsyncd', 'Documents and Settings'];
> $Conf{BackupFilesExclude} = ['Documents and
> Settings/*/Local Settings', [Documents and Settings/.nx', '*/Temp', 
> 'RECYCLER',
> 'System Volume Information', '*/Cache',
> 'pagefile.sys'];
>
>
>   
sorry, that should be

$Conf{BackupFilesOnly} = ['rsyncd', 'Documents and Settings'];
$Conf{BackupFilesExclude} = ['Documents and
Settings/*/Local Settings', 'Documents and Settings/.nx', '*/Temp', 'RECYCLER',
'System Volume Information', '*/Cache',
'pagefile.sys'];


Les

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Les Stott
Barry Robinson wrote:
> Seems fine right up till it randomly comes up with a
> path that does not exist.  
>
> Got file (244 of 245): Documents and
> Settings/Administrator/.nx/config/nxclient.conf
> Remote[1]: rsync: opendir
> "ygdrive/c/WINDOWS/system32/C:/Documents and
> Settings/Administrator/.nx/D-wolf-29747BE96EB94528967E88C81B0BD7DC"
> (in cDrive) failed: Permission denied (13)
> overflow: flags=0x56 l1=0 l2=876233960,
> lastname=Documents and
> Settings/Administrator/.nx/temp/.X11-un6/keylog
> fileListReceive() failed
> Done: 0 files, 0 bytes
> Got fatal error during xfer (fileListReceive failed)
> cmdSystemOrEval: about to system /bin/ping -c 1 wolf
> cmdSystemOrEval: finished: got output PING Wolf
> (192.168.1.100) 56(84) bytes of data.
> 64 bytes from Wolf (192.168.1.100): icmp_seq=1 ttl=128
> time=1.56 ms
>
> --- Wolf ping statistics ---
> 1 packets transmitted, 1 received, 0% packet loss,
> time 0ms
> rtt min/avg/max/mdev = 1.560/1.560/1.560/0.000 ms
>
> cmdSystemOrEval: about to system /bin/ping -c 1 wolf
> cmdSystemOrEval: finished: got output PING Wolf
> (192.168.1.100) 56(84) bytes of data.
> 64 bytes from Wolf (192.168.1.100): icmp_seq=1 ttl=128
> time=0.307 ms
>
> --- Wolf ping statistics ---
> 1 packets transmitted, 1 received, 0% packet loss,
> time 0ms
> rtt min/avg/max/mdev = 0.307/0.307/0.307/0.000 ms
>
> CheckHostAlive: returning 0.307
> Backup aborted (fileListReceive failed)
> dump failed: fileListReceive failed
> Segmentation fault
>   

Was the cygwin rsync installed as a service? or does it run under your 
user account?

What is contained in the pc's rsyncd log file? c:\rsyncd\rsyncd.log?

if your stopping at the same directory you may have to exclude that one.

Try the following..

$Conf{BackupFilesOnly} = ['rsyncd', 'Documents and Settings'];
$Conf{BackupFilesExclude} = ['Documents and
Settings/*/Local Settings', [Documents and Settings/.nx', '*/Temp', 'RECYCLER',
'System Volume Information', '*/Cache',
'pagefile.sys'];


Regards,

Les

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Barry Robinson
Seems fine right up till it randomly comes up with a
path that does not exist.  

Got file (244 of 245): Documents and
Settings/Administrator/.nx/config/nxclient.conf
Remote[1]: rsync: opendir
"ygdrive/c/WINDOWS/system32/C:/Documents and
Settings/Administrator/.nx/D-wolf-29747BE96EB94528967E88C81B0BD7DC"
(in cDrive) failed: Permission denied (13)
overflow: flags=0x56 l1=0 l2=876233960,
lastname=Documents and
Settings/Administrator/.nx/temp/.X11-un6/keylog
fileListReceive() failed
Done: 0 files, 0 bytes
Got fatal error during xfer (fileListReceive failed)
cmdSystemOrEval: about to system /bin/ping -c 1 wolf
cmdSystemOrEval: finished: got output PING Wolf
(192.168.1.100) 56(84) bytes of data.
64 bytes from Wolf (192.168.1.100): icmp_seq=1 ttl=128
time=1.56 ms

--- Wolf ping statistics ---
1 packets transmitted, 1 received, 0% packet loss,
time 0ms
rtt min/avg/max/mdev = 1.560/1.560/1.560/0.000 ms

cmdSystemOrEval: about to system /bin/ping -c 1 wolf
cmdSystemOrEval: finished: got output PING Wolf
(192.168.1.100) 56(84) bytes of data.
64 bytes from Wolf (192.168.1.100): icmp_seq=1 ttl=128
time=0.307 ms

--- Wolf ping statistics ---
1 packets transmitted, 1 received, 0% packet loss,
time 0ms
rtt min/avg/max/mdev = 0.307/0.307/0.307/0.000 ms

CheckHostAlive: returning 0.307
Backup aborted (fileListReceive failed)
dump failed: fileListReceive failed
Segmentation fault


--- Guus Houtzager <[EMAIL PROTECTED]> wrote:

> On Thursday 24 August 2006 15:50, Barry Robinson
> wrote:
> > OK we are getting somewhere!!
> >
> > If I tell it to ONLY backup the rsyncd directory
> then
> > it is successful.
> 
> [...]
> 
> > Now when I try to backup something else besides
> just
> > the rsyncd directory I get:
> > 2006-08-24 09:53:42 full backup started for
> directory
> > cDrive
> > 2006-08-24 09:53:52 Got fatal error during xfer
> > (fileListReceive failed)
> > 2006-08-24 09:53:57 Backup aborted
> (fileListReceive
> > failed)
> 
> Please try to run BackupPC_dump -v -f  on
> the commandline as the 
> backuppc user. That will give some more info. Or you
> could add  
> $Conf{XferLogLevel} = 9; to the configfile of the
> client for a lot more info 
> in your logfiles.
> 
> [...]
> 
> Regards,
> 
> Guus
> 
>
-
> 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/
> 


†††

Hosea 4:6
my people are destroyed from lack of knowledge.

Galatians 5:1
It is for freedom that Christ has set us free.

Romans 10:9 
That if you confess with your mouth, "Jesus is Lord," and believe in your heart 
that God raised him from the dead, you will be saved.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Guus Houtzager
On Thursday 24 August 2006 15:50, Barry Robinson wrote:
> OK we are getting somewhere!!
>
> If I tell it to ONLY backup the rsyncd directory then
> it is successful.

[...]

> Now when I try to backup something else besides just
> the rsyncd directory I get:
> 2006-08-24 09:53:42 full backup started for directory
> cDrive
> 2006-08-24 09:53:52 Got fatal error during xfer
> (fileListReceive failed)
> 2006-08-24 09:53:57 Backup aborted (fileListReceive
> failed)

Please try to run BackupPC_dump -v -f  on the commandline as the 
backuppc user. That will give some more info. Or you could add  
$Conf{XferLogLevel} = 9; to the configfile of the client for a lot more info 
in your logfiles.

[...]

Regards,

Guus

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Barry Robinson
OK we are getting somewhere!!  

If I tell it to ONLY backup the rsyncd directory then
it is successful.

$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncShareName} = 'cDrive';
$Conf{BackupFilesOnly} = 'rsyncd';
##$Conf{BackupFilesExclude} = ['Documents and
Settings/*/Local Settings', 'RECYCLER', 'System Volume
Information', 'pagefile.sys'];
$Conf{RsyncdUserName} = 'backuppc';
$Conf{RsyncdPasswd}  = 'wolf';


Now when I try to backup something else besides just
the rsyncd directory I get:
2006-08-24 09:53:42 full backup started for directory
cDrive
2006-08-24 09:53:52 Got fatal error during xfer
(fileListReceive failed)
2006-08-24 09:53:57 Backup aborted (fileListReceive
failed)

So I tried to use only exclude and commented out the
include section:
#$Conf{BackupFilesOnly} = 'rsyncd';
$Conf{BackupFilesExclude} = ['Documents and
Settings/*/Local Settings', '*/Temp', 'RECYCLER',
'System Volume Information', '*/Cache',
'pagefile.sys'];

Same error, Backup aborted (fileListReceive failed)


/pc/client/config.pl

$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncShareName} = 'cDrive';
#$Conf{BackupFilesOnly} = 'rsyncd';
$Conf{BackupFilesExclude} = ['Documents and
Settings/*/Local Settings', 'RECYCLER', 'System Volume
Information', 'pagefile.sys'];
$Conf{RsyncdUserName} = 'backuppc';
$Conf{RsyncdPasswd}  = '';

C:\rsyncd\rsyncd.conf

hosts allow = 192.168.1.10
use chroot = false
log file = c:/rsyncd/rsyncd.log
pid file = c:/rsyncd/rsyncd.pid
lock file = c:/rsyncd/rsyncd.lock
[cDrive]
path = /cygwin/c
comment = Entire C
 strict modes = false
auth users = backuppc
 secrets file = c:/rsyncd/rsyncd.secrets
 read only = false
 list = false


--- Les Stott <[EMAIL PROTECTED]> wrote:

> Barry Robinson wrote:
> > I have checked the setting based on your
> > recommendations and this is what I now have trying
> to
> > simplify.
> >
> > On Linux /var/lib/backuppc/WinXP/config.pl
> > ##Rsyncd for wolf
> > $Conf{XferMethod} = 'rsyncd';
> > $Conf{RsyncShareName} = 'cDrive';
> > $Conf{BackupFilesOnly} = ['/rsyncd', '/Documents
> and
> > Settings'];
> > #$Conf{BackupFilesExclude} = ['/Documents and
> > Settings/*/Local Settings'];
> > #$Conf{RsyncdUserName} = 'backuppc';
> > #$Conf{RsyncdPasswd}  = '';
> >
> > On the WinXP box C:\rsyncd\rsyncd.conf
> >
> > hosts allow = 192.168.1.10
> > use chroot = false
> > log file = c:/rsyncd/rsyncd.log
> > pid file = c:/rsyncd/rsyncd.pid
> > lock file = c:/rsyncd/rsyncd.lock
> > [cDrive]
> > path = /cygwin/c
> > comment = Entire C
> > strict modes = true
> > auth users = backuppc
> > secrets file = c:/rsyncd/rsyncd.secrets
> > read only = false
> > list = false
> >
> > My results:
> > 2006-08-24 08:09:57 full backup started for
> directory
> > cDrive
> > 2006-08-24 08:09:58 Got fatal error during xfer
> (auth
> > failed on module cDrive)
> > 2006-08-24 08:10:03 Backup aborted (auth failed on
> > module cDrive)
> >
> > I have tried both forward and back slash on the XP
> box
> > config file with no luck.
> >
> > Any other suggestions?
> >
> >
> >
> >   
> Hi,
> 
> Its got nothing to do with your backslashes.
> 
> Its the "strict modes = true" setting.
> 
> If you leave it true then the file on the windows
> box HAS TO BE read 
> only by the user running the rsyncd daemon, or the
> system service.
> 
> I suggest you make strict modes = false for ease of
> use.
> 
> See the excerpt from the rsyncd.conf file below.
> 
> #
> # Does rsyncd ensure that the secrets file is
> read only by the
> # user running the process? If this is false
> then no check is
> # performed (useful for Win32 systems). However,
> you can change
> # this to "true" and make the secrets file READ
> ONLY by the user
> # running the rysncd process. If running from
> the command line
> # or upon login, this should be the user who is
> logged in. If
> # running as a Win32 service, then the SYSTEM
> account should be
> # the only account that can read the secrets
> file.
> #
> strict modes = false
> 
> Also i think these should be changed
> 
> $Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
> Settings'];
> #$Conf{BackupFilesExclude} = ['/Documents and
> Settings/*/Local Settings'];
> 
> to.
> 
> $Conf{BackupFilesOnly} = ['rsyncd', 'Documents and
> Settings'];
> #$Conf{BackupFilesExclude} = ['Documents and
> Settings/*/Local Settings'];
> 
> ...because your rsyncd share is the root of the
> folder, you dont need a 
> "/" in front of the top level folders.
> 
> 
> The rsyncd client software from the BackupPC
> Download site is quick, 
> easy and optimized for backuppc and there is no
> necessity to use 
> "cygdrive/c" etc etc. You can just use "C:" etc.
> 
> Regards,
> 
> Les
> 
> 
> 
> 
>
-
> 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
> Downl

Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Les Mikesell
On Thu, 2006-08-24 at 07:01, Barry Robinson wrote:
> I have checked the setting based on your
> recommendations and this is what I now have trying to
> simplify.
> 
> On Linux /var/lib/backuppc/WinXP/config.pl
> ##Rsyncd for wolf
> $Conf{XferMethod} = 'rsyncd';
> $Conf{RsyncShareName} = 'cDrive';
> $Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
> Settings'];
> #$Conf{BackupFilesExclude} = ['/Documents and
> Settings/*/Local Settings'];
> #$Conf{RsyncdUserName} = 'backuppc';
> #$Conf{RsyncdPasswd}  = '';
> 
> On the WinXP box C:\rsyncd\rsyncd.conf
> 
> hosts allow = 192.168.1.10
> use chroot = false
> log file = c:/rsyncd/rsyncd.log
> pid file = c:/rsyncd/rsyncd.pid
> lock file = c:/rsyncd/rsyncd.lock
> [cDrive]
> path = /cygwin/c
> comment = Entire C
> strict modes = true
> auth users = backuppc
> secrets file = c:/rsyncd/rsyncd.secrets
> read only = false
> list = false
> 
> My results:
> 2006-08-24 08:09:57 full backup started for directory
> cDrive
> 2006-08-24 08:09:58 Got fatal error during xfer (auth
> failed on module cDrive)
> 2006-08-24 08:10:03 Backup aborted (auth failed on
> module cDrive)
> 
> I have tried both forward and back slash on the XP box
> config file with no luck.
> 
> Any other suggestions?

Auth failed means your UserName and Passwd didn't match
correctly.  Do you really have those commented out in
the config file?

You can test for a working rsyncd manually using rsync from
the backuppc box with a syntax like:
rsync [EMAIL PROTECTED]::module/
The double : indicates the protocol for a standalone rsync
server and you should be prompted for a password. When
you omit a destination on the command line you will just
get a listing of files as the result if the connection
suceeds.

--
  Les Mikesell
   [EMAIL PROTECTED]



-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Les Stott
Barry Robinson wrote:
> I have checked the setting based on your
> recommendations and this is what I now have trying to
> simplify.
>
> On Linux /var/lib/backuppc/WinXP/config.pl
> ##Rsyncd for wolf
> $Conf{XferMethod} = 'rsyncd';
> $Conf{RsyncShareName} = 'cDrive';
> $Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
> Settings'];
> #$Conf{BackupFilesExclude} = ['/Documents and
> Settings/*/Local Settings'];
> #$Conf{RsyncdUserName} = 'backuppc';
> #$Conf{RsyncdPasswd}  = '';
>
> On the WinXP box C:\rsyncd\rsyncd.conf
>
> hosts allow = 192.168.1.10
> use chroot = false
> log file = c:/rsyncd/rsyncd.log
> pid file = c:/rsyncd/rsyncd.pid
> lock file = c:/rsyncd/rsyncd.lock
> [cDrive]
> path = /cygwin/c
> comment = Entire C
> strict modes = true
> auth users = backuppc
> secrets file = c:/rsyncd/rsyncd.secrets
> read only = false
> list = false
>
> My results:
> 2006-08-24 08:09:57 full backup started for directory
> cDrive
> 2006-08-24 08:09:58 Got fatal error during xfer (auth
> failed on module cDrive)
> 2006-08-24 08:10:03 Backup aborted (auth failed on
> module cDrive)
>
> I have tried both forward and back slash on the XP box
> config file with no luck.
>
> Any other suggestions?
>
>
>
>   
Hi,

Its got nothing to do with your backslashes.

Its the "strict modes = true" setting.

If you leave it true then the file on the windows box HAS TO BE read 
only by the user running the rsyncd daemon, or the system service.

I suggest you make strict modes = false for ease of use.

See the excerpt from the rsyncd.conf file below.

#
# Does rsyncd ensure that the secrets file is read only by the
# user running the process? If this is false then no check is
# performed (useful for Win32 systems). However, you can change
# this to "true" and make the secrets file READ ONLY by the user
# running the rysncd process. If running from the command line
# or upon login, this should be the user who is logged in. If
# running as a Win32 service, then the SYSTEM account should be
# the only account that can read the secrets file.
#
strict modes = false

Also i think these should be changed

$Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
Settings'];
#$Conf{BackupFilesExclude} = ['/Documents and
Settings/*/Local Settings'];

to.

$Conf{BackupFilesOnly} = ['rsyncd', 'Documents and
Settings'];
#$Conf{BackupFilesExclude} = ['Documents and
Settings/*/Local Settings'];

...because your rsyncd share is the root of the folder, you dont need a 
"/" in front of the top level folders.


The rsyncd client software from the BackupPC Download site is quick, 
easy and optimized for backuppc and there is no necessity to use 
"cygdrive/c" etc etc. You can just use "C:" etc.

Regards,

Les




-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-24 Thread Barry Robinson
I have checked the setting based on your
recommendations and this is what I now have trying to
simplify.

On Linux /var/lib/backuppc/WinXP/config.pl
##Rsyncd for wolf
$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncShareName} = 'cDrive';
$Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
Settings'];
#$Conf{BackupFilesExclude} = ['/Documents and
Settings/*/Local Settings'];
#$Conf{RsyncdUserName} = 'backuppc';
#$Conf{RsyncdPasswd}  = '';

On the WinXP box C:\rsyncd\rsyncd.conf

hosts allow = 192.168.1.10
use chroot = false
log file = c:/rsyncd/rsyncd.log
pid file = c:/rsyncd/rsyncd.pid
lock file = c:/rsyncd/rsyncd.lock
[cDrive]
path = /cygwin/c
comment = Entire C
strict modes = true
auth users = backuppc
secrets file = c:/rsyncd/rsyncd.secrets
read only = false
list = false

My results:
2006-08-24 08:09:57 full backup started for directory
cDrive
2006-08-24 08:09:58 Got fatal error during xfer (auth
failed on module cDrive)
2006-08-24 08:10:03 Backup aborted (auth failed on
module cDrive)

I have tried both forward and back slash on the XP box
config file with no luck.

Any other suggestions?




--- Guus Houtzager <[EMAIL PROTECTED]> wrote:

> On Wednesday 23 August 2006 03:30, Barry Robinson
> wrote:
> 
> [...]
> 
> > [docs]
> > path = c:/Documents and Settings
> > comment = Documents and Settings
> > strict modes = false
> > secrets file = c:/rsyncd/rsyncd.secrets
> > read only = true
> > list = false
> >
> > [cDrive]
> > path = c:
> > comment = Entire Drive
> > auth users = backuppc
> > secrets file = c:/rsyncd/rsyncd.secrets
> > hosts allow = 192.168.1.10
> > strict modes = false
> > read only = true
> > list = false
> 
> [...]
> 
> > 2006-08-22 21:33:23 full backup started for
> directory
> > docs
> > 2006-08-22 21:33:23 Got fatal error during xfer
> (auth
> > required, but service docs is open/insecure)
> > 2006-08-22 21:33:28 Backup aborted (auth required,
> but
> > service docs is open/insecure)
> 
> Look closely at the [docs] entry, you're missing an
> 'auth users = ...' line :)
> Also check the syntax for path as somebody else
> said, because what you have 
> will probably not work:
> # Remember cygwin naming conventions : c:\work
> becomes /cygwin/c/work
> The spaces in Documents and Settings will work just
> fine.
> And if your rsyncd.conf is in the same directory as
> your rsyncd.secrets, then
> secrets file = rsyncd.secrets
> will also work.
> You can also place common lines for all modules in
> the global part of 
> rsyncd.conf (just put them at the top of the file),
> like the hosts allow 
> line, which will make it less likely to forget
> something.
> 
> > What am I doing wrong?  I am tired of reading
> endless
> > pages of dead ends and not finding any answers.
> > I hope one of you can disect my problem and shed
> some
> > light on this for me.
> 
> Hth!
> 
> > Thanks
> 
> Regards,
> 
> Guus
> 
>
-
> 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/
> 


†††

Hosea 4:6
my people are destroyed from lack of knowledge.

Galatians 5:1
It is for freedom that Christ has set us free.

Romans 10:9 
That if you confess with your mouth, "Jesus is Lord," and believe in your heart 
that God raised him from the dead, you will be saved.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-23 Thread Guus Houtzager
On Wednesday 23 August 2006 03:30, Barry Robinson wrote:

[...]

> [docs]
> path = c:/Documents and Settings
> comment = Documents and Settings
> strict modes = false
> secrets file = c:/rsyncd/rsyncd.secrets
> read only = true
> list = false
>
> [cDrive]
> path = c:
> comment = Entire Drive
> auth users = backuppc
> secrets file = c:/rsyncd/rsyncd.secrets
> hosts allow = 192.168.1.10
> strict modes = false
> read only = true
> list = false

[...]

> 2006-08-22 21:33:23 full backup started for directory
> docs
> 2006-08-22 21:33:23 Got fatal error during xfer (auth
> required, but service docs is open/insecure)
> 2006-08-22 21:33:28 Backup aborted (auth required, but
> service docs is open/insecure)

Look closely at the [docs] entry, you're missing an 'auth users = ...' line :)
Also check the syntax for path as somebody else said, because what you have 
will probably not work:
# Remember cygwin naming conventions : c:\work becomes /cygwin/c/work
The spaces in Documents and Settings will work just fine.
And if your rsyncd.conf is in the same directory as your rsyncd.secrets, then
secrets file = rsyncd.secrets
will also work.
You can also place common lines for all modules in the global part of 
rsyncd.conf (just put them at the top of the file), like the hosts allow 
line, which will make it less likely to forget something.

> What am I doing wrong?  I am tired of reading endless
> pages of dead ends and not finding any answers.
> I hope one of you can disect my problem and shed some
> light on this for me.

Hth!

> Thanks

Regards,

Guus

-
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/


Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-22 Thread lachlan . simpson



Hi,


http://packages.ubuntu.com/dapper/utils/backuppc shows it to be


backuppc (2.1.2-2ubuntu5)


I found this by typing "ubuntu dapper backuppc" into google ;) - remember, google is your
friend


Your other problem is that the path should look like this:


 [cDrive]
 path = /cygdrive/c
 comment = Entire Drive
 auth users = backuppc
 secrets file = c:/rsyncd/rsyncd.secrets
 hosts allow = 192.168.1.10


I'm not sure on the syntax of 


path = cygdrive/c/Documents and Settings


because of the spaces - but I'm sure that should work as well?


Cheers


L.


On 22 Aug 2006 at 18:30, Barry Robinson wrote:


> As I am totally lost now I decided to start over and
> make this simple using the generics.
> 
> I am running Ubuntu Dapper 6.06 and got backuppc from
> the package manager (dont know the version, how do I
> find it?)
> 
> I have the backuppc user in the administrators group
> and the rsyncd.secrets file shows that user and
> password.  The rsyncd.conf file on the XP box is
> standard from the download of http://rsync.samba.org/
> .
> 
> use chroot = false
> log file = c:/rsyncd/rsyncd.log
> pid file = c:/rsyncd/rsyncd.pid
> lock file = c:/rsyncd/rsyncd.lock
> [docs]
> path = c:/Documents and Settings  
> comment = Documents and Settings
> strict modes = false    
> secrets file = c:/rsyncd/rsyncd.secrets
> read >
> list = false
> 
> [cDrive]
> path = c:
> comment = Entire Drive
> auth users = backuppc
> secrets file = c:/rsyncd/rsyncd.secrets
> hosts allow = 192.168.1.10
> strict modes = false
> read >
> list = false
> 
> 
> 
> I have a pc config file that looks like this:
> 
> $Conf{XferMethod} = 'rsyncd';
> $Conf{RsyncShareName} = ['docs'];
> $Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
> Settings'];
> 
> When I run a full backup I get this:
> 
> 2006-08-22 21:33:23 full backup started for directory
> docs
> 2006-08-22 21:33:23 Got fatal error during xfer (auth
> required, but service docs is open/insecure)
> 2006-08-22 21:33:28 Backup aborted (auth required, but
> service docs is open/insecure)
> 
> What am I doing wrong?  I am tired of reading endless
> pages of dead ends and not finding any answers.
> I hope one of you can disect my problem and shed some
> light on this for me.  
> 
> Thanks
> 
> 
> --- "Justin R. Pessa" <[EMAIL PROTECTED]> wrote:
> 
> > On Mon, 2006-08-21 at 06:56 -0700, Barry Robinson
> > wrote:
> > > Hello list,
> > > 
> > > I have successfully backed up my WinXP boxes with
> > SMB
> > > but now would like to use Rsyncd due to the
> > ability to
> > > backup changed files.  (Thats half the reason for
> > a
> > > backup isnt it?)
> > > 
> > > No where can I find exactly how to do this.  I got
> > the
> > > Rsyncd cgwin files and the service is running on
> > the
> > > XP box.  Now how do I set it up to back up the
> > entire
> > > C: and D: drives with the exclude options?  
> > 
> > I use cwrsync from ITeF!x, see:
> > http://www.itefix.no/cwrsync/
> > 
> > > Do I have to share out the C: and D: drives?  Do I
> > > have to have a config.pl for the XP box on the
> > > backuppc server or does the rsyncd.config do the
> > > trick?
> > 
> > No need to share, since you'll be using rsync. You
> > simply configure an
> > rsyncd.conf file for the client. 
> > 
> > > 
> > > Any detailed documentation would be outstanding!
> > > 
> > > Thanks
> > > 
> > > †††
> > > 
> > > Hosea 4:6
> > > my people are destroyed from lack of knowledge.
> > > 
> > > Galatians 5:1
> > > It is for freedom that Christ has set us free.
> > > 
> > > Romans 10:9 
> > > That if you confess with your mouth, "Jesus is
> > Lord," and believe in your heart that God raised him
> > from the dead, you will be saved.
> > > 
> > > 
> > > 
> > > __
> > > Do You Yahoo!?
> > > Tired of spam?  Yahoo! Mail has the best spam
> > protection around 
> > > http://mail.yahoo.com 
> > > 
> > >
> >
> 
> -
> > > 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=12
> 1642
> > > ___
> > > BackupPC-users mailing list
> > > BackupPC-users@lists.sourceforge.net
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/backuppc-users
> > > http://backuppc.sourceforge.net/
> > -- 
> > - Justin R. Pessa
> > 
> > .- `.   Brontes Technologies Inc. | tel: (781)
> > 541-5248
> > |`.- |  10 Maguire Road, Ste. 310 | www:
> > http://www.brontes3d.com 
> > `.|.-'  Lexington, Ma. 02421  | irc:
> > irc.freenode.net | asdf_ on ##freebsd
> > 
> > 
> 

Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-22 Thread Barry Robinson
As I am totally lost now I decided to start over and
make this simple using the generics.

I am running Ubuntu Dapper 6.06 and got backuppc from
the package manager (dont know the version, how do I
find it?)

I have the backuppc user in the administrators group
and the rsyncd.secrets file shows that user and
password.  The rsyncd.conf file on the XP box is
standard from the download of http://rsync.samba.org/
.

use chroot = false
log file = c:/rsyncd/rsyncd.log
pid file = c:/rsyncd/rsyncd.pid
lock file = c:/rsyncd/rsyncd.lock
[docs]
path = c:/Documents and Settings  
comment = Documents and Settings
strict modes = false
secrets file = c:/rsyncd/rsyncd.secrets
read only = true
list = false

[cDrive]
path = c:
comment = Entire Drive
auth users = backuppc
secrets file = c:/rsyncd/rsyncd.secrets
hosts allow = 192.168.1.10
strict modes = false
read only = true
list = false



I have a pc config file that looks like this:

$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncShareName} = ['docs'];
$Conf{BackupFilesOnly} = ['/rsyncd', '/Documents and
Settings'];

When I run a full backup I get this:

2006-08-22 21:33:23 full backup started for directory
docs
2006-08-22 21:33:23 Got fatal error during xfer (auth
required, but service docs is open/insecure)
2006-08-22 21:33:28 Backup aborted (auth required, but
service docs is open/insecure)

What am I doing wrong?  I am tired of reading endless
pages of dead ends and not finding any answers.
I hope one of you can disect my problem and shed some
light on this for me.  

Thanks


--- "Justin R. Pessa" <[EMAIL PROTECTED]> wrote:

> On Mon, 2006-08-21 at 06:56 -0700, Barry Robinson
> wrote:
> > Hello list,
> > 
> > I have successfully backed up my WinXP boxes with
> SMB
> > but now would like to use Rsyncd due to the
> ability to
> > backup changed files.  (Thats half the reason for
> a
> > backup isnt it?)
> > 
> > No where can I find exactly how to do this.  I got
> the
> > Rsyncd cgwin files and the service is running on
> the
> > XP box.  Now how do I set it up to back up the
> entire
> > C: and D: drives with the exclude options?  
> 
> I use cwrsync from ITeF!x, see:
> http://www.itefix.no/cwrsync/
> 
> > Do I have to share out the C: and D: drives?  Do I
> > have to have a config.pl for the XP box on the
> > backuppc server or does the rsyncd.config do the
> > trick?
> 
> No need to share, since you'll be using rsync. You
> simply configure an
> rsyncd.conf file for the client. 
> 
> > 
> > Any detailed documentation would be outstanding!
> > 
> > Thanks
> > 
> > †††
> > 
> > Hosea 4:6
> > my people are destroyed from lack of knowledge.
> > 
> > Galatians 5:1
> > It is for freedom that Christ has set us free.
> > 
> > Romans 10:9 
> > That if you confess with your mouth, "Jesus is
> Lord," and believe in your heart that God raised him
> from the dead, you will be saved.
> > 
> > 
> > 
> > __
> > Do You Yahoo!?
> > Tired of spam?  Yahoo! Mail has the best spam
> protection around 
> > http://mail.yahoo.com 
> > 
> >
>
-
> > 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/
> -- 
> - Justin R. Pessa
> 
> .- `.   Brontes Technologies Inc. | tel: (781)
> 541-5248
> |`.- |  10 Maguire Road, Ste. 310 | www:
> http://www.brontes3d.com 
> `.|.-'  Lexington, Ma. 02421  | irc:
> irc.freenode.net | asdf_ on ##freebsd
> 
> 


†††

Hosea 4:6
my people are destroyed from lack of knowledge.

Galatians 5:1
It is for freedom that Christ has set us free.

Romans 10:9 
That if you confess with your mouth, "Jesus is Lord," and believe in your heart 
that God raised him from the dead, you will be saved.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
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
__

Re: [BackupPC-users] Rsyncd on Windows XP

2006-08-21 Thread Justin R. Pessa
On Mon, 2006-08-21 at 06:56 -0700, Barry Robinson wrote:
> Hello list,
> 
> I have successfully backed up my WinXP boxes with SMB
> but now would like to use Rsyncd due to the ability to
> backup changed files.  (Thats half the reason for a
> backup isnt it?)
> 
> No where can I find exactly how to do this.  I got the
> Rsyncd cgwin files and the service is running on the
> XP box.  Now how do I set it up to back up the entire
> C: and D: drives with the exclude options?  

I use cwrsync from ITeF!x, see: http://www.itefix.no/cwrsync/

> Do I have to share out the C: and D: drives?  Do I
> have to have a config.pl for the XP box on the
> backuppc server or does the rsyncd.config do the
> trick?

No need to share, since you'll be using rsync. You simply configure an
rsyncd.conf file for the client. 

> 
> Any detailed documentation would be outstanding!
> 
> Thanks
> 
> †††
> 
> Hosea 4:6
> my people are destroyed from lack of knowledge.
> 
> Galatians 5:1
> It is for freedom that Christ has set us free.
> 
> Romans 10:9 
> That if you confess with your mouth, "Jesus is Lord," and believe in your 
> heart that God raised him from the dead, you will be saved.
> 
> 
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
> 
> -
> 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/
-- 
- Justin R. Pessa

.- `.   Brontes Technologies Inc. | tel: (781) 541-5248
|`.- |  10 Maguire Road, Ste. 310 | www: http://www.brontes3d.com 
`.|.-'  Lexington, Ma. 02421  | irc: irc.freenode.net | asdf_ on ##freebsd


-
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/


[BackupPC-users] Rsyncd on Windows XP

2006-08-21 Thread Barry Robinson
Hello list,

I have successfully backed up my WinXP boxes with SMB
but now would like to use Rsyncd due to the ability to
backup changed files.  (Thats half the reason for a
backup isnt it?)

No where can I find exactly how to do this.  I got the
Rsyncd cgwin files and the service is running on the
XP box.  Now how do I set it up to back up the entire
C: and D: drives with the exclude options?  

Do I have to share out the C: and D: drives?  Do I
have to have a config.pl for the XP box on the
backuppc server or does the rsyncd.config do the
trick?

Any detailed documentation would be outstanding!

Thanks

†††

Hosea 4:6
my people are destroyed from lack of knowledge.

Galatians 5:1
It is for freedom that Christ has set us free.

Romans 10:9 
That if you confess with your mouth, "Jesus is Lord," and believe in your heart 
that God raised him from the dead, you will be saved.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
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/