[BackupPC-users] backuppc hangs when restoring folder with large amount of subdirs and content

2015-03-03 Thread Arjen Klaverstijn
Hello,

I'm trying to restore a backup folder from an Ubuntu server to a windows 7
pc with cygwin/rsyncd the restore hangs. When I restore a subfolder with a
small amount of content it recovers fine, but when I restore the entire
folder it just hangs on the smallest file, there is no pattern and
debugging is hard because it just hangs on a file, being busy but not
failing. when i 'watch' lsof i can see the file it hangs at, that's it.
Could it be because of filepaths that are to long because of the amount of
subdirs? I hope someone can help! I know my backup is there, but restoring
all the dirs separately is an impossible job!


Arjen
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] What files are in incremental

2015-03-03 Thread Gerald Brandt
On 2015-03-02 8:15 AM, Gerald Brandt wrote:
 Hi,

 Is there a way to tell what files are changed in an incremental backup?
 From what I can see, the XFERLog shows all files.

 Gerald

Any ideas?

Gerald


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] What files are in incremental

2015-03-03 Thread Les Mikesell
On Tue, Mar 3, 2015 at 9:43 AM, Gerald Brandt g...@majentis.com wrote:
 On 2015-03-02 8:15 AM, Gerald Brandt wrote:
 Hi,

 Is there a way to tell what files are changed in an incremental backup?
 From what I can see, the XFERLog shows all files.

 Gerald

 Any ideas?

If the xferlog entry says 'same' it was an rsync xfer where the file
was detected to be unchanged and not transferred.   If it says 'pool'
it was matched after the xfer with an existing pooled copy and linked
(but in this case the content match does not have to be from the same
target file).  Directories are always created.  Files that say created
are new.

-- 
   Les Mikesell
lesmikes...@gmail.com

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] backuppc hangs when restoring folder with large amount of subdirs and content

2015-03-03 Thread Michael Stowe
On 2015-03-03 09:07, Arjen Klaverstijn wrote:
 Hello,
 
 I'm trying to restore a backup folder from an Ubuntu server to a
 windows 7 pc with cygwin/rsyncd the restore hangs. When I restore a
 subfolder with a small amount of content it recovers fine, but when I
 restore the entire folder it just hangs on the smallest file, there is
 no pattern and debugging is hard because it just hangs on a file,
 being busy but not failing. when i 'watch' lsof i can see the file it
 hangs at, that's it. Could it be because of filepaths that are to long
 because of the amount of subdirs? I hope someone can help! I know my
 backup is there, but restoring all the dirs separately is an
 impossible job!
 
 Arjen

One thing to keep in mind is that Windows file semantics will prevent 
restoration of open files; rsync will generally just wait for the file 
to no longer be open, which will never happen.

You can always restore the files using some other method (zip, tar) if 
this is the case, but (of course) you won't be able to put them in place 
until the files are closed (this can be accomplished using the recovery 
console for files which are *never* closed, such as the registry.

Since you're using lsof, it seems as if you're diagnosing the wrong end. 
  What's happening at the Windows end?

At any rate, other things that can cause this behavior:
* Lack of permission
* NTFS corruption
* Junctions
* Character encoding mismatches
* Anti-virus software
* buggy versions of rsync
* not waiting long enough

That's probably not an exhaustive list.  Sure, lots of folders might 
make the list, but I'd think that would [also] cause a problem backing 
up the files in the first place.

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] What files are in incremental

2015-03-03 Thread Gerald Brandt
On 2015-03-03 10:35 AM, Les Mikesell wrote:
 On Tue, Mar 3, 2015 at 9:43 AM, Gerald Brandt g...@majentis.com wrote:
 On 2015-03-02 8:15 AM, Gerald Brandt wrote:
 Hi,

 Is there a way to tell what files are changed in an incremental backup?
 From what I can see, the XFERLog shows all files.

 Gerald

 Any ideas?
 If the xferlog entry says 'same' it was an rsync xfer where the file
 was detected to be unchanged and not transferred.   If it says 'pool'
 it was matched after the xfer with an existing pooled copy and linked
 (but in this case the content match does not have to be from the same
 target file).  Directories are always created.  Files that say created
 are new.

Thanks.  Don't know how I missed that.


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] Rsyncd user and password field gets confused as a login form

2015-03-03 Thread Marko Doda
When configuring an rsyncd host with the username being the same as the
backuppc cgi user that is saved the browser autofills the password that is
used for the cgi interface, you can delete it and write your own but
pressing save saves the autofilled password.
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Rsyncd user and password field gets confused as a login form

2015-03-03 Thread Marko Doda
Actually the issue is that the browser saves from data from rsyncd user and
pass fields as page login information. Is this a bug?

On Tue, Mar 3, 2015 at 10:06 PM, Marko Doda ma...@lugola.net wrote:

 When configuring an rsyncd host with the username being the same as the
 backuppc cgi user that is saved the browser autofills the password that is
 used for the cgi interface, you can delete it and write your own but
 pressing save saves the autofilled password.

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Rsyncd user and password field gets confused as a login form

2015-03-03 Thread Les Mikesell
On Tue, Mar 3, 2015 at 3:16 PM, Marko Doda ma...@lugola.net wrote:
 Actually the issue is that the browser saves from data from rsyncd user and
 pass fields as page login information. Is this a bug?

Browsers will pre-populate credentials with what they have cached for
the same authentication domain (Apache''s 'AuthName' setting), if you
previously said to save it.   I don't understand why you would have
used those credentials in that context or saved them, though.

-- 
   Les Mikesell
lesmikes...@gmail.com

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Rsyncd user and password field gets confused as a login form

2015-03-03 Thread Marko Doda
I accidentally saved the credentials for rsync, isn't it better to turn off
the save password dialog for rsync credentials?

On Tue, Mar 3, 2015 at 11:14 PM, Les Mikesell lesmikes...@gmail.com wrote:

 On Tue, Mar 3, 2015 at 3:16 PM, Marko Doda ma...@lugola.net wrote:
  Actually the issue is that the browser saves from data from rsyncd user
 and
  pass fields as page login information. Is this a bug?

 Browsers will pre-populate credentials with what they have cached for
 the same authentication domain (Apache''s 'AuthName' setting), if you
 previously said to save it.   I don't understand why you would have
 used those credentials in that context or saved them, though.

 --
Les Mikesell
 lesmikes...@gmail.com


 --
 Dive into the World of Parallel Programming The Go Parallel Website,
 sponsored
 by Intel and developed in partnership with Slashdot Media, is your hub for
 all
 things parallel software development, from weekly thought leadership blogs
 to
 news, videos, case studies, tutorials and more. Take a look and join the
 conversation now. http://goparallel.sourceforge.net/
 ___
 BackupPC-users mailing list
 BackupPC-users@lists.sourceforge.net
 List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
 Wiki:http://backuppc.wiki.sourceforge.net
 Project: http://backuppc.sourceforge.net/

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] Rsyncd user and password field gets confused as a login form

2015-03-03 Thread Les Mikesell
On Tue, Mar 3, 2015 at 4:53 PM, Marko Doda ma...@lugola.net wrote:
 I accidentally saved the credentials for rsync, isn't it better to turn off
 the save password dialog for rsync credentials?

That part is done by the client browser - which should also have a way
to clear saved passwords.

-- 
   Les Mikesell
   lesmikes...@gmail.com

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/