xref: /netbsd-src/usr.sbin/dev_mkdb/dev_mkdb.8 (revision aaf4ece63a859a04e37cf3a7229b5fab0157cc06)
1.\" Copyright (c) 1990, 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.\"	from: @(#)dev_mkdb.8	8.1 (Berkeley) 6/6/93
29.\"	$NetBSD: dev_mkdb.8,v 1.10 2003/08/07 11:25:18 agc Exp $
30.\"
31.Dd June 6, 1993
32.Os
33.Dt DEV_MKDB 8
34.Sh NAME
35.Nm dev_mkdb
36.Nd create
37.Pa /dev
38database
39.Sh SYNOPSIS
40.Nm
41.Op Fl o Ar database
42.Op directory
43.Sh DESCRIPTION
44The
45.Nm
46command creates a
47.Xr db 3
48hash access method database in
49.Dq Pa /var/run/dev.db
50which contains the names of all of the character and block special
51files in the specified directory, using the file type and the
52.Fa st_rdev
53field as the key.
54If no directory is specified, the
55.Dq Pa /dev
56directory is used.
57.Pp
58Keys are a structure containing a mode_t followed by a dev_t,
59with any padding zero'd out.
60The former is the type of the file (st_mode \*[Am] S_IFMT),
61the latter is the st_rdev field.
62.Pp
63The options are as follows:
64.Bl -tag -width indent
65.It Fl o Ar database
66Put the output databases in the named file.
67.El
68.Sh FILES
69.Bl -tag -width /var/run/dev.db -compact
70.It Pa /dev
71Device directory.
72.It Pa /var/run/dev.db
73Database file.
74.El
75.Sh SEE ALSO
76.Xr ps 1 ,
77.Xr stat 2 ,
78.Xr db 3 ,
79.Xr devname 3 ,
80.Xr kvm_nlist 3 ,
81.Xr ttyname 3 ,
82.Xr kvm_mkdb 8
83.Sh HISTORY
84The
85.Nm
86command appeared in
87.Bx 4.4 .
88