Re: [BackupPC-users] Deltacopy - Cant' backup subdir

2018-08-31 Thread Omar Speranza

Il 31/08/2018 18:31, Michael Stowe ha scritto:
In this case, however, your picture illustrates fairly well what 
happened — the “BackupFilesOnly” directory isn't associated with the 
rsyncsharename. You either need to add ‘*’ (to have it apply to all 
shares) or “MyShareTest” to have it apply to that one share.


IT WORKS! YOU ARE GREAT!

$Conf{BackupFilesOnly} = {
  '*' => [
'/photos',
'/docs'
  ]
};


Thank you!




--
Omar

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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] Deltacopy - Cant' backup subdir

2018-08-31 Thread Omar Speranza

Il 31/08/2018 18:31, Michael Stowe ha scritto:
Excellent — that helps quite a bit, though it would also help to see the 
“BackupFilesOnly” sections of your config.pl (if any) and the 
machine-specific config. One possibility is that there are updates to 
those files that don't show up on the web interface.

Is this?


$Conf{RsyncShareName} = [
  'MyShareTest'
];
$Conf{RsyncdPasswd} = 'mypasswd';
$Conf{RsyncdUserName} = 'omar';
$Conf{XferMethod} = 'rsyncd';
$Conf{RsyncArgs} = [
  '--numeric-ids',
  '--perms',
  '--owner',
  '--group',
  '-D',
  '--links',
  '--hard-links',
  '--times',
  '--block-size=2048',
  '--recursive'
];
$Conf{BackupFilesOnly} = {
  'MyShareTest/docs' => [
''
  ],
  'MyShareTest/photos' => [
''
  ]
};




--
Omar


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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] Deltacopy - Cant' backup subdir

2018-08-31 Thread Omar Speranza

Il 31/08/2018 18:31, Michael Stowe ha scritto:
Excellent — that helps quite a bit, though it would also help to see the 
“BackupFilesOnly” sections of your config.pl (if any) and the 
machine-specific config. One possibility is that there are updates to 
those files that don't show up on the web interface.


In this case, however, your picture illustrates fairly well what 
happened — the “BackupFilesOnly” directory isn't associated with the 
rsyncsharename. You either need to add ‘*’ (to have it apply to all 
shares) or “MyShareTest” to have it apply to that one share.


N.B.: this *should* also be clear in the machine-specific config


Thanks for you help

Actually "MyShareTest" point to a directory that contains various dirs 
and files

Like this https://c2n.me/3Wp0xxL

I would like to backup *only* /photos and /docs

Following your suggest I've put these "BackupFilesOnly" values
MyShareTest/docs
MyShareTest/photos
https://c2n.me/3Wp0Opt


But it copy all directory recursively :-(
https://c2n.me/3Wp0Iqi






--
Omar



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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] Deltacopy - Cant' backup subdir

2018-08-31 Thread Michael Stowe

On 2018-08-31 09:18, Omar Speranza wrote:

Il 31/08/2018 18:01, Michael Stowe ha scritto:
Of course, the usual way of doing this is to specify which directories 
you want to back up, in the web interface.



Thank you
Sorry for my english

In the web interface I've set the "BackupFilesOnly" parameter writing
"/photos" as directory of "MyShareTest"

But BackupPc backups *all* sharename "MyShareTest" and not only 
"photos"



Here is a screenshot with my parameters
https://u2182357.ct.sendgrid.net/wf/click?upn=rBK8reUlX8Sxr7Iz1fV-2F7TU5RmA9p08N47F1T88ruyg-3D_OypFYCWzG5ApGW-2FFpGTxc4RCS9eud0Dl1htN5rYoUZ8To4zeNUFBkAGI3hzer91CuTHF4XsCSatjFvPgFh8pn2d0ej55pwyN0jwQQREJPU0Vp1LdkNqTJC-2F9DLunLq1JqV7CAmS9xmXwmhqpUMWYqijTBvX2GDlqbiew9IZnRFNJ9AaKO7QvUehDkrxSLycjlKHT4UQPWlUVXgAiIxsW6RzQgxD5f6xWLYO8ZikcZdE-3D

