tapefs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .TH TAPEFS 4
  2. .SH NAME
  3. 32vfs, cpiofs, tapfs, tarfs, tpfs, v6fs, v10fs, zipfs \- mount archival file systems
  4. .SH SYNOPSIS
  5. .B fs/32vfs
  6. [
  7. .B -m
  8. .I mountpoint
  9. ]
  10. [
  11. .B -p
  12. .I passwd
  13. ]
  14. [
  15. .B -g
  16. .I group
  17. ]
  18. .I file
  19. .br
  20. .B fs/cpiofs
  21. .br
  22. .B fs/tapfs
  23. .br
  24. .B fs/tarfs
  25. .br
  26. .B fs/tpfs
  27. .br
  28. .B fs/v6fs
  29. .br
  30. .B fs/v10fs
  31. .br
  32. .B fs/zipfs
  33. .br
  34. .SH DESCRIPTION
  35. These commands interpret data from traditional tape or file system formats
  36. stored in
  37. .IR file ,
  38. and mount their contents (read-only) into a Plan 9 file system.
  39. The optional
  40. .B -p
  41. and
  42. .B -g
  43. flags specify Unix-format password (respectively group) files
  44. that give the mapping between the numeric user- and group-ID
  45. numbers on the media and the strings reported by Plan 9 status
  46. inquiries.
  47. The
  48. .B -m
  49. flag introduces the name at which the new file system should be
  50. attached; the default is
  51. .BR /n/tapefs .
  52. .PP
  53. .I 32vfs
  54. interprets raw disk images of 32V systems, which are ca. 1978 research Unix systems for
  55. the VAX, and also pre-FFS Berkeley VAX systems (1KB block size).
  56. .PP
  57. .I Cpiofs
  58. interprets
  59. .B cpio
  60. tape images (constructed with
  61. .BI cpio 's
  62. .B c
  63. flag).
  64. .PP
  65. .I Tarfs
  66. interprets
  67. .I tar
  68. tape images.
  69. .PP
  70. .I Tpfs
  71. interprets
  72. .I tp
  73. tapes from the Fifth through Seventh Edition research Unix systems.
  74. .PP
  75. .I Tapfs
  76. interprets
  77. .I tap
  78. tapes from the pre-Fifth Edition era.
  79. .PP
  80. .I V6fs
  81. interprets disk images from the
  82. Fifth and Sixth edition research Unix systems (512B block size).
  83. .PP
  84. .I V10fs
  85. interprets disk images from the
  86. Tenth Edition research Unix systems (4KB block size).
  87. .PP
  88. .I Zipfs
  89. interprets zip archives (see
  90. .IR gzip (1)).
  91. .SH SOURCE
  92. .PP
  93. These commands are constructed in a highly stereotyped
  94. way using the files
  95. .I fs.c
  96. and
  97. .I util.c
  98. in
  99. .BR /sys/src/cmd/tapefs ,
  100. which in
  101. turn derive substantially from
  102. .IR ramfs (4).
  103. .SH "SEE ALSO
  104. Section 5
  105. .IR passim ,
  106. .IR ramfs (4).