Re: dump and 4mm DAT

1998-06-26 Thread Torsten Hilbrich
On: Thu, 25 Jun 1998 12:18:18 -0700 Philippe BARBELET writes:
 
 Dear debian users,
 Do you know what are the good parameters to use whith the dump
 command for a 4mm DAT system ?

It depends on the tape and if your drive supports hardware
compression.  I used dump for 90m (2GB) Tapes with hardware
compression the following way:

# The dump level is the first and only parameter to this script

LEVEL=$1
TAPESIZE=$((3200*1024))
FILE_SYSTEMS=/ /opt /usr /var /home

mt rewind
for i in ${FILE_SYSTEMS}
do
  dump ${LEVEL}Bf ${TAPESIZE} /dev/tape $i
done

Torsten

-- 
Whenever a system becomes completely defined, some damn fool discovers
something which either abolishes the system or expands it beyond recognition.
Fortune Cookie
PGP Public key available


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


dump and 4mm DAT

1998-06-25 Thread Philippe BARBELET
Dear debian users,

Do you know what are the good parameters to use whith the dump
command for a 4mm DAT system ?

Tank you.

Phil.


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: dump and 4mm DAT

1998-06-25 Thread Jens B. Jorgensen
I use:

dump 0uBf 4096000 /dev/st0

A couple of things to notice:

0   This means do a level 0 dump (everything). You'll want to work out a 
schedule
of full/incremental dumps
u   This means that /etc/dumpdates should be updated. Incrementals backups 
depend
on this data.
B   This is the length of the media, in bytes. It is important that you make 
this
the length of your tape. I've got a DDS2 drive which has 4GB capacity (native) 
on
120M tapes.
/dev/st0   This is obviously the device file. Yours is probably the same.

Philippe BARBELET wrote:

 Dear debian users,

 Do you know what are the good parameters to use whith the dump
 command for a 4mm DAT system ?

 Tank you.

 Phil.

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



--
Jens B. Jorgensen
[EMAIL PROTECTED]



--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]