[Bacula-users] HP Store Ever MSL 1/8 autocharger LTO-8

2024-03-02 Thread enrico.becche...@gmail.com
Dear all, I need to build a backup system and I would like to use Bacula.
My project involves an HP Store Ever MSL 1/8 library with an LTO-8 fiber
channel drive. The Bacula server will be an HP Proliant DL380 Gen8 running
Almalinux 8 or 9. My idea is to have automatic tape management with Bacula
sending the tape change command when needed, and the library identifying
the correct cartridge using the barcode. Do you think Bacula can handle all
of this with the hardware I have specified?
Thanks a lot
Best Regards
Enrico
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] HP Store Ever MSL 1/8 autocharger LTO-8

2024-03-02 Thread enrico.becche...@gmail.com
many thanks for these informations.
Best regards
Enrico

Il giorno dom 3 mar 2024 alle ore 03:23 Gary R. Schmidt <
g...@mcleod-schmidt.id.au> ha scritto:

> On 03/03/2024 03:50, enrico.becche...@gmail.com wrote:
> >
> > Dear all, I need to build a backup system and I would like to use
> > Bacula. My project involves an HP Store Ever MSL 1/8 library with an
> > LTO-8 fiber channel drive. The Bacula server will be an HP Proliant
> > DL380 Gen8 running Almalinux 8 or 9. My idea is to have automatic tape
> > management with Bacula sending the tape change command when needed, and
> > the library identifying the correct cartridge using the barcode. Do you
> > think Bacula can handle all of this with the hardware I have specified?
>
> Yes.  I have a previous version of that autoloader running an LTO06 tape
> drive.
>
> I had to set the timeouts to 30 seconds in mtx-changer.conf, and changed
> the mtx-changer script thus:
>
> ===
> wait_for_drive() {
>i=0
>while [ $i -le 300 ]; do  # Wait max 300 seconds
>  # grs, try once before checking...
>  mt -f $1 status > /dev/null 2>&1
>  if mt -f $1 status 2>&1 | grep "${ready}" >/dev/null 2>&1; then
>break
>  fi
>  debug $dbglvl "Device $1 - not ready, retrying..."
>  sleep 1
>  i=`expr $i + 1`
>done
> }
> ===
>
> And, in the "list)" command, I changed
> ===
> ##  cat ${TMPFILE} | grep " Storage Element [0-9]*:.*Full" | awk
> "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
> ## grs 20150529
>  cat ${TMPFILE} | grep " Storage Element [0-9].*:.*Full"| sed
> "s/.*Storage Element //" | sed "s? IMPORT/EXPORT??" | sed "s/Full
> :VolumeTag=//"
> ===
> To recognise the mail slot correctly.
>
> Be wary of line-wrapping in the above code.
>
> I haven't updated for a while, newer versions of mtx-changer may not
> need these changes.
>
> And the Python version may not either.
>
> Cheers,
> GaryB-)
>
>
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] HP Store Ever MSL 1/8 autocharger LTO-8

2024-03-03 Thread enrico.becche...@gmail.com
What do you think about MSL 2040 instead of MSL 1/8 ? Are there the same
autochager
capabilities ?
>From Bacula point of view is the same device ?
Bye
Enrico

Il giorno dom 3 mar 2024 alle ore 08:12 enrico.becche...@gmail.com <
enrico.becche...@gmail.com> ha scritto:

