mirror of
https://github.com/systemd/systemd.git
synced 2024-12-26 03:22:00 +03:00
[PATCH] manpage update
Nice, here is the corresponding man update which also removes the mention of the limitation of getgrname() and friends with klibc.
This commit is contained in:
parent
7b7e4df57b
commit
167a27e70f
37
udev.8
37
udev.8
@ -35,7 +35,7 @@ lines, and lines beginning with a '#' will be ignored.
|
|||||||
|
|
||||||
.B udev
|
.B udev
|
||||||
expects its main configuration file at
|
expects its main configuration file at
|
||||||
.I /etc/udev/udev.conf.
|
.IR /etc/udev/udev.conf .
|
||||||
The file consists of a set of variables and values that allow the user to
|
The file consists of a set of variables and values that allow the user to
|
||||||
override default udev values. The current set of variables that can be
|
override default udev values. The current set of variables that can be
|
||||||
overridden in this file is:
|
overridden in this file is:
|
||||||
@ -43,39 +43,46 @@ overridden in this file is:
|
|||||||
.B udev_root
|
.B udev_root
|
||||||
This is the where in the filesystem to place the device nodes. The default
|
This is the where in the filesystem to place the device nodes. The default
|
||||||
value for this is
|
value for this is
|
||||||
.I /udev/
|
.IR /udev/ .
|
||||||
.TP
|
.TP
|
||||||
.B udev_db
|
.B udev_db
|
||||||
The name and location of the udev database. The default value for this is
|
The name and location of the udev database. The default value for this is
|
||||||
.I /udev/.udev.tdb
|
.IR /udev/.udev.tdb .
|
||||||
.TP
|
.TP
|
||||||
.B udev_rules
|
.B udev_rules
|
||||||
This is the location of the udev rules file. The default value for this is
|
This is the location of the udev rules file. The default value for this is
|
||||||
.I /etc/udev/udev.rules
|
.IR /etc/udev/udev.rules .
|
||||||
|
If a directory is specified, the whole directory is
|
||||||
|
scanned for files ending with
|
||||||
|
.I .rules
|
||||||
|
and all rule files are read in lexical order.
|
||||||
.TP
|
.TP
|
||||||
.B udev_permissions
|
.B udev_permissions
|
||||||
This is the location of the udev permission file. The default value for this is
|
This is the location of the udev permission file. The default value for this is
|
||||||
.I /etc/udev/udev.permissions
|
.IR /etc/udev/udev.permissions .
|
||||||
|
If a directory is specified, the whole directory is scanned for files ending with
|
||||||
|
.I .permissions
|
||||||
|
and all permission files are read in lexical order.
|
||||||
.TP
|
.TP
|
||||||
.B udev_log
|
.B udev_log
|
||||||
If you want udev to log some information to the syslog for every node created or
|
If you want udev to log some information to the syslog for every node created or
|
||||||
removed. The default value for this is
|
removed. The default value for this is
|
||||||
.I yes
|
.IR yes .
|
||||||
.TP
|
.TP
|
||||||
.B default_mode
|
.B default_mode
|
||||||
This is the default mode for all nodes that have no explicit match in the
|
This is the default mode for all nodes that have no explicit match in the
|
||||||
permissions file. The default value for this is
|
permissions file. The default value for this is
|
||||||
.I 0666
|
.IR 0666 .
|
||||||
.TP
|
.TP
|
||||||
.B default_owner
|
.B default_owner
|
||||||
This is the default owner for all nodes that have no explicit match in the
|
This is the default owner for all nodes that have no explicit match in the
|
||||||
permissions file. The default value for this is
|
permissions file. The default value for this is
|
||||||
.I root
|
.IR root .
|
||||||
.TP
|
.TP
|
||||||
.B default_group
|
.B default_group
|
||||||
This is the default group for all nodes that have no explicit match in the
|
This is the default group for all nodes that have no explicit match in the
|
||||||
permissions file. The default value for this is
|
permissions file. The default value for this is
|
||||||
.I root
|
.IR root .
|
||||||
.br
|
.br
|
||||||
.P
|
.P
|
||||||
.RI "A sample " udev.conf " might look like this:
|
.RI "A sample " udev.conf " might look like this:
|
||||||
@ -87,8 +94,9 @@ udev_root="/udev/"
|
|||||||
# udev_db - The name and location of the udev database.
|
# udev_db - The name and location of the udev database.
|
||||||
udev_db="/udev/.udev.tdb"
|
udev_db="/udev/.udev.tdb"
|
||||||
|
|
||||||
# udev_rules - The name and location of the udev rules file
|
# udev_rules - The location of the directory where to look for files
|
||||||
udev_rules="/etc/udev/udev.rules"
|
which names ending with .rules
|
||||||
|
udev_rules="/etc/udev/"
|
||||||
|
|
||||||
# udev_permissions - The name and location of the udev permission file
|
# udev_permissions - The name and location of the udev permission file
|
||||||
udev_permissions="/etc/udev/udev.permissions"
|
udev_permissions="/etc/udev/udev.permissions"
|
||||||
@ -242,11 +250,6 @@ file.
|
|||||||
Every line lists a device name followed by owner, group and permission
|
Every line lists a device name followed by owner, group and permission
|
||||||
mode. All values are separated by colons. The name field may contain a
|
mode. All values are separated by colons. The name field may contain a
|
||||||
pattern to apply the values to a whole class of devices.
|
pattern to apply the values to a whole class of devices.
|
||||||
.br
|
|
||||||
If
|
|
||||||
.B udev
|
|
||||||
was built using klibc or is used before the user database is accessible (e.g.
|
|
||||||
.BR initrd "(4)), only numeric owner and group values may be used."
|
|
||||||
.sp
|
.sp
|
||||||
.RI "A sample " udev.permissions " might look like this:"
|
.RI "A sample " udev.permissions " might look like this:"
|
||||||
.sp
|
.sp
|
||||||
|
2
udevd.8
2
udevd.8
@ -33,7 +33,7 @@ isn't already running,
|
|||||||
.B udevsend
|
.B udevsend
|
||||||
will start it.
|
will start it.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.BR udev (8), hotplug (8)
|
.BR udev (8), " hotplug" (8)
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
.B udevd
|
.B udevd
|
||||||
was developed primarily by Kay Sievers <kay.sievers@vrfy.org>, with much help
|
was developed primarily by Kay Sievers <kay.sievers@vrfy.org>, with much help
|
||||||
|
Loading…
Reference in New Issue
Block a user