Re: [BackupPC-users] smbclient tar problem with umlauts

2016-07-25 Thread Orazio Di nino

Now., and it works !!!.
Thank you all
Orazio

Il 25/07/2016 11:53, Alexander Moisseev ha scritto:

Did you set


--

TecnoSistemi S.r.l.
Servizi informatici per Aziende e Studi

Orazio Di nino

Viale della Repubblica, 70 c/o Sviluppo Italia - 67039 Sulmona (AQ)
( Tel: 800194055 +39 0864 2508313  +39 0864 578509  7 Fax: +39 0864 2508312

--
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports.http://sdm.link/zohodev2dev___
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] smbclient tar problem with umlauts

2016-07-25 Thread Alexander Moisseev
On 25.07.16 12:31, Orazio Di nino wrote:
> Hi Neymar , and thanks for the reply.
> I replaced the SMB file you sent me, but it does not solve. there is always 
> the error "No files dumped for share .".
> Do you have any other idea?

Did you set
$Conf{BackupZeroFilesIsFatal} = 0;


--
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports.http://sdm.link/zohodev2dev
___
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] smbclient tar problem with umlauts

2016-07-25 Thread Orazio Di nino

Hi Neymar , and thanks for the reply.
I replaced the SMB file you sent me, but it does not solve. there is 
always the error "No files dumped for share .".

Do you have any other idea?
Thank you.

Orazio


Il 22/07/2016 14:26, Neimar Volpini ha scritto:


Hi Orazio, that patch looks old ... some of the corrections were 
already applied in 3.3.1, attached my Smb.pm with the corrections that 
make backups work for the same samba and backuppc version as yours, 
replace it (backup first, of course) and give it a try.


The two lines that matter...

233 } elsif ( /^\s*tar: dumped \d+ files/
234|| /Total bytes received: \d+/i

Neimar


--
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports.http://sdm.link/zohodev2dev___
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] smbclient tar problem with umlauts

2016-07-22 Thread Neimar Volpini
Hi Orazio, that patch looks old ... some of the corrections were already 
applied in 3.3.1, attached my Smb.pm with the corrections that make 
backups work for the same samba and backuppc version as yours, replace 
it (backup first, of course) and give it a try.


The two lines that matter...

