Re: Backup program on FreeBSD for DLT drive

2009-01-23 Thread Frank Bonnet

Hi

The bakbone company sells a software called NETVAULT
if I remember well it works under FreeBSD



bsd wrote:

Yes,

This is probably the one I'll go for…
There is a good hack described in the O'Reilly BSD hacks to setup Bacula…

I'll consider this article as a starting point…



Thank you very much folks.


Le 23 janv. 09 à 04:21, Geoff Fritz a écrit :


On Thu, Jan 22, 2009 at 08:30:56PM +0100, bsd wrote:

Hello,


I am using a FreeBSD server 7.0 as a Samba server and wanted to backup
this server using Quantum DLT tape.

I would need a simple tool that could be configured rapidl at that's
stable enough to provide high security for the data.
Ideally any good pointer to a howto would be a must!


I've had success with Bacula for a small office file server (FreeBSD) and
Windows clients clients.  It supports SSL for the data transfer (if the
client and server are not the same machine), as well as data encryption:

http://www.bacula.org/en/dev-manual/Data_Encryption.html

I haven't used the encryption myself.  Bacula has a bit of a learning 
curve
to set up corretly, but I really enjoy its use once it it set up 
correctly.


-- Geoff



Gregober --- PGP ID -- 0x1BA3C2FD
bsd @at@ todoo.biz


P Please consider your environmental responsibility before printing 
this e-mail



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
freebsd-questions-unsubscr...@freebsd.org



--
Cordialement
Frank Bonnet
ESIEE Paris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Backup program on FreeBSD for DLT drive

2009-01-23 Thread Odhiambo Washington
On Thu, Jan 22, 2009 at 10:30 PM, bsd b...@todoo.biz wrote:

 Hello,


 I am using a FreeBSD server 7.0 as a Samba server and wanted to backup this
 server using Quantum DLT tape.


less /scripts/backup2tape.sh
#!/bin/sh
  TARGET=/dev/nsa0
# FILESYSTEMS=/:/var:/usr
  FILESYSTEMS=/
  DUMPLEVEL=0
  DUMPOPTIONS=auL
  MTACTION=rewind

  MT=/usr/bin/mt
  SED=/usr/bin/sed
  DUMP=/sbin/dump

#Rewind the tape
  echo ${MT} ${MTACTION}
  ${MT} ${MTACTION}
#Do the dump for each file system
  for i in `echo $FILESYSTEMS | ${SED} 's/:/ /g'`
  do
  echo ${DUMP} ${DUMPLEVEL}${DUMPOPTIONS}f ${TARGET} $i
  ${DUMP} ${DUMPLEVEL}${DUMPOPTIONS}f ${TARGET} $i
  done
#Rewind the tape
  echo ${MT} ${MTACTION}
  ${MT} ${MTACTION}
(END)

PS: Customize it by changing the TARGET and the FILESYSTEMS
As regards security, store it safely in a bank safe:-)
I use it with cron, but I can re-install the server in minutes.



-- 
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
The only time a woman really succeeds in changing a man is when he is a
baby.
 - Natalie Wood
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Backup program on FreeBSD for DLT drive

2009-01-23 Thread Jerry McAllister
On Fri, Jan 23, 2009 at 08:06:43AM +0100, bsd wrote:

 Yes,
 
 This is probably the one I'll go for?
 There is a good hack described in the O'Reilly BSD hacks to setup  
 Bacula?

I don't understand.   Why hack when dump already works just right?

jerry



 
 I'll consider this article as a starting point?
 
 
 
 Thank you very much folks.
 
 
 Le 23 janv. 09 à 04:21, Geoff Fritz a écrit :
 
 On Thu, Jan 22, 2009 at 08:30:56PM +0100, bsd wrote:
 Hello,
 
 
 I am using a FreeBSD server 7.0 as a Samba server and wanted to  
 backup
 this server using Quantum DLT tape.
 
 I would need a simple tool that could be configured rapidl at that's
 stable enough to provide high security for the data.
 Ideally any good pointer to a howto would be a must!
 
 I've had success with Bacula for a small office file server  
 (FreeBSD) and
 Windows clients clients.  It supports SSL for the data transfer (if  
 the
 client and server are not the same machine), as well as data  
 encryption:
 
 http://www.bacula.org/en/dev-manual/Data_Encryption.html
 
 I haven't used the encryption myself.  Bacula has a bit of a  
 learning curve
 to set up corretly, but I really enjoy its use once it it set up  
 correctly.
 
 -- Geoff
 
 
 Gregober --- PGP ID -- 0x1BA3C2FD
 bsd @at@ todoo.biz
 
 
 P Please consider your environmental responsibility before printing  
 this e-mail
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Backup program on FreeBSD for DLT drive

