You are not logged in.
When booting into my system, the boot hangs for 1 minute and 30 seconds while two job processes time out.
Systemd-analyze:
Startup finished in 3.578s (kernel) + 1min 30.292s (userspace) = 1min 33.871s
Here is the specific errors from the journalctl command: (notice the time interval)
Apr 13 15:13:25 Arh-Precision systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Apr 13 15:13:25 Arh-Precision kernel: input: DualPoint Stick as /devices/platform/i8042/serio1/input/input14
Apr 13 15:13:25 Arh-Precision kernel: mousedev: PS/2 mouse device common for all mice
Apr 13 15:13:25 Arh-Precision kernel: input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input7
Apr 13 15:14:52 Arh-Precision systemd[1]: Job dev-disk-by\x2duuid.device/start timed out.
Apr 13 15:14:52 Arh-Precision systemd[1]: Timed out waiting for device dev-disk-by\x2duuid.device.
Apr 13 15:14:52 Arh-Precision systemd[1]: Dependency failed for Cryptography Setup for enc.
Apr 13 15:14:52 Arh-Precision systemd[1]: Dependency failed for Encrypted Volumes.
Apr 13 15:14:52 Arh-Precision systemd[1]: Job cryptsetup.target/start failed with result 'dependency'.
Apr 13 15:14:52 Arh-Precision systemd[1]: Job systemd-cryptsetup@enc.service/start failed with result 'dependency'.
Apr 13 15:14:52 Arh-Precision systemd[1]: Job dev-disk-by\x2duuid.device/start failed with result 'timeout'.
Apr 13 15:14:52 Arh-Precision systemd[1]: Job sys-subsystem-net-devices-eth0.device/start timed out.
Apr 13 15:14:52 Arh-Precision systemd[1]: Timed out waiting for device sys-subsystem-net-devices-eth0.device.
Apr 13 15:14:52 Arh-Precision systemd[1]: Dependency failed for dhcpcd on eth0.
Apr 13 15:14:52 Arh-Precision systemd[1]: Job dhcpcd@eth0.service/start failed with result 'dependency'.
Apr 13 15:14:52 Arh-Precision systemd[1]: Job sys-subsystem-net-devices-eth0.device/start failed with result 'timeout'.
Systemd-analyze blame:
347ms lvm2-pvscan@254:0.service
243ms systemd-journald.service
183ms systemd-udev-trigger.service
141ms systemd-fsck@dev-disk-by\x2duuid-5e60b103\x2df7f8\x2d48ac\x2d8678\x2d4480fe8a2e84.service
120ms kmod-static-nodes.service
104ms systemd-remount-fs.service
88ms systemd-journal-flush.service
79ms systemd-sysctl.service
74ms systemd-udevd.service
66ms systemd-vconsole-setup.service
35ms systemd-logind.service
34ms systemd-tmpfiles-setup-dev.service
31ms systemd-random-seed.service
30ms tmp.mount
29ms boot.mount
26ms systemd-user-sessions.service
19ms dev-disk-by\x2duuid-d93c7588\x2de328\x2d40b1\x2d8376\x2d893d1e82c58d.swap
19ms systemd-rfkill@rfkill1.service
16ms dev-hugepages.mount
13ms sys-kernel-debug.mount
13ms user@0.service
13ms systemd-rfkill@rfkill0.service
12ms systemd-tmpfiles-clean.service
11ms sys-kernel-config.mount
9ms systemd-backlight@backlight:acpi_video0.service
8ms dev-mqueue.mount
7ms systemd-update-utmp.service
6ms systemd-tmpfiles-setup.service
My disk partition scheme looks like this: (lsblk)
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 119.2G 0 disk
`-enc 254:0 0 119.2G 0 crypt
|-store-swap 254:1 0 4G 0 lvm [SWAP]
`-store-root 254:2 0 115.2G 0 lvm /
sdb 8:16 1 14.9G 0 disk
|-sdb1 8:17 1 14.4G 0 part /mnt
`-sdb2 8:18 1 530M 0 part /boot
sr0 11:0 1 1024M 0 rom
/etc/mkinitcpio.conf
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES="ext2"
# BINARIES
BINARIES=""
# FILES
FILES=""
# HOOKS
HOOKS="base udev autodetect modconf block encrypt btrfs lvm2 filesystems keyboard fsck"
# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""
I believe that the issue is with my mkinitcpio.conf, I was having issues before where it would not boot. Maybe my hooks are in the wrong order, or I'm missing some packages... Anyways, when I boot (after waiting 1 minute 30 seconds...) everthing seems fine exept that my network card is not running, but that may be another issue. When I rebuild mkinitcpio, I get two messages about the firmware modules aic94xx and wd719x. Any help would be great! Thanks!
Edit: Changed subject to better fit problem.
SOLVED:
The issue was that the system was trying to mount a volume that did not exist. Check your /etc/fstab and /etc/crypttab files for bad configurations.
Last edited by a-jamesregan (2015-04-14 10:15:07)
Offline
When I rebuild mkinitcpio, I get two messages about the firmware modules aic94xx and wd719x.
Offline
I figured it out! For anyone looking up a somilar issue, like your system hanging at boot time for some jobs to complete, check your /etc/fstab and /etc/crypttab files. I had a half-configured line in mine. Commenting it out now makes my system possibly the fastest I've ever used.
enc UUID=
Offline
a-jamesregan wrote:When I rebuild mkinitcpio, I get two messages about the firmware modules aic94xx and wd719x.
Your right, it was nothing.
Offline