]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mknod/mknod.8
sys: Automated cleanup of cdefs and other formatting
[FreeBSD/FreeBSD.git] / sbin / mknod / mknod.8
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .Dd October 3, 2016
29 .Dt MKNOD 8
30 .Os
31 .Sh NAME
32 .Nm mknod
33 .Nd build special file
34 .Sh SYNOPSIS
35 .Nm
36 .Ar name
37 .Nm
38 .Ar name
39 .Op Cm b | c
40 .Ar major minor
41 .Op Ar owner : Ns Ar group
42 .Sh DESCRIPTION
43 .Bf -symbolic
44 The
45 .Nm
46 utility is deprecated on modern
47 .Fx
48 systems.
49 .Ef
50 .Pp
51 The
52 .Nm
53 utility creates device special files.
54 To make nodes manually, the arguments are:
55 .Bl -tag -width indent
56 .It Ar name
57 Device name, for example
58 .Pa /dev/da0
59 for a SCSI disk or
60 .Pa /dev/pts/0
61 for pseudo-terminals.
62 .It Cm b | c
63 Type of device.
64 If the
65 device is a block type device such as a tape or disk drive which needs
66 both cooked and raw special files,
67 the type is
68 .Cm b .
69 All other devices are character type devices, such as terminal
70 and pseudo devices, and are type
71 .Cm c .
72 .It Ar major
73 The major device number is an integer number which tells the kernel
74 which device driver entry point to use.
75 .It Ar minor
76 The minor device number tells the kernel which subunit
77 the node corresponds to on the device; for example,
78 a subunit may be a file system partition
79 or a tty line.
80 .It Ar owner : Ns Ar group
81 The
82 .Ar owner
83 .Ar group
84 operand pair is optional, however, if one is specified, they both must be
85 specified.
86 The
87 .Ar owner
88 may be either a numeric user ID or a user name.
89 If a user name is also a numeric user ID, the operand is used as a
90 user name.
91 The
92 .Ar group
93 may be either a numeric group ID or a group name.
94 Similar to the user name,
95 if a group name is also a numeric group ID, the operand is used as a
96 group name.
97 .El
98 .Pp
99 Major and minor device numbers can be given in any format acceptable to
100 .Xr strtoul 3 ,
101 so that a leading
102 .Ql 0x
103 indicates a hexadecimal number, and a leading
104 .Ql 0
105 will cause the number to be interpreted as octal.
106 .Pp
107 The
108 .Nm
109 utility can be used to recreate deleted device nodes under a
110 .Xr devfs 5
111 mount point by invoking it with only a filename as an argument.
112 Example:
113 .Pp
114 .Dl "mknod /dev/cd0"
115 .Pp
116 where
117 .Pa /dev/cd0
118 is the name of the deleted device node.
119 .Sh COMPATIBILITY
120 The
121 .Xr chown 8 Ns - Ns
122 like functionality is specific to
123 .Fx .
124 .Pp
125 As of
126 .Fx 4.0 ,
127 block devices were deprecated in favour of character
128 devices.
129 As of
130 .Fx 5.0 ,
131 device nodes are managed by the device file system
132 .Xr devfs 5 ,
133 making the
134 .Nm
135 utility superfluous.
136 As of
137 .Fx 6.0
138 device nodes may be created in regular file systems but such
139 nodes cannot be used to access devices.
140 .Sh SEE ALSO
141 .Xr mkfifo 1 ,
142 .Xr mknod 2 ,
143 .Xr devfs 5 ,
144 .Xr chown 8
145 .Sh HISTORY
146 A
147 .Nm
148 utility appeared in
149 .At v4 .