2009-01-22 Thread bsd
Well I have installed It but I find It quite confusing to configure…  
so I have just stopped;

The problem is that I don't have a lot of time to really get into it…


Did you use any good pointer or just take time to learn It the  
standard way… ??


I found It quite hard to configure to tell the truth!


Le 22 janv. 09 à 20:51, Stephen Corbesero a écrit :


I used to use Amanda on a small FreeBSD RAID server that used a single
DLT drive.  It held up pretty well.




Gregober --- PGP ID -- 0x1BA3C2FD
bsd @at@ todoo.biz


P Please consider your environmental responsibility before printing  
this e-mail



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Backup program on FreeBSD for DLT drive

2009-01-22 Thread Chuck Swiger

On Jan 22, 2009, at 11:30 AM, bsd wrote:
I am using a FreeBSD server 7.0 as a Samba server and wanted to  
backup this server using Quantum DLT tape.


I would need a simple tool that could be configured rapidl at that's  
stable enough to provide high security for the data.

Ideally any good pointer to a howto would be a must!


See the fine Handbook:

  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/backup-basics.html
  
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/backups-tapebackups.html

Regards,
--
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Backup program on FreeBSD for DLT drive

2009-01-22 Thread Roland Smith
On Thu, Jan 22, 2009 at 08:30:56PM +0100, bsd wrote:
 I am using a FreeBSD server 7.0 as a Samba server and wanted to backup  
 this server using Quantum DLT tape.
 
 I would need a simple tool that could be configured rapidl at that's  
 stable enough to provide high security for the data.
 Ideally any good pointer to a howto would be a must!

Read §16.12 (Backup Basics) in the FreeBSD Handbook. You'll find the
English version in 
/usr/share/doc/en_US.ISO8859-1/books/handbook/backup-basics.html.
For full backups dump(8) and mt(1) seem to be the tools of choice.

If you use dump and you want encryption, you could pipe the dump output
through openssl to encrypt it with e.g. the AES algorithm with a 256 bit
key. Run 'openssl enc -help' to see the encryption algorithms available.

All the tools mentioned above are available in the base system, which is
a prequisite for restoring system partitions in my book.

My own backup strategy is to write dumps or /, /usr and /var to an
external USB harddisk or DVD, for an easy restore. For large data partitions I
prefer to rsync(1) to a geli(8) encrypted partition on an external
harddisk, because it is faster and more convenient than a dump.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgphXHUJDfXXS.pgp
Description: PGP signature


Re: Backup program on FreeBSD for DLT drive

2009-01-22 Thread Geoff Fritz
On Thu, Jan 22, 2009 at 08:30:56PM +0100, bsd wrote:
 Hello,
 
 
 I am using a FreeBSD server 7.0 as a Samba server and wanted to backup  
 this server using Quantum DLT tape.
 
 I would need a simple tool that could be configured rapidl at that's  
 stable enough to provide high security for the data.
 Ideally any good pointer to a howto would be a must!

I've had success with Bacula for a small office file server (FreeBSD) and
Windows clients clients.  It supports SSL for the data transfer (if the
client and server are not the same machine), as well as data encryption:

http://www.bacula.org/en/dev-manual/Data_Encryption.html

I haven't used the encryption myself.  Bacula has a bit of a learning curve
to set up corretly, but I really enjoy its use once it it set up correctly.

-- Geoff
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Backup program on FreeBSD for DLT drive

2009-01-22 Thread bsd

Yes,

This is probably the one I'll go for…
There is a good hack described in the O'Reilly BSD hacks to setup  
Bacula…


I'll consider this article as a starting point…



Thank you very much folks.


Le 23 janv. 09 à 04:21, Geoff Fritz a écrit :


On Thu, Jan 22, 2009 at 08:30:56PM +0100, bsd wrote:

Hello,


I am using a FreeBSD server 7.0 as a Samba server and wanted to  
backup

this server using Quantum DLT tape.

I would need a simple tool that could be configured rapidl at that's
stable enough to provide high security for the data.
Ideally any good pointer to a howto would be a must!


I've had success with Bacula for a small office file server  
(FreeBSD) and
Windows clients clients.  It supports SSL for the data transfer (if  
the
client and server are not the same machine), as well as data  
encryption:


http://www.bacula.org/en/dev-manual/Data_Encryption.html

I haven't used the encryption myself.  Bacula has a bit of a  
learning curve
to set up corretly, but I really enjoy its use once it it set up  
correctly.


-- Geoff



Gregober --- PGP ID -- 0x1BA3C2FD
bsd @at@ todoo.biz


P Please consider your environmental responsibility before printing  
this e-mail



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org