233 } elsif ( /^\s*tar: dumped \d+ files/
234|| /Total bytes received: \d+/i

Neimar

Em 22/07/2016 04:06, Orazio Di nino escreveu:


Hello,

I'm not very experienced, how do I apply the patch? My version of 
Samba is 4.3.9, and 3.3.1 backuppc.

thank you
Orazio


Il 05/07/2016 18:21, Oliver Freyd ha scritto:

Hello,

here's the patch to make smbclient 4.2.10 work with backuppc:

diff -u Backuppc3.2.1/lib/BackupPC/Xfer/Smb.pm
BackupPC3/lib/BackupPC/Xfer/Smb.pm
--- Backuppc3.2.1/lib/BackupPC/Xfer/Smb.pm  2012-11-09
18:37:14.0 +0100
+++ BackupPC3/lib/BackupPC/Xfer/Smb.pm  2016-07-01 13:56:10.162250854 +0200
@@ -230,7 +230,9 @@
   $t->{byteCnt} += $2;
   $t->{fileCnt}++;
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 1 );
-} elsif ( /^\s*tar: dumped \d+ files/ ) {
+} elsif ( /^\s*tar: dumped \d+ files/
+ || /Total bytes received: \d+/i
+) {
   $t->{xferOK} = 1;
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
   } elsif ( /^\s*tar: restored \d+ files/ ) {
@@ -239,7 +241,7 @@
   } elsif ( /^\s*read_socket_with_timeout: timeout read. /i ) {
   $t->{hostAbort} = 1;
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
-} elsif ( /^code 0 listing /
+} elsif ( /^code 0 listing /
   || /^\s*code 0 opening /
   || /^\s*abandoning restore/i
   || /^\s*Error: Looping in FIND_NEXT/i
@@ -270,6 +272,7 @@
   } elsif ( /^\s*directory \\/i ) {
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 2 );
   } elsif ( /smb: \\>/
+|| /^\s*tar:\d+/
   || /^\s*added interface/i
   || /^\s*tarmode is now/i
   || /^\s*Total bytes written/i

As you see The first chunk accept the message "total bytes received"
as success, the last chunk ignores the other messages that start with
"tar:linenumber".

Sadly smbclient does no more send the number of files transmitted, so
one has to put
$Conf{BackupZeroFilesIsFatal} = 0;
into the config and live without this check.

That's it for now,

Oliver


Am 02.07.2016 um 18:08 schrieb megaram:

Could you please link how to patch the smb.pm ?

+--
|This was sent bym...@megaram-group.de  via Backup Central.
|Forward SPAM toab...@backupcentral.com.
+--



--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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/


--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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/


--

TecnoSistemi S.r.l.
Servizi informatici per Aziende e Studi

Orazio Di nino

Viale della Repubblica, 70 c/o Sviluppo Italia - 67039 Sulmona (AQ)
( Tel: 800194055 +39 0864 2508313  +39 0864 578509  7 Fax: +39 0864 2508312


--
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are
consuming the most bandwidth. Provides multi-vendor support for NetFlow,
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports.http://sdm.link/zohodev2dev


___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:

Re: [BackupPC-users] smbclient tar problem with umlauts

2016-07-22 Thread Orazio Di nino

Hello,

I'm not very experienced, how do I apply the patch? My version of Samba 
is 4.3.9, and 3.3.1 backuppc.

thank you
Orazio


Il 05/07/2016 18:21, Oliver Freyd ha scritto:

Hello,

here's the patch to make smbclient 4.2.10 work with backuppc:

diff -u Backuppc3.2.1/lib/BackupPC/Xfer/Smb.pm
BackupPC3/lib/BackupPC/Xfer/Smb.pm
--- Backuppc3.2.1/lib/BackupPC/Xfer/Smb.pm  2012-11-09
18:37:14.0 +0100
+++ BackupPC3/lib/BackupPC/Xfer/Smb.pm  2016-07-01 13:56:10.162250854 +0200
@@ -230,7 +230,9 @@
   $t->{byteCnt} += $2;
   $t->{fileCnt}++;
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 1 );
-} elsif ( /^\s*tar: dumped \d+ files/ ) {
+} elsif ( /^\s*tar: dumped \d+ files/
+ || /Total bytes received: \d+/i
+) {
   $t->{xferOK} = 1;
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
   } elsif ( /^\s*tar: restored \d+ files/ ) {
@@ -239,7 +241,7 @@
   } elsif ( /^\s*read_socket_with_timeout: timeout read. /i ) {
   $t->{hostAbort} = 1;
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
-} elsif ( /^code 0 listing /
+} elsif ( /^code 0 listing /
   || /^\s*code 0 opening /
   || /^\s*abandoning restore/i
   || /^\s*Error: Looping in FIND_NEXT/i
@@ -270,6 +272,7 @@
   } elsif ( /^\s*directory \\/i ) {
   $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 2 );
   } elsif ( /smb: \\>/
+|| /^\s*tar:\d+/
   || /^\s*added interface/i
   || /^\s*tarmode is now/i
   || /^\s*Total bytes written/i

As you see The first chunk accept the message "total bytes received"
as success, the last chunk ignores the other messages that start with
"tar:linenumber".

Sadly smbclient does no more send the number of files transmitted, so
one has to put
$Conf{BackupZeroFilesIsFatal} = 0;
into the config and live without this check.

That's it for now,

Oliver


Am 02.07.2016 um 18:08 schrieb megaram:

Could you please link how to patch the smb.pm ?

+--
|This was sent by m...@megaram-group.de via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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/


--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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/


--

TecnoSistemi S.r.l.
Servizi informatici per Aziende e Studi

Orazio Di nino

Viale della Repubblica, 70 c/o Sviluppo Italia - 67039 Sulmona (AQ)
( Tel: 800194055 +39 0864 2508313  +39 0864 578509  7 Fax: +39 0864 2508312

--
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports.http://sdm.link/zohodev2dev___
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] smbclient tar problem with umlauts

2016-07-05 Thread Oliver Freyd
Hello,

here's the patch to make smbclient 4.2.10 work with backuppc:

diff -u Backuppc3.2.1/lib/BackupPC/Xfer/Smb.pm 
BackupPC3/lib/BackupPC/Xfer/Smb.pm
--- Backuppc3.2.1/lib/BackupPC/Xfer/Smb.pm  2012-11-09 
18:37:14.0 +0100
+++ BackupPC3/lib/BackupPC/Xfer/Smb.pm  2016-07-01 13:56:10.162250854 +0200
@@ -230,7 +230,9 @@
  $t->{byteCnt} += $2;
  $t->{fileCnt}++;
  $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 1 );
