<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I've used simple  scripts for similar backup system. I used hotplug
facilities and rsync to avoid copying inecesary data.<br>
You must see the USB id which lsusb<br>
<br>
in /etc/hotplug/usb/ create the folowing two files:<br>
usbhd.usermap containing the folowing line:<br>
usbbackup 0x0003 0x05e3 0x0702 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00
0x00 0x00000000<br>
and usbbackup, containing the backup script (remember to give exec
permisions to the script):<br>
<br>
#!/bin/bash<br>
sleep 30 && \<br>
HD=`e2label /dev/sda1`<br>
mount /media/$HD<br>
rsync -Pavz --delete /path/to/source/ /media/$HD
>/var/log/hdbackup.log<br>
renice 20 rsync<br>
umount /media/$HD<br>
tail /var/log//var/log/hdbackup.log | mail -s "Backup log"
<a class="moz-txt-link-abbreviated" href="mailto:destination@email.com">destination@email.com</a><br>
<br>
<br>
The script is simplified, and the usbhd.usermap id's must be the
correct for your usb HD's (use lsusb). I think It's a good aproach to
you needings. Perhaps you need to adecuate or enhace the backupscript
(mounting remote site which samba, better error control, compressing
data, etc..)but now you now how to do it.<br>
<br>
<br>
<blockquote cite="mid:fhuh9s$91f$1@ger.gmane.org" type="cite">Hi,
  <br>
  <br>
    I'm trying to implement this:
  <br>
  <br>
I have:
  <br>
  <br>
- A windows 2000 server
  <br>
- A centos 4 server
  <br>
- Monday, Tuesday, Wednesday, Thursday, Friday, Monthly.
  <br>
  <br>
The tape drive in the windows server died recently and I decided to
switch to USB external drives.  However, the USB controller in the
windows server is only 1.1, so it is very slow.
  <br>
  <br>
I didn't want to install a 2.0 USB controller in the windows server
since it is a brand-name and I didn't want to make it unstable, so I
decided to make the backups of the windows server (using Backup Exec)
on the linux box.
  <br>
  <br>
So backup exec writes on the linux box via samba, directly on the USB
drive. (I thought of writing on the linux box FS directly, then
rsync'ing to the USB drive), but the space available on the local FS is
about 90 gigs while the external USB drives are 250 gigs, meaning that
I can keep like 4 weeks of data on the USB drives (using backup exec
settings), while I could only keep 1 or 2 weeks otherwise.
  <br>
  <br>
My questions is:
  <br>
  <br>
-how can the USB drives be umounted/mounted automatically when the
person on site changes it (monday to tuesday, for example).  There will
always be only one HDD conected at the time.
  <br>
  <br>
Thanks,
  <br>
Ugo
  <br>
  <br>
_______________________________________________
  <br>
CentOS mailing list
  <br>
<a class="moz-txt-link-abbreviated" href="mailto:CentOS@centos.org">CentOS@centos.org</a>
  <br>
<a class="moz-txt-link-freetext" href="http://lists.centos.org/mailman/listinfo/centos">http://lists.centos.org/mailman/listinfo/centos</a>
  <br>
  <br>
  <br>
</blockquote>
<br>
<div class="moz-signature">-- <br>
David Ferreira
<br>
Dpto. de sistemas
<br>
-------------------------------------------------------------------------------------------------<br>
<font face="3D"tahoma"" size="3D5">I Z A N E T - GLOBAL SERVICES S.L.<br>
</font> <br>
web:
<a href="3D%22http://www.izanet.com/%22" eudora="3D"autourl""><font
 color="#3d00ff"><u>http://www.izanet.com</u></font></a>
<br>
Direcciónes: Argualas nº 3 (Planta calle) - 50.012 Zaragoza<br>
Teléfono: 902 999 065 y 976 306 752 - Fax 976 306 753<br>
--------------------------------------------------------------------------------------------------
<br>
<br>
<font size="3D2"><b>DISCLAIMER:<br>
</b>Este mensaje se dirige exclusivamente a su destinatario y puede
contener informacion privilegiada o confidencial. Si no es vd. el
destinatario indicado, queda notificado de que la utilizacion,
divulgacion y/o copia sin autorizacion esta prohibida en virtud de la
legislacion vigente. Si ha recibido este mensaje por error, le rogamos
que nos lo comunique inmediatamente por esta misma via y proceda a su
destruccion. <br>
<br>
This message is intended exclusively for its addressee and may contain
information that is CONFIDENTIAL and protected by professional
privilege. If you are not the intended recipient you are hereby
notified that any dissemination, copy or disclosure of this
communication is strictly prohibited by law. If this message has been
received in error, please immediately notify us via e-mail and delete
it.<br>
</font></div>
</body>
</html>