Foreword
If you are experiencing a problem with system boot up due to Systemd, please see the common bugs document before filing a bug. Some easy configuration tweaks that fix a wide range of issues may be listed there. If the problem you are seeing is not listed there or none of the workarounds seem to help, please consider filing a bug to help us make Fedora run better on your hardware.
Be prepared to include some information (logs) about your system as well. These should be complete (no snippets please), not in an archive, uncompressed, with MIME type set as text/plain.
Identifying your problem area
- Remove rhgb and quiet from the kernel command line.
- Add systemd.log_level=debug to the kernel command line to log systemd with debug output enabled.
- Add systemd.log_target=kmsg to the kernel command line to let systemd buffer to be written to the kernel log buffer.
- Run /bin/systemd --test --system from command line to test run init as systemd.
Information to include in your report
All bug reports
In all cases, the following should be mentioned and attached to your bug report:
- The exact kernel command-line used if not default. Typically from the bootloader configuration file (e.g.
/etc/grub.conf
) or from/proc/cmdline
- A copy of
/var/log/messages
- The output of the dmesg command
dmesg > dmesg.txt
- Systemd dump
systemctl dump > systemd_dump.txt
Configure a serial console
Successfully debugging boot up will require some form of console logging during the system boot. This section documents configuring a serial console connection to record boot messages.
- First, enable serial console output for both the kernel and the bootloader.
- Open the file
/etc/grub.conf
for editing. Below the line timeout=5, add the following:- serial --unit=0 --speed=9600
- terminal --timeout=5 serial console
- Also in
/etc/grub.conf
, add the following boot arguemnts to the kernel line:console=tty0 console=ttyS0,9600
- When finished, the
/etc/grub.conf
file should look similar to the example below.- default=0
- timeout=5
- serial --unit=0 --speed=9600
- terminal --timeout=5 serial console
- title Fedora (2.6.35.4-18.fc14.x86_64)
- root (hd0,0)
- kernel /vmlinuz-2.6.35.4-18.fc14.x86_64 ro root=/dev/mapper/VolGroup-lv_root rd_LVM_LV=VolGroup/lv_root #*:rd_LVM_LV=VolGroup/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc #*:KEYTABLE=is-latin1 systemd.log_level=debug systemd.log_target=kmsg console=tty0 console=ttyS0,9600
- initrd /initramfs-2.6.35.4-18.fc14.x86_64.img
- More detailed information on how to configure the kernel for console output can be found at [1].
- Open the file
Enable shell access early in systemd
You can enable shell access early in systemd startup process to fall back on and diagnose systemd related boot up issues with various systemctl commands should systemd startup otherwise fail.
- Run
echo "openvt -c9 /bin/sh" >> /etc/rc.d/rc.sysinit
to enable shell on tty9.
Run systemctl list-jobs
to identify slow boot and look for the jobs that are "running" those jobs are the ones where boot waits for completion on and the ones that listed as "waiting" will be executed only after those which are "running" are completed.
- #TODO add more examples
Additional systemd boot parameters
The following boot parameters are also available to further assist with debugging boot issues.
- #TODO