-} elsif ( /^\s*tar: dumped \d+ files/ ) {
+} elsif ( /^\s*tar: dumped \d+ files/
+ || /Total bytes received: \d+/i
+) {
  $t->{xferOK} = 1;
  $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
  } elsif ( /^\s*tar: restored \d+ files/ ) {
@@ -239,7 +241,7 @@
  } elsif ( /^\s*read_socket_with_timeout: timeout read. /i ) {
  $t->{hostAbort} = 1;
  $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
-} elsif ( /^code 0 listing /
+} elsif ( /^code 0 listing /
  || /^\s*code 0 opening /
  || /^\s*abandoning restore/i
  || /^\s*Error: Looping in FIND_NEXT/i
@@ -270,6 +272,7 @@
  } elsif ( /^\s*directory \\/i ) {
  $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 2 );
  } elsif ( /smb: \\>/
+|| /^\s*tar:\d+/
  || /^\s*added interface/i
  || /^\s*tarmode is now/i
  || /^\s*Total bytes written/i

As you see The first chunk accept the message "total bytes received"
as success, the last chunk ignores the other messages that start with 
"tar:linenumber".

Sadly smbclient does no more send the number of files transmitted, so
one has to put
$Conf{BackupZeroFilesIsFatal} = 0;
into the config and live without this check.

That's it for now,

Oliver


Am 02.07.2016 um 18:08 schrieb megaram:
> Could you please link how to patch the smb.pm ?
>
> +--
> |This was sent by m...@megaram-group.de via Backup Central.
> |Forward SPAM to ab...@backupcentral.com.
> +--
>
>
>
> --
> Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
> Francisco, CA to explore cutting-edge tech and listen to tech luminaries
> present their vision of the future. This family event has something for
> everyone, including kids. Get more information and register today.
> http://sdm.link/attshape
> ___
> 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/
>

--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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] smbclient tar problem with umlauts

2016-07-02 Thread megaram
Could you please link how to patch the smb.pm ?

+--
|This was sent by m...@megaram-group.de via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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] smbclient tar problem with umlauts

2016-06-30 Thread Oliver Freyd
I've found a way to fix this in samba 4.2.10,
the smbclient tar errors "can't convert filename ... to UTF-8" happen 
only if smbclient runs in a non-UTF8 locale, like the C locale.

I have LANG=en_US.UTF-8 in my shell, and smbclient works with umlauts in 
filenames. If I set LANG=C, it fails.

It seems this has to do with smbclient now using libarchive (since 4.2 
IMHO) to write a tar archive, the errors occur inside libarchive.

So after setting LANG=en_US.UTF-8 in /etc/init.d/backuppc startup 
script, it worked ok.

Well, I had to patch Smb.pm like someone else has described here...

Best regards,

Oliver Freyd

Am 27.04.2016 um 10:18 schrieb karlis:
> AFAIK no way to fix, only samba downgrade
>
> How to downgrade Samba to 4.1.6 using apt-get
> http://www.backupcentral.com/phpBB2/two-way-mirrors-of-external-mailing-lists-3/backuppc-21/issues-with-smb-shares-130329/#410878
>
> I had to uninstall samba and smbclient together with backuppc first, then 
> reinstall.
>
>
>
> --You wrote--
> Is there any other way to fix this in samba 4.8.3 the downgrading to 4.1.7 ?
> If not, then how to get samba 4.1.7 via apt.-get ?
>
> Best regards
> Michael Zeh
>
> +--
> |This was sent by karlis.irm...@limbazi.lv via Backup Central.
> |Forward SPAM to ab...@backupcentral.com.
> +--
>
>
>
> --
> Find and fix application performance issues faster with Applications Manager
> Applications Manager provides deep performance insights into multiple tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial!
> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
> ___
> 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/
>

--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
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] smbclient tar problem with umlauts

2016-04-27 Thread megaram
problem fixed via downgrade to 4.1.6  .
Thx all for help

best regards
Michael Zeh

+--
|This was sent by m...@megaram-group.de via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
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] smbclient tar problem with umlauts

2016-04-27 Thread karlis
AFAIK no way to fix, only samba downgrade

How to downgrade Samba to 4.1.6 using apt-get
http://www.backupcentral.com/phpBB2/two-way-mirrors-of-external-mailing-lists-3/backuppc-21/issues-with-smb-shares-130329/#410878

I had to uninstall samba and smbclient together with backuppc first, then 
reinstall.



--You wrote--
Is there any other way to fix this in samba 4.8.3 the downgrading to 4.1.7 ?
If not, then how to get samba 4.1.7 via apt.-get ?

Best regards
Michael Zeh

+--
|This was sent by karlis.irm...@limbazi.lv via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
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] smbclient tar problem with umlauts

2016-04-26 Thread megaram
looks like i have the same problem here.

