1998-02-18 09:30:31 +00:00
|
|
|
.\" $NetBSD: mount_msdos.8,v 1.13 1998/02/06 05:57:00 perry Exp $
|
1994-09-19 15:30:36 +00:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1993,1994 Christopher G. Demetriou
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
1998-06-30 06:23:42 +00:00
|
|
|
.\" must display the following acknowledgment:
|
1994-09-19 15:30:36 +00:00
|
|
|
.\" This product includes software developed by Christopher G. Demetriou.
|
|
|
|
.\" 3. The name of the author may not be used to endorse or promote products
|
|
|
|
.\" derived from this software without specific prior written permission
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-09-19 15:30:36 +00:00
|
|
|
.\"
|
|
|
|
.Dd April 7, 1994
|
|
|
|
.Dt MOUNT_MSDOS 8
|
1998-02-18 09:30:31 +00:00
|
|
|
.Os
|
1994-09-19 15:30:36 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm mount_msdos
|
|
|
|
.Nd mount an MS-DOS file system
|
|
|
|
.Sh SYNOPSIS
|
2000-11-20 16:52:27 +00:00
|
|
|
.Nm
|
1998-02-18 09:30:31 +00:00
|
|
|
.Op Fl o Ar options
|
1994-09-19 15:30:36 +00:00
|
|
|
.Op Fl u Ar uid
|
|
|
|
.Op Fl g Ar gid
|
|
|
|
.Op Fl m Ar mask
|
1998-02-18 09:30:31 +00:00
|
|
|
.Op Fl s
|
|
|
|
.Op Fl l
|
|
|
|
.Op Fl 9
|
|
|
|
.\".Op Fl G
|
1998-02-23 09:41:02 +00:00
|
|
|
.Op Fl L Ar locale
|
|
|
|
.Op Fl W Ar table
|
1994-09-19 15:30:36 +00:00
|
|
|
.Pa special
|
|
|
|
.Pa node
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
1998-02-18 09:30:31 +00:00
|
|
|
.Nm
|
1994-09-19 15:30:36 +00:00
|
|
|
command attaches the MS-DOS filesystem residing on
|
|
|
|
the device
|
|
|
|
.Pa special
|
|
|
|
to the global filesystem namespace at the location
|
|
|
|
indicated by
|
|
|
|
.Pa node .
|
|
|
|
This command is normally executed by
|
|
|
|
.Xr mount 8
|
|
|
|
at boot time, but can be used by any user to mount an
|
|
|
|
MS-DOS file system on any directory that they own (provided,
|
|
|
|
of course, that they have appropriate access to the device that
|
|
|
|
contains the file system).
|
|
|
|
.Pp
|
|
|
|
The options are as follows:
|
|
|
|
.Bl -tag -width Ds
|
1998-02-18 09:30:31 +00:00
|
|
|
.It Fl o Ar options
|
|
|
|
Use the specified mount
|
|
|
|
.Ar options ,
|
|
|
|
as described in
|
This lets you specify "gemdosfs", "shortnames", "longnames", and
"nowin95" as arguments to the "-o" flag, as alternatives to "-G", "-s",
"-l", and "-9"; when running "mount_msdos" by hand, that doesn't let you
do anything you couldn't already do, but if you're letting "mount" run
it, it lets you specify those options, which is especially useful if,
for example, you have an entry in "/etc/fstab" for some file system,
with "noauto" set, so you can conveniently mount a DOS partition from a
removable drive and force it to treat the file system as VFAT rather
than boring old FAT.
Submitted by: Guy Harris <guy@netapp.com>
1999-06-18 12:05:02 +00:00
|
|
|
.Xr mount 8 ,
|
|
|
|
or one of the MSDOS filesystem-specific options
|
|
|
|
.Ar shortnames ,
|
|
|
|
.Ar longnames
|
|
|
|
or
|
|
|
|
.Ar nowin95 ,
|
|
|
|
all of which can be used to affect Windows name translation in the
|
|
|
|
underlying filesystem.
|
1998-02-18 09:30:31 +00:00
|
|
|
.It Fl u Ar uid
|
1994-09-19 15:30:36 +00:00
|
|
|
Set the owner of the files in the file system to
|
|
|
|
.Ar uid .
|
|
|
|
The default owner is the owner of the directory
|
|
|
|
on which the file system is being mounted.
|
1998-02-18 09:30:31 +00:00
|
|
|
.It Fl g Ar gid
|
1994-09-19 15:30:36 +00:00
|
|
|
Set the group of the files in the file system to
|
|
|
|
.Ar gid .
|
|
|
|
The default group is the group of the directory
|
|
|
|
on which the file system is being mounted.
|
1998-02-18 09:30:31 +00:00
|
|
|
.It Fl m Ar mask
|
1994-09-19 15:30:36 +00:00
|
|
|
Specify the maximum file permissions for files
|
|
|
|
in the file system.
|
1998-06-30 06:23:42 +00:00
|
|
|
(For example, a
|
|
|
|
.Ar mask
|
|
|
|
of
|
1994-09-19 15:30:36 +00:00
|
|
|
.Li 755
|
|
|
|
specifies that, by default, the owner should have
|
|
|
|
read, write, and execute permissions for files, but
|
|
|
|
others should only have read and execute permissions.
|
|
|
|
See
|
|
|
|
.Xr chmod 1
|
|
|
|
for more information about octal file modes.)
|
|
|
|
Only the nine low-order bits of
|
|
|
|
.Ar mask
|
|
|
|
are used.
|
1998-06-30 06:23:42 +00:00
|
|
|
The default
|
|
|
|
.Ar mask
|
|
|
|
is taken from the
|
1994-09-19 15:30:36 +00:00
|
|
|
directory on which the file system is being mounted.
|
1998-02-18 09:30:31 +00:00
|
|
|
.It Fl s
|
|
|
|
Force behaviour to
|
|
|
|
ignore and not generate Win'95 long filenames.
|
|
|
|
.It Fl l
|
|
|
|
Force listing and generation of
|
|
|
|
Win'95 long filenames
|
|
|
|
and separate creation/modification/access dates.
|
|
|
|
.Pp
|
|
|
|
If neither
|
|
|
|
.Fl s
|
|
|
|
nor
|
|
|
|
.Fl l
|
|
|
|
are given,
|
|
|
|
.Nm
|
|
|
|
searches the root directory of the filesystem to
|
|
|
|
be mounted for any existing Win'95 long filenames.
|
1999-01-11 18:35:14 +00:00
|
|
|
If no such entries are found, but short DOS filenames are found,
|
1998-02-18 09:30:31 +00:00
|
|
|
.Fl s
|
2000-03-01 11:27:47 +00:00
|
|
|
is the default.
|
|
|
|
Otherwise
|
1998-02-18 09:30:31 +00:00
|
|
|
.Fl l
|
|
|
|
is assumed.
|
|
|
|
.It Fl 9
|
|
|
|
Ignore the special Win'95 directory entries even
|
2000-03-01 11:27:47 +00:00
|
|
|
if deleting or renaming a file.
|
|
|
|
This forces
|
1998-02-18 09:30:31 +00:00
|
|
|
.Fl s .
|
|
|
|
.\".It Fl G
|
|
|
|
.\"This option causes the filesystem to be interpreted as an Atari-Gemdos
|
1998-06-30 06:23:42 +00:00
|
|
|
.\"filesystem. The differences to the MS-DOS filesystem are minimal and
|
1998-02-18 09:30:31 +00:00
|
|
|
.\"limited to the boot block. This option enforces
|
|
|
|
.\".Fl s .
|
1998-02-23 09:41:02 +00:00
|
|
|
.It Fl L Ar locale
|
1998-02-23 16:49:16 +00:00
|
|
|
Specify locale name used for internal uppercase and lowercase conversions
|
1998-02-23 09:41:02 +00:00
|
|
|
for DOS and Win'95 names.
|
1998-02-23 17:20:07 +00:00
|
|
|
By default ISO 8859-1 assumed as local character set.
|
1998-02-23 09:41:02 +00:00
|
|
|
.It Fl W Ar table
|
1998-02-23 16:49:16 +00:00
|
|
|
Specify text file with 3 conversion tables:
|
|
|
|
.Bl -enum
|
|
|
|
.It
|
|
|
|
Local character set to Unicode conversion table (upper half) for Win'95 long
|
2000-01-08 16:47:55 +00:00
|
|
|
names, 128 Unicode codes separated by 8 per row.
|
1998-02-23 17:29:08 +00:00
|
|
|
If some code not present in Unicode, use
|
|
|
|
0x003F code ('?') as replacement.
|
1998-02-23 16:49:16 +00:00
|
|
|
.It
|
|
|
|
DOS to local character set conversion table (upper half) for DOS names,
|
2000-01-08 16:47:55 +00:00
|
|
|
128 character codes separated by 8 per row.
|
|
|
|
Code 0x3F ('?') used for impossible translations.
|
1998-02-23 16:49:16 +00:00
|
|
|
.It
|
|
|
|
Local character set to DOS conversion table (upper half) for DOS names,
|
2000-01-08 16:47:55 +00:00
|
|
|
128 character codes separated by 8 per row.
|
|
|
|
Some codes have special meaning:
|
1998-03-01 08:41:05 +00:00
|
|
|
.Bl -hang
|
|
|
|
.It 0x00
|
|
|
|
character disallowed in DOS file name;
|
|
|
|
.It 0x01
|
|
|
|
character should be replaced by '_' in DOS file name;
|
|
|
|
.It 0x02
|
|
|
|
character should be skipped in DOS file name;
|
|
|
|
.El
|
1998-02-23 16:49:16 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
1998-02-23 17:20:07 +00:00
|
|
|
By default ISO 8859-1 assumed as local character set.
|
1998-02-22 15:28:06 +00:00
|
|
|
If file path isn't absolute,
|
|
|
|
.Pa /usr/libdata/msdosfs/
|
|
|
|
prefix prepended.
|
|
|
|
.El
|
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /usr/libdata/msdosfs -compact
|
|
|
|
.It Pa /usr/libdata/msdosfs
|
1998-02-23 17:29:08 +00:00
|
|
|
default place for character sets conversion tables
|
1994-09-19 15:30:36 +00:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr mount 2 ,
|
|
|
|
.Xr unmount 2 ,
|
1998-02-18 09:30:31 +00:00
|
|
|
.Xr fstab 5 ,
|
|
|
|
.Xr mount 8
|
1994-09-19 15:30:36 +00:00
|
|
|
.Sh CAVEATS
|
1998-02-18 09:30:31 +00:00
|
|
|
The use of the
|
|
|
|
.Fl 9
|
|
|
|
flag could result in damaged filesystems,
|
|
|
|
albeit the damage is in part taken care of by
|
|
|
|
procedures similar to the ones used in Win'95.
|
1996-04-03 23:11:08 +00:00
|
|
|
.Pp
|
1997-12-19 23:03:00 +00:00
|
|
|
.Fx 2.1
|
|
|
|
and earlier versions could not handle cluster sizes larger than 16K.
|
|
|
|
Just mounting an MS-DOS file system could cause corruption to any
|
|
|
|
mounted file system.
|
|
|
|
Cluster sizes larger than 16K are unavoidable for file system sizes
|
|
|
|
larger than 1G, and also occur when filesystems larger than 1G are
|
|
|
|
shrunk to smaller than 1G using FIPS.
|
1994-09-19 15:30:36 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
1998-02-18 09:30:31 +00:00
|
|
|
.Nm
|
1997-12-19 23:03:00 +00:00
|
|
|
utility first appeared in
|
|
|
|
.Fx 2.0 .
|
1994-09-19 15:30:36 +00:00
|
|
|
Its predecessor, the
|
|
|
|
.Nm mount_pcfs
|
1997-12-19 23:03:00 +00:00
|
|
|
utility appeared in
|
|
|
|
.Fx 1.0 ,
|
|
|
|
and was abandoned in favor
|
1994-09-19 15:30:36 +00:00
|
|
|
of the more aptly-named
|
2000-11-20 16:52:27 +00:00
|
|
|
.Nm .
|