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
|
'\" t
.TH "SYSTEMD\-DEBUG\-GENERATOR" "8" "" "systemd 241" "systemd-debug-generator"
.\" -----------------------------------------------------------------
.\" * 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"
systemd-debug-generator \- Generator for enabling a runtime debug shell and masking specific units at boot
.SH "SYNOPSIS"
.PP
/usr/lib/systemd/system\-generators/systemd\-debug\-generator
.SH "DESCRIPTION"
.PP
systemd\-debug\-generator
is a generator that reads the kernel command line and understands three options:
.PP
If the
\fBsystemd\&.mask=\fR
or
\fBrd\&.systemd\&.mask=\fR
option is specified and followed by a unit name, this unit is masked for the runtime, similar to the effect of
\fBsystemctl\fR(1)\*(Aqs
\fBmask\fR
command\&. This is useful to boot with certain units removed from the initial boot transaction for debugging system startup\&. May be specified more than once\&.
\fBrd\&.systemd\&.mask=\fR
is honored only by initial RAM disk (initrd) while
\fBsystemd\&.mask=\fR
is honored only in the main system\&.
.PP
If the
\fBsystemd\&.wants=\fR
or
\fBrd\&.systemd\&.wants=\fR
option is specified and followed by a unit name, a start job for this unit is added to the initial transaction\&. This is useful to start one or more additional units at boot\&. May be specified more than once\&.
\fBrd\&.systemd\&.wants=\fR
is honored only by initial RAM disk (initrd) while
\fBsystemd\&.wants=\fR
is honored only in the main system\&.
.PP
If the
\fBsystemd\&.debug_shell\fR
or
\fBrd\&.systemd\&.debug_shell\fR
option is specified, the debug shell service
"debug\-shell\&.service"
is pulled into the boot transaction\&. It will spawn a debug shell on tty9 during early system startup\&. Note that the shell may also be turned on persistently by enabling it with
\fBsystemctl\fR(1)\*(Aqs
\fBenable\fR
command\&.
\fBrd\&.systemd\&.debug_shell=\fR
is honored only by initial RAM disk (initrd) while
\fBsystemd\&.debug_shell\fR
is honored only in the main system\&.
.PP
systemd\-debug\-generator
implements
\fBsystemd.generator\fR(7)\&.
.SH "SEE ALSO"
.PP
\fBsystemd\fR(1),
\fBsystemctl\fR(1),
\fBkernel-command-line\fR(7)
|