1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
'\" t
.TH "UDEV\&.CONF" "5" "" "systemd 241" "udev.conf"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
udev.conf \- Configuration for device event managing daemon
.SH "SYNOPSIS"
.PP
/etc/udev/udev\&.conf
.SH "DESCRIPTION"
.PP
\fBsystemd-udevd\fR(8)
expects its main configuration file at
/etc/udev/udev\&.conf\&. It consists of a set of variables allowing the user to override default udev values\&. All empty lines or lines beginning with \*(Aq#\*(Aq are ignored\&. The following variables can be set:
.PP
\fIudev_log=\fR
.RS 4
The log level\&. Valid values are the numerical syslog priorities or their textual representations:
\fBerr\fR,
\fBinfo\fR
and
\fBdebug\fR\&.
.RE
.PP
\fIchildren_max=\fR
.RS 4
An integer\&. The maximum number of events executed in parallel\&.
.sp
This is the same as the
\fB\-\-children\-max=\fR
option\&.
.RE
.PP
\fIexec_delay=\fR
.RS 4
An integer\&. Delay the execution of
\fIRUN\fR
instructions by the given number of seconds\&. This option might be useful when debugging system crashes during coldplug caused by loading non\-working kernel modules\&.
.sp
This is the same as the
\fB\-\-exec\-delay=\fR
option\&.
.RE
.PP
\fIevent_timeout=\fR
.RS 4
An integer\&. The number of seconds to wait for events to finish\&. After this time, the event will be terminated\&. The default is 180 seconds\&.
.sp
This is the same as the
\fB\-\-event\-timeout=\fR
option\&.
.RE
.PP
\fIresolve_names=\fR
.RS 4
Specifes when systemd\-udevd should resolve names of users and groups\&. When set to
\fBearly\fR
(the default), names will be resolved when the rules are parsed\&. When set to
\fBlate\fR, names will be resolved for every event\&. When set to
\fBnever\fR, names will never be resolved and all devices will be owned by root\&.
.sp
This is the same as the
\fB\-\-resolve\-names=\fR
option\&.
.RE
.PP
In addition,
systemd\-udevd
can be configured by command line options and the kernel command line (see
\fBsystemd-udevd\fR(8))\&.
.SH "SEE ALSO"
.PP
\fBsystemd-udevd\fR(8),
\fBudev\fR(7),
\fBudevadm\fR(8)
|