]> git.saurik.com Git - hfs.git/blob - hfs_util/hfs.util.8
hfs-116.12.tar.gz
[hfs.git] / hfs_util / hfs.util.8
1 .\""Copyright (c) 2001 Apple Computer, Inc. All Rights Reserved.
2 .\"The contents of this file constitute Original Code as defined in and are
3 .\"subject to the Apple Public Source License Version 1.2 (the 'License').
4 .\"You may not use this file except in compliance with the
5 .\"License. Please obtain a copy of the License at
6 .\"http://www.apple.com/publicsource and read it before using this file.
7 .\"
8 .\"This Original Code and all software distributed under the License are
9 .\"distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
10 .\"EXPRESS OR IMPLIED, AND APPLE
11 .\"HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY
12 .\"WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
13 .\"QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
14 .\"specific language governing rights and limitations under the License."
15 .Dd March 24, 2001
16 .Dt HFS.UTIL 8
17 .Os Darwin
18 .Sh NAME
19 .Nm hfs.util
20 .Nd helps mount, probe, and unmount hfs filesystems
21 .Sh SYNOPSIS
22 .Nm
23 .Op Fl m Ar mountflag1 mountflag2 mountflag3 mountflag4
24 .Ar device mount_point
25 .Pp
26 .Nm
27 .Op Fl p Ar mountflag1 mountflag2 mountflag3 mountflag4
28 .Ar device
29 .Pp
30 .Nm
31 .Op Fl aksu
32 .Ar device
33 .Sh DESCRIPTION
34 .Nm
35 helps to coordinate the mounting, probing, and unmounting of hfs filesystems. It essentially wraps
36 .Xr mount 8
37 and it's ilk in one interface that is generic enough for the disk mounter to work with, so that the underlying mount commands do not have to fit into one mold. This allows us to more easily port mount commands without forcing us to reorder or redo the command itself or the disk mounter to understand each specific mount command.
38 .Pp
39 Options:
40 .Bl -tag -width -indent "a"
41 .It Fl a
42 adopt permissions
43 .It Fl k
44 get UUID key
45 .It Fl m Ar mountflag1 mountflag2 mountflag3 mountflag4
46 mount
47 .It Fl p Ar mountflag1 mountflag2 mountflag3 mountflag4
48 probe for mounting
49 .It Fl s
50 set UUID key
51 .It Fl u
52 unmount
53 .El
54 .Pp
55 .Ar mountflags
56 above are either:
57 .Bl -bullet -indent
58 .It
59 .Ar removable
60 or
61 .Ar fixed
62 .It
63 .Ar readonly
64 or
65 .Ar writeable
66 .It
67 .Ar suid
68 or
69 .Ar nosuid
70 .It
71 .Ar dev
72 or
73 .Ar nodev
74 .El
75 .Sh SEE ALSO
76 .Xr autodiskmount 8 ,
77 .Xr cd9660.util 8 ,
78 .Xr msdos.util 8 ,
79 .Xr udf.util 8 ,
80 .Xr ufs.util 8
81 .Sh HISTORY
82 Derived from the Openstep Workspace Manager filesystem utility programs.