4.3BSD/usr/man/man5/tp.5

Compare this file to the similar file:
Show the results in this format:

.\"	@(#)tp.5	6.1 (Berkeley) 5/15/85
.\"
.TH TP 5  "May 15, 1985"
.AT 3
.SH NAME
tp \- DEC/mag tape formats
.SH DESCRIPTION
.I Tp
dumps files to and extracts files from
DECtape and magtape.
The formats of these tapes are the same except
that magtapes have larger directories.
.PP
Block zero contains a
copy of a stand-alone bootstrap program.
See
.IR reboot (8).
.PP
Blocks 1 through 24
for DECtape (1 through 62 for magtape)
contain a directory of the tape.
There are 192 (resp. 496) entries in the directory;
8 entries per block;
64 bytes per entry.
Each entry has the following format:
.nf
.IP ""
.ta 8n +\w'unsigned short  'u
struct {
	char	pathname[32];
	unsigned short	mode;
	char	uid;
	char	gid;
	char	unused1;
	char	size[3];
	long	modtime;
	unsigned short	tapeaddr;
	char	unused2[16];
	unsigned short	checksum;
};
.fi
.DT
.PP
The path name entry is the path name of the
file when put on the tape.
If the pathname starts with a zero word,
the entry is empty.
It is at most 32 bytes long and ends in a null byte.
Mode, uid, gid, size and time modified
are the same as described under i-nodes 
(see file system
.IR fs (5)).
The tape address is the tape block number of the start of
the contents of the file.
Every file
starts on a block boundary.
The file occupies (size+511)/512 blocks
of continuous tape.
The checksum entry has a value such that
the sum of the 32 words of the directory entry is zero.
.PP
Blocks above 25 (resp. 63) are available for file storage.
.PP
A fake entry
has a size of zero.
.SH "SEE ALSO"
fs(5), tp(1)
.SH BUGS
The
.I pathname, uid, gid,
and
.I size
fields are too small.