Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
[dragonfly.git] / sbin / mount_cd9660 / mount_cd9660.8
1 .\" Copyright (c) 1993, 1994
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\" All rights reserved.
4 .\"
5 .\" This code is derived from software donated to Berkeley by
6 .\" Christopher G. Demetriou.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. All advertising materials mentioning features or use of this software
17 .\"    must display the following acknowledgement:
18 .\"     This product includes software developed by the University of
19 .\"     California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\"    may be used to endorse or promote products derived from this software
22 .\"    without specific prior written permission.
23 .\"
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" SUCH DAMAGE.
35 .\"
36 .\"     @(#)mount_cd9660.8      8.3 (Berkeley) 3/27/94
37 .\" $FreeBSD: src/sbin/mount_cd9660/mount_cd9660.8,v 1.12.2.6 2003/02/24 00:56:41 trhodes Exp $
38 .\" $DragonFly: src/sbin/mount_cd9660/mount_cd9660.8,v 1.4 2008/07/27 22:17:48 thomas Exp $
39 .\"
40 .Dd September 12, 2009
41 .Dt MOUNT_CD9660 8
42 .Os
43 .Sh NAME
44 .Nm mount_cd9660
45 .Nd mount an ISO-9660 file system
46 .Sh SYNOPSIS
47 .Nm
48 .Op Fl begjrv
49 .Op Fl C Ar charset
50 .Op Fl o Ar options
51 .Op Fl s Ar startsector
52 .Ar special node
53 .Sh DESCRIPTION
54 The
55 .Nm
56 utility attaches the ISO-9660 file system residing on the device
57 .Pa special
58 to the global file system namespace at the location indicated by
59 .Pa node .
60 This command is normally executed by
61 .Xr mount 8
62 at boot time.
63 .Pp
64 The options are as follows:
65 .Bl -tag -width indent
66 .It Fl b
67 Relax checking for Supplementary Volume Descriptor Flags field
68 which is set to a wrong value on some Joliet formatted disks.
69 .It Fl e
70 Enable the use of extended attributes.
71 .It Fl g
72 Do not strip version numbers on files.
73 (By default, if there are files with different version numbers on the disk,
74 only the last one will be listed.)
75 In either case, files may be opened without explicitly stating a
76 version number.
77 .It Fl j
78 Do not use any Joliet extensions included in the file system.
79 .It Fl o
80 Options are specified with a
81 .Fl o
82 flag followed by a comma separated string of options.
83 See the
84 .Xr mount 8
85 man page for possible options and their meanings.
86 The following cd9660 specific options are available:
87 .Pp
88 .Bl -tag -width "nostrictjoliet" -compact
89 .It Cm extatt
90 Same as
91 .Fl e .
92 .It Cm gens
93 Same as
94 .Fl g .
95 .It Cm nojoliet
96 Same as
97 .Fl j .
98 .It Cm norrip
99 Same as
100 .Fl r .
101 .It Cm nostrictjoliet
102 Same as
103 .Fl b .
104 .El
105 .It Fl r
106 Do not use any Rockridge extensions included in the file system.
107 .It Fl s Ar startsector
108 Start the file system at
109 .Ar startsector .
110 Normally, if the underlying device is a CD-ROM drive,
111 .Nm
112 will try to figure out the last track from the CD-ROM containing
113 data, and start the file system there.
114 If the device is not a CD-ROM,
115 or the table of contents cannot be examined, the file system will be
116 started at sector 0.
117 This option can be used to override the behaviour.
118 Note that
119 .Ar startsector
120 is measured in CD-ROM blocks, with 2048 bytes each.
121 This is the same
122 as for example the
123 .Cm info
124 command of
125 .Xr cdcontrol 1
126 is printing.
127 It is possible to mount an arbitrary session of a multi-session CD by specifying
128 the correct
129 .Ar startsector
130 here.
131 .It Fl C Ar charset
132 Specify local
133 .Ar charset
134 to convert Unicode file names when using Joliet extensions.
135 .It Fl v
136 Be verbose about the starting sector decisions made.
137 .El
138 .Sh EXAMPLES
139 The following command can be used to mount a Kodak Photo-CD:
140 .Pp
141 .Dl "mount_cd9660 -o rw -v -s 0 /dev/cd0c /cdrom"
142 .Sh SEE ALSO
143 .Xr cdcontrol 1 ,
144 .Xr mount 2 ,
145 .Xr unmount 2 ,
146 .Xr fstab 5 ,
147 .Xr mount 8
148 .Sh HISTORY
149 The
150 .Nm
151 utility first appeared in
152 .Bx 4.4 .
153 .Sh BUGS
154 POSIX device node mapping is currently not supported.
155 .Pp
156 Version numbers are not stripped if Rockridge extensions are in use.
157 In this case, accessing files that do not have Rockridge names without
158 version numbers gets the one with the lowest version number and not
159 the one with the highest.
160 .Pp
161 There is no ECMA support.