Oops! The <FONT FACE=monospace>tar -cvf <i>filename</i></font> command will <b>erase</b> tar files or tape archives.<br><br><FONT FACE=monospace>tar -xvf <i>filename</i></font> command will <b>extract</b> archives.<br><br>Think "c = Create" and "x = eXtract".<br><br>Don't know about mounting tapes, but if you want to delete a tar archive file then "rm filename.tar" will work.<br><br>Also, "tar cvf /path/to/tape/device" without any files specified will just write a new tar header to the tape. The original data will still be there. If you truly want to erase the tape, use a bulk eraser as Octal suggests. (As an alternative, you may be able to do something along the lines of "<FONT FACE=monospace>dd if=/dev/null of=/path/to/tape/device</font>". Then sit back and wait while <FONT FACE=monospace>dd</font> writes \0's all over your tape...)<br><br>Hope this helps.