And the result of backup :-(
https://u2182357.ct.sendgrid.net/wf/click?upn=rBK8reUlX8Sxr7Iz1fV-2F7R5IMfVmhbxOK525J6S9Odk-3D_OypFYCWzG5ApGW-2FFpGTxc4RCS9eud0Dl1htN5rYoUZ8To4zeNUFBkAGI3hzer91CuTHF4XsCSatjFvPgFh8pn60I5DO3PQzFu6VN1idhBeg0VO50oek-2B4nkh-2FdlLZirGZBg9DlBcQsXntF0X-2B-2FmVfSXUjzVQH7jzNTnAPGxJTj-2FZO5iy93oiyGiOcBhh4YmNvcwy1x1iINWlE-2B-2B2uw43-2FIFaL5wyWr3RUOmseo2L3Pg-3D


Excellent -- that helps quite a bit, though it would also help to see 
the "BackupFilesOnly" sections of your config.pl (if any) and the 
machine-specific config.  One possibility is that there are updates to 
those files that don't show up on the web interface.


In this case, however, your picture illustrates fairly well what 
happened -- the "BackupFilesOnly" directory isn't associated with the 
rsyncsharename.  You either need to add '*' (to have it apply to all 
shares) or "MyShareTest" to have it apply to that one share.


N.B.:  this *should* also be clear in the machine-specific config
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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] Deltacopy - Cant' backup subdir

2018-08-31 Thread Omar Speranza

Il 31/08/2018 18:01, Michael Stowe ha scritto:
Of course, the usual way of doing this is to specify which directories 
you want to back up, in the web interface.



Thank you
Sorry for my english

In the web interface I've set the "BackupFilesOnly" parameter writing 
"/photos" as directory of "MyShareTest"


But BackupPc backups *all* sharename "MyShareTest" and not only "photos"


Here is a screenshot with my parameters
https://c2n.me/3WoZesf

And the result of backup :-(
https://c2n.me/3WoZgel





--
Omar

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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] Deltacopy - Cant' backup subdir

2018-08-31 Thread Michael Stowe

On 2018-08-31 07:24, Omar Speranza wrote:

Hi,
I'd like to use backuppc to backup some subdir of C drive of my Windows 
PC.


I've installed DeltaCopy on Windows machine and I've created a
sharename called "DriveC" that points to C:\ path

On backuppc of my Linux server I've created RsyncD xfer profile with
user/pass of deltacopy share.

But seems that is not possibile to backup only certains subdir of
"DriveC" (ex: DriveC/Doc, DriveC/Photos)

I can only get *entire" share DriveC


Can you help me?


Of course, the usual way of doing this is to specify which directories 
you want to back up, in the web interface.  Since this is *really* 
straightforward, it's hard to provide reasonable advice without either 
asking questions that may seem insulting, or additional information.  
I'll try to avoid that by pointing out common questions you should 
answer when asking for help:


- What are you trying to accomplish?
- What have you tried?
- What was the result?
Also useful:
- What versions and operating systems are involved on each end?
- What are the relevant parts of your config.pl and [machine].pl?

This will avoid a barrage of questions which may not be helpful, such as 
"did you know there's a web interface?" and "do you know the difference 
between a directory and a module?"
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
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] Deltacopy - Cant' backup subdir

2018-08-31 Thread Omar Speranza

Hi,
I'd like to use backuppc to backup some subdir of C drive of my Windows PC.

I've installed DeltaCopy on Windows machine and I've created a sharename 
called "DriveC" that points to C:\ path


On backuppc of my Linux server I've created RsyncD xfer profile with 
user/pass of deltacopy share.


But seems that is not possibile to backup only certains subdir of 
"DriveC" (ex: DriveC/Doc, DriveC/Photos)


I can only get *entire" share DriveC


Can you help me?





--
Omar

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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/