VM: simplify slab allocator
[minix.git] / man / man1 / mkfs.1
blob07c3e8b64e69a8033aca6a31f8a0f3b3cf3b8e63
1 .TH MKFS 1
2 .SH NAME
3 mkfs \- make a file system
4 .SH SYNOPSIS
5 \fBmkfs \fR[\fB\-Ldot\fR] [\fB\-B \fIblocksize\fR] [\fB\-i \fIinodes\fR] [\fB\-b \fIblocks\fR] \fIspecial \fIprototype\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-L
20 # Make a listing on standard output
21 .TP 5
22 .B \-d
23 # Use mod time of \fImkfs\fR binary for all files
24 .TP 5
25 .B \-o
26 # Use a drive other than 0 or 1 (safety precaution)
27 .TP 5
28 .B \-t
29 # Do not test if file system fits on the medium
30 .TP 5
31 .B \-1
32 # Make a version 1 file system (for backward compatibility)
33 .TP 5
34 .B \-i
35 # Number of i-nodes (files)
36 .TP 5
37 .B \-B
38 # Filesystem block size (in bytes)
39 .TP 5
40 .B \-b
41 # Filesystem size (in blocks)
42 .SH EXAMPLES
43 .TP 20
44 .B mkfs /dev/fd1 proto
45 # Make a file system on \fI/dev/fd1\fR
46 .TP 20
47 .B mkfs -b 360 /dev/fd1
48 # Make empty 360 block file system
49 .TP 20
50 .B mkfs /dev/fd1 360
51 # Alternate way to specify the size
52 .SH DESCRIPTION
53 .PP
54 .I Mkfs
55 builds a file system and copies specified files to it.
56 The prototype file tells which directories and files to copy to it.
57 If the prototype file cannot be opened, and its name is just a string of
58 digits, an empty file system will be made with the specified number of
59 blocks.
60 A sample prototype file follows.
61 The text following the \fI#\fR sign in the example below is comment.
62 In real prototype files, comments are not allowed.
63 .PP
64 .nf
65 .ta 0.20i 0.70i 1.10i 3i 3.5i 4i
66         boot                    # boot block file (ignored)
67         360 63                  # blocks and i-nodes
68         d--755 1 1              # root directory
69            bin  d--755 \|2 1    # bin dir: mode (755), uid (2), gid (1)
70                 sh      \|---755 2 1 /user/bin/shell    # shell has mode \fIrwxr-xr-x\fP
71                 mv      -u-755 2 1 /user/bin/mv # u = SETUID bit
72                 login   -ug755 2 1 /user/bin/login      # SETUID and SETGID
73            $                    # end of \fI/bin\fP
74            dev  d--755 2 1      # special files: tty (char), fd0 (block)
75                 tty     c--777 2 1 4 0  # uid=2, gid=1, major=4, minor=0
76                 fd0     b--644 2 1 2 0 360      # uid, gid, major, minor, blocks
77            $                    # end of \fI/dev\fP
78            user d--755 12 1     # user dir: mode (755), uid (12), gid (1)
79                 ast     d--755 12 1     # \fI/user/ast\fP
80                 $               # \fI/user/ast\fP is empty
81            $                    # end of \fI/user\fP
82         $                       # end of root directory
83 .PP
84 .fi
85 The first entry on each line (except the first 3 and the $ lines, which
86 terminate directories) is the name the file or directory will get on the
87 new file system.  
88 Next comes its mode, with the first character being
89 \fB\-dbc\fR for regular files, directories, block special files and character 
90 special files, respectively.
91 The next two characters are used to specify the SETUID and SETGID bits, as
92 shown above.
93 The last three characters of the mode are the 
94 .I rwx
95 protection bits.
96 .PP
97 Following the mode are the uid and gid.
98 For special files, the major and minor devices are needed.
99 .PP
100 The maximum size of a file system is 1 Gb for a version 2 file system,
101 and 64 Mb for a version 1 file system.  Alas the 8086
102 .I fsck
103 runs out of memory on a V2 file system larger than 128 Mb, so for the 8086
104 version of
105 \s-1MINIX 3\s-1
106 you have to limit yourself to file systems of that size.
107 .SH "SEE ALSO"
108 .BR mkproto (1),
109 .BR fsck (1),
110 .BR mount (1).