Re: tar dies on making tape backup

2006-07-26 Thread Derek Ragona
I use the ASCII headers for portability incase I need to restore to another 
server with a different tar version.


-Derek


At 06:29 PM 7/25/2006, Jaime wrote:

On Jul 25, 2006, at 9:03 AM, Derek Ragona wrote:

Using tar with a SDLT I set the blocksize at 1024
and use ASCII headers (-c)


Thanks for the advice.  I hadn't thought about block size.  Why do
you use the ASCII headers?

Jaime

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Re: tar dies on making tape backup

2006-07-25 Thread Jaime

On Jul 24, 2006, at 10:23 PM, Micah wrote:

To save you some time, from my notes:
#finds all files modified before 1971
find / ! -newermt 1971-01-01 20:30


	I missed the part about ! in the command.  Thanks for the reply.   
I would have been at this for at least an hour of, What the heck?   
Its all 'newer than' comparisons?  How did that guy do it?  :)


	The command found a number of files claiming to have a date of 1903  
and 1933.  They were all files that I migrated over from the last  
server via tar czvpf archivename -C original-directory commands.  I  
don't know if this has anything to do with it.  I'm mentioning it in  
case someone comes across our posts in a search and they need to find  
the solution to this same problem.


Thanks a bunch,
Jaime
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tar dies on making tape backup

2006-07-25 Thread Derek Ragona

Using tar with a SDLT I set the blocksize at 1024
and use ASCII headers (-c)

-Derek


At 05:18 PM 7/24/2006, Jaime wrote:

I'm attempting to use tar to feed my filesystem(s) to a DLT tape
drive.  I've done this with FreeBSD 3 through 5 and DAT (DDS-3 and
DDS-4) tapes for years.  The command now appears to work for a while
and then dies with this message about 2.5 hours into the process:

archive_write_pax_header: 'x' header failed?!  This can't happen.

Any idea what this means?

I'm using:
$ uname -a
FreeBSD atlas.cairodurham.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Wed
Jun 28 11:27:09 EDT 2006 [EMAIL PROTECTED]:/usr/obj/usr/ 
src/sys/SMP  i386


This is my first FreeBSD 6.x system, my first SMP kernel, and my
first DLT drive on a FreeBSD system.  Using Google, I couldn't find
any answers that were useful.  (Just a few dead threads from various
forums and mailing lists.)

Thanks in advance,
Jaime
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Re: tar dies on making tape backup

2006-07-25 Thread Jaime

On Jul 25, 2006, at 9:03 AM, Derek Ragona wrote:

Using tar with a SDLT I set the blocksize at 1024
and use ASCII headers (-c)


	Thanks for the advice.  I hadn't thought about block size.  Why do  
you use the ASCII headers?


Jaime
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


tar dies on making tape backup

2006-07-24 Thread Jaime
	I'm attempting to use tar to feed my filesystem(s) to a DLT tape  
drive.  I've done this with FreeBSD 3 through 5 and DAT (DDS-3 and  
DDS-4) tapes for years.  The command now appears to work for a while  
and then dies with this message about 2.5 hours into the process:


archive_write_pax_header: 'x' header failed?!  This can't happen.

Any idea what this means?

I'm using:
$ uname -a
FreeBSD atlas.cairodurham.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Wed  
Jun 28 11:27:09 EDT 2006 [EMAIL PROTECTED]:/usr/obj/usr/ 
src/sys/SMP  i386


	This is my first FreeBSD 6.x system, my first SMP kernel, and my  
first DLT drive on a FreeBSD system.  Using Google, I couldn't find  
any answers that were useful.  (Just a few dead threads from various  
forums and mailing lists.)


Thanks in advance,
Jaime
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tar dies on making tape backup

2006-07-24 Thread Micah

Jaime wrote:
I'm attempting to use tar to feed my filesystem(s) to a DLT tape 
drive.  I've done this with FreeBSD 3 through 5 and DAT (DDS-3 and 
DDS-4) tapes for years.  The command now appears to work for a while and 
then dies with this message about 2.5 hours into the process:


archive_write_pax_header: 'x' header failed?!  This can't happen.

Any idea what this means?

I'm using:
$ uname -a
FreeBSD atlas.cairodurham.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Wed Jun 
28 11:27:09 EDT 2006 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP  i386


This is my first FreeBSD 6.x system, my first SMP kernel, and my 
first DLT drive on a FreeBSD system.  Using Google, I couldn't find any 
answers that were useful.  (Just a few dead threads from various forums 
and mailing lists.)


Thanks in advance,
Jaime


I had the same problem recently and Google told me to look for files 
with malformed dates. I used find to search for files dated before Jan 
1, 1970, and found one dated 1901. As soon as I touched the 
problematic file, tar worked.


HTH,
Micah
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tar dies on making tape backup

2006-07-24 Thread Jaime

On Jul 24, 2006, at 7:24 PM, Micah wrote:
I had the same problem recently and Google told me to look for  
files with malformed dates. I used find to search for files dated  
before Jan 1, 1970, and found one dated 1901. As soon as I  
touched the problematic file, tar worked.


	Many thanks.  When I get to work tomorrow, I'll use find.  I'll have  
to check the man page for the right parameters (I don't usually  
search by date) but I think that I can handle that.  ;)


Anyway, like I said, the help is much appreciated.

Jaime
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tar dies on making tape backup

2006-07-24 Thread Micah

Jaime wrote:

On Jul 24, 2006, at 7:24 PM, Micah wrote:
I had the same problem recently and Google told me to look for files 
with malformed dates. I used find to search for files dated before 
Jan 1, 1970, and found one dated 1901. As soon as I touched the 
problematic file, tar worked.


Many thanks.  When I get to work tomorrow, I'll use find.  I'll have 
to check the man page for the right parameters (I don't usually search 
by date) but I think that I can handle that.  ;)


Anyway, like I said, the help is much appreciated.

Jaime


To save you some time, from my notes:
#finds all files modified before 1971
find / ! -newermt 1971-01-01 20:30


HTH,
Micah
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


HP tape backup

2006-05-25 Thread Efren Bravo
Hi,