> many thanks for these informations.
> Best regards
> Enrico
>
> Il giorno dom 3 mar 2024 alle ore 03:23 Gary R. Schmidt <
> g...@mcleod-schmidt.id.au> ha scritto:
>
>> On 03/03/2024 03:50, enrico.becche...@gmail.com wrote:
>> >
>> > Dear all, I need to build a backup system and I would like to use
>> > Bacula. My project involves an HP Store Ever MSL 1/8 library with an
>> > LTO-8 fiber channel drive. The Bacula server will be an HP Proliant
>> > DL380 Gen8 running Almalinux 8 or 9. My idea is to have automatic tape
>> > management with Bacula sending the tape change command when needed, and
>> > the library identifying the correct cartridge using the barcode. Do you
>> > think Bacula can handle all of this with the hardware I have specified?
>>
>> Yes.  I have a previous version of that autoloader running an LTO06 tape
>> drive.
>>
>> I had to set the timeouts to 30 seconds in mtx-changer.conf, and changed
>> the mtx-changer script thus:
>>
>> ===
>> wait_for_drive() {
>>i=0
>>while [ $i -le 300 ]; do  # Wait max 300 seconds
>>  # grs, try once before checking...
>>  mt -f $1 status > /dev/null 2>&1
>>  if mt -f $1 status 2>&1 | grep "${ready}" >/dev/null 2>&1; then
>>break
>>  fi
>>  debug $dbglvl "Device $1 - not ready, retrying..."
>>  sleep 1
>>  i=`expr $i + 1`
>>done
>> }
>> ===
>>
>> And, in the "list)" command, I changed
>> ===
>> ##  cat ${TMPFILE} | grep " Storage Element [0-9]*:.*Full" | awk
>> "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
>> ## grs 20150529
>>  cat ${TMPFILE} | grep " Storage Element [0-9].*:.*Full"| sed
>> "s/.*Storage Element //" | sed "s? IMPORT/EXPORT??" | sed "s/Full
>> :VolumeTag=//"
>> ===
>> To recognise the mail slot correctly.
>>
>> Be wary of line-wrapping in the above code.
>>
>> I haven't updated for a while, newer versions of mtx-changer may not
>> need these changes.
>>
>> And the Python version may not either.
>>
>> Cheers,
>> GaryB-)
>>
>>
>> ___
>> Bacula-users mailing list
>> Bacula-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/bacula-users
>>
>
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula 15.0.2 and Baculum 11.0

2024-08-18 Thread enrico.becche...@gmail.com
Dear all,
Can you tell me if Baculum version 11.0 is compatible with Bacula 15.0.2 ?
Is there a newer version of Baculum ?
Thanks a lot
Best Regards
-Willy-
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Bacula 15.0.2 and Baculum 11.0

2024-08-18 Thread enrico.becche...@gmail.com
Dear Rob,
thanks for your reply.

I'll try Bacularis because it seems to be under development; it
has got a repository for RPM and DEB and is well documented.

Best Regards
-Willy-


Il giorno dom 18 ago 2024 alle ore 20:02 Rob Gerber  ha
scritto:

> Enrico,
>
> I don't know if baculum 11 is compatible with bacula 15.0.2. I suspect not.
>
> There is a newer version of baculum. It is available from the community
> repository, same as the other bacula project binaries.
>
> You could also look into bacularis, which is a friendly fork of baculum by
> one of the baculum developers. Bacularis aims to make management of bacula
> easier, and to promote bacula in general. Bacularis is what I use. The GUI
> is similar to Baculum, but some minor differences exist. I think you can
> have Bacularis and Baculum on the same system, but probably should not use
> both at the same time.
>
> Marcin Haba is the bacularis developer, and he is active on this mailing
> list.
>
> Robert Gerber
> 402-237-8692
> r...@craeon.net
>
> On Sun, Aug 18, 2024, 10:40 AM enrico.becche...@gmail.com <
> enrico.becche...@gmail.com> wrote:
>
>> Dear all,
>> Can you tell me if Baculum version 11.0 is compatible with Bacula 15.0.2 ?
>> Is there a newer version of Baculum ?
>> Thanks a lot
>> Best Regards
>> -Willy-
>> ___
>> Bacula-users mailing list
>> Bacula-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/bacula-users
>>
>
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Tar block size

2024-08-27 Thread enrico.becche...@gmail.com
Dear all,
 I've been using bacula v. 15.0.2 for a few weeks. I also installed
Bacularis v. 3.2. My server has a LTO8, this drive works much better if I
change the block size ("-b 512").
I would like to modify the bacula-sd.conf file like this:
Device {
...
ArchiveDevice = "/dev/nst1 -b 512"

}
What do you think?
Many thanks
-Willy-
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users