Nope. Typically mt does not give that kind of information. You have to track it independently. Look at `man mt`. What you get may depend in some part on your drivers, but, typically, you will be able to tell where you are positioned in terms of file numbers (starting at 0). Doing `mt -f /dev/nst0 eod` will take you to the end of data on the tape. `mt -f /dev/nst0 status` will then tell you where that is in terms of file number.
Either your backup software or your own script tracks how much stuff you have put on the tape. When you get an end of tape failure, that item has to be re-written on the next tape. If you write in segments that aren't too large, then you don't waste too much in that process.
You haven't mentioned the type of tape drive or library, by the way.
The linux `man mt` gives, in part:
Quote:
status
Print status information about the tape unit. (If the density code is "no translation" in the status output, this does not affect working of the tape drive.)
|