ar:944  Fatal: Can't translate pathname 
'./09_Verwaltung/00_Allgemein/03_Rückenschilder/' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \09_Verwaltung\00_Allgemein\*
NT_STATUS_UNSUCCESSFUL listing \09_Verwaltung\01_Bk\04_Kreditoren\*
tar:944  Fatal: Can't translate pathname 
'./09_Verwaltung/01_Bk/08_Rückenschilder/' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \09_Verwaltung\01_Bk\*
tar:944  Fatal: Can't translate pathname './09_Verwaltung/2015-07-09 Logos alle 
für Firmengruppe Bk.jpg' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \09_Verwaltung\*
tar:944  Fatal: Can't translate pathname 
'./05_Service/00_Allgemein/Service-Gutscheine_Übersicht.xlsx' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \05_Service\00_Allgemein\*
tar:944  Fatal: Can't translate pathname './06_Elektro/Vorlagen/Logos/Stotz 
Netzwerk für TSV Weingarten.cdr' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \06_Elektro\Vorlagen\Logos\*
tar:944  Fatal: Can't translate pathname 
'./06_Elektro/Vorlagen/Formulare/Bürgschaft Herr 
(Vertragserfüllungsbürgschaft).doc' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \06_Elektro\Vorlagen\Formulare\*
tar:944  Fatal: Can't translate pathname 
'./06_Elektro/Themen/02_Referenzen/Grüner Weg Logos und Urkunde/' to UTF-8

Is there any other way to fix this in samba 4.8.3 the downgrading to 4.1.7 ?
If not, then how to get samba 4.1.7 via apt.-get ?

Best regards
Michael Zeh

+--
|This was sent by m...@megaram-group.de via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
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] smbclient tar problem with umlauts

2016-04-25 Thread karlis
I had similar problem. after Samba upgrade to 4.3.8. The main problem after 
upgrade was smb backups crashing, so I downgraded Samba to version 4.1.6, and 
UTF-8 problem is gone also.
--
Karlis

+--
|This was sent by karlis.irm...@limbazi.lv via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
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] smbclient tar problem with umlauts

2016-04-22 Thread Johannes König
Hi everybody,

since about one week, I have severe problems backing up our windows 2012 r2 
server and our synology running DSM 6.

Here's a log from the windows server 2012 r2:

Running: /usr/bin/smbclient .\\D\$ -U X -E -d 1 -c 
tarmode\ full -Tc - /Software
full backup started for share D$
Xfer PIDs are now 3686,3685
[ skipped 1 lines ]
tar:316  tarmode is now full, system, hidden, noreset, quiet
tar:943  Fatal: Can't translate pathname './Software/Fashion2000/Daten (X) - 
Verknüpfung.lnk' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \Software\Fashion2000\*
[ skipped 534 lines ]
tar:943  Fatal: Can't translate pathname './Software/windata/professional 
8/Daten/INI/ZahlungenÜbertragen.dxB' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \Software\windata\professional 8\Daten\INI\*
[ skipped 79 lines ]
tar:943  Fatal: Can't translate pathname './Software/windata/professional 
8/Daten/kontoumsätze.rpt' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \Software\windata\professional 8\Daten\*
[ skipped 91 lines ]
tar:943  Fatal: Can't translate pathname './Software/windata/professional 
8/kontoumsätze.rpt' to UTF-8
NT_STATUS_UNSUCCESSFUL listing \Software\windata\professional 8\*
tar:711  Total bytes received: 172001480
[ skipped 50 lines ]
tarExtract: Done: 0 errors, 724 filesExist, 170838104 sizeExist, 132601069 
sizeExistComp, 732 filesTotal, 172002063 sizeTotal
Got fatal error during xfer (No files dumped for share D$)
Backup aborted (No files dumped for share D$)
Not saving this as a partial backup since it has fewer files than the prior one 
(got 732 and 0 files versus 732)

As you can see, all files with umlauts cannot be backupped. I assume this has 
something to do with the samba upgrade to 4.2, which was discussed some days 
ago on the list.
The same error shows also when backing up the synology via smb.

Until one week ago, everything worked. I am using debian jessie as a basic 
system and I have automatic updates in place. The last successful update took 
place in April 13, 2016.

Is there anything I can do right now to solve the umlaut conversion problem or 
do I have to wait until backuppc is adjusted to the new samba version?

Best regards,
Johannes Koenig

--
Ebe und Co. GmbH
Werderstraße 9
88046 Friedrichshafen

Tel.: 07541 3884-30
Fax: 07541 3884-39
Web: http://www.ebe-fn.de

Geschäftsführerin: Irmgard König
Ust-IdNr.: DE145376120
Amtsgericht Ulm HRB 630789
Sitz des Unternehmens: Friedrichshafen
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
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/