Would I want if somebody has tested the HP
StorageWorks DAT 72 USB Tape Drive on the freeBSD
or something similar?

http://h2.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=encc=usprodTypeId=12169prodSeriesId=501423submit.y=0submit.x=0lang=encc=us


I've written to HP support and this's their
answer:

---
HP StorageWorks DAT 72 USB Tape Drive could work
on FreeBSD OS?

Technically it should work on any O/S that
supports USB as a backup option. HP just hasn't
tested it and we can't offer you any support for
it.
-

Thanks,


Efren Bravo.
-
Fight back spam! Download the Blue Frog.
http://www.bluesecurity.com/register/s?user=ZWZyZW5iYQ%3D%3D



__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tape backup / Bizzare Device Question

2006-05-12 Thread Greg Putrich
Hi Graham,

Not sure about the first part, but the device is called a radiometer. 

http://radiometer.hobbytron.com/Radiometer.html
http://science.howstuffworks.com/question239.htm

   Greg



Graham Bentley said:
 Is there a way to create a hdd resore solution with 
 set of boot floppies that will support my tape drive
 access the tape and restore the entire hard disc in
 case of disc failure disaster ? ie So I could install 
 a new disc and be up and running without doing any
 additional admin? I guess like a 'ghost' for scsi tape ?
 
 Any advice / links etc apperciated.
 
 Also 
 
 Description: Glass bulb, similar to light bulb but with 
 narrow end flared at bootom so it standsup. Inside, 
 a rotating wire device that has 4 squares of card like 
 material attached, like vanes. 
 
 One one side they are black on the other they are white. 
 When the sun shines brightly enough, the white side reflects 
 the light energy and the black side absorbs it. The vanes 
 spin around. 
 
 This does exist and has a name and I know there are 
 some very knowledgeable people on this list who will 
 know.
 
 Whats it called. please !!!
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tape backup / Bizzare Device Question

2006-05-12 Thread Atom Powers

Graham Bentley said:
 Is there a way to create a hdd resore solution with
 set of boot floppies that will support my tape drive
 access the tape and restore the entire hard disc in
 case of disc failure disaster ? ie So I could install
 a new disc and be up and running without doing any
 additional admin? I guess like a 'ghost' for scsi tape ?

 Any advice / links etc apperciated.


Look at Bacula.
http://www.bacula.org/

Although I haven't bothered to create a restore boot-cd yet, my
restore procedure doesn't require it, I believe I saw documentation
about it somewhere in there.

Plus it's a fine backup/restore application.

--
--
Perfection is just a word I use occasionally with mustard.
--Atom Powers--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Tape backup / Bizzare Device Question

2006-03-07 Thread Graham Bentley
Is there a way to create a hdd resore solution with 
set of boot floppies that will support my tape drive
access the tape and restore the entire hard disc in
case of disc failure disaster ? ie So I could install 
a new disc and be up and running without doing any
additional admin? I guess like a 'ghost' for scsi tape ?

Any advice / links etc apperciated.

Also 

Description: Glass bulb, similar to light bulb but with 
narrow end flared at bootom so it standsup. Inside, 
a rotating wire device that has 4 squares of card like 
material attached, like vanes. 

One one side they are black on the other they are white. 
When the sun shines brightly enough, the white side reflects 
the light energy and the black side absorbs it. The vanes 
spin around. 

This does exist and has a name and I know there are 
some very knowledgeable people on this list who will 
know.

Whats it called. please !!!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tape backup / Bizzare Device Question

2006-03-07 Thread David Scheidt
On Tue, Mar 07, 2006 at 02:09:40PM -, Graham Bentley wrote:
 
 Description: Glass bulb, similar to light bulb but with 
 narrow end flared at bootom so it standsup. Inside, 
 a rotating wire device that has 4 squares of card like 
 material attached, like vanes. 
 
 One one side they are black on the other they are white. 
 When the sun shines brightly enough, the white side reflects 
 the light energy and the black side absorbs it. The vanes 
 spin around. 
 
 This does exist and has a name and I know there are 
 some very knowledgeable people on this list who will 
 know.

It's called a radiometer.  I've seen them called other things, like a
lightmill or a light gauge.


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


Re: Tape backup / Bizzare Device Question

2006-03-07 Thread DAve

Graham Bentley wrote:
Is there a way to create a hdd resore solution with 
set of boot floppies that will support my tape drive

access the tape and restore the entire hard disc in
case of disc failure disaster ? ie So I could install 
a new disc and be up and running without doing any

additional admin? I guess like a 'ghost' for scsi tape ?

Any advice / links etc apperciated.



Bacula will do what you want.


Also 

Description: Glass bulb, similar to light bulb but with 
narrow end flared at bootom so it standsup. Inside, 
a rotating wire device that has 4 squares of card like 
material attached, like vanes. 

One one side they are black on the other they are white. 
When the sun shines brightly enough, the white side reflects 
the light energy and the black side absorbs it. The vanes 
spin around. 

This does exist and has a name and I know there are 
some very knowledgeable people on this list who will 
know.


Whats it called. please !!!


A lightmill or Radiometer.

DAve


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





--
This message was checked by forty monkeys and
found to not contain any SPAM whatsoever.

Your monkeys may vary

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


Re: Looking for recommendations for external USB2.0 tape backup

2005-10-17 Thread Lee Capps
At 14:04 Fri 14 Oct 2005, Gayn Winters wrote:
  -Original Message-
  
  My boss has asked me to try to find a tape-backup solution 
  for our largely 
  FreeBSD network of machines and I'm not having a lot of luck, 
  so I was hoping 
  for some enlightend pointers from the list.
  
  We need the following features:
20GB+ capacity
USB 2.0
External
 $600CDN
  
  Unfortunately, I've only been able to find two drives that fit our 
  requirements, one from Ceterance:
http://www.certance.com/products/travan/travan40/STT6401U2-SST
  the other from HP who claims that theirs only works with 
  HP-UX.  Does anyone 
  know if (a) either of those units play nice with FreeBSD?  or 
  (b) if there 
  are other tape backup solutions available?
  
  Thanks for any insight.
 
 Have you considered an external USB2.0 hard drive?  I love my Maxtor One
 Touch.  On nextag.com I see a 300GB for $218 USD at Newegg.  It may be
 worth rethinking your backup and archiving strategies.  (I use removable
 hard drives for archiving, but that's another story...)

Ditto the recommendation of hard drives.  I suppose there are
times when you need tape (archiving?), but hard drives are very
cheap now.  When our tape drive died, We went to two 250GB
Seagate drives which we rotate weekly.

-- 
Lee Capps
Technology Specialist
CTE Resource Center


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


Multi-tape backup with dump

2005-10-17 Thread Henric Jungheim

I've been backing up a filesystem with
   dump -0auL -b 60 -C 32 -f /dev/sa0 /share
on an amd64 box to a 100G LTO drive (dmesg below).

It works fine (*) as long as the filesystem fits on one
tape.  However, dump wedges when I put in a new tape.  When
I check with top, typically two dump processes chew up
as much cpu as they can, sometimes only one and sometimes
all three.

  DUMP: 59.07% done, finished in 1:16 at Mon Oct 17 13:32:53 2005
  DUMP: End of tape detected
  DUMP: Closing /dev/sa0
  DUMP: Change Volumes: Mount volume #2
  DUMP: Is the new volume mounted and ready to go?: (yes or no) yes
  DUMP: Volume 2 begins with blocks from inode 10477547

It will sit like that indefinitely.  The tape doesn't move
(I can't hear it and mt says the same thing).

mt -f /dev/sa0.ctl status at this point:
   Mode  Density  Blocksize  bpi  Compression
   Current:  0x40 variable   00x1
   -available modes-
   0:0x40 variable   00x1
   1:0x40 variable   00x1
   2:0x40 variable   00x1
   3:0x40 variable   00x1
   -
   Current Driver State: at rest.
   -
   File Number: 0  Record Number: 1Residual Count 0

If I do a ctrl-c, dump stops chewing up the cpu and
politely asks me if I want to abort the dump.

Is there some trick to doing multi-tape backups?  It doesn't
seem to matter if I use the button on the tape drive or mt
offline to swap out the tape (I should hope it doesn't
matter).  I've tried generic kernels built locally, GENERIC
from snapshots, and (for the particular dmesg below) a
custom kernel.  No difference...

Given that it takes a few hours to fill a tape, mucking with
this is a bit tedious.  The most interesting thing I've
found is that setting the tape size explicitly *does* work
(although I've only tried forcing small tape sizes).

The system I have now is from a make buildworld/make
buildkernel from yesterday, but I've never had a multi-tape
backup work (going back many months of tracking -current).
Until now, it has always been faster to clean up some files
and do the backup again rather than reading through things
carefully to see what I've been doing wrong.  Until now,
anwyay, and I'm not finding anything in the docs.

Anybody have any ideas?  I hope I'm just missing something
stupid somewhere...?

Thanks.

(*) Yes, restore also works...

--
[EMAIL PROTECTED]

Copyright (c) 1992-2005 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 7.0-CURRENT #14: Sun Oct 16 22:33:52 PDT 2005
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/SARK
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Opteron(tm) Processor 250 (2393.20-MHz K8-class CPU)
  Origin = AuthenticAMD  Id = 0xf5a  Stepping = 10
  
Features=0x78bfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2
  AMD Features=0xe0500800SYSCALL,NX,MMX+,LM,3DNow+,3DNow
usable memory  = 2139582464 (2040 MB)
avail memory = 2065784832 (1970 MB)
ACPI APIC Table: A M I  OEMAPIC 
MADT: Forcing active-low polarity and level trigger for SCI
ioapic0 Version 1.1 irqs 0-23 on motherboard
ioapic1 Version 1.1 irqs 24-27 on motherboard
ioapic2 Version 1.1 irqs 28-31 on motherboard
acpi0: A M I OEMXSDT on motherboard
acpi0: Power Button (fixed)
pci_link0: ACPI PCI Link LNKA irq 10 on acpi0
pci_link1: ACPI PCI Link LNKB irq 11 on acpi0
pci_link2: ACPI PCI Link LNKC irq 15 on acpi0
pci_link3: ACPI PCI Link LNKD irq 9 on acpi0
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x5008-0x500b on acpi0
cpu0: ACPI CPU on acpi0
acpi_throttle0: ACPI CPU Throttling on cpu0
powernow0: Cool`n'Quiet K8 on cpu0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: ACPI PCI-PCI bridge at device 6.0 on pci0
pci3: ACPI PCI bus on pcib1
pci3: serial bus, USB at device 0.0 (no driver attached)
pci3: serial bus, USB at device 0.1 (no driver attached)
drm0: Rage XL port 0xb800-0xb8ff mem 
0xfd00-0xfdff,0xfeaff000-0xfeaf irq 17 at device 4.0 on pci3
info: [drm] Initialized mach64 1.0.0 20020904 on minor 0
puc0: Dolphin Peripherals 4036 port 0xbc00-0xbc1f,0xb400-0xb407,0xb000-0xb007 
irq 17 at device 6.0 on pci3
sio2: Dolphin Peripherals 4036 on puc0
sio2: type 16550A
sio2: unable to activate interrupt in fast mode - using normal mode
sio3: Dolphin Peripherals 4036 on puc0
sio3: type 16550A
sio3: unable to activate interrupt in fast mode - using normal mode
isab0: PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
pci0: serial bus, SMBus at device 7.2 (no driver attached)
pci0: bridge at device 7.3 (no driver attached)
pcib2: ACPI PCI-PCI

Looking for recommendations for external USB2.0 tape backup

2005-10-14 Thread daniel
My boss has asked me to try to find a tape-backup solution for our largely 
FreeBSD network of machines and I'm not having a lot of luck, so I was hoping 
for some enlightend pointers from the list.

We need the following features:
  20GB+ capacity
  USB 2.0
  External
   $600CDN

Unfortunately, I've only been able to find two drives that fit our 
requirements, one from Ceterance:
  http://www.certance.com/products/travan/travan40/STT6401U2-SST
the other from HP who claims that theirs only works with HP-UX.  Does anyone 
know if (a) either of those units play nice with FreeBSD?  or (b) if there 
are other tape backup solutions available?

Thanks for any insight.


-- 
nurture your minds with great thoughts.
to believe in the heroic makes heroes.
  - benjamin disraeli
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Looking for recommendations for external USB2.0 tape backup

2005-10-14 Thread Jerry McAllister
 
 My boss has asked me to try to find a tape-backup solution for our largely 
 FreeBSD network of machines and I'm not having a lot of luck, so I was hoping 
 for some enlightend pointers from the list.
 
 We need the following features:
   20GB+ capacity
   USB 2.0
   External
$600CDN
 
 Unfortunately, I've only been able to find two drives that fit our 
 requirements, one from Ceterance:
   http://www.certance.com/products/travan/travan40/STT6401U2-SST
 the other from HP who claims that theirs only works with HP-UX.  Does anyone 
 know if (a) either of those units play nice with FreeBSD?  or (b) if there 
 are other tape backup solutions available?

Any SCSI tape drive will work nicely with FreeBSD.   We have
a few different levels of DAT DDS-2, DDS-3 and DDS-4 as well
as DLT and LTO drives in various systems - all on SCSI.   
Dell sells DLT and DAT.   HP is pushing LTO (they call Ultrium).

The DLT and LTO  performance are all outstanding. 

If you do frequent backups (recommended) I would steer away
from the DAT (DDS...) because they really can't handle the
heavier usage.  Reliability becomes a problem over time.

On some other systems we also have AIT drives working well but I 
haven't used them on FreeBSD yet.   

Unfortunately the DLT and LTO drives are rather expensive.
But the high speed and reliability will be worth it in 
the long run.

As for software, we just use dump(8)/restore(8).

jerry

 
 Thanks for any insight.
 
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Looking for recommendations for external USB2.0 tape backup

2005-10-14 Thread Gayn Winters
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of daniel
 Sent: Friday, October 14, 2005 12:20 PM
 To: freebsd-questions@freebsd.org
 Subject: Looking for recommendations for external USB2.0 tape backup
 
 
 My boss has asked me to try to find a tape-backup solution 
 for our largely 
 FreeBSD network of machines and I'm not having a lot of luck, 
 so I was hoping 
 for some enlightend pointers from the list.
 
 We need the following features:
   20GB+ capacity
   USB 2.0
   External
$600CDN
 
 Unfortunately, I've only been able to find two drives that fit our 
 requirements, one from Ceterance:
   http://www.certance.com/products/travan/travan40/STT6401U2-SST
 the other from HP who claims that theirs only works with 
 HP-UX.  Does anyone 
 know if (a) either of those units play nice with FreeBSD?  or 
 (b) if there 
 are other tape backup solutions available?
 
 Thanks for any insight.

Have you considered an external USB2.0 hard drive?  I love my Maxtor One
Touch.  On nextag.com I see a 300GB for $218 USD at Newegg.  It may be
worth rethinking your backup and archiving strategies.  (I use removable
hard drives for archiving, but that's another story...)

-gayn


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


tape backup coredump

2005-09-06 Thread Michael Sherman
Good morning all.

I am having a problem with my tape drive, which gives me a coredump
when I try to bsdtar any directory. The gtar doesn't, however it
exits with an error message. I was wondering if anyone had similar
issues.

I am running 5.3 release, with the GENERIC kernel, only it was
recompiled with the following flags:

CPUTYPE?=p3
CFLAGS= -O -pipe

The SCSI card is Tekram, and the tape drive is Sony, the models can be
seen from the dmesg.

Copyright (c) 1992-2004 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 5.3-RELEASE #0: Tue Sep  6 09:14:39 EDT 2005
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
ACPI APIC Table: DELL   WS 220 
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel Pentium III (993.33-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x686  Stepping = 6
  
Features=0x383fbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
real memory  = 268034048 (255 MB)
avail memory = 252620800 (240 MB)
ioapic0: Changing APIC ID to 1
ioapic0 Version 2.0 irqs 0-23 on motherboard
npx0: [FAST]
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: DELL WS 220  on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
cpu0: ACPI CPU on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
agp0: Intel 82820 host to AGP bridge mem 0xf000-0xf3ff at
device 0.0 on pci0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
pci1: display, VGA at device 0.0 (no driver attached)
pcib2: ACPI PCI-PCI bridge at device 30.0 on pci0
pci2: ACPI PCI bus on pcib2
trm0: Tekram DC395U/UW/F DC315/U Fast20 Wide SCSI Adapter port
0xec00-0xecff mem 0xfafff000-0xfaff irq 19 at device 10.0 on pci2
trm0: [GIANT-LOCKED]
xl0: 3Com 3c905C-TX Fast Etherlink XL port 0xe880-0xe8ff mem
0xfaffec00-0xfaffec7f irq 18 at device 12.0 on pci2
miibus0: MII bus on xl0
xlphy0: 3c905C 10/100 internal PHY on miibus0
xlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
xl0: Ethernet address: 00:b0:d0:a2:4a:60
isab0: PCI-ISA bridge at device 31.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel ICH UDMA66 controller port
0xffa0-0xffaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on
pci0
ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
uhci0: Intel 82801AA (ICH) USB controller port 0xff80-0xff9f irq 19
at device 31.2 on pci0
uhci0: [GIANT-LOCKED]
usb0: Intel 82801AA (ICH) USB controller on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pci0: serial bus, SMBus at device 31.3 (no driver attached)
pcm0: Intel ICH (82801AA) port 0xdc80-0xdcbf,0xd800-0xd8ff irq 17 at
device 31.5 on pci0
pcm0: [GIANT-LOCKED]
pcm0: Analog Devices AD1881A AC97 Codec
fdc0: floppy drive controller port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0
fdc0: [FAST]
fd0: 1440-KB 3.5 drive on fdc0 drive 0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model Generic PS/2 mouse, device ID 0
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
sio0: type 16550A
sio1: 16550A-compatible COM port port 0x2f8-0x2ff irq 3 on acpi0
sio1: type 16550A
ppc0: ECP parallel printer port port 0x778-0x77f,0x378-0x37f irq 7 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
ppbus0: Parallel port bus on ppc0
plip0: PLIP network interface on ppbus0
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
ppi0: Parallel I/O on ppbus0
orm0: ISA Option ROMs at iomem 0xc9800-0xcbfff,0xc-0xc97ff on isa0
pmtimer0 on isa0
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
Timecounter TSC frequency 993327947 Hz quality 800
Timecounters tick every 10.000 msec
ad0: 76319MB ST380020A/3.60 [155061/16/63] at ata0-master UDMA66
ad1: 76319MB WDC WD800BB-00CCB0/22.04A22 [155061/16/63] at ata0-slave UDMA66
acd0: CDRW SONY CD-RW CRX140E/1.0n at ata1-master UDMA33
Waiting 15 seconds for SCSI devices to settle
sa0 at trm0 bus 0 target 6 lun 0
sa0: SONY SDT-9000 0400 Removable Sequential Access SCSI-2 device 
sa0: 10.000MB/s transfers (10.000MHz, offset 15)
Mounting root from ufs:/dev/ad0s1a
IP Filter: v3.4.35 initialized.  Default = pass all, Logging = enabled
pid 706 (bsdtar), uid 0: exited on signal 11 (core dumped)

Thanks in advance.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL 

Travan 3 Parallel Tape Backup in FreeBSD 4.10

2005-02-02 Thread Sebastian Uribe
Hi,
 I'm trying to install an Imation Travan 3 parallel tape backup in a 
FreeBSD 4.10 box. Has FreeBSD support for it?

 I tried several things, including using the mt command with /dev/ppi0:
# mt -f /dev/ppi0 status
mt: Inappropriate ioctl for device
 And i don't know what that could mean. Any idea?
 I've been looking in the freebsd site, and the web, but I couldn't 
find any references to using this devices (only found a couple messages 
from mailing lists 8 years old asking if there was support for this kind 
of thing).

Thanks
--
---
Sebastián Uribe
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Travan 3 Parallel Tape Backup in FreeBSD 4.10

2005-02-02 Thread Bill Campbell
On Wed, Feb 02, 2005, Sebastian Uribe wrote:

Hi,

 I'm trying to install an Imation Travan 3 parallel tape backup in a 
FreeBSD 4.10 box. Has FreeBSD support for it?

My experience with Travan tape drives has been uniformly bad, and I would
avoid them almost as strongly as the old Colorado Memory Systems Jumbo
floppy tape drives.

Given the low cost of large external firewire and USB disks today, I would
recommend using them rather than tape.

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Systems, Inc.
UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676
URL: http://www.celestial.com/

``Mechanical Engineers build weapons.  Civil Engineers build targets.''
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Travan 3 Parallel Tape Backup in FreeBSD 4.10

2005-02-02 Thread Sebastian Uribe
Bill,
   Well... external drives ain't that cheap in Argentina, and we 
already got this tape (which fits well with the amount of data we want 
to backup), so we would really like to have it working.. :)
   Thanks anyway for the advice.

Bill Campbell wrote:
My experience with Travan tape drives has been uniformly bad, and I would
avoid them almost as strongly as the old Colorado Memory Systems Jumbo
floppy tape drives.
Given the low cost of large external firewire and USB disks today, I would
recommend using them rather than tape.
 


--
---
Sebastián Uribe
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Tape backup solution? [OT]

2003-12-31 Thread Eric F Crist
Hello List,

I have a question that's slightly off-topic, but not.  I install high-end 
surveillance equipment for CCTV and such.  I have a rather large client in 
Minneapolis who's using Dedicated Micros digital video recorders.  The 
particular model we're using has a 500 GB hdd, but this client would like to 
archive images to tape for longer storage.  As of now, we're only getting 
about 2 months of recording time.  For off-site viewing, this unit can 
off-load images to a SCSI cd recorder.  Does anyone suggest a tape backup 
device that would be SCSI and external, with a fairly high-capacity?  I'm 
thinking around 50 GB?

TIA

-- 
Eric F Crist
AdTech Integrated Systems, Inc
(612) 998-3588
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tape backup solution? [OT]

2003-12-31 Thread Dan Nelson
In the last episode (Dec 31), Eric F Crist said:
 I have a question that's slightly off-topic, but not.  I install
 high-end surveillance equipment for CCTV and such.  I have a rather
 large client in Minneapolis who's using Dedicated Micros digital
 video recorders.  The particular model we're using has a 500 GB hdd,
 but this client would like to archive images to tape for longer
 storage.  As of now, we're only getting about 2 months of recording
 time.  For off-site viewing, this unit can off-load images to a SCSI
 cd recorder.  Does anyone suggest a tape backup device that would be
 SCSI and external, with a fairly high-capacity?  I'm thinking around
 50 GB?

I can't find a good web page to refer you to, but here's a quick
summary of what's available.  Capacity and transfer rate are native; if
your data is 2:1 compressible, double both columns.

Drive   Capacity  Xfer rate
(GB)  (MB/Sec)

DLT 406
sDLT110-300   11-36
LTO 100   15
LTO2200   30
AIT3100   12
SAIT1   500   30



-- 
Dan Nelson
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: newbie: weekly tape backup advice

2003-06-26 Thread admin
On Thu, 26 Jun 2003 00:36:01 -0700, Ryan Merrick wrote
 admin wrote:
  
  Hi,
  
  I need some help setting up a tape backup system.  I have two FreeBSD machines
  and on external SCSI Onstream ADR50.  Got any clues how I can start a weekly
  back up plan here? 
  
  Thanks in advance,
  
  Noah
  
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
  
 Take a look at afbackup in the ports at #/usr/ports/misc/afbackup .

okay this proggie is exactly what I need - do you have any clue how to figure
out the tape drive's device  blocksize?

- Noah

 
 Look at Storagemountain.com and look for articles by Curtis Preston.
 
 Ryan Merrick


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


newbie: weekly tape backup advice

2003-06-23 Thread admin


Hi,

I need some help setting up a tape backup system.  I have two FreeBSD machines
and on external SCSI Onstream ADR50.  Got any clues how I can start a weekly
back up plan here? 

Thanks in advance,

Noah

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: newbie: weekly tape backup advice

2003-06-23 Thread Chris
admin wrote:

Hi,

I need some help setting up a tape backup system.  I have two FreeBSD machines
and on external SCSI Onstream ADR50.  Got any clues how I can start a weekly
back up plan here? 

Thanks in advance,

Noah

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

The key would be, a tape a day? Just kidding. If you ca fit it all on 
one tape, and it's not a long backup - why not do a full backup apposed 
to some sort of incremental one.

A cron once a day should do the trick (man cron and man crontab) and I 
would think using dump (man dump) would also do the archiving.

--

Best regards,
Chris
__
PGP Fingerprint = D976 2575 D0B4 E4B0 45CC AA09 0F93 FF80 C01B C363

PGP Mail encouraged / preferred - keys available on common key servers
__
  01010010011101100011011001010111001001011000
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: newbie: weekly tape backup advice

2003-06-23 Thread Jerry McAllister
 
 Hi,
 
 I need some help setting up a tape backup system.  I have two FreeBSD machines
 and on external SCSI Onstream ADR50.  Got any clues how I can start a weekly
 back up plan here? 

It depends a little on the size of your disk compared to your tape
capacity.   It also depends on how much - amount and frequency - critical 
data changes.

If you can fit everything you want to back up on one tape, just run a 
full backup (level 0 dump) each time being once per day or once per week
or whatever fits your data change pattern.

If your critical data change is a lot and a full backup of it will take
more than one tape, pick a convenient day of the week and do a full
back up and then do incremental backups (level 1 dump) other days.   

If your disk is so big and the amount of change so much that a week's
worth of incremental backup needs more than one tape, then you will 
want to do a weekly full backup and then increasing levels of 
incremental back up (level 1 - 6) on the other days.   

If your amount of data change is quite low - say it is just hosting a
fairly static web site and some information database you look at but 
don't update very often, you might want to consider doing only a weekly 
full backup or a monthly full backup and weekly incremental backups.

Use enough tapes so you are keeping at least three copies of each part
of the rotation before reusing a tape.   

You may also want to do a quarterly or annual archive dump that you store
off site and do not reuse for several rotations.

For sure, you want to use dump(8).  It is part of the system, does the 
right things with the files and is reliable and doesn't take any tinkering.

Unless you have a lot of very critical files open and being changed all
the time, don't bother with the warnings about doing a dump on a non-running
system.   The dump will work just fine.It only means that some file may 
change between the time the dump started and when it finishes so that file's 
backup image might not be good.   But, if you are doing regular backups -_and 
not just reusing the same tape all the time_- you will catch that file in a 
good backup on another day.

The man page explains dump pretty well.  Mostly you shouldn't need to
worry about block size and all the other special stuff.  The defaults 
work best for most circumstances.   

Determining the media capacity may be the only difficult thing.  If one 
tape will hold the entire backup, just use the '-a' switch.   That can 
work well also for multiple tape dumps with tape drives that give a good 
end-of-media indication.  But some of them - DDS can be an annoying 
example - tend to not work well when getting near the end of media and 
will start getting write/read errors before the end-of-media indication 
actually happens.   Then, the system may not handle things very well and 
you may want to do some calculating and experimenting with either the '-B nnn' 
parameter or the '-d nnn' and '-s nnn' parameters to specify a media size 
and force it to change tapes before the problem area is reached.

You need to run dump(8) as root.  Eventually you will want to not have 
to retype the dump commands each time or you will want it to run by cron 
at some time you are not around, so either make a script and run it
while su-ed or logged in as root, or make a compiled program that will
do the dump calls and make it suid root and then make it owned by root
with a group of the only ids that will be allowed to run it and then
give it only 750 permissions.

One more thing from experience - do not run the head cleaner cartridge
any more often than you absolutely have to.  In a very clean environment
that can actually mean never.  But, you will probably need it now and
then.   Experience will tell when.   Those cleaners cause significant
wear on the heads and possibly the rest of the mechanism.   It doesn't
take much to wear those tiny heads down to nothing.  So, using them as
infrequently as possible will actually help increase head life, not 
reduce it as some of the accompanying printed material often likes to
imply.  I think they just way to sell more replacement tape drives.

jerry

 
 Thanks in advance,
 
 Noah
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Tape backup using a OnStream SC-30

2003-06-04 Thread Mark Pearce
Hi

I am having trouble trying to backup data using an OnStream ADR drive. 
I have read the dump, sa, sr, tar man pages and have googled as well,
but am still having no joy.

I have the following results:

dmesg:
sa0 at ahc0 bus 0 target 4 lun 0
sa0: OnStream SC-30 1.05 Removable Sequential Access SCSI-2 device 
sa0: 10.000MB/s transfers (10.000MHz, offset 7)


camcontrol devlist -v:
scbus0 on ahc0 bus 0:
OnStream SC-30 1.05  at scbus0 target 4 lun 0 (pass0,sa0)
 at scbus0 target -1 lun -1 ()
scbus-1 on xpt0 bus 0:
 at scbus-1 target -1 lun -1 (xpt0)



[09:38 AM [EMAIL PROTECTED] dev]# /sbin/dump -0uan -f - /data1 | gzip -2 |dd
of=/dev/sa0 DUMP: Date of this level 0 dump: Wed Jun  4 09:44:07
2003  DUMP: Date of last level 0 dump: the epoch
  DUMP: Dumping /dev/ad0s1h (/data1) to standard output
  DUMP: mapping (Pass I) [regular files]
dd: /dev/sa0: Invalid argument

[09:56 AM [EMAIL PROTECTED] dev]# tar c /data1
tar: /dev/sa0: Cannot open: Invalid argument
tar: Error is not recoverable: exiting now


I am at my wits end, I seriously need to get this backup working.  I
have found some reports that the SCSI adaptor, using the aha78xx driver
coupled with this OnStream drive might be incompatable.

Either that or I am doing something wrong, please help.

Mark
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Tape backup using a OnStream SC-30

2003-06-04 Thread Mark Pearce
Hi

I am having trouble trying to backup data using an OnStream ADR drive.
I have read the dump, sa, sr, tar man pages and have googled as well,
but am still having no joy.

I have the following results:

dmesg:
sa0 at ahc0 bus 0 target 4 lun 0
sa0: OnStream SC-30 1.05 Removable Sequential Access SCSI-2 device
sa0: 10.000MB/s transfers (10.000MHz, offset 7)


camcontrol devlist -v:
scbus0 on ahc0 bus 0:
OnStream SC-30 1.05  at scbus0 target 4 lun 0 (pass0,sa0)
 at scbus0 target -1 lun -1 ()
scbus-1 on xpt0 bus 0:
 at scbus-1 target -1 lun -1 (xpt0)



[09:38 AM [EMAIL PROTECTED] dev]# /sbin/dump -0uan -f - /data1 | gzip -2 |dd
of=/dev/sa0
DUMP: Date of this level 0 dump: Wed Jun  4 09:44:07
2003
DUMP: Date of last level 0 dump: the epoch

DUMP: Dumping /dev/ad0s1h (/data1) to standard output
DUMP: mapping (Pass I) [regular files]
dd: /dev/sa0: Invalid argument

[09:56 AM [EMAIL PROTECTED] dev]# tar c /data1
tar: /dev/sa0: Cannot open: Invalid argument
tar: Error is not recoverable: exiting now


I am at my wits end, I seriously need to get this backup working.  I
have found some reports that the SCSI adaptor, using the aha78xx driver
coupled with this OnStream drive might be incompatable.

Either that or I am doing something wrong, please help.

Mark

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tape backup using a OnStream SC-30

2003-06-04 Thread Jens Rehsack
On 6/4/2003 12:33 PM, Mark Pearce wrote:
 Hi

Hi Mark,

 I am having trouble trying to backup data using an OnStream ADR drive.
 I have read the dump, sa, sr, tar man pages and have googled as well,
 but am still having no joy.
 
 I have the following results:
 
 dmesg:
 sa0 at ahc0 bus 0 target 4 lun 0
 sa0: OnStream SC-30 1.05 Removable Sequential Access SCSI-2 device
 sa0: 10.000MB/s transfers (10.000MHz, offset 7)
 
 
 camcontrol devlist -v:
 scbus0 on ahc0 bus 0:
 OnStream SC-30 1.05  at scbus0 target 4 lun 0 (pass0,sa0)
  at scbus0 target -1 lun -1 ()
 scbus-1 on xpt0 bus 0:
  at scbus-1 target -1 lun -1 (xpt0)
 
 
 
 [09:38 AM [EMAIL PROTECTED] dev]# /sbin/dump -0uan -f - /data1 | gzip -2 |dd
 of=/dev/sa0
 DUMP: Date of this level 0 dump: Wed Jun  4 09:44:07
 2003
 DUMP: Date of last level 0 dump: the epoch
 
 DUMP: Dumping /dev/ad0s1h (/data1) to standard output
 DUMP: mapping (Pass I) [regular files]
 dd: /dev/sa0: Invalid argument
 
 [09:56 AM [EMAIL PROTECTED] dev]# tar c /data1
 tar: /dev/sa0: Cannot open: Invalid argument
 tar: Error is not recoverable: exiting now
 
 
 I am at my wits end, I seriously need to get this backup working.  I
 have found some reports that the SCSI adaptor, using the aha78xx driver
 coupled with this OnStream drive might be incompatable.
 
 Either that or I am doing something wrong, please help.

No, you don't do sth. wrong. Onstream did but didn't tell it it's
customers before the buy. The produced streamers with an SCSI interface
but didn't respect the SCSI streaming access commands, but implement an
own command set.

You can do some things to get it work:
1) Port the linux driver to FreeBSD
2) Use vmware to run either linux or windows which may grant access
3) Use another streamer
4) Use another backup medium. just like cdr

Jens

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tape backup using a OnStream SC-30

2003-06-04 Thread Jens Rehsack
On 6/4/2003 12:47 PM, Mark Pearce wrote:
 Hi Jens

Hi Mark,

 Thanks for your reply.  Do you have any idea what tape drives are best
 for the FreeBSD platform as I have no intention to changing my clients
 server to Linux.  I know there are almost none listed on the hardware
 lists.

At first: Please ever send at least a carbon copy to the list you've
asked first. This have 2 reasons:
1) The list is archived and any later similar question could easily
   be answered by searching the archives.
2) The replyer may not be able to help you further than (s)he already
   did.

Second: Sorry, I don't know. Nearly every big manufacturer should do.
The new onstream streamer, for example, do. But I'm disappointed by
onstream, so if I were you, I would use another manufacturer, eg. IBM,
HP, ...
Searching the archives or ask google may help.

 Thanks
 
 Mark

Regards,
Jens

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Tape Backup Failure Following Reinstallation of 4.7

2003-03-15 Thread Bob Perry
Just installed/upgraded to 4.7-RELEASE.  I tried to restore some 4.5 config
files from my tape system and received a message, Device not configured.
The tape cartridge had not been inserted so I pushed it in and tried again.
This time the message read, Input/Output error.  I'm a newbie so I was
surprised since the tape system worked under 4.5 and it worked following an
earlier binary upgrade to 4.7.

I noticed that the SCSI controller was sharing irq 11 with the graphics
card.  Could that be the problem?  If so, I can make that adjustment when I
install a new Nvidia card.

Also found that the kernel lists the SCSI controller device as adv0  at
isa?  This isn't the way it appears when I run dmesg.

Any advice would be appreciated.






To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: Tape Backup

2002-12-20 Thread Irwan Hadi
On Mon, Dec 16, 2002 at 11:33:11AM -0500, Jerry McAllister wrote:

 If your usage justifies the cost, you might want to consider DLT
 or LTO type drives.   They handle the load with less failure and 
 higher capacity and data rates.

I'm using Sony AIT-2 and it works great. The benefit of using AIT is
that you don't need to clean your tape drive at all, and it also in a
continuous development with AIT-3 has been launched (100/200 capacity).


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Tape Backup

2002-12-20 Thread Jerry McAllister
 
 On Mon, Dec 16, 2002 at 11:33:11AM -0500, Jerry McAllister wrote:
 
  If your usage justifies the cost, you might want to consider DLT
  or LTO type drives.   They handle the load with less failure and 
  higher capacity and data rates.
 
 I'm using Sony AIT-2 and it works great. The benefit of using AIT is
 that you don't need to clean your tape drive at all, and it also in a
 continuous development with AIT-3 has been launched (100/200 capacity).

Yah, we have several AIT systems here too and are having pretty good
luck with them too - though, I can't support the NEVER have to clean
the tape drive.  Rarely, yes, but Never, no.

jerry


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Tape Backup

2002-12-16 Thread Jerry McAllister
 
 I am running Freebsd 4.6 and my dds-2 tape backup drive just died on me. 
 I am interested in moving up to a bigger capacity drive so does anyone 
 have any recommendations? I am not interested in anything high end, this 
 is just for my system at home. I was looking at the dds-3 drives, but 
 before i went out and bought one, I would like opinions and or 
 recommendations. Thanks in advance.

We have DDS-3 drives on a number of systems and mostly they work well.

We have a couple of systems that cannot be written/read with dd or cp
which causes us a problem and we haven't discovered a reason yet.  Those
are all on Dell systems, but I don't remember the drive model[s]/maker[s]
at the moment.  Interestingly enough, tar will still write/read them.

Besides that problem, keep in mind that DAT, though a nice format
for light duty work, doesn't seem to be designed to handle really
heavy demand work - nearly 24/7 backup work of multiple systems or
whatever.

jerry

 
 -- 
 Peter Erickson
 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



RE: Tape Backup

2002-12-16 Thread Brian McCann
I've never ran one on FreeBSD, but I've used several DDS-3 drives of all
kinds of flavors.  I've had some problems with some Seagate ones, but
aside from that, I've had no problems.  The only thing I'd keep in mind,
and that I've experienced is that the DDS-3 tapes are not designed for
heavy use.  From what I've done, using 5 tapes a week, one a day, I end
up throwing the tapes out (after destroying them) after about 4-6
months...which is fairly average from what I've heard.  Also, a cleaning
tape, though I never believed it till I saw  used it, increased the
life of the tapes slightly, and I assume it also extends the life of the
drive...but I've never seen one croak, so I don't know.

Hope I helped,
--Brian

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Peter Erickson
Sent: Saturday, December 14, 2002 7:57 PM
To: [EMAIL PROTECTED]
Subject: Tape Backup


I am running Freebsd 4.6 and my dds-2 tape backup drive just died on me.
I am interested in moving up to a bigger capacity drive so does anyone
have any recommendations? I am not interested in anything high end, this
is just for my system at home. I was looking at the dds-3 drives, but
before i went out and bought one, I would like opinions and or
recommendations. Thanks in advance.

-- 
Peter Erickson

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Tape Backup

2002-12-16 Thread Jerry McAllister
 
 I've never ran one on FreeBSD, but I've used several DDS-3 drives of all
 kinds of flavors.  I've had some problems with some Seagate ones, but
 aside from that, I've had no problems.  The only thing I'd keep in mind,
 and that I've experienced is that the DDS-3 tapes are not designed for
 heavy use.  From what I've done, using 5 tapes a week, one a day, I end
 up throwing the tapes out (after destroying them) after about 4-6
 months...which is fairly average from what I've heard.  Also, a cleaning
 tape, though I never believed it till I saw  used it, increased the
 life of the tapes slightly, and I assume it also extends the life of the
 drive...but I've never seen one croak, so I don't know.

Your experience sounds about like ours.  I think we get just a little more
average life out of a cassette than you indicate, but not a large amount.
Actually, we've used some DDS-4 too with pretty much similar results.

One thing though,  the cleaning tape may increase the life of tapes, but
frequent use can reduce the life of a drive.  The cleaning tapes can
cause increased head wear.  We recommend only using them when really 
needed - write errors show up - and not on a regularly scheduled basis.
But, this is true of DDS-2 and even original DAT.  Keeping your drive
and storage environment clean and as free of dust as possible is a more
important thing to improve tape and drive longevity, I think.

If your usage justifies the cost, you might want to consider DLT
or LTO type drives.   They handle the load with less failure and 
higher capacity and data rates.

jerry

 
 Hope I helped,
 --Brian
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]] On Behalf Of Peter Erickson
 Sent: Saturday, December 14, 2002 7:57 PM
 To: [EMAIL PROTECTED]
 Subject: Tape Backup
 
 I am running Freebsd 4.6 and my dds-2 tape backup drive just died on me.
 I am interested in moving up to a bigger capacity drive so does anyone
 have any recommendations? I am not interested in anything high end, this
 is just for my system at home. I was looking at the dds-3 drives, but
 before i went out and bought one, I would like opinions and or
 recommendations. Thanks in advance.
 
 -- 
 Peter Erickson

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Tape Backup

2002-12-14 Thread Peter Erickson
I am running Freebsd 4.6 and my dds-2 tape backup drive just died on me. I am 
interested in moving up to a bigger capacity drive so does anyone have any 
recommendations? I am not interested in anything high end, this is just for my system 
at home. I was looking at the dds-3 drives, but before i went out and bought one, I 
would like opinions and or recommendations. Thanks in advance.

-- 
Peter Erickson

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



HP COLORADO tape Backup

2002-11-29 Thread Ismail YENIGUL
hi

i use FreeBSD 4.7-STABLE
i have a following tape 

ast0: TAPE HP COLORADO 5GB at ata0-slave PIO4 (this is dmesg output)
how can i backup ? and which device i should use ?

regards

-- 
Vital papers will demonstrate their vitality by
spontaneously moving from where you left them to where
you can't find them.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: HP COLORADO tape Backup

2002-11-29 Thread paul beard
Ismail YENIGUL wrote:


hi

i use FreeBSD 4.7-STABLE
i have a following tape

ast0: TAPE  at ata0-slave PIO4 (this is dmesg output)
how can i backup ? and which device i should use ?



dump(8) would be the best thing to start with. The handbook has a 
very useful chapter on this.


--
Paul Beard / 8040 27th Ave NE / Seattle WA 98115 /
paulbeard [at] mac [ dot] com / 206 529 8400

weblog @ http://paulbeard.no-ip.org/movabletype/

This is your fortune.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message