xref: /freebsd/sbin/mount_cd9660/mount_cd9660.8 (revision afe61c15161c324a7af299a9b8457aba5afc92db)
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.Dd March 27, 1994
38.Dt MOUNT_CD9660 8
39.Os BSD 4
40.Sh NAME
41.Nm mount_cd9660
42.Nd mount an ISO-9660 filesystem
43.Sh SYNOPSIS
44.Nm mount_cd9660
45.Op Fl egr
46.Op Fl o Ar options
47.Ar special | node
48.Sh DESCRIPTION
49The
50.Nm mount_cd9660
51command attaches the ISO-9660 filesystem residing on the device
52.Pa special
53to the global filesystem namespace at the location indicated by
54.Pa node .
55This command is normally executed by
56.Xr mount 8
57at boot time.
58.Pp
59The options are as follows:
60.Bl -tag -width indent
61.It Fl e
62Enable the use of extended attributes.
63.It Fl g
64Do not strip version numbers on files.
65(By default, if there are files with different version numbers on the disk,
66only the last one will be listed.)
67In either case, files may be opened without explicitly stating a
68version number.
69.It Fl o
70Options are specified with a
71.Fl o
72flag followed by a comma separated string of options.
73See the
74.Xr mount 8
75man page for possible options and their meanings.
76.It Fl r
77Do not use any Rockridge extensions included in the filesystem.
78.El
79.Sh SEE ALSO
80.Xr mount 2 ,
81.Xr unmount 2 ,
82.Xr fstab 5 ,
83.Xr mount 8
84.Sh BUGS
85The cd9660 filesystem does not support the original "High Sierra"
86("CDROM001") format.
87.Pp
88POSIX device node mapping is currently not supported.
89.Pp
90Version numbers are not stripped if Rockridge extensions are in use.
91In this case, accessing files that don't have Rockridge names without
92version numbers gets the one with the lowest version number and not
93the one with the highest.
94.Pp
95There is no ECMA support.
96.Sh HISTORY
97The
98.Nm mount_cd9660
99utility first appeared 4.4BSD.
100