xref: /openbsd/sbin/mount_cd9660/mount_cd9660.8 (revision db3296cf)
1.\"	$OpenBSD: mount_cd9660.8,v 1.17 2003/06/02 20:06:15 millert 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. Neither the name of the University nor the names of its contributors
19.\"    may be used to endorse or promote products derived from this software
20.\"    without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\"     @(#)mount_cd9660.8	8.3 (Berkeley) 3/27/94
35.\"
36.Dd March 27, 1994
37.Dt MOUNT_CD9660 8
38.Os
39.Sh NAME
40.Nm mount_cd9660
41.Nd mount an ISO-9660 filesystem
42.Sh SYNOPSIS
43.Nm mount_cd9660
44.Op Fl egjR
45.Op Fl o Ar options
46.Ar special node
47.Sh DESCRIPTION
48The
49.Nm
50command attaches the ISO-9660 filesystem residing on the device
51.Ar special
52to the global filesystem namespace at the location indicated by
53.Ar node .
54This command is invoked by
55.Xr mount 8
56when using the syntax
57.Bd -ragged -offset 4n
58.Nm mount Op options
59-t cd9660
60.Ar special Ar node
61.Ed
62.Pp
63The options are as follows:
64.Bl -tag -width Ds
65.It Fl e
66Enable the use of extended attributes.
67.It Fl g
68Do not strip version numbers on files.
69(By default, if there are files with different version numbers on the disk,
70only the last one will be listed.)
71In either case, files may be opened without explicitly stating a
72version number.
73.It Fl j
74Do not use any Joliet extensions included in the filesystem.
75.It Fl o Ar options
76Options are specified with a
77.Fl o
78flag followed by a comma separated string of options.
79See the
80.Xr mount 8
81man page for possible options and their meanings.
82.It Fl R
83Do not use any Rockridge extensions included in the filesystem.
84.El
85.Sh SEE ALSO
86.Xr mount 2 ,
87.Xr fstab 5 ,
88.Xr mount 8 ,
89.Xr umount 8
90.Sh HISTORY
91The
92.Nm
93utility first appeared in
94.Bx 4.4 .
95.Sh BUGS
96The cd9660 filesystem does not support the original "High Sierra"
97("CDROM001") format.
98.Pp
99POSIX device node mapping is currently not supported.
100.Pp
101Version numbers are not stripped if Rockridge extensions are in use.
102In this case, accessing files that don't have Rockridge names without
103version numbers gets the one with the lowest version number and not
104the one with the highest.
105.Pp
106There is no ECMA support.
107