summaryrefslogtreecommitdiff
path: root/static/plan9-4e/man1/tapefs.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/plan9-4e/man1/tapefs.1
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/plan9-4e/man1/tapefs.1')
-rw-r--r--static/plan9-4e/man1/tapefs.1100
1 files changed, 100 insertions, 0 deletions
diff --git a/static/plan9-4e/man1/tapefs.1 b/static/plan9-4e/man1/tapefs.1
new file mode 100644
index 00000000..7e3cc630
--- /dev/null
+++ b/static/plan9-4e/man1/tapefs.1
@@ -0,0 +1,100 @@
+.TH TAPEFS 1
+.SH NAME
+32vfs, cpiofs, tapfs, tarfs, tpfs, v6fs, v10fs \- mount archival file systems
+.SH SYNOPSIS
+.B fs/32vfs
+[
+.B -m
+.I mountpoint
+]
+[
+.B -p
+.I passwd
+]
+[
+.B -g
+.I group
+]
+.I file
+.br
+.B fs/cpiofs
+.br
+.B fs/tapfs
+.br
+.B fs/tarfs
+.br
+.B fs/tpfs
+.br
+.B fs/v6fs
+.br
+.B fs/v10fs
+.br
+.SH DESCRIPTION
+These commands interpret data from traditional tape or file system formats
+stored in
+.IR file ,
+and mount their contents (read-only) into a Plan 9 file system.
+The optional
+.B -p
+and
+.B -g
+flags specify Unix-format password (respectively group) files
+that give the mapping between the numeric user- and group-ID
+numbers on the media and the strings reported by Plan 9 status
+inquiries.
+The
+.B -m
+flag introduces the name at which the new file system should be
+attached; the default is
+.BR /n/tapefs .
+.PP
+.I 32vfs
+interprets raw disk images of 32V systems, which are ca. 1978 research Unix systems for
+the VAX, and also pre-FFS Berkeley VAX systems (1KB block size).
+.PP
+.I Cpiofs
+interprets
+.B cpio
+tape images (constructed with
+.BI cpio 's
+.B c
+flag).
+.PP
+.I Tarfs
+interprets
+.I tar
+tape images.
+.PP
+.I Tpfs
+interprets
+.I tp
+tapes from the Fifth through Seventh Edition research Unix systems.
+.PP
+.I Tapfs
+interprets
+.I tap
+tapes from the pre-Fifth Edition era.
+.PP
+.I V6fs
+interprets disk images from the
+Fifth and Sixth edition research Unix systems (512B block size).
+.PP
+.I V10fs
+interprets disk images from the
+Tenth Edition research Unix systems (4KB block size).
+.SH SOURCE
+.PP
+These commands are constructed in a highly stereotyped
+way using the files
+.I fs.c
+and
+.I util.c
+in
+.BR /sys/src/cmd/tapefs ,
+which in
+turn derive substantially from
+.IR ramfs (4).
+.SH "SEE ALSO
+Section 5
+.IR passim ,
+.IR ramfs (4).