reformating a tape cartridge.

2007-12-25 9:22:00

Original question:

Dear SMs,

Is it possible to reformat a tape cartridge, thus clearing any

EOF,EOT,etc markers?

Thanks

Answer:

* Get a bulk eraser (sometimes called a degausser). It is a device

with either an electro-magnet or fixed permanent magnets that you pass

over the tape for a certain amount of time and that randomizes the

particles on the tape.

* 'mt -f <device> erase'. The main disadvantage of using mt erase is

that the entire tape gets erased - a time consuming process. In

general, only the beginning of the tape is needed to be erased to not

be hindered by any markers farther down the tape.

* dd if=/dev/null of=/dev/rmt/your-tape-device. If you need to

overwrite the whole tape, just write a shell script that loops

forever, with some kind of output on each loop (\n) and write that to

the tape until it's full.

Thanks to *

Comments

Got something to say?

You must be logged in to post a comment.