xref: /openbsd/sbin/mount_cd9660/mount_cd9660.8 (revision 133306f0)
1.\"	$OpenBSD: mount_cd9660.8,v 1.13 2000/11/09 17:52:58 aaron Exp $
2.\"	$NetBSD: mount_cd9660.8,v 1.3 1995/04/23 10:33:13 cgd Exp $
3.\"
4.\" Copyright (c) 1993, 1994
5.\"     The Regents of the University of California.  All rights reserved.
6.\"
7.\" This code is derived from software donated to Berkeley by
8.\" Christopher G. Demetriou.
9.\"
10.\" Redistribution and use in source and binary forms, with or without
11.\" modification, are permitted provided that the following conditions
12.\" are met:
13.\" 1. Redistributions of source code must retain the above copyright
14.\"    notice, this list of conditions and the following disclaimer.
15.\" 2. Redistributions in binary form must reproduce the above copyright
16.\"    notice, this list of conditions and the following disclaimer in the
17.\"    documentation and/or other materials provided with the distribution.
18.\" 3. All advertising materials mentioning features or use of this software
19.\"    must display the following acknowledgement:
20.\"	This product includes software developed by the University of
21.\"	California, Berkeley and its contributors.
22.\" 4. Neither the name of the University nor the names of its contributors
23.\"    may be used to endorse or promote products derived from this software
24.\"    without specific prior written permission.
25.\"
26.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36.\" SUCH DAMAGE.
37.\"
38.\"     @(#)mount_cd9660.8	8.3 (Berkeley) 3/27/94
39.\"
40.Dd March 27, 1994
41.Dt MOUNT_CD9660 8
42.Os
43.Sh NAME
44.Nm mount_cd9660
45.Nd mount an ISO-9660 filesystem
46.Sh SYNOPSIS
47.Nm mount_cd9660
48.Op Fl egjR
49.Op Fl o Ar options
50.Ar special node
51.Sh DESCRIPTION
52The
53.Nm
54command attaches the ISO-9660 filesystem residing on the device
55.Ar special
56to the global filesystem namespace at the location indicated by
57.Ar node .
58This command is invoked by
59.Xr mount 8
60when using the syntax
61.Bd -ragged -offset 4n
62.Nm mount Op options
63-t cd9660
64.Ar special Ar node
65.Ed
66.Pp
67This command is normally executed by
68.Xr mount 8
69at boot time.
70.Pp
71The options are as follows:
72.Bl -tag -width Ds
73.It Fl e
74Enable the use of extended attributes.
75.It Fl g
76Do not strip version numbers on files.
77(By default, if there are files with different version numbers on the disk,
78only the last one will be listed.)
79In either case, files may be opened without explicitly stating a
80version number.
81.It Fl j
82Do not use any Joliet extensions included in the filesystem.
83.It Fl o Ar options
84Options are specified with a
85.Fl o
86flag followed by a comma separated string of options.
87See the
88.Xr mount 8
89man page for possible options and their meanings.
90.It Fl R
91Do not use any Rockridge extensions included in the filesystem.
92.El
93.Sh SEE ALSO
94.Xr mount 2 ,
95.Xr unmount 2 ,
96.Xr fstab 5 ,
97.Xr mount 8
98.Sh BUGS
99The cd9660 filesystem does not support the original "High Sierra"
100("CDROM001") format.
101.Pp
102POSIX device node mapping is currently not supported.
103.Pp
104Version numbers are not stripped if Rockridge extensions are in use.
105In this case, accessing files that don't have Rockridge names without
106version numbers gets the one with the lowest version number and not
107the one with the highest.
108.Pp
109There is no ECMA support.
110.Sh HISTORY
111The
112.Nm
113utility first appeared in
114.Bx 4.4 .
115