From 45fb9a5a20ed02e055fab5e4417f6a17f5f15fa7 Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Thu, 8 Feb 2024 10:58:32 +0100 Subject: [PATCH] Add post archlinux improve boot time performance --- ...archlinux-improve-boot-time-performance.md | 160 + layouts/shortcodes/side-image.html | 1 + static/images/2024/02/arch-linux-logo.png | Bin 0 -> 41798 bytes static/images/2024/02/post_plot.svg | 5177 ++++++++++++++ static/images/2024/02/pre-plot.svg | 6249 +++++++++++++++++ themes/devroom-2024/assets/scss/devroom.scss | 7 + 6 files changed, 11594 insertions(+) create mode 100644 content/posts/2024/2024-02-08-archlinux-improve-boot-time-performance.md create mode 100644 layouts/shortcodes/side-image.html create mode 100644 static/images/2024/02/arch-linux-logo.png create mode 100644 static/images/2024/02/post_plot.svg create mode 100644 static/images/2024/02/pre-plot.svg diff --git a/content/posts/2024/2024-02-08-archlinux-improve-boot-time-performance.md b/content/posts/2024/2024-02-08-archlinux-improve-boot-time-performance.md new file mode 100644 index 0000000..b2683e2 --- /dev/null +++ b/content/posts/2024/2024-02-08-archlinux-improve-boot-time-performance.md @@ -0,0 +1,160 @@ ++++ +date = 2024-02-08 +title = "Arch Linux: Improve boot time performance" +tags = ["homelab", "arch", "linux"] ++++ + +{{% figure src="/images/2024/02/arch-linux-logo.png" class="side-image" %}} + +I run Debian on all my servers. It's a great stable OS and I love it. Proxmox, [which I run on my homelab server](https://www.devroom.io/2020/11/12/the-big-diy-nas-update/#proxmox), is also based on Debian. + +However, on my desktop I run [Arch Linux](https://archlinux.org/). It's a great distro to tinker with. It comes with a lot of _up to date_ packages, but it also has the AUR - Arch User Repository. So for any app you can find, there probably is an easy way to install it. + +### Slllooooowwww... + +As of late, I noticed that boot times on my system were getting longer. Which is strange, because I run some pretty okay hardware. + +As it turns out, cold booting this box takes 1min 7.538s, according to my logs. + +Luckily, the [Arch Wiki](https://wiki.archlinux.org/) offers a [nice guide on how to trouble shoot boot performance](https://wiki.archlinux.org/title/Improving_performance/Boot_process). + +There's `systemd-analyze blame` which will show the time it takes each service to start up. I've copied the top 10 here, which incidentally are also all >1 second start-up times. + +
 systemd-analyze blame
+20.771s docker.service
+ 3.514s dev-sdb3.device
+ 2.459s systemd-journal-flush.service
+ 1.880s upower.service
+ 1.806s ldconfig.service
+ 1.687s systemd-tmpfiles-setup.service
+ 1.587s containerd.service
+ 1.287s systemd-modules-load.service
+ 1.032s systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service
+ 1.028s cups.service
+
+ +Docker is a clear offender here. `dev-sdb3` is also quite slow it seems. + +Another command recommended in the wiki is `systemd-analyze critical-chain`. This will show you the critical chain to boot your system. Again, docker is here clearly a big offender. + +
 systemd-analyze critical-chain
+The time when unit became active or started is printed after the "@" character.
+The time the unit took to start is printed after the "+" character.
+
+graphical.target @33.660s
+└─multi-user.target @33.660s
+  └─docker.service @12.888s +20.771s
+    └─containerd.service @11.264s +1.587s
+      └─network.target @11.236s
+        └─wpa_supplicant.service @27.465s +268ms
+          └─basic.target @10.366s
+            └─dbus-broker.service @9.822s +541ms
+              └─dbus.socket @9.793s
+                └─sysinit.target @9.759s
+                  └─systemd-update-done.service @9.722s +36ms
+                    └─systemd-journal-catalog-update.service @9.375s +326ms
+                      └─systemd-tmpfiles-setup.service @7.657s +1.687s
+                        └─local-fs.target @7.587s
+                          └─boot.mount @7.458s +128ms
+                            └─systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service @6.398s +1.032s
+                              └─dev-disk-by\x2duuid-96EB\x2d4C82.device @6.397s
+
+ +But wait, there's more. `systemd-analyze plot > plot.svg` will generate an SVG image showing you the entire boot process in time. It's big, but there are some clear red markers that indicate issues. + +At the bottom right you'll find `graphical.target`, where we want to end up as quickly as possible. And it's clear `docker` is in the way. + +![](/images/2024/02/pre-plot.svg) +_Open the SVG in a new window to see more detail._ + +## Fixed it! + +So, with `docker` as a clear offender in slowing down the boot process, let's fix that. + +There are two systemd units: `docker.service` and `docker.socket`. + + - `docker.service` is there to start docker and make sure it is up and running. + - `docker.socket` listens on `/run/docker.sock` (or `/var/run/docker.sock` through a symlink) and will start `docker.service` when needed. + +I think you know where this is going. `docker.socket` is disabled by default and `docker.service` is enabled. Which makes sense, because when you boot your machine you want docker up and running as well. Especially for servers this makes sense. + +For my desktop, not so much. I use docker, but not always and I prefer to login and check my email while docker is booting in the background anyway. + +The trick thus is to disable `docker.service` from starting automatically and make sure `docker.socket` is enabled. That will take docker out of the criticial chain when booting and start docker when I'm logged in and ready to use it. + +``` +$ sudo systemctl disable docker.service +$ sudo systemctl enable docker.socket +``` + +So, what does that look like in `systemd-analyze`? + +
 systemd-analyze critical-chain
+The time when unit became active or started is printed after the "@" character.
+The time the unit took to start is printed after the "+" character.
+
+graphical.target @3.893s
+└─multi-user.target @3.893s
+  └─cups.service @3.672s +220ms
+    └─nss-user-lookup.target @3.763s
+
+ +
 systemd-analyze blame
+2.152s systemd-modules-load.service
+1.295s dev-sdb3.device
+ 622ms boot.mount
+ 385ms NetworkManager.service
+ 310ms systemd-udev-trigger.service
+ 280ms udisks2.service
+ 258ms systemd-remount-fs.service
+ 220ms cups.service
+ 203ms user@1000.service
+ 189ms systemd-tmpfiles-setup.service
+ 
+ +![](/images/2024/02/post_plot.svg) +_Open the SVG in a new window to see more detail._ + +
 systemctl status docker.socket
+ docker.socket - Docker Socket for the API
+     Loaded: loaded (/usr/lib/systemd/system/docker.socket; enabled; preset: disabled)
+     Active: active (running) since Thu 2024-02-08 10:38:47 CET; 5min ago
+   Triggers:  docker.service
+     Listen: /run/docker.sock (Stream)
+      Tasks: 0 (limit: 38400)
+     Memory: 0B (peak: 516.0K)
+        CPU: 1ms
+     CGroup: /system.slice/docker.socket
+
+ +and + +
 systemctl status docker.service
+ docker.service - Docker Application Container Engine
+     Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; preset: disabled)
+     Active: active (running) since Thu 2024-02-08 10:39:33 CET; 5min ago
+TriggeredBy:  docker.socket
+       Docs: https://docs.docker.com
+   Main PID: 2522 (dockerd)
+      Tasks: 42
+     Memory: 222.1M (peak: 235.7M)
+        CPU: 797ms
+     CGroup: /system.slice/docker.service
+             └─2522 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
+
+ +## Was it worth it? + +Before: + +> Startup finished in 14.729s (firmware) + 6.386s (loader) + 12.761s (kernel) + 33.661s (userspace) = 1min 7.538s graphical.target reached after 33.660s in userspace. + +After: + +> Startup finished in 13.735s (firmware) + 4.074s (loader) + 6.744s (kernel) + 3.893s (userspace) = 28.448s graphical.target reached after 3.893s in userspace. + +Total boot time went down from 1m8s to 28s. I cannot explain the difference in kernel boot time, but the userspace savings are significant. + +From here I could probably optimize more by compiling a customized kernel or using a different bootloader. Suspend to RAM would be even faster, but that feels like cheating against a hard boot. + +Hopefully this will give you some pointers in how to troubleshoot slow boot times on your machine. \ No newline at end of file diff --git a/layouts/shortcodes/side-image.html b/layouts/shortcodes/side-image.html new file mode 100644 index 0000000..307e35f --- /dev/null +++ b/layouts/shortcodes/side-image.html @@ -0,0 +1 @@ +
{{ .Inner }}
\ No newline at end of file diff --git a/static/images/2024/02/arch-linux-logo.png b/static/images/2024/02/arch-linux-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..b354eb33a99a5ef3f08513a025acd5a9650045ed GIT binary patch literal 41798 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�MBKrDhB%g@wRa*?m?} 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 F{~rM*%^m;% literal 0 HcmV?d00001 diff --git a/static/images/2024/02/post_plot.svg b/static/images/2024/02/post_plot.svg new file mode 100644 index 0000000..d926857 --- /dev/null +++ b/static/images/2024/02/post_plot.svg @@ -0,0 +1,5177 @@ + + + + + + + + + + + + + + + + + +Startup finished in 13.735s (firmware) + 4.074s (loader) + 6.744s (kernel) + 3.893s (userspace) = 28.448s +graphical.target reached after 3.893s in userspace.Arch Linux morpheus (Linux 6.7.3-arch1-2 #1 SMP PREEMPT_DYNAMIC Fri, 02 Feb 2024 17:03:55 +0000) x86-64 + + + + + + + + + + + -17.0s + + + + + + + + + + + -16.0s + + + + + + + + + + + -15.0s + + + + + + + + + + + -14.0s + + + + + + + + + + + -13.0s + + + + + + + + + + + -12.0s + + + + + + + + + + + -11.0s + + + + + + + + + + + -10.0s + + + + + + + + + + + -9.0s + + + + + + + + + + + -8.0s + + + + + + + + + + + -7.0s + + + + + + + + + + + -6.0s + + + + + + + + + + + -5.0s + + + + + + + + + + + -4.0s + + + + + + + + + + + -3.0s + + + + + + + + + + + -2.0s + + + + + + + + + + + -1.0s + + + + + + + + + + + 0.0s + + + + + + + + + + + 1.0s + + + + + + + + + + + 2.0s + + + + + + + + + + + 3.0s + + + + + + + + + + + 4.0s + + + + + + + + + + + 5.0s + + + + + + + + + + + 6.0s + + + + + + + + + + + 7.0s + + + + + + + + + + + 8.0s + + + + + + + + + + + 9.0s + + + + + + + + + + + 10.0s + + + + + + + + firmware + + loader + + kernel + + + + + systemd + +-.slice: + +Before: + system.slice + proc-sys-fs-binfmt_misc.mount + dev-mqueue.mount + dev-hugepages.mount + user.slice + slices.target + sys-kernel-config.mount + init.scope + -.mount + sys-fs-fuse-connections.mount + sys-kernel-tracing.mount + sys-kernel-debug.mount + + + + + -.slice + + +init.scope: + +After: + -.slice + +Requires: + -.slice + + + + + init.scope + + +system.slice: + +After: + -.slice + +Before: + docker.socket + systemd-journal-catalog-update.service + systemd-modules-load.service + initrd-udevadm-cleanup-db.service + syslog.socket + systemd-hibernate-resume.service + rtkit-daemon.service + cups.service + systemd-rfkill.service + kmod-static-nodes.service + systemd-pcrmachine.service + systemd-bsod.service + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + initrd-switch-root.service + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + boot.mount + systemd-battery-check.service + accounts-daemon.service + systemd-journald-audit.socket + systemd-tmpfiles-setup-dev.service + systemd-sysext.socket + systemd-tmpfiles-setup-dev-early.service + containerd.service + sshd.service + systemd-timesyncd.service + winbind.service + systemd-remount-fs.service + system-systemd\x2dfsck.slice + systemd-pcrextend.socket + systemd-sysctl.service + systemd-udev-settle.service + systemd-random-seed.service + systemd-pcrphase-initrd.service + audit-rules.service + systemd-ask-password-console.service + systemd-ask-password-wall.service + rescue.service + var-lib-machines.mount + run-user-1000-doc.mount + cups.socket + lvm2-monitor.service + systemd-binfmt.service + gdm.service + system-getty.slice + polkit.service + systemd-journald.service + dbus-broker.service + systemd-vconsole-setup.service + system-modprobe.slice + auditd.service + wpa_supplicant.service + sshdgenkeys.service + systemd-update-utmp.service + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + systemd-journal-flush.service + systemd-machine-id-commit.service + dbus.socket + run-user-1000-keybase-kbfs.mount + run-user-1000.mount + systemd-fsck-root.service + smbnetfs.service + systemd-firstboot.service + systemd-sysusers.service + emergency.service + shadow.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + colord.service + systemd-soft-reboot.service + dev-sdb2.swap + systemd-udevd-kernel.socket + slices.target + systemd-oomd.socket + upower.service + systemd-oomd.service + docker.service + systemd-tpm2-setup-early.service + initrd-cleanup.service + man-db.service + dm-event.socket + systemd-journald.socket + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + ldconfig.service + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + systemd-quotacheck.service + systemd-pcrphase-sysinit.service + systemd-tmpfiles-setup.service + systemd-pcrphase.service + systemd-repart.service + systemd-tpm2-setup.service + systemd-udevd.service + systemd-user-sessions.service + systemd-journald-dev-log.socket + systemd-udevd-control.socket + nmb.service + archlinux-keyring-wkd-sync.service + lvm2-lvmpolld.service + mkinitcpio-generate-shutdown-ramfs.service + systemd-hostnamed.service + systemd-coredump.socket + NetworkManager.service + smb.service + systemd-boot-random-seed.service + avahi-daemon.service + initrd-parse-etc.service + dm-event.service + systemd-udev-trigger.service + avahi-daemon.socket + tmp.mount + systemd-update-done.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + lvm2-lvmpolld.socket + systemd-logind.service + systemd-rfkill.socket + run-user-1000-gvfs.mount + systemd-sysext.service + systemd-hwdb-update.service + udisks2.service + systemd-tmpfiles-clean.service + +Requires: + -.slice + + + + + system.slice + + +-.mount: + +After: + blockdev@dev-disk-by\x2duuid-39a5b889\x2dbe8e\x2d42ae\x2da07f\x2d2e8011e7c84d.target + -.slice + +Before: + shadow.service + accounts-daemon.service + dm-event.socket + systemd-tpm2-setup.service + dev-mqueue.mount + archlinux-keyring-wkd-sync.service + dbus.socket + proc-sys-fs-binfmt_misc.automount + colord.service + dev-hugepages.mount + lvm2-lvmpolld.socket + local-fs.target + session-3.scope + systemd-hostnamed.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + run-user-1000.mount + proc-sys-fs-binfmt_misc.mount + avahi-daemon.socket + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + polkit.service + cups.path + boot.mount + man-db.service + archlinux-keyring-wkd-sync.timer + run-user-1000-keybase-kbfs.mount + systemd-journal-flush.service + man-db.timer + systemd-oomd.service + dev-sdb2.swap + run-user-1000-gvfs.mount + systemd-pcrextend.socket + var-lib-machines.mount + systemd-journald.service + systemd-rfkill.socket + systemd-sysext.socket + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + sys-fs-fuse-connections.mount + shadow.timer + dbus-broker.service + systemd-update-utmp.service + systemd-journald.socket + systemd-oomd.socket + sys-kernel-tracing.mount + systemd-ask-password-wall.path + upower.service + syslog.socket + systemd-coredump.socket + docker.socket + tmp.mount + systemd-logind.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + systemd-timesyncd.service + systemd-random-seed.service + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + cups.socket + systemd-rfkill.service + systemd-ask-password-console.path + systemd-udevd-control.socket + sys-kernel-config.mount + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + run-user-1000-doc.mount + basic.target + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + sys-kernel-debug.mount + systemd-journald-dev-log.socket + +Requires: + -.slice + + + + + -.mount + + +dev-sdb3.device: + + + + + dev-sdb3.device (1.295s) + + +system-getty.slice: + +After: + system.slice + +Before: + shutdown.target + getty@tty1.service + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + system-getty.slice + + +system-modprobe.slice: + +After: + system.slice + +Before: + modprobe@drm.service + modprobe@dm_mod.service + modprobe@loop.service + modprobe@configfs.service + shutdown.target + modprobe@fuse.service + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + system-modprobe.slice + + +system-systemd\x2dfsck.slice: + +After: + system.slice + +Before: + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + shutdown.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + system-systemd\x2dfsck.slice + + +user.slice: + +After: + -.slice + +Before: + user-1000.slice + slices.target + systemd-logind.service + shutdown.target + +Requires: + -.slice + +Conflicts: + shutdown.target + + + + + user.slice + + +systemd-ask-password-console.path: + +After: + -.mount + plymouth-start.service + +Before: + paths.target + emergency.service + systemd-ask-password-console.service + shutdown.target + cryptsetup.target + +Requires: + -.mount + +Conflicts: + shutdown.target + emergency.service + + + + + systemd-ask-password-console.path + + +systemd-ask-password-wall.path: + +After: + -.mount + +Before: + shutdown.target + paths.target + cryptsetup.target + emergency.service + systemd-ask-password-wall.service + +Requires: + -.mount + +Conflicts: + shutdown.target + emergency.service + + + + + systemd-ask-password-wall.path + + +proc-sys-fs-binfmt_misc.automount: + +After: + -.mount + +Before: + proc-sys-fs-binfmt_misc.mount + sysinit.target + shutdown.target + systemd-binfmt.service + +Requires: + -.mount + +Conflicts: + shutdown.target + + + + + proc-sys-fs-binfmt_misc.automount + + +cryptsetup.target: + +After: + systemd-pcrphase-initrd.service + cryptsetup-pre.target + systemd-ask-password-wall.path + systemd-ask-password-console.path + +Before: + sysinit.target + shutdown.target + +Conflicts: + shutdown.target + + + + + cryptsetup.target + + +getty.target: + +After: + getty@tty1.service + +Before: + multi-user.target + shutdown.target + +Wants: + getty@tty1.service + +Conflicts: + shutdown.target + + + + + getty.target + + +integritysetup.target: + +Before: + sysinit.target + shutdown.target + +Conflicts: + shutdown.target + + + + + integritysetup.target + + +remote-fs.target: + +After: + remote-fs-pre.target + systemd-quotacheck.service + +Before: + systemd-pcrphase.service + systemd-user-sessions.service + +Wants: + var-lib-machines.mount + +Conflicts: + shutdown.target + + + + + remote-fs.target + + +slices.target: + +After: + system.slice + user.slice + -.slice + +Before: + shutdown.target + basic.target + +Wants: + -.slice + system.slice + +Conflicts: + shutdown.target + + + + + slices.target + + +veritysetup.target: + +After: + veritysetup-pre.target + +Before: + sysinit.target + shutdown.target + +Conflicts: + shutdown.target + + + + + veritysetup.target + + +dm-event.socket: + +After: + -.mount + system.slice + +Before: + lvm2-monitor.service + dm-event.service + +Requires: + -.mount + system.slice + + + + + dm-event.socket + + +lvm2-lvmpolld.socket: + +After: + -.mount + system.slice + +Before: + lvm2-lvmpolld.service + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + lvm2-lvmpolld.socket + + +systemd-coredump.socket: + +After: + -.mount + system.slice + +Before: + systemd-sysctl.service + shutdown.target + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + systemd-coredump.socket + + +systemd-journald-dev-log.socket: + +After: + -.mount + system.slice + +Before: + sockets.target + systemd-journald.service + +Requires: + -.mount + system.slice + + + + + systemd-journald-dev-log.socket + + +systemd-journald.socket: + +After: + -.mount + system.slice + +Before: + systemd-timesyncd.service + proc-sys-fs-binfmt_misc.mount + cups.service + systemd-quotacheck.service + systemd-tmpfiles-clean.service + systemd-udev-trigger.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + systemd-tmpfiles-setup-dev.service + sshdgenkeys.service + initrd-parse-etc.service + NetworkManager.service + dm-event.service + systemd-repart.service + systemd-udevd.service + sys-kernel-debug.mount + systemd-modules-load.service + docker.service + systemd-fsck-root.service + polkit.service + smbnetfs.service + systemd-ask-password-console.service + systemd-logind.service + lvm2-monitor.service + boot.mount + modprobe@loop.service + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + systemd-remount-fs.service + systemd-tpm2-setup.service + systemd-ask-password-wall.service + systemd-oomd.service + avahi-daemon.service + systemd-random-seed.service + systemd-machine-id-commit.service + initrd-cleanup.service + initrd-udevadm-cleanup-db.service + colord.service + shadow.service + systemd-binfmt.service + systemd-pcrmachine.service + auditd.service + gdm.service + run-user-1000-gvfs.mount + user@1000.service + systemd-journald.service + sockets.target + wpa_supplicant.service + smb.service + kmod-static-nodes.service + run-user-1000.mount + systemd-update-utmp.service + systemd-tmpfiles-setup.service + dev-hugepages.mount + archlinux-keyring-wkd-sync.service + accounts-daemon.service + upower.service + systemd-sysext.service + sshd.service + systemd-user-sessions.service + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + systemd-battery-check.service + man-db.service + systemd-rfkill.service + systemd-sysusers.service + systemd-tmpfiles-setup-dev-early.service + modprobe@fuse.service + systemd-pcrphase.service + audit-rules.service + ldconfig.service + dev-mqueue.mount + dev-sdb2.swap + systemd-hostnamed.service + var-lib-machines.mount + lvm2-lvmpolld.service + rtkit-daemon.service + systemd-tpm2-setup-early.service + dbus-broker.service + systemd-journal-catalog-update.service + initrd-switch-root.service + systemd-soft-reboot.service + systemd-journal-flush.service + systemd-sysctl.service + systemd-vconsole-setup.service + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + modprobe@configfs.service + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + systemd-udev-settle.service + modprobe@drm.service + run-user-1000-doc.mount + run-user-1000-keybase-kbfs.mount + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + winbind.service + systemd-pcrphase-sysinit.service + sys-kernel-tracing.mount + systemd-hwdb-update.service + modprobe@dm_mod.service + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + systemd-update-done.service + systemd-pcrphase-initrd.service + systemd-boot-random-seed.service + udisks2.service + sys-kernel-config.mount + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + sys-fs-fuse-connections.mount + nmb.service + systemd-hibernate-resume.service + tmp.mount + mkinitcpio-generate-shutdown-ramfs.service + containerd.service + systemd-bsod.service + user-runtime-dir@1000.service + +Requires: + -.mount + system.slice + + + + + systemd-journald.socket + + +systemd-udevd-control.socket: + +After: + -.mount + system.slice + +Before: + sockets.target + systemd-udev-trigger.service + initrd-udevadm-cleanup-db.service + systemd-udevd.service + +Requires: + -.mount + system.slice + + + + + systemd-udevd-control.socket + + +systemd-udevd-kernel.socket: + +After: + system.slice + +Before: + sockets.target + systemd-udev-trigger.service + initrd-udevadm-cleanup-db.service + systemd-udevd.service + +Requires: + system.slice + + + + + systemd-udevd-kernel.socket + + +dev-hugepages.mount: + +After: + -.mount + systemd-journald.socket + -.slice + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + dev-hugepages.mount (11ms) + + +dev-mqueue.mount: + +After: + -.slice + -.mount + systemd-journald.socket + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + dev-mqueue.mount (11ms) + + +sys-kernel-debug.mount: + +After: + -.slice + -.mount + systemd-journald.socket + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + sys-kernel-debug.mount (10ms) + + +sys-kernel-tracing.mount: + +After: + -.mount + -.slice + systemd-journald.socket + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + sys-kernel-tracing.mount (10ms) + + +kmod-static-nodes.service: + +After: + system.slice + systemd-journald.socket + +Before: + sysinit.target + systemd-tmpfiles-setup-dev-early.service + +Requires: + system.slice + + + + + kmod-static-nodes.service (62ms) + + +lvm2-monitor.service: + +After: + dm-event.socket + systemd-journald.socket + system.slice + dm-event.service + +Before: + local-fs-pre.target + shutdown.target + +Requires: + system.slice + dm-event.socket + +Conflicts: + shutdown.target + + + + + lvm2-monitor.service (158ms) + + +modprobe@configfs.service: + +After: + system-modprobe.slice + systemd-journald.socket + +Before: + sys-kernel-config.mount + sysinit.target + +Requires: + system-modprobe.slice + + + + + modprobe@configfs.service (61ms) + + +modprobe@dm_mod.service: + +After: + system-modprobe.slice + systemd-journald.socket + +Before: + systemd-repart.service + sysinit.target + +Requires: + system-modprobe.slice + + + + + modprobe@dm_mod.service (88ms) + + +modprobe@drm.service: + +After: + system-modprobe.slice + systemd-journald.socket + +Before: + sysinit.target + systemd-logind.service + +Requires: + system-modprobe.slice + + + + + modprobe@drm.service (113ms) + + +modprobe@fuse.service: + +After: + system-modprobe.slice + systemd-journald.socket + +Before: + sysinit.target + sys-fs-fuse-connections.mount + +Requires: + system-modprobe.slice + + + + + modprobe@fuse.service (156ms) + + +modprobe@loop.service: + +After: + system-modprobe.slice + systemd-journald.socket + +Before: + systemd-repart.service + sysinit.target + +Requires: + system-modprobe.slice + + + + + modprobe@loop.service (175ms) + + +systemd-journald.service: + +After: + systemd-journald.socket + systemd-journald-dev-log.socket + syslog.socket + -.mount + systemd-journald-audit.socket + system.slice + +Before: + sysinit.target + soft-reboot.target + systemd-journal-flush.service + systemd-tmpfiles-setup.service + +Requires: + system.slice + systemd-journald.socket + -.mount + +Wants: + systemd-journald-dev-log.socket + systemd-journald.socket + +Conflicts: + soft-reboot.target + + + + + systemd-journald.service (83ms) + + +systemd-modules-load.service: + +After: + system.slice + systemd-journald.socket + +Before: + systemd-sysctl.service + shutdown.target + sysinit.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-modules-load.service (2.152s) + + +systemd-remount-fs.service: + +After: + systemd-journald.socket + system.slice + systemd-fsck-root.service + +Before: + upower.service + systemd-rfkill.service + systemd-random-seed.service + accounts-daemon.service + local-fs.target + systemd-update-utmp.service + systemd-hwdb-update.service + systemd-firstboot.service + systemd-quotacheck.service + systemd-journal-flush.service + systemd-logind.service + systemd-rfkill.socket + systemd-sysusers.service + local-fs-pre.target + shutdown.target + systemd-timesyncd.service + systemd-tpm2-setup.service + +Requires: + system.slice + +Wants: + local-fs-pre.target + +Conflicts: + shutdown.target + + + + + systemd-remount-fs.service (258ms) + + +systemd-udev-trigger.service: + +After: + system.slice + systemd-udevd-control.socket + systemd-journald.socket + systemd-udevd-kernel.socket + +Before: + sysinit.target + systemd-udev-settle.service + initrd-udevadm-cleanup-db.service + +Requires: + system.slice + +Wants: + systemd-udevd.service + + + + + systemd-udev-trigger.service (310ms) + + +sys-fs-fuse-connections.mount: + +After: + -.slice + systemd-journald.socket + -.mount + modprobe@fuse.service + +Before: + sysinit.target + +Requires: + -.slice + -.mount + modprobe@fuse.service + + + + + sys-fs-fuse-connections.mount (4ms) + + +sys-kernel-config.mount: + +After: + modprobe@configfs.service + -.slice + -.mount + systemd-journald.socket + +Before: + sysinit.target + +Requires: + modprobe@configfs.service + -.mount + -.slice + + + + + sys-kernel-config.mount (4ms) + + +systemd-journal-flush.service: + +After: + systemd-journald.socket + systemd-remount-fs.service + system.slice + -.mount + systemd-journald.service + +Before: + systemd-tmpfiles-setup.service + +Requires: + -.mount + system.slice + +Wants: + systemd-journald.service + + + + + systemd-journal-flush.service (187ms) + + +systemd-random-seed.service: + +After: + system.slice + systemd-remount-fs.service + -.mount + systemd-journald.socket + +Before: + first-boot-complete.target + shutdown.target + systemd-boot-random-seed.service + +Requires: + -.mount + system.slice + +Wants: + first-boot-complete.target + +Conflicts: + shutdown.target + + + + + systemd-random-seed.service (50ms) + + +systemd-tmpfiles-setup-dev-early.service: + +After: + systemd-journald.socket + system.slice + run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev\x2dearly.service.mount + kmod-static-nodes.service + +Before: + initrd-switch-root.target + shutdown.target + systemd-udevd.service + local-fs-pre.target + systemd-sysusers.service + sysinit.target + systemd-tmpfiles-setup-dev.service + +Requires: + system.slice + +Wants: + local-fs-pre.target + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-tmpfiles-setup-dev-early.service (109ms) + + +systemd-tmpfiles-setup-dev.service: + +After: + run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev.service.mount + systemd-sysusers.service + systemd-tmpfiles-setup-dev-early.service + system.slice + systemd-journald.socket + +Before: + systemd-udevd.service + local-fs-pre.target + shutdown.target + sysinit.target + initrd-switch-root.target + +Requires: + system.slice + +Wants: + local-fs-pre.target + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-tmpfiles-setup-dev.service (99ms) + + +local-fs-pre.target: + +After: + systemd-hibernate-resume.service + systemd-tmpfiles-setup-dev-early.service + dm-event.service + systemd-tmpfiles-setup-dev.service + lvm2-monitor.service + systemd-remount-fs.service + +Before: + local-fs.target + run-user-1000-gvfs.mount + run-user-1000.mount + run-user-1000-doc.mount + shutdown.target + var-lib-machines.mount + run-user-1000-keybase-kbfs.mount + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + boot.mount + +Conflicts: + shutdown.target + + + + + local-fs-pre.target + + +systemd-udevd.service: + +After: + system.slice + systemd-tmpfiles-setup-dev.service + systemd-udevd-kernel.socket + systemd-hwdb-update.service + systemd-tmpfiles-setup-dev-early.service + systemd-journald.socket + systemd-sysusers.service + systemd-udevd-control.socket + +Before: + sysinit.target + initrd-udevadm-cleanup-db.service + +Requires: + system.slice + +Wants: + systemd-udevd-control.socket + systemd-udevd-kernel.socket + + + + + systemd-udevd.service (36ms) + + +sys-module-fuse.device: + +Wants: + sys-fs-fuse-connections.mount + + + + + sys-module-fuse.device + + +sys-module-configfs.device: + +Wants: + sys-kernel-config.mount + + + + + sys-module-configfs.device + + +dev-ttyS0.device: + + + + + dev-ttyS0.device + + +sys-devices-pnp0-00:04-tty-ttyS0.device: + + + + + sys-devices-pnp0-00:04-tty-ttyS0.device + + +sys-devices-platform-serial8250-tty-ttyS1.device: + + + + + sys-devices-platform-serial8250-tty-ttyS1.device + + +dev-ttyS1.device: + + + + + dev-ttyS1.device + + +dev-ttyS11.device: + + + + + dev-ttyS11.device + + +sys-devices-platform-serial8250-tty-ttyS11.device: + + + + + sys-devices-platform-serial8250-tty-ttyS11.device + + +dev-ttyS14.device: + + + + + dev-ttyS14.device + + +sys-devices-platform-serial8250-tty-ttyS14.device: + + + + + sys-devices-platform-serial8250-tty-ttyS14.device + + +sys-devices-platform-serial8250-tty-ttyS15.device: + + + + + sys-devices-platform-serial8250-tty-ttyS15.device + + +dev-ttyS15.device: + + + + + dev-ttyS15.device + + +dev-ttyS12.device: + + + + + dev-ttyS12.device + + +sys-devices-platform-serial8250-tty-ttyS12.device: + + + + + sys-devices-platform-serial8250-tty-ttyS12.device + + +sys-devices-platform-serial8250-tty-ttyS16.device: + + + + + sys-devices-platform-serial8250-tty-ttyS16.device + + +dev-ttyS16.device: + + + + + dev-ttyS16.device + + +sys-devices-platform-serial8250-tty-ttyS10.device: + + + + + sys-devices-platform-serial8250-tty-ttyS10.device + + +dev-ttyS10.device: + + + + + dev-ttyS10.device + + +dev-ttyS13.device: + + + + + dev-ttyS13.device + + +sys-devices-platform-serial8250-tty-ttyS13.device: + + + + + sys-devices-platform-serial8250-tty-ttyS13.device + + +sys-devices-platform-serial8250-tty-ttyS17.device: + + + + + sys-devices-platform-serial8250-tty-ttyS17.device + + +dev-ttyS17.device: + + + + + dev-ttyS17.device + + +sys-devices-platform-serial8250-tty-ttyS18.device: + + + + + sys-devices-platform-serial8250-tty-ttyS18.device + + +dev-ttyS18.device: + + + + + dev-ttyS18.device + + +dev-ttyS19.device: + + + + + dev-ttyS19.device + + +sys-devices-platform-serial8250-tty-ttyS19.device: + + + + + sys-devices-platform-serial8250-tty-ttyS19.device + + +sys-devices-platform-serial8250-tty-ttyS2.device: + + + + + sys-devices-platform-serial8250-tty-ttyS2.device + + +dev-ttyS2.device: + + + + + dev-ttyS2.device + + +sys-devices-platform-serial8250-tty-ttyS20.device: + + + + + sys-devices-platform-serial8250-tty-ttyS20.device + + +dev-ttyS20.device: + + + + + dev-ttyS20.device + + +dev-ttyS21.device: + + + + + dev-ttyS21.device + + +sys-devices-platform-serial8250-tty-ttyS21.device: + + + + + sys-devices-platform-serial8250-tty-ttyS21.device + + +sys-devices-platform-serial8250-tty-ttyS22.device: + + + + + sys-devices-platform-serial8250-tty-ttyS22.device + + +dev-ttyS22.device: + + + + + dev-ttyS22.device + + +sys-devices-platform-serial8250-tty-ttyS23.device: + + + + + sys-devices-platform-serial8250-tty-ttyS23.device + + +dev-ttyS23.device: + + + + + dev-ttyS23.device + + +sys-devices-platform-serial8250-tty-ttyS24.device: + + + + + sys-devices-platform-serial8250-tty-ttyS24.device + + +dev-ttyS24.device: + + + + + dev-ttyS24.device + + +sys-devices-platform-serial8250-tty-ttyS25.device: + + + + + sys-devices-platform-serial8250-tty-ttyS25.device + + +dev-ttyS25.device: + + + + + dev-ttyS25.device + + +dev-ttyS26.device: + + + + + dev-ttyS26.device + + +sys-devices-platform-serial8250-tty-ttyS26.device: + + + + + sys-devices-platform-serial8250-tty-ttyS26.device + + +sys-devices-platform-serial8250-tty-ttyS27.device: + + + + + sys-devices-platform-serial8250-tty-ttyS27.device + + +dev-ttyS27.device: + + + + + dev-ttyS27.device + + +sys-devices-platform-serial8250-tty-ttyS28.device: + + + + + sys-devices-platform-serial8250-tty-ttyS28.device + + +dev-ttyS28.device: + + + + + dev-ttyS28.device + + +dev-ttyS29.device: + + + + + dev-ttyS29.device + + +sys-devices-platform-serial8250-tty-ttyS29.device: + + + + + sys-devices-platform-serial8250-tty-ttyS29.device + + +sys-devices-platform-serial8250-tty-ttyS3.device: + + + + + sys-devices-platform-serial8250-tty-ttyS3.device + + +dev-ttyS3.device: + + + + + dev-ttyS3.device + + +dev-ttyS30.device: + + + + + dev-ttyS30.device + + +sys-devices-platform-serial8250-tty-ttyS30.device: + + + + + sys-devices-platform-serial8250-tty-ttyS30.device + + +dev-ttyS31.device: + + + + + dev-ttyS31.device + + +sys-devices-platform-serial8250-tty-ttyS31.device: + + + + + sys-devices-platform-serial8250-tty-ttyS31.device + + +dev-ttyS4.device: + + + + + dev-ttyS4.device + + +sys-devices-platform-serial8250-tty-ttyS4.device: + + + + + sys-devices-platform-serial8250-tty-ttyS4.device + + +dev-ttyS5.device: + + + + + dev-ttyS5.device + + +sys-devices-platform-serial8250-tty-ttyS5.device: + + + + + sys-devices-platform-serial8250-tty-ttyS5.device + + +dev-ttyS6.device: + + + + + dev-ttyS6.device + + +sys-devices-platform-serial8250-tty-ttyS6.device: + + + + + sys-devices-platform-serial8250-tty-ttyS6.device + + +sys-devices-platform-serial8250-tty-ttyS7.device: + + + + + sys-devices-platform-serial8250-tty-ttyS7.device + + +dev-ttyS7.device: + + + + + dev-ttyS7.device + + +sys-devices-platform-serial8250-tty-ttyS8.device: + + + + + sys-devices-platform-serial8250-tty-ttyS8.device + + +dev-ttyS8.device: + + + + + dev-ttyS8.device + + +sys-devices-platform-serial8250-tty-ttyS9.device: + + + + + sys-devices-platform-serial8250-tty-ttyS9.device + + +dev-ttyS9.device: + + + + + dev-ttyS9.device + + +dev-tpmrm0.device: + + + + + dev-tpmrm0.device + + +sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpmrm-tpmrm0.device: + + + + + sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpmrm-tpmrm0.device + + +sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpm-tpm0.device: + + + + + sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpm-tpm0.device + + +dev-tpm0.device: + + + + + dev-tpm0.device + + +systemd-vconsole-setup.service: + +After: + run-credentials-systemd\x2dvconsole\x2dsetup.service.mount + system.slice + systemd-journald.socket + +Before: + initrd-switch-root.target + shutdown.target + systemd-ask-password-console.service + sysinit.target + systemd-firstboot.service + +Requires: + system.slice + + + + + systemd-vconsole-setup.service (126ms) + + +dev-snd-by\x2dpath-pci\x2d0000:09:00.1.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:09:00.1.device + + +sys-devices-pci0000:00-0000:00:03.1-0000:09:00.1-sound-card1-controlC1.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:03.1-0000:09:00.1-sound-card1-controlC1.device + + +dev-snd-controlC1.device: + + + + + dev-snd-controlC1.device + + +sound.target: + +Before: + shutdown.target + +Conflicts: + shutdown.target + + + + + sound.target + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466.device + + +dev-disk-by\x2ddiskseq-1.device: + + + + + dev-disk-by\x2ddiskseq-1.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0.device + + +dev-sda.device: + + + + + dev-sda.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01.device + + +dev-disk-by\x2ddiskseq-3.device: + + + + + dev-disk-by\x2ddiskseq-3.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1.device + + +dev-nvme0n1.device: + + + + + dev-nvme0n1.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1.device + + +dev-sdb.device: + + + + + dev-sdb.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device + + +dev-disk-by\x2ddiskseq-2.device: + + + + + dev-disk-by\x2ddiskseq-2.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart2.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart2.device + + +dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device: + + + + + dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device + + +dev-disk-by\x2ddiskseq-3\x2dpart2.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart2.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart2.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart2.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart2.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p2.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p2.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart2.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart2.device + + +dev-nvme0n1p2.device: + + + + + dev-nvme0n1p2.device + + +dev-disk-by\x2dpartuuid-7ee8fb6e\x2df527\x2d4301\x2daa2e\x2d6998e60f439d.device: + + + + + dev-disk-by\x2dpartuuid-7ee8fb6e\x2df527\x2d4301\x2daa2e\x2d6998e60f439d.device + + +dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device: + + + + + dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p3.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p3.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart3.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart3.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart3.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart3.device + + +dev-disk-by\x2ddiskseq-3\x2dpart3.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart3.device + + +dev-nvme0n1p3.device: + + + + + dev-nvme0n1p3.device + + +dev-disk-by\x2duuid-CAE089E5E089D859.device: + + + + + dev-disk-by\x2duuid-CAE089E5E089D859.device + + +dev-disk-by\x2dpartuuid-f41531bd\x2d7c86\x2d47ab\x2d8cd8\x2da64974d7a722.device: + + + + + dev-disk-by\x2dpartuuid-f41531bd\x2d7c86\x2d47ab\x2d8cd8\x2da64974d7a722.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart3.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart3.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart3.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart3.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p1.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart1.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart1.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart1.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart1.device + + +dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device: + + + + + dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device + + +dev-disk-by\x2dpartuuid-4326a5f2\x2d0197\x2d49ea\x2d83d4\x2d5c72d4b01972.device: + + + + + dev-disk-by\x2dpartuuid-4326a5f2\x2d0197\x2d49ea\x2d83d4\x2d5c72d4b01972.device + + +dev-disk-by\x2ddiskseq-3\x2dpart1.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart1.device + + +dev-nvme0n1p1.device: + + + + + dev-nvme0n1p1.device + + +dev-disk-by\x2duuid-8E85\x2d8436.device: + + + + + dev-disk-by\x2duuid-8E85\x2d8436.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart1.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart1.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart1.device + + +dev-disk-by\x2dpartuuid-3eaefb39\x2d7eb3\x2d1c4f\x2dba52\x2d5dd994b16ec7.device: + + + + + dev-disk-by\x2dpartuuid-3eaefb39\x2d7eb3\x2d1c4f\x2dba52\x2d5dd994b16ec7.device + + +dev-disk-by\x2ddiskseq-2\x2dpart3.device: + + + + + dev-disk-by\x2ddiskseq-2\x2dpart3.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart3.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart3.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart3.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart3.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart3.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart3.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart3.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart3.device + + +dev-disk-by\x2duuid-39a5b889\x2dbe8e\x2d42ae\x2da07f\x2d2e8011e7c84d.device: + + + + + dev-disk-by\x2duuid-39a5b889\x2dbe8e\x2d42ae\x2da07f\x2d2e8011e7c84d.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p4.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p4.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart4.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart4.device + + +dev-disk-by\x2duuid-74566D12566CD680.device: + + + + + dev-disk-by\x2duuid-74566D12566CD680.device + + +dev-nvme0n1p4.device: + + + + + dev-nvme0n1p4.device + + +dev-disk-by\x2ddiskseq-3\x2dpart4.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart4.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart4.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart4.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart4.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart4.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart4.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart4.device + + +dev-disk-by\x2dpartuuid-bb5b25ce\x2d9141\x2d4f5d\x2d9760\x2df75d6f64b69b.device: + + + + + dev-disk-by\x2dpartuuid-bb5b25ce\x2d9141\x2d4f5d\x2d9760\x2df75d6f64b69b.device + + +dev-disk-by\x2dpartlabel-EFI\x5cx20System\x5cx20Partition.device: + + + + + dev-disk-by\x2dpartlabel-EFI\x5cx20System\x5cx20Partition.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device + + +dev-sda1.device: + + + + + dev-sda1.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart1.device + + +dev-disk-by\x2dpartuuid-0b163451\x2dfd57\x2d4cf6\x2dbeb9\x2d8b2c30b41928.device: + + + + + dev-disk-by\x2dpartuuid-0b163451\x2dfd57\x2d4cf6\x2dbeb9\x2d8b2c30b41928.device + + +dev-disk-by\x2dlabel-EFI.device: + + + + + dev-disk-by\x2dlabel-EFI.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart1.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart1.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart1.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart1.device + + +dev-disk-by\x2duuid-67E3\x2d17ED.device: + + + + + dev-disk-by\x2duuid-67E3\x2d17ED.device + + +dev-disk-by\x2ddiskseq-1\x2dpart1.device: + + + + + dev-disk-by\x2ddiskseq-1\x2dpart1.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device + + +dev-disk-by\x2dpartuuid-6905f25f\x2d53e9\x2d4c81\x2db3d4\x2d9b1b412c6a2b.device: + + + + + dev-disk-by\x2dpartuuid-6905f25f\x2d53e9\x2d4c81\x2db3d4\x2d9b1b412c6a2b.device + + +dev-disk-by\x2dlabel-Win\x5cx20Data.device: + + + + + dev-disk-by\x2dlabel-Win\x5cx20Data.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart2.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart2.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart2.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart2.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart2.device + + +dev-sda2.device: + + + + + dev-sda2.device + + +dev-disk-by\x2ddiskseq-1\x2dpart2.device: + + + + + dev-disk-by\x2ddiskseq-1\x2dpart2.device + + +dev-disk-by\x2duuid-8E28DCD028DCB903.device: + + + + + dev-disk-by\x2duuid-8E28DCD028DCB903.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart2.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.device + + +dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device: + +Before: + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + + + + + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.device + + +dev-sdb2.device: + +Before: + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + dev-sdb2.swap + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + + + + + dev-sdb2.device + + +dev-disk-by\x2ddiskseq-2\x2dpart2.device: + + + + + dev-disk-by\x2ddiskseq-2\x2dpart2.device + + +dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.device: + + + + + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart1.device + + +dev-sdb1.device: + +Before: + boot.mount + + + + + dev-sdb1.device + + +dev-disk-by\x2ddiskseq-2\x2dpart1.device: + + + + + dev-disk-by\x2ddiskseq-2\x2dpart1.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart1.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart1.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart1.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart1.device + + +dev-disk-by\x2dpartuuid-c0a76200\x2dc1ed\x2d074b\x2dbe0b\x2d79645a474c4d.device: + + + + + dev-disk-by\x2dpartuuid-c0a76200\x2dc1ed\x2d074b\x2dbe0b\x2d79645a474c4d.device + + +dev-disk-by\x2duuid-96EB\x2d4C82.device: + +Before: + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + + + + + dev-disk-by\x2duuid-96EB\x2d4C82.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device + + +dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap: + +After: + system.slice + -.mount + systemd-journald.socket + blockdev@dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.target + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device + +Before: + umount.target + swap.target + +Requires: + system.slice + -.mount + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device + +Conflicts: + umount.target + + + + + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap (7ms) + + +systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service: + +After: + local-fs-pre.target + systemd-journald.socket + system-systemd\x2dfsck.slice + systemd-fsck-root.service + dev-disk-by\x2duuid-96EB\x2d4C82.device + +Before: + boot.mount + systemd-quotacheck.service + shutdown.target + +Requires: + system-systemd\x2dfsck.slice + +Conflicts: + shutdown.target + + + + + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service (79ms) + + +dev-snd-controlC2.device: + + + + + dev-snd-controlC2.device + + +sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.4-sound-card2-controlC2.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.4-sound-card2-controlC2.device + + +dev-snd-by\x2dpath-pci\x2d0000:0b:00.4.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:0b:00.4.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:09.0-0000:08:00.0-net-enp8s0.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:09.0-0000:08:00.0-net-enp8s0.device + + +sys-subsystem-net-devices-enp8s0.device: + + + + + sys-subsystem-net-devices-enp8s0.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap: + +After: + dev-sdb2.device + systemd-journald.socket + blockdev@dev-sdb2.target + -.mount + system.slice + +Before: + umount.target + swap.target + +Requires: + -.mount + system.slice + dev-sdb2.device + +Conflicts: + umount.target + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + + +dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap: + +After: + blockdev@dev-sdb2.target + dev-sdb2.device + systemd-journald.socket + -.mount + system.slice + +Before: + umount.target + swap.target + +Requires: + -.mount + dev-sdb2.device + system.slice + +Conflicts: + umount.target + + + + + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap: + +After: + -.mount + blockdev@dev-sdb2.target + dev-sdb2.device + systemd-journald.socket + system.slice + +Before: + umount.target + swap.target + +Requires: + system.slice + -.mount + dev-sdb2.device + +Conflicts: + umount.target + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap: + +After: + blockdev@dev-sdb2.target + dev-sdb2.device + system.slice + -.mount + systemd-journald.socket + +Before: + umount.target + swap.target + +Requires: + system.slice + -.mount + dev-sdb2.device + +Conflicts: + umount.target + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap: + +After: + system.slice + systemd-journald.socket + blockdev@dev-sdb2.target + -.mount + dev-sdb2.device + +Before: + umount.target + swap.target + +Requires: + -.mount + dev-sdb2.device + system.slice + +Conflicts: + umount.target + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + + +dev-disk-by\x2ddiskseq-2\x2dpart2.swap: + +After: + -.mount + dev-sdb2.device + blockdev@dev-sdb2.target + system.slice + systemd-journald.socket + +Before: + umount.target + swap.target + +Requires: + system.slice + dev-sdb2.device + -.mount + +Conflicts: + umount.target + + + + + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + + +dev-sdb2.swap: + +After: + dev-sdb2.device + blockdev@dev-sdb2.target + system.slice + -.mount + systemd-journald.socket + +Before: + umount.target + swap.target + +Requires: + system.slice + -.mount + dev-sdb2.device + +Conflicts: + umount.target + + + + + dev-sdb2.swap + + +swap.target: + +After: + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + dev-sdb2.swap + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + +Before: + run-user-1000.mount + shutdown.target + sysinit.target + tmp.mount + +Requires: + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + +Conflicts: + shutdown.target + + + + + swap.target + + +tmp.mount: + +After: + systemd-journald.socket + swap.target + system.slice + -.mount + +Before: + systemd-hostnamed.service + umount.target + basic.target + polkit.service + archlinux-keyring-wkd-sync.service + systemd-timesyncd.service + dbus-broker.service + shadow.service + systemd-oomd.service + man-db.service + systemd-logind.service + upower.service + colord.service + local-fs.target + +Requires: + -.mount + system.slice + +Conflicts: + umount.target + + + + + tmp.mount (4ms) + + +boot.mount: + +After: + blockdev@dev-sdb1.target + blockdev@dev-disk-by\x2duuid-96EB\x2d4C82.target + systemd-journald.socket + dev-sdb1.device + system.slice + -.mount + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + local-fs-pre.target + +Before: + local-fs.target + umount.target + +Requires: + -.mount + dev-sdb1.device + system.slice + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + +Conflicts: + umount.target + + + + + boot.mount (622ms) + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.0-net-enp3s0f0np0.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.0-net-enp3s0f0np0.device + + +sys-subsystem-net-devices-enp3s0f0np0.device: + + + + + sys-subsystem-net-devices-enp3s0f0np0.device + + +sys-subsystem-net-devices-enp3s0f1np1.device: + + + + + sys-subsystem-net-devices-enp3s0f1np1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.1-net-enp3s0f1np1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.1-net-enp3s0f1np1.device + + +local-fs.target: + +After: + tmp.mount + local-fs-pre.target + run-user-1000.mount + run-user-1000-gvfs.mount + run-user-1000-keybase-kbfs.mount + -.mount + systemd-fsck-root.service + run-user-1000-doc.mount + boot.mount + var-lib-machines.mount + systemd-remount-fs.service + +Before: + systemd-journal-catalog-update.service + systemd-sysext.service + systemd-boot-random-seed.service + systemd-machine-id-commit.service + systemd-sysext.socket + systemd-tmpfiles-setup.service + systemd-binfmt.service + sysinit.target + systemd-tmpfiles-clean.service + systemd-update-done.service + ldconfig.service + containerd.service + audit-rules.service + auditd.service + +Requires: + -.mount + boot.mount + +Wants: + systemd-remount-fs.service + systemd-fsck-root.service + tmp.mount + +Conflicts: + shutdown.target + + + + + local-fs.target + + +systemd-sysext.socket: + +After: + -.mount + system.slice + local-fs.target + +Before: + sockets.target + +Requires: + -.mount + system.slice + + + + + systemd-sysext.socket + + +systemd-binfmt.service: + +After: + systemd-journald.socket + system.slice + proc-sys-fs-binfmt_misc.automount + proc-sys-fs-binfmt_misc.mount + local-fs.target + +Before: + sysinit.target + shutdown.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-binfmt.service (80ms) + + +systemd-tmpfiles-setup.service: + +After: + run-credentials-systemd\x2dtmpfiles\x2dsetup.service.mount + systemd-sysext.service + systemd-journal-flush.service + system.slice + systemd-sysusers.service + systemd-journald.socket + local-fs.target + systemd-journald.service + +Before: + upower.service + auditd.service + shadow.service + sysinit.target + archlinux-keyring-wkd-sync.service + man-db.service + systemd-oomd.service + shutdown.target + systemd-firstboot.service + systemd-hostnamed.service + systemd-update-utmp.service + colord.service + dbus-broker.service + systemd-journal-catalog-update.service + systemd-logind.service + polkit.service + initrd-switch-root.target + systemd-timesyncd.service + audit-rules.service + +Requires: + system.slice + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-tmpfiles-setup.service (189ms) + + +proc-sys-fs-binfmt_misc.mount: + +After: + systemd-journald.socket + -.mount + proc-sys-fs-binfmt_misc.automount + -.slice + +Before: + systemd-binfmt.service + +Requires: + -.slice + -.mount + + + + + proc-sys-fs-binfmt_misc.mount (5ms) + + +systemd-sysctl.service: + +After: + systemd-coredump.socket + systemd-journald.socket + system.slice + systemd-modules-load.service + run-credentials-systemd\x2dsysctl.service.mount + +Before: + sysinit.target + shutdown.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-sysctl.service (56ms) + + +systemd-timesyncd.service: + +After: + systemd-journald.socket + tmp.mount + system.slice + systemd-tmpfiles-setup.service + systemd-remount-fs.service + -.mount + systemd-sysusers.service + +Before: + shutdown.target + time-set.target + sysinit.target + +Requires: + -.mount + system.slice + +Wants: + tmp.mount + time-set.target + +Conflicts: + shutdown.target + + + + + systemd-timesyncd.service (63ms) + + +systemd-update-utmp.service: + +After: + systemd-tmpfiles-setup.service + -.mount + auditd.service + systemd-remount-fs.service + system.slice + systemd-journald.socket + +Before: + sysinit.target + shutdown.target + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + systemd-update-utmp.service (62ms) + + +dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusbv2\x2d0:1:1.0.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusbv2\x2d0:1:1.0.device + + +sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.3-usb3-3\x2d1-3\x2d1:1.0-sound-card0-controlC0.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.3-usb3-3\x2d1-3\x2d1:1.0-sound-card0-controlC0.device + + +dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusb\x2d0:1:1.0.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusb\x2d0:1:1.0.device + + +dev-snd-controlC0.device: + + + + + dev-snd-controlC0.device + + +dev-snd-by\x2did-usb\x2dBEHRINGER_UMC404HD_192k\x2d00.device: + + + + + dev-snd-by\x2did-usb\x2dBEHRINGER_UMC404HD_192k\x2d00.device + + +sysinit.target: + +After: + swap.target + cryptsetup.target + dev-hugepages.mount + modprobe@dm_mod.service + sys-kernel-tracing.mount + proc-sys-fs-binfmt_misc.automount + systemd-update-done.service + systemd-binfmt.service + systemd-tpm2-setup.service + systemd-hwdb-update.service + systemd-udev-trigger.service + dev-mqueue.mount + systemd-tmpfiles-setup-dev.service + systemd-tmpfiles-setup-dev-early.service + systemd-sysext.service + systemd-pcrmachine.service + systemd-timesyncd.service + systemd-firstboot.service + systemd-udev-settle.service + systemd-boot-random-seed.service + systemd-pcrphase-initrd.service + systemd-journal-catalog-update.service + modprobe@fuse.service + auditd.service + systemd-modules-load.service + modprobe@drm.service + systemd-tmpfiles-setup.service + kmod-static-nodes.service + modprobe@loop.service + systemd-journald.service + systemd-update-utmp.service + systemd-tpm2-setup-early.service + integritysetup.target + sys-kernel-config.mount + veritysetup.target + local-fs.target + modprobe@configfs.service + systemd-udevd.service + ldconfig.service + systemd-sysctl.service + sys-kernel-debug.mount + sys-fs-fuse-connections.mount + systemd-sysusers.service + systemd-vconsole-setup.service + +Before: + cups.path + upower.service + systemd-user-sessions.service + colord.service + polkit.service + avahi-daemon.service + systemd-hostnamed.service + man-db.timer + udisks2.service + getty@tty1.service + wpa_supplicant.service + systemd-pcrphase-sysinit.service + smbnetfs.service + man-db.service + emergency.service + shutdown.target + archlinux-keyring-wkd-sync.timer + shadow.service + gdm.service + docker.service + nmb.service + NetworkManager.service + smb.service + sshd.service + rescue.service + cups.socket + systemd-logind.service + accounts-daemon.service + rescue.target + systemd-tmpfiles-clean.timer + avahi-daemon.socket + systemd-pcrphase.service + docker.socket + user@1000.service + containerd.service + archlinux-keyring-wkd-sync.service + user-runtime-dir@1000.service + sshdgenkeys.service + dbus.socket + rtkit-daemon.service + emergency.target + shadow.timer + basic.target + winbind.service + systemd-ask-password-wall.service + cups.service + +Wants: + systemd-tmpfiles-setup-dev-early.service + systemd-tpm2-setup.service + sys-kernel-config.mount + systemd-tpm2-setup-early.service + systemd-pcrphase.service + systemd-hwdb-update.service + dev-hugepages.mount + systemd-update-done.service + systemd-binfmt.service + systemd-journald.service + systemd-update-utmp.service + ldconfig.service + systemd-boot-random-seed.service + kmod-static-nodes.service + systemd-udevd.service + swap.target + veritysetup.target + cryptsetup.target + sys-kernel-debug.mount + systemd-sysusers.service + systemd-tmpfiles-setup.service + systemd-machine-id-commit.service + systemd-sysctl.service + dev-mqueue.mount + systemd-modules-load.service + sys-kernel-tracing.mount + lvm2-monitor.service + systemd-repart.service + systemd-ask-password-console.path + systemd-journal-catalog-update.service + sys-fs-fuse-connections.mount + proc-sys-fs-binfmt_misc.automount + systemd-journal-flush.service + systemd-pcrmachine.service + systemd-udev-trigger.service + systemd-firstboot.service + systemd-random-seed.service + integritysetup.target + lvm2-lvmpolld.socket + systemd-pcrphase-sysinit.service + local-fs.target + systemd-timesyncd.service + systemd-tmpfiles-setup-dev.service + +Conflicts: + emergency.service + shutdown.target + emergency.target + + + + + sysinit.target + + +cups.path: + +After: + sysinit.target + -.mount + +Before: + shutdown.target + cups.service + paths.target + multi-user.target + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + cups.path + + +systemd-tmpfiles-clean.timer: + +After: + sysinit.target + +Before: + systemd-tmpfiles-clean.service + shutdown.target + timers.target + +Requires: + sysinit.target + +Conflicts: + shutdown.target + + + + + systemd-tmpfiles-clean.timer + + +paths.target: + +After: + cups.path + systemd-ask-password-wall.path + systemd-ask-password-console.path + +Before: + shutdown.target + basic.target + +Conflicts: + shutdown.target + + + + + paths.target + + +time-set.target: + +After: + systemd-timesyncd.service + +Before: + shutdown.target + man-db.timer + systemd-tmpfiles-clean.service + archlinux-keyring-wkd-sync.timer + time-sync.target + docker.service + shadow.timer + +Conflicts: + shutdown.target + + + + + time-set.target + + +archlinux-keyring-wkd-sync.timer: + +After: + time-set.target + sysinit.target + -.mount + time-sync.target + +Before: + shutdown.target + archlinux-keyring-wkd-sync.service + timers.target + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + archlinux-keyring-wkd-sync.timer + + +man-db.timer: + +After: + -.mount + time-sync.target + sysinit.target + time-set.target + +Before: + timers.target + shutdown.target + man-db.service + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + man-db.timer + + +shadow.timer: + +After: + sysinit.target + time-sync.target + time-set.target + -.mount + +Before: + timers.target + shadow.service + shutdown.target + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + shadow.timer + + +timers.target: + +After: + systemd-tmpfiles-clean.timer + archlinux-keyring-wkd-sync.timer + man-db.timer + shadow.timer + +Wants: + shadow.timer + archlinux-keyring-wkd-sync.timer + systemd-tmpfiles-clean.timer + man-db.timer + +Conflicts: + shutdown.target + + + + + timers.target + + +avahi-daemon.socket: + +After: + sysinit.target + -.mount + system.slice + +Before: + sockets.target + shutdown.target + avahi-daemon.service + +Requires: + sysinit.target + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + avahi-daemon.socket + + +cups.socket: + +After: + sysinit.target + -.mount + system.slice + +Before: + shutdown.target + cups.service + sockets.target + +Requires: + sysinit.target + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + cups.socket + + +dbus.socket: + +After: + sysinit.target + system.slice + -.mount + +Before: + NetworkManager.service + dbus-broker.service + systemd-logind.service + systemd-hostnamed.service + rtkit-daemon.service + accounts-daemon.service + sockets.target + shutdown.target + udisks2.service + colord.service + wpa_supplicant.service + polkit.service + upower.service + gdm.service + avahi-daemon.service + +Requires: + sysinit.target + system.slice + -.mount + +Conflicts: + shutdown.target + + + + + dbus.socket + + +docker.socket: + +After: + sysinit.target + system.slice + -.mount + +Before: + shutdown.target + docker.service + sockets.target + +Requires: + sysinit.target + system.slice + -.mount + +Conflicts: + shutdown.target + + + + + docker.socket (2ms) + + +dbus-broker.service: + +After: + tmp.mount + system.slice + dbus.socket + systemd-tmpfiles-setup.service + systemd-journald.socket + -.mount + +Before: + NetworkManager.service + user@1000.service + wpa_supplicant.service + shutdown.target + user-runtime-dir@1000.service + basic.target + +Requires: + system.slice + dbus.socket + -.mount + +Wants: + dbus.socket + tmp.mount + +Conflicts: + shutdown.target + + + + + dbus-broker.service (22ms) + + +sockets.target: + +After: + systemd-udevd-kernel.socket + cups.socket + systemd-oomd.socket + dbus.socket + systemd-udevd-control.socket + systemd-journald.socket + systemd-journald-audit.socket + systemd-pcrextend.socket + syslog.socket + avahi-daemon.socket + systemd-journald-dev-log.socket + docker.socket + systemd-sysext.socket + +Before: + shutdown.target + basic.target + +Wants: + cups.socket + systemd-udevd-control.socket + dm-event.socket + systemd-journald.socket + systemd-pcrextend.socket + systemd-sysext.socket + docker.socket + systemd-coredump.socket + systemd-journald-dev-log.socket + systemd-udevd-kernel.socket + avahi-daemon.socket + dbus.socket + +Conflicts: + shutdown.target + + + + + sockets.target + + +basic.target: + +After: + systemd-pcrphase-sysinit.service + tmp.mount + paths.target + -.mount + dbus-broker.service + sysinit.target + slices.target + sockets.target + +Before: + user@1000.service + getty@tty1.service + winbind.service + multi-user.target + wpa_supplicant.service + user-runtime-dir@1000.service + udisks2.service + systemd-user-sessions.service + systemd-pcrphase.service + rtkit-daemon.service + systemd-logind.service + sshdgenkeys.service + colord.service + upower.service + shutdown.target + systemd-ask-password-wall.service + nmb.service + NetworkManager.service + initrd.target + docker.service + archlinux-keyring-wkd-sync.service + cups.service + smb.service + avahi-daemon.service + accounts-daemon.service + man-db.service + systemd-hostnamed.service + gdm.service + shadow.service + polkit.service + containerd.service + smbnetfs.service + sshd.service + +Requires: + sysinit.target + -.mount + +Wants: + timers.target + paths.target + tmp.mount + slices.target + sockets.target + +Conflicts: + shutdown.target + + + + + basic.target + + +NetworkManager.service: + +After: + dbus-broker.service + systemd-journald.socket + sysinit.target + dbus.socket + basic.target + network-pre.target + system.slice + +Before: + network.target + shutdown.target + multi-user.target + +Requires: + system.slice + sysinit.target + dbus.socket + +Wants: + network.target + +Conflicts: + shutdown.target + + + + + NetworkManager.service (385ms) + + +avahi-daemon.service: + +After: + avahi-daemon.socket + sysinit.target + dbus.socket + systemd-journald.socket + system.slice + basic.target + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + dbus.socket + avahi-daemon.socket + system.slice + +Conflicts: + shutdown.target + + + + + avahi-daemon.service (9ms) + + +systemd-logind.service: + +After: + -.mount + modprobe@drm.service + sysinit.target + system.slice + basic.target + user.slice + systemd-journald.socket + dbus.socket + nss-user-lookup.target + systemd-remount-fs.service + tmp.mount + systemd-tmpfiles-setup.service + +Before: + session-3.scope + shutdown.target + multi-user.target + +Requires: + system.slice + sysinit.target + -.mount + +Wants: + tmp.mount + modprobe@drm.service + dbus.socket + user.slice + +Conflicts: + shutdown.target + + + + + systemd-logind.service (33ms) + + +sys-devices-virtual-misc-rfkill.device: + +Before: + systemd-rfkill.service + systemd-rfkill.socket + +Wants: + systemd-rfkill.socket + + + + + sys-devices-virtual-misc-rfkill.device + + +dev-rfkill.device: + + + + + dev-rfkill.device + + +systemd-rfkill.socket: + +After: + systemd-remount-fs.service + -.mount + sys-devices-virtual-misc-rfkill.device + system.slice + +Before: + systemd-rfkill.service + shutdown.target + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + systemd-rfkill.socket + + +network.target: + +After: + NetworkManager.service + wpa_supplicant.service + network-pre.target + +Before: + smb.service + systemd-user-sessions.service + shutdown.target + nmb.service + containerd.service + sshd.service + network-online.target + winbind.service + cups.service + +Conflicts: + shutdown.target + + + + + network.target + + +network-online.target: + +After: + network.target + +Before: + shutdown.target + archlinux-keyring-wkd-sync.service + smbnetfs.service + docker.service + nmb.service + smb.service + +Conflicts: + shutdown.target + + + + + network-online.target + + +cups.service: + +After: + basic.target + cups.socket + system.slice + systemd-journald.socket + nss-user-lookup.target + sysinit.target + network.target + nslcd.service + cups.path + +Before: + multi-user.target + shutdown.target + +Requires: + system.slice + cups.socket + sysinit.target + +Conflicts: + shutdown.target + + + + + cups.service (220ms) + + +nmb.service: + +After: + network.target + sysinit.target + network-online.target + basic.target + systemd-journald.socket + system.slice + +Before: + shutdown.target + winbind.service + smb.service + multi-user.target + +Requires: + sysinit.target + system.slice + +Wants: + network-online.target + +Conflicts: + shutdown.target + + + + + nmb.service (96ms) + + +smbnetfs.service: + +After: + network-online.target + basic.target + sysinit.target + system.slice + systemd-journald.socket + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + system.slice + +Wants: + network-online.target + +Conflicts: + shutdown.target + + + + + smbnetfs.service + + +sshd.service: + +After: + sshdgenkeys.service + sysinit.target + basic.target + network.target + system.slice + systemd-journald.socket + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + system.slice + +Wants: + sshdgenkeys.service + +Conflicts: + shutdown.target + + + + + sshd.service + + +systemd-user-sessions.service: + +After: + home.mount + basic.target + network.target + nss-user-lookup.target + system.slice + systemd-journald.socket + systemd-pcrphase.service + remote-fs.target + sysinit.target + +Before: + systemd-ask-password-wall.service + user@1000.service + shutdown.target + getty@tty1.service + multi-user.target + gdm.service + session-3.scope + +Requires: + sysinit.target + system.slice + +Conflicts: + shutdown.target + + + + + systemd-user-sessions.service (56ms) + + +colord.service: + +After: + basic.target + systemd-journald.socket + sysinit.target + systemd-tmpfiles-setup.service + tmp.mount + -.mount + dbus.socket + system.slice + +Before: + shutdown.target + +Requires: + -.mount + sysinit.target + dbus.socket + system.slice + +Wants: + tmp.mount + +Conflicts: + shutdown.target + + + + + colord.service (37ms) + + +gdm.service: + +After: + rc-local.service + systemd-user-sessions.service + plymouth-quit.service + system.slice + dbus.socket + plymouth-start.service + systemd-journald.socket + basic.target + getty@tty1.service + sysinit.target + +Before: + shutdown.target + graphical.target + +Requires: + sysinit.target + system.slice + dbus.socket + +Conflicts: + getty@tty1.service + shutdown.target + plymouth-quit.service + + + + + gdm.service (15ms) + + +nss-user-lookup.target: + +Before: + systemd-logind.service + shutdown.target + accounts-daemon.service + cups.service + systemd-user-sessions.service + +Conflicts: + shutdown.target + + + + + nss-user-lookup.target + + +accounts-daemon.service: + +After: + dbus.socket + sysinit.target + system.slice + basic.target + nss-user-lookup.target + -.mount + systemd-journald.socket + systemd-remount-fs.service + +Before: + shutdown.target + +Requires: + system.slice + -.mount + sysinit.target + dbus.socket + +Wants: + nss-user-lookup.target + +Conflicts: + shutdown.target + + + + + accounts-daemon.service (119ms) + + +smb.service: + +After: + sysinit.target + basic.target + nmb.service + network.target + system.slice + winbind.service + systemd-journald.socket + network-online.target + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + system.slice + +Wants: + network-online.target + +Conflicts: + shutdown.target + + + + + smb.service (69ms) + + +polkit.service: + +After: + basic.target + tmp.mount + sysinit.target + systemd-tmpfiles-setup.service + systemd-journald.socket + dbus.socket + -.mount + system.slice + +Before: + shutdown.target + +Requires: + system.slice + sysinit.target + -.mount + dbus.socket + +Wants: + tmp.mount + +Conflicts: + shutdown.target + + + + + polkit.service (46ms) + + +multi-user.target: + +After: + nmb.service + sshd.service + systemd-logind.service + cups.path + smbnetfs.service + basic.target + NetworkManager.service + cups.service + systemd-oomd.service + systemd-user-sessions.service + rescue.target + rescue.service + smb.service + avahi-daemon.service + getty.target + +Before: + shutdown.target + graphical.target + +Requires: + basic.target + +Wants: + systemd-logind.service + nmb.service + avahi-daemon.service + remote-fs.target + systemd-ask-password-wall.path + dbus-broker.service + cups.path + smbnetfs.service + NetworkManager.service + smb.service + getty.target + sshd.service + systemd-user-sessions.service + cups.service + +Conflicts: + rescue.service + rescue.target + shutdown.target + + + + + multi-user.target + + +graphical.target: + +After: + gdm.service + multi-user.target + rescue.target + rescue.service + +Before: + shutdown.target + +Requires: + multi-user.target + +Wants: + gdm.service + +Conflicts: + rescue.service + rescue.target + shutdown.target + + + + + graphical.target + + + + + Activating + + Active + + Deactivating + + Setting up security module + + Generators + + Loading unit files + + + diff --git a/static/images/2024/02/pre-plot.svg b/static/images/2024/02/pre-plot.svg new file mode 100644 index 0000000..40d8b21 --- /dev/null +++ b/static/images/2024/02/pre-plot.svg @@ -0,0 +1,6249 @@ + + + + + + + + + + + + + + + + + +Startup finished in 14.729s (firmware) + 6.386s (loader) + 12.761s (kernel) + 33.661s (userspace) = 1min 7.538s +graphical.target reached after 33.660s in userspace.Arch Linux morpheus (Linux 6.7.3-arch1-2 #1 SMP PREEMPT_DYNAMIC Fri, 02 Feb 2024 17:03:55 +0000) x86-64 + + + + -21.0s + + + + + + + + + + + -20.0s + + + + + + + + + + + -19.0s + + + + + + + + + + + -18.0s + + + + + + + + + + + -17.0s + + + + + + + + + + + -16.0s + + + + + + + + + + + -15.0s + + + + + + + + + + + -14.0s + + + + + + + + + + + -13.0s + + + + + + + + + + + -12.0s + + + + + + + + + + + -11.0s + + + + + + + + + + + -10.0s + + + + + + + + + + + -9.0s + + + + + + + + + + + -8.0s + + + + + + + + + + + -7.0s + + + + + + + + + + + -6.0s + + + + + + + + + + + -5.0s + + + + + + + + + + + -4.0s + + + + + + + + + + + -3.0s + + + + + + + + + + + -2.0s + + + + + + + + + + + -1.0s + + + + + + + + + + + 0.0s + + + + + + + + + + + 1.0s + + + + + + + + + + + 2.0s + + + + + + + + + + + 3.0s + + + + + + + + + + + 4.0s + + + + + + + + + + + 5.0s + + + + + + + + + + + 6.0s + + + + + + + + + + + 7.0s + + + + + + + + + + + 8.0s + + + + + + + + + + + 9.0s + + + + + + + + + + + 10.0s + + + + + + + + + + + 11.0s + + + + + + + + + + + 12.0s + + + + + + + + + + + 13.0s + + + + + + + + + + + 14.0s + + + + + + + + + + + 15.0s + + + + + + + + + + + 16.0s + + + + + + + + + + + 17.0s + + + + + + + + + + + 18.0s + + + + + + + + + + + 19.0s + + + + + + + + + + + 20.0s + + + + + + + + + + + 21.0s + + + + + + + + + + + 22.0s + + + + + + + + + + + 23.0s + + + + + + + + + + + 24.0s + + + + + + + + + + + 25.0s + + + + + + + + + + + 26.0s + + + + + + + + + + + 27.0s + + + + + + + + + + + 28.0s + + + + + + + + + + + 29.0s + + + + + + + + + + + 30.0s + + + + + + + + + + + 31.0s + + + + + + + + + + + 32.0s + + + + + + + + + + + 33.0s + + + + + + + + + + + 34.0s + + + + + + + + + + + 35.0s + + + + + + + + + + + 36.0s + + + + + + + + + + + 37.0s + + + + + + + + + + + 38.0s + + + + + + + + + + + 39.0s + + + + + + + + + + + 40.0s + + + + + + + + + + + 41.0s + + + + + + + + + + + 42.0s + + + + + + + + + + + 43.0s + + + + + + + + + + + 44.0s + + + + + + + + + + + 45.0s + + + + + + + + + + + 46.0s + + + + + + firmware + + loader + + kernel + + + + + systemd + +-.mount: + +After: + blockdev@dev-disk-by\x2duuid-39a5b889\x2dbe8e\x2d42ae\x2da07f\x2d2e8011e7c84d.target + -.slice + +Before: + dbus-broker.service + cups.socket + cups.path + shadow.service + proc-sys-fs-binfmt_misc.mount + systemd-journal-flush.service + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + syslog.socket + shadow.timer + local-fs.target + run-user-1000-doc.mount + man-db.timer + tmp.mount + dm-event.socket + systemd-udevd-control.socket + systemd-oomd.socket + archlinux-keyring-wkd-sync.timer + run-user-1000-gvfs.mount + systemd-rfkill.service + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + lvm2-lvmpolld.socket + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + systemd-logind.service + avahi-daemon.socket + proc-sys-fs-binfmt_misc.automount + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + session-3.scope + man-db.service + systemd-journald.socket + basic.target + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + sys-kernel-config.mount + dbus.socket + boot.mount + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + dev-hugepages.mount + systemd-pcrextend.socket + var-lib-machines.mount + systemd-ask-password-wall.path + colord.service + systemd-oomd.service + sys-kernel-debug.mount + systemd-hostnamed.service + polkit.service + run-user-1000-keybase-kbfs.mount + systemd-update-utmp.service + systemd-sysext.socket + systemd-journald-dev-log.socket + dev-sdb2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + dev-mqueue.mount + docker.socket + systemd-ask-password-console.path + upower.service + systemd-coredump.socket + sys-fs-fuse-connections.mount + systemd-tpm2-setup.service + systemd-random-seed.service + archlinux-keyring-wkd-sync.service + run-user-1000.mount + systemd-journald.service + systemd-rfkill.socket + systemd-timesyncd.service + accounts-daemon.service + sys-kernel-tracing.mount + +Requires: + -.slice + + + + + -.mount + + +-.slice: + +Before: + proc-sys-fs-binfmt_misc.mount + slices.target + sys-kernel-config.mount + dev-hugepages.mount + user.slice + sys-fs-fuse-connections.mount + dev-mqueue.mount + init.scope + sys-kernel-tracing.mount + sys-kernel-debug.mount + -.mount + system.slice + + + + + -.slice + + +system.slice: + +After: + -.slice + +Before: + systemd-quotacheck.service + slices.target + systemd-random-seed.service + systemd-tmpfiles-setup-dev-early.service + systemd-rfkill.service + NetworkManager.service + cups.socket + initrd-switch-root.service + systemd-sysctl.service + avahi-daemon.socket + systemd-tmpfiles-setup.service + upower.service + sshdgenkeys.service + systemd-tmpfiles-setup-dev.service + systemd-binfmt.service + systemd-tpm2-setup-early.service + systemd-soft-reboot.service + systemd-timesyncd.service + systemd-sysext.socket + systemd-journald-dev-log.socket + mkinitcpio-generate-shutdown-ramfs.service + systemd-pcrmachine.service + systemd-oomd.socket + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + audit-rules.service + initrd-udevadm-cleanup-db.service + systemd-hostnamed.service + archlinux-keyring-wkd-sync.service + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + run-user-1000-keybase-kbfs.mount + dbus.socket + nmb.service + systemd-sysusers.service + systemd-logind.service + systemd-pcrextend.socket + syslog.socket + systemd-udevd-control.socket + lvm2-lvmpolld.service + systemd-remount-fs.service + systemd-update-done.service + colord.service + dev-sdb2.swap + systemd-udev-trigger.service + systemd-bsod.service + systemd-ask-password-console.service + kmod-static-nodes.service + run-user-1000-doc.mount + systemd-udevd.service + smbnetfs.service + lvm2-monitor.service + initrd-cleanup.service + udisks2.service + systemd-user-sessions.service + wpa_supplicant.service + systemd-pcrphase.service + system-getty.slice + ldconfig.service + docker.socket + systemd-battery-check.service + rescue.service + docker.service + lvm2-lvmpolld.socket + systemd-firstboot.service + systemd-update-utmp.service + systemd-vconsole-setup.service + systemd-modules-load.service + systemd-pcrphase-initrd.service + systemd-ask-password-wall.service + systemd-sysext.service + dm-event.socket + boot.mount + initrd-parse-etc.service + systemd-udevd-kernel.socket + emergency.service + systemd-journald.socket + systemd-journald-audit.socket + systemd-pcrphase-sysinit.service + systemd-tpm2-setup.service + systemd-hwdb-update.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + systemd-repart.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + systemd-journal-catalog-update.service + run-user-1000-gvfs.mount + systemd-fsck-root.service + avahi-daemon.service + systemd-udev-settle.service + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + systemd-journal-flush.service + man-db.service + systemd-machine-id-commit.service + systemd-boot-random-seed.service + winbind.service + system-systemd\x2dfsck.slice + systemd-hibernate-resume.service + cups.service + systemd-journald.service + auditd.service + systemd-coredump.socket + gdm.service + run-user-1000.mount + tmp.mount + shadow.service + smb.service + systemd-rfkill.socket + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + systemd-oomd.service + dm-event.service + containerd.service + var-lib-machines.mount + dbus-broker.service + system-modprobe.slice + rtkit-daemon.service + systemd-tmpfiles-clean.service + accounts-daemon.service + sshd.service + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + polkit.service + +Requires: + -.slice + + + + + system.slice + + +init.scope: + +After: + -.slice + +Requires: + -.slice + + + + + init.scope + + +dev-sdb3.device: + + + + + dev-sdb3.device (3.514s) + + +system-getty.slice: + +After: + system.slice + +Before: + shutdown.target + getty@tty1.service + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + system-getty.slice + + +system-modprobe.slice: + +After: + system.slice + +Before: + modprobe@dm_mod.service + modprobe@configfs.service + shutdown.target + modprobe@fuse.service + modprobe@drm.service + modprobe@loop.service + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + system-modprobe.slice + + +system-systemd\x2dfsck.slice: + +After: + system.slice + +Before: + shutdown.target + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + system-systemd\x2dfsck.slice + + +user.slice: + +After: + -.slice + +Before: + systemd-logind.service + slices.target + user-1000.slice + shutdown.target + +Requires: + -.slice + +Conflicts: + shutdown.target + + + + + user.slice + + +systemd-ask-password-console.path: + +After: + plymouth-start.service + -.mount + +Before: + systemd-ask-password-console.service + paths.target + shutdown.target + cryptsetup.target + emergency.service + +Requires: + -.mount + +Conflicts: + emergency.service + shutdown.target + + + + + systemd-ask-password-console.path + + +systemd-ask-password-wall.path: + +After: + -.mount + +Before: + paths.target + systemd-ask-password-wall.service + cryptsetup.target + emergency.service + shutdown.target + +Requires: + -.mount + +Conflicts: + emergency.service + shutdown.target + + + + + systemd-ask-password-wall.path + + +proc-sys-fs-binfmt_misc.automount: + +After: + -.mount + +Before: + proc-sys-fs-binfmt_misc.mount + shutdown.target + sysinit.target + systemd-binfmt.service + +Requires: + -.mount + +Conflicts: + shutdown.target + + + + + proc-sys-fs-binfmt_misc.automount + + +cryptsetup.target: + +After: + cryptsetup-pre.target + systemd-ask-password-console.path + systemd-pcrphase-initrd.service + systemd-ask-password-wall.path + +Before: + sysinit.target + shutdown.target + +Conflicts: + shutdown.target + + + + + cryptsetup.target + + +getty.target: + +After: + getty@tty1.service + +Before: + multi-user.target + shutdown.target + +Wants: + getty@tty1.service + +Conflicts: + shutdown.target + + + + + getty.target + + +integritysetup.target: + +Before: + sysinit.target + shutdown.target + +Conflicts: + shutdown.target + + + + + integritysetup.target + + +remote-fs.target: + +After: + remote-fs-pre.target + systemd-quotacheck.service + +Before: + systemd-user-sessions.service + systemd-pcrphase.service + +Wants: + var-lib-machines.mount + +Conflicts: + shutdown.target + + + + + remote-fs.target + + +slices.target: + +After: + -.slice + system.slice + user.slice + +Before: + shutdown.target + basic.target + +Wants: + -.slice + system.slice + +Conflicts: + shutdown.target + + + + + slices.target + + +veritysetup.target: + +After: + veritysetup-pre.target + +Before: + sysinit.target + shutdown.target + +Conflicts: + shutdown.target + + + + + veritysetup.target + + +dm-event.socket: + +After: + -.mount + system.slice + +Before: + lvm2-monitor.service + dm-event.service + +Requires: + -.mount + system.slice + + + + + dm-event.socket + + +lvm2-lvmpolld.socket: + +After: + -.mount + system.slice + +Before: + lvm2-lvmpolld.service + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + lvm2-lvmpolld.socket + + +systemd-coredump.socket: + +After: + -.mount + system.slice + +Before: + systemd-sysctl.service + shutdown.target + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + systemd-coredump.socket + + +systemd-journald-dev-log.socket: + +After: + -.mount + system.slice + +Before: + sockets.target + systemd-journald.service + +Requires: + -.mount + system.slice + + + + + systemd-journald-dev-log.socket + + +systemd-journald.socket: + +After: + -.mount + system.slice + +Before: + systemd-tmpfiles-setup.service + colord.service + systemd-oomd.service + systemd-ask-password-console.service + systemd-tmpfiles-setup-dev.service + systemd-tmpfiles-clean.service + systemd-hostnamed.service + run-user-1000-doc.mount + systemd-user-sessions.service + systemd-soft-reboot.service + shadow.service + systemd-logind.service + systemd-sysext.service + systemd-modules-load.service + cups.service + systemd-boot-random-seed.service + systemd-ask-password-wall.service + systemd-quotacheck.service + systemd-journal-flush.service + systemd-hibernate-resume.service + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + upower.service + sshd.service + user-runtime-dir@1000.service + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + modprobe@fuse.service + sys-fs-fuse-connections.mount + modprobe@drm.service + run-user-1000-keybase-kbfs.mount + systemd-udev-trigger.service + initrd-switch-root.service + rtkit-daemon.service + systemd-journald.service + audit-rules.service + systemd-binfmt.service + avahi-daemon.service + systemd-pcrphase-initrd.service + dev-sdb2.swap + var-lib-machines.mount + systemd-pcrmachine.service + sockets.target + udisks2.service + systemd-timesyncd.service + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + polkit.service + systemd-hwdb-update.service + systemd-machine-id-commit.service + systemd-battery-check.service + systemd-update-utmp.service + dev-mqueue.mount + containerd.service + modprobe@dm_mod.service + smb.service + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + gdm.service + systemd-tpm2-setup.service + accounts-daemon.service + wpa_supplicant.service + user@1000.service + boot.mount + systemd-update-done.service + systemd-rfkill.service + tmp.mount + systemd-udevd.service + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + auditd.service + sys-kernel-tracing.mount + systemd-tpm2-setup-early.service + dev-hugepages.mount + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + systemd-random-seed.service + lvm2-monitor.service + docker.service + systemd-bsod.service + sshdgenkeys.service + proc-sys-fs-binfmt_misc.mount + modprobe@configfs.service + systemd-pcrphase.service + systemd-journal-catalog-update.service + man-db.service + initrd-parse-etc.service + winbind.service + lvm2-lvmpolld.service + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + archlinux-keyring-wkd-sync.service + initrd-cleanup.service + NetworkManager.service + sys-kernel-debug.mount + systemd-tmpfiles-setup-dev-early.service + ldconfig.service + systemd-pcrphase-sysinit.service + systemd-fsck-root.service + systemd-repart.service + mkinitcpio-generate-shutdown-ramfs.service + systemd-remount-fs.service + systemd-udev-settle.service + run-user-1000-gvfs.mount + initrd-udevadm-cleanup-db.service + dbus-broker.service + smbnetfs.service + nmb.service + systemd-vconsole-setup.service + dm-event.service + systemd-sysctl.service + run-user-1000.mount + sys-kernel-config.mount + systemd-sysusers.service + kmod-static-nodes.service + modprobe@loop.service + +Requires: + -.mount + system.slice + + + + + systemd-journald.socket + + +systemd-udevd-control.socket: + +After: + -.mount + system.slice + +Before: + systemd-udevd.service + systemd-udev-trigger.service + initrd-udevadm-cleanup-db.service + sockets.target + +Requires: + -.mount + system.slice + + + + + systemd-udevd-control.socket + + +systemd-udevd-kernel.socket: + +After: + system.slice + +Before: + systemd-udevd.service + systemd-udev-trigger.service + initrd-udevadm-cleanup-db.service + sockets.target + +Requires: + system.slice + + + + + systemd-udevd-kernel.socket + + +dev-hugepages.mount: + +After: + -.mount + -.slice + systemd-journald.socket + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + dev-hugepages.mount (41ms) + + +dev-mqueue.mount: + +After: + -.slice + systemd-journald.socket + -.mount + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + dev-mqueue.mount (41ms) + + +sys-kernel-debug.mount: + +After: + systemd-journald.socket + -.slice + -.mount + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + sys-kernel-debug.mount (40ms) + + +sys-kernel-tracing.mount: + +After: + systemd-journald.socket + -.slice + -.mount + +Before: + sysinit.target + +Requires: + -.slice + -.mount + + + + + sys-kernel-tracing.mount (39ms) + + +kmod-static-nodes.service: + +After: + systemd-journald.socket + system.slice + +Before: + sysinit.target + systemd-tmpfiles-setup-dev-early.service + +Requires: + system.slice + + + + + kmod-static-nodes.service (38ms) + + +lvm2-monitor.service: + +After: + system.slice + dm-event.socket + dm-event.service + systemd-journald.socket + +Before: + local-fs-pre.target + shutdown.target + +Requires: + dm-event.socket + system.slice + +Conflicts: + shutdown.target + + + + + lvm2-monitor.service (290ms) + + +modprobe@configfs.service: + +After: + systemd-journald.socket + system-modprobe.slice + +Before: + sys-kernel-config.mount + sysinit.target + +Requires: + system-modprobe.slice + + + + + modprobe@configfs.service (38ms) + + +modprobe@dm_mod.service: + +After: + systemd-journald.socket + system-modprobe.slice + +Before: + sysinit.target + systemd-repart.service + +Requires: + system-modprobe.slice + + + + + modprobe@dm_mod.service (100ms) + + +modprobe@drm.service: + +After: + systemd-journald.socket + system-modprobe.slice + +Before: + sysinit.target + systemd-logind.service + +Requires: + system-modprobe.slice + + + + + modprobe@drm.service (132ms) + + +modprobe@fuse.service: + +After: + systemd-journald.socket + system-modprobe.slice + +Before: + sysinit.target + sys-fs-fuse-connections.mount + +Requires: + system-modprobe.slice + + + + + modprobe@fuse.service (175ms) + + +modprobe@loop.service: + +After: + systemd-journald.socket + system-modprobe.slice + +Before: + sysinit.target + systemd-repart.service + +Requires: + system-modprobe.slice + + + + + modprobe@loop.service (214ms) + + +systemd-journald.service: + +After: + systemd-journald-dev-log.socket + system.slice + syslog.socket + -.mount + systemd-journald.socket + systemd-journald-audit.socket + +Before: + sysinit.target + soft-reboot.target + systemd-tmpfiles-setup.service + systemd-journal-flush.service + +Requires: + systemd-journald.socket + system.slice + -.mount + +Wants: + systemd-journald.socket + systemd-journald-dev-log.socket + +Conflicts: + soft-reboot.target + + + + + systemd-journald.service (96ms) + + +systemd-modules-load.service: + +After: + systemd-journald.socket + system.slice + +Before: + systemd-sysctl.service + shutdown.target + sysinit.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-modules-load.service (1.287s) + + +systemd-remount-fs.service: + +After: + systemd-journald.socket + systemd-fsck-root.service + system.slice + +Before: + systemd-journal-flush.service + systemd-tpm2-setup.service + accounts-daemon.service + systemd-update-utmp.service + local-fs.target + systemd-rfkill.service + systemd-quotacheck.service + systemd-rfkill.socket + systemd-hwdb-update.service + systemd-timesyncd.service + local-fs-pre.target + systemd-logind.service + upower.service + systemd-firstboot.service + shutdown.target + systemd-random-seed.service + systemd-sysusers.service + +Requires: + system.slice + +Wants: + local-fs-pre.target + +Conflicts: + shutdown.target + + + + + systemd-remount-fs.service (303ms) + + +systemd-udev-trigger.service: + +After: + system.slice + systemd-udevd-control.socket + systemd-journald.socket + systemd-udevd-kernel.socket + +Before: + sysinit.target + systemd-udev-settle.service + initrd-udevadm-cleanup-db.service + +Requires: + system.slice + +Wants: + systemd-udevd.service + + + + + systemd-udev-trigger.service (323ms) + + +sys-fs-fuse-connections.mount: + +After: + systemd-journald.socket + modprobe@fuse.service + -.slice + -.mount + +Before: + sysinit.target + +Requires: + modprobe@fuse.service + -.slice + -.mount + + + + + sys-fs-fuse-connections.mount (12ms) + + +sys-kernel-config.mount: + +After: + modprobe@configfs.service + -.slice + -.mount + systemd-journald.socket + +Before: + sysinit.target + +Requires: + modprobe@configfs.service + -.slice + -.mount + + + + + sys-kernel-config.mount (11ms) + + +systemd-journal-flush.service: + +After: + system.slice + -.mount + systemd-journald.socket + systemd-journald.service + systemd-remount-fs.service + +Before: + systemd-tmpfiles-setup.service + +Requires: + -.mount + system.slice + +Wants: + systemd-journald.service + + + + + systemd-journal-flush.service (2.459s) + + +systemd-random-seed.service: + +After: + -.mount + systemd-journald.socket + systemd-remount-fs.service + system.slice + +Before: + shutdown.target + first-boot-complete.target + systemd-boot-random-seed.service + +Requires: + -.mount + system.slice + +Wants: + first-boot-complete.target + +Conflicts: + shutdown.target + + + + + systemd-random-seed.service (155ms) + + +systemd-tmpfiles-setup-dev-early.service: + +After: + run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev\x2dearly.service.mount + system.slice + kmod-static-nodes.service + systemd-journald.socket + +Before: + sysinit.target + local-fs-pre.target + shutdown.target + systemd-tmpfiles-setup-dev.service + systemd-udevd.service + systemd-sysusers.service + initrd-switch-root.target + +Requires: + system.slice + +Wants: + local-fs-pre.target + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-tmpfiles-setup-dev-early.service (461ms) + + +systemd-sysusers.service: + +After: + run-credentials-systemd\x2dsysusers.service.mount + system.slice + systemd-tmpfiles-setup-dev-early.service + systemd-journald.socket + systemd-remount-fs.service + +Before: + systemd-update-done.service + shadow.service + shutdown.target + systemd-udevd.service + sysinit.target + systemd-tmpfiles-setup-dev.service + initrd-switch-root.target + systemd-tmpfiles-setup.service + systemd-firstboot.service + systemd-timesyncd.service + +Requires: + system.slice + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-sysusers.service (740ms) + + +systemd-sysctl.service: + +After: + systemd-modules-load.service + systemd-journald.socket + run-credentials-systemd\x2dsysctl.service.mount + systemd-coredump.socket + system.slice + +Before: + sysinit.target + shutdown.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-sysctl.service (206ms) + + +systemd-tmpfiles-setup-dev.service: + +After: + systemd-sysusers.service + systemd-journald.socket + system.slice + run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev.service.mount + systemd-tmpfiles-setup-dev-early.service + +Before: + systemd-udevd.service + shutdown.target + sysinit.target + local-fs-pre.target + initrd-switch-root.target + +Requires: + system.slice + +Wants: + local-fs-pre.target + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-tmpfiles-setup-dev.service (40ms) + + +local-fs-pre.target: + +After: + dm-event.service + systemd-remount-fs.service + systemd-hibernate-resume.service + systemd-tmpfiles-setup-dev.service + systemd-tmpfiles-setup-dev-early.service + lvm2-monitor.service + +Before: + shutdown.target + var-lib-machines.mount + run-user-1000-gvfs.mount + local-fs.target + run-user-1000-doc.mount + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + run-user-1000-keybase-kbfs.mount + boot.mount + run-user-1000.mount + +Conflicts: + shutdown.target + + + + + local-fs-pre.target + + +systemd-udevd.service: + +After: + systemd-journald.socket + systemd-tmpfiles-setup-dev.service + systemd-sysusers.service + systemd-tmpfiles-setup-dev-early.service + systemd-udevd-kernel.socket + systemd-udevd-control.socket + systemd-hwdb-update.service + system.slice + +Before: + sysinit.target + initrd-udevadm-cleanup-db.service + +Requires: + system.slice + +Wants: + systemd-udevd-kernel.socket + systemd-udevd-control.socket + + + + + systemd-udevd.service (913ms) + + +sys-module-fuse.device: + +Wants: + sys-fs-fuse-connections.mount + + + + + sys-module-fuse.device + + +sys-module-configfs.device: + +Wants: + sys-kernel-config.mount + + + + + sys-module-configfs.device + + +sys-devices-pnp0-00:04-tty-ttyS0.device: + + + + + sys-devices-pnp0-00:04-tty-ttyS0.device + + +dev-ttyS0.device: + + + + + dev-ttyS0.device + + +sys-devices-platform-serial8250-tty-ttyS14.device: + + + + + sys-devices-platform-serial8250-tty-ttyS14.device + + +dev-ttyS14.device: + + + + + dev-ttyS14.device + + +sys-devices-platform-serial8250-tty-ttyS10.device: + + + + + sys-devices-platform-serial8250-tty-ttyS10.device + + +dev-ttyS10.device: + + + + + dev-ttyS10.device + + +sys-devices-platform-serial8250-tty-ttyS1.device: + + + + + sys-devices-platform-serial8250-tty-ttyS1.device + + +dev-ttyS1.device: + + + + + dev-ttyS1.device + + +dev-ttyS12.device: + + + + + dev-ttyS12.device + + +sys-devices-platform-serial8250-tty-ttyS12.device: + + + + + sys-devices-platform-serial8250-tty-ttyS12.device + + +sys-devices-platform-serial8250-tty-ttyS11.device: + + + + + sys-devices-platform-serial8250-tty-ttyS11.device + + +dev-ttyS11.device: + + + + + dev-ttyS11.device + + +sys-devices-platform-serial8250-tty-ttyS13.device: + + + + + sys-devices-platform-serial8250-tty-ttyS13.device + + +dev-ttyS13.device: + + + + + dev-ttyS13.device + + +sys-devices-platform-serial8250-tty-ttyS18.device: + + + + + sys-devices-platform-serial8250-tty-ttyS18.device + + +dev-ttyS18.device: + + + + + dev-ttyS18.device + + +dev-ttyS19.device: + + + + + dev-ttyS19.device + + +sys-devices-platform-serial8250-tty-ttyS19.device: + + + + + sys-devices-platform-serial8250-tty-ttyS19.device + + +dev-ttyS2.device: + + + + + dev-ttyS2.device + + +sys-devices-platform-serial8250-tty-ttyS2.device: + + + + + sys-devices-platform-serial8250-tty-ttyS2.device + + +dev-ttyS17.device: + + + + + dev-ttyS17.device + + +sys-devices-platform-serial8250-tty-ttyS17.device: + + + + + sys-devices-platform-serial8250-tty-ttyS17.device + + +dev-ttyS16.device: + + + + + dev-ttyS16.device + + +sys-devices-platform-serial8250-tty-ttyS16.device: + + + + + sys-devices-platform-serial8250-tty-ttyS16.device + + +sys-devices-platform-serial8250-tty-ttyS15.device: + + + + + sys-devices-platform-serial8250-tty-ttyS15.device + + +dev-ttyS15.device: + + + + + dev-ttyS15.device + + +dev-ttyS20.device: + + + + + dev-ttyS20.device + + +sys-devices-platform-serial8250-tty-ttyS20.device: + + + + + sys-devices-platform-serial8250-tty-ttyS20.device + + +sys-devices-platform-serial8250-tty-ttyS21.device: + + + + + sys-devices-platform-serial8250-tty-ttyS21.device + + +dev-ttyS21.device: + + + + + dev-ttyS21.device + + +dev-ttyS22.device: + + + + + dev-ttyS22.device + + +sys-devices-platform-serial8250-tty-ttyS22.device: + + + + + sys-devices-platform-serial8250-tty-ttyS22.device + + +sys-devices-platform-serial8250-tty-ttyS24.device: + + + + + sys-devices-platform-serial8250-tty-ttyS24.device + + +dev-ttyS24.device: + + + + + dev-ttyS24.device + + +sys-devices-platform-serial8250-tty-ttyS25.device: + + + + + sys-devices-platform-serial8250-tty-ttyS25.device + + +dev-ttyS25.device: + + + + + dev-ttyS25.device + + +dev-ttyS26.device: + + + + + dev-ttyS26.device + + +sys-devices-platform-serial8250-tty-ttyS26.device: + + + + + sys-devices-platform-serial8250-tty-ttyS26.device + + +dev-ttyS27.device: + + + + + dev-ttyS27.device + + +sys-devices-platform-serial8250-tty-ttyS27.device: + + + + + sys-devices-platform-serial8250-tty-ttyS27.device + + +dev-ttyS23.device: + + + + + dev-ttyS23.device + + +sys-devices-platform-serial8250-tty-ttyS23.device: + + + + + sys-devices-platform-serial8250-tty-ttyS23.device + + +dev-ttyS29.device: + + + + + dev-ttyS29.device + + +sys-devices-platform-serial8250-tty-ttyS29.device: + + + + + sys-devices-platform-serial8250-tty-ttyS29.device + + +sys-devices-platform-serial8250-tty-ttyS28.device: + + + + + sys-devices-platform-serial8250-tty-ttyS28.device + + +dev-ttyS28.device: + + + + + dev-ttyS28.device + + +sys-devices-platform-serial8250-tty-ttyS3.device: + + + + + sys-devices-platform-serial8250-tty-ttyS3.device + + +dev-ttyS3.device: + + + + + dev-ttyS3.device + + +dev-ttyS30.device: + + + + + dev-ttyS30.device + + +sys-devices-platform-serial8250-tty-ttyS30.device: + + + + + sys-devices-platform-serial8250-tty-ttyS30.device + + +sys-devices-platform-serial8250-tty-ttyS31.device: + + + + + sys-devices-platform-serial8250-tty-ttyS31.device + + +dev-ttyS31.device: + + + + + dev-ttyS31.device + + +sys-devices-platform-serial8250-tty-ttyS4.device: + + + + + sys-devices-platform-serial8250-tty-ttyS4.device + + +dev-ttyS4.device: + + + + + dev-ttyS4.device + + +dev-ttyS5.device: + + + + + dev-ttyS5.device + + +sys-devices-platform-serial8250-tty-ttyS5.device: + + + + + sys-devices-platform-serial8250-tty-ttyS5.device + + +sys-devices-platform-serial8250-tty-ttyS6.device: + + + + + sys-devices-platform-serial8250-tty-ttyS6.device + + +dev-ttyS6.device: + + + + + dev-ttyS6.device + + +sys-devices-platform-serial8250-tty-ttyS7.device: + + + + + sys-devices-platform-serial8250-tty-ttyS7.device + + +dev-ttyS7.device: + + + + + dev-ttyS7.device + + +sys-devices-platform-serial8250-tty-ttyS8.device: + + + + + sys-devices-platform-serial8250-tty-ttyS8.device + + +dev-ttyS8.device: + + + + + dev-ttyS8.device + + +sys-devices-platform-serial8250-tty-ttyS9.device: + + + + + sys-devices-platform-serial8250-tty-ttyS9.device + + +dev-ttyS9.device: + + + + + dev-ttyS9.device + + +sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpmrm-tpmrm0.device: + + + + + sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpmrm-tpmrm0.device + + +dev-tpmrm0.device: + + + + + dev-tpmrm0.device + + +sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpm-tpm0.device: + + + + + sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpm-tpm0.device + + +dev-tpm0.device: + + + + + dev-tpm0.device + + +systemd-vconsole-setup.service: + +After: + systemd-journald.socket + run-credentials-systemd\x2dvconsole\x2dsetup.service.mount + system.slice + +Before: + systemd-firstboot.service + initrd-switch-root.target + sysinit.target + shutdown.target + systemd-ask-password-console.service + +Requires: + system.slice + + + + + systemd-vconsole-setup.service (356ms) + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M.device + + +dev-nvme0n1.device: + + + + + dev-nvme0n1.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1.device + + +dev-disk-by\x2ddiskseq-3.device: + + + + + dev-disk-by\x2ddiskseq-3.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1.device + + +dev-sda.device: + + + + + dev-sda.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466.device + + +dev-disk-by\x2ddiskseq-1.device: + + + + + dev-disk-by\x2ddiskseq-1.device + + +dev-disk-by\x2dpartuuid-7ee8fb6e\x2df527\x2d4301\x2daa2e\x2d6998e60f439d.device: + + + + + dev-disk-by\x2dpartuuid-7ee8fb6e\x2df527\x2d4301\x2daa2e\x2d6998e60f439d.device + + +dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device: + + + + + dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device + + +dev-nvme0n1p2.device: + + + + + dev-nvme0n1p2.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart2.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart2.device + + +dev-disk-by\x2ddiskseq-3\x2dpart2.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart2.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart2.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart2.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p2.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p2.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart2.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart2.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart2.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart1.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p1.device + + +dev-nvme0n1p1.device: + + + + + dev-nvme0n1p1.device + + +dev-disk-by\x2dpartuuid-4326a5f2\x2d0197\x2d49ea\x2d83d4\x2d5c72d4b01972.device: + + + + + dev-disk-by\x2dpartuuid-4326a5f2\x2d0197\x2d49ea\x2d83d4\x2d5c72d4b01972.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart1.device + + +dev-disk-by\x2ddiskseq-3\x2dpart1.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart1.device + + +dev-disk-by\x2duuid-8E85\x2d8436.device: + + + + + dev-disk-by\x2duuid-8E85\x2d8436.device + + +dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device: + + + + + dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart1.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart1.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart1.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart1.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart3.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart3.device + + +dev-disk-by\x2dpartuuid-f41531bd\x2d7c86\x2d47ab\x2d8cd8\x2da64974d7a722.device: + + + + + dev-disk-by\x2dpartuuid-f41531bd\x2d7c86\x2d47ab\x2d8cd8\x2da64974d7a722.device + + +dev-nvme0n1p3.device: + + + + + dev-nvme0n1p3.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart3.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart3.device + + +dev-disk-by\x2duuid-CAE089E5E089D859.device: + + + + + dev-disk-by\x2duuid-CAE089E5E089D859.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p3.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p3.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart3.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart3.device + + +dev-disk-by\x2ddiskseq-3\x2dpart3.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart3.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart3.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart3.device + + +dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device: + + + + + dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device + + +dev-nvme0n1p4.device: + + + + + dev-nvme0n1p4.device + + +dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart4.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart4.device + + +dev-disk-by\x2duuid-74566D12566CD680.device: + + + + + dev-disk-by\x2duuid-74566D12566CD680.device + + +dev-disk-by\x2ddiskseq-3\x2dpart4.device: + + + + + dev-disk-by\x2ddiskseq-3\x2dpart4.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart4.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M_1\x2dpart4.device + + +dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart4.device: + + + + + dev-disk-by\x2did-nvme\x2deui.0025385b11b06b01\x2dpart4.device + + +dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart4.device: + + + + + dev-disk-by\x2did-nvme\x2dSamsung_SSD_970_EVO_Plus_500GB_S4EVNX0RB07403M\x2dpart4.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p4.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:04.0-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p4.device + + +dev-disk-by\x2dpartuuid-bb5b25ce\x2d9141\x2d4f5d\x2d9760\x2df75d6f64b69b.device: + + + + + dev-disk-by\x2dpartuuid-bb5b25ce\x2d9141\x2d4f5d\x2d9760\x2df75d6f64b69b.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart1.device + + +dev-disk-by\x2dlabel-EFI.device: + + + + + dev-disk-by\x2dlabel-EFI.device + + +dev-disk-by\x2duuid-67E3\x2d17ED.device: + + + + + dev-disk-by\x2duuid-67E3\x2d17ED.device + + +dev-disk-by\x2dpartlabel-EFI\x5cx20System\x5cx20Partition.device: + + + + + dev-disk-by\x2dpartlabel-EFI\x5cx20System\x5cx20Partition.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart1.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart1.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart1.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart1.device + + +dev-sda1.device: + + + + + dev-sda1.device + + +dev-disk-by\x2ddiskseq-1\x2dpart1.device: + + + + + dev-disk-by\x2ddiskseq-1\x2dpart1.device + + +dev-disk-by\x2dpartuuid-0b163451\x2dfd57\x2d4cf6\x2dbeb9\x2d8b2c30b41928.device: + + + + + dev-disk-by\x2dpartuuid-0b163451\x2dfd57\x2d4cf6\x2dbeb9\x2d8b2c30b41928.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart2.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2038E4B1C466\x2dpart2.device + + +dev-disk-by\x2ddiskseq-1\x2dpart2.device: + + + + + dev-disk-by\x2ddiskseq-1\x2dpart2.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device + + +dev-disk-by\x2dlabel-Win\x5cx20Data.device: + + + + + dev-disk-by\x2dlabel-Win\x5cx20Data.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1.0\x2dpart2.device + + +dev-disk-by\x2dpartuuid-6905f25f\x2d53e9\x2d4c81\x2db3d4\x2d9b1b412c6a2b.device: + + + + + dev-disk-by\x2dpartuuid-6905f25f\x2d53e9\x2d4c81\x2db3d4\x2d9b1b412c6a2b.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart2.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e4b1c466\x2dpart2.device + + +dev-sda2.device: + + + + + dev-sda2.device + + +dev-disk-by\x2duuid-8E28DCD028DCB903.device: + + + + + dev-disk-by\x2duuid-8E28DCD028DCB903.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d1\x2dpart2.device + + +sys-subsystem-net-devices-enp8s0.device: + + + + + sys-subsystem-net-devices-enp8s0.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:09.0-0000:08:00.0-net-enp8s0.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:09.0-0000:08:00.0-net-enp8s0.device + + +sys-devices-pci0000:00-0000:00:03.1-0000:09:00.1-sound-card0-controlC0.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:03.1-0000:09:00.1-sound-card0-controlC0.device + + +dev-snd-controlC0.device: + + + + + dev-snd-controlC0.device + + +dev-snd-by\x2dpath-pci\x2d0000:09:00.1.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:09:00.1.device + + +sound.target: + +Before: + shutdown.target + +Conflicts: + shutdown.target + + + + + sound.target + + +sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.4-sound-card2-controlC2.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.4-sound-card2-controlC2.device + + +dev-snd-controlC2.device: + + + + + dev-snd-controlC2.device + + +dev-snd-by\x2dpath-pci\x2d0000:0b:00.4.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:0b:00.4.device + + +dev-disk-by\x2ddiskseq-2.device: + + + + + dev-disk-by\x2ddiskseq-2.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.device + + +dev-sdb.device: + + + + + dev-sdb.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart3.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart3.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart3.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart3.device + + +dev-disk-by\x2dpartuuid-3eaefb39\x2d7eb3\x2d1c4f\x2dba52\x2d5dd994b16ec7.device: + + + + + dev-disk-by\x2dpartuuid-3eaefb39\x2d7eb3\x2d1c4f\x2dba52\x2d5dd994b16ec7.device + + +dev-disk-by\x2ddiskseq-2\x2dpart3.device: + + + + + dev-disk-by\x2ddiskseq-2\x2dpart3.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart3.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart3.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart3.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart3.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device + + +dev-disk-by\x2duuid-39a5b889\x2dbe8e\x2d42ae\x2da07f\x2d2e8011e7c84d.device: + + + + + dev-disk-by\x2duuid-39a5b889\x2dbe8e\x2d42ae\x2da07f\x2d2e8011e7c84d.device + + +sys-subsystem-net-devices-enp3s0f1np1.device: + + + + + sys-subsystem-net-devices-enp3s0f1np1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.1-net-enp3s0f1np1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.1-net-enp3s0f1np1.device + + +sys-subsystem-net-devices-enp3s0f0np0.device: + + + + + sys-subsystem-net-devices-enp3s0f0np0.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.0-net-enp3s0f0np0.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.2-0000:02:00.0-0000:03:00.0-net-enp3s0f0np0.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.device + + +dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device: + +Before: + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + + + + + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device + + +dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.device: + + + + + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.device + + +dev-sdb2.device: + +Before: + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + dev-sdb2.swap + + + + + dev-sdb2.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device + + +dev-disk-by\x2ddiskseq-2\x2dpart2.device: + + + + + dev-disk-by\x2ddiskseq-2\x2dpart2.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.device + + +dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap: + +After: + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device + blockdev@dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.target + -.mount + system.slice + systemd-journald.socket + +Before: + swap.target + umount.target + +Requires: + system.slice + -.mount + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.device + +Conflicts: + umount.target + + + + + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap (536ms) + + +dev-disk-by\x2duuid-96EB\x2d4C82.device: + +Before: + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + + + + + dev-disk-by\x2duuid-96EB\x2d4C82.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart1.device + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart1.device: + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart1.device + + +dev-sdb1.device: + +Before: + boot.mount + + + + + dev-sdb1.device + + +dev-disk-by\x2dpartuuid-c0a76200\x2dc1ed\x2d074b\x2dbe0b\x2d79645a474c4d.device: + + + + + dev-disk-by\x2dpartuuid-c0a76200\x2dc1ed\x2d074b\x2dbe0b\x2d79645a474c4d.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device: + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.1-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart1.device: + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart1.device + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart1.device: + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart1.device + + +dev-disk-by\x2ddiskseq-2\x2dpart1.device: + + + + + dev-disk-by\x2ddiskseq-2\x2dpart1.device + + +systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service: + +After: + dev-disk-by\x2duuid-96EB\x2d4C82.device + systemd-journald.socket + system-systemd\x2dfsck.slice + local-fs-pre.target + systemd-fsck-root.service + +Before: + shutdown.target + boot.mount + systemd-quotacheck.service + +Requires: + system-systemd\x2dfsck.slice + +Conflicts: + shutdown.target + + + + + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service (1.032s) + + +dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap: + +After: + system.slice + dev-sdb2.device + systemd-journald.socket + -.mount + blockdev@dev-sdb2.target + +Before: + swap.target + umount.target + +Requires: + dev-sdb2.device + system.slice + -.mount + +Conflicts: + umount.target + + + + + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + + +dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap: + +After: + system.slice + -.mount + blockdev@dev-sdb2.target + dev-sdb2.device + systemd-journald.socket + +Before: + swap.target + umount.target + +Requires: + dev-sdb2.device + system.slice + -.mount + +Conflicts: + umount.target + + + + + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap: + +After: + dev-sdb2.device + system.slice + systemd-journald.socket + -.mount + blockdev@dev-sdb2.target + +Before: + swap.target + umount.target + +Requires: + dev-sdb2.device + -.mount + system.slice + +Conflicts: + umount.target + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + + +dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap: + +After: + blockdev@dev-sdb2.target + system.slice + systemd-journald.socket + -.mount + dev-sdb2.device + +Before: + swap.target + umount.target + +Requires: + -.mount + dev-sdb2.device + system.slice + +Conflicts: + umount.target + + + + + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + + +dev-disk-by\x2ddiskseq-2\x2dpart2.swap: + +After: + dev-sdb2.device + -.mount + systemd-journald.socket + blockdev@dev-sdb2.target + system.slice + +Before: + swap.target + umount.target + +Requires: + -.mount + dev-sdb2.device + system.slice + +Conflicts: + umount.target + + + + + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + + +dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap: + +After: + dev-sdb2.device + blockdev@dev-sdb2.target + -.mount + system.slice + systemd-journald.socket + +Before: + swap.target + umount.target + +Requires: + system.slice + dev-sdb2.device + -.mount + +Conflicts: + umount.target + + + + + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + + +dev-sdb2.swap: + +After: + -.mount + system.slice + dev-sdb2.device + systemd-journald.socket + blockdev@dev-sdb2.target + +Before: + swap.target + umount.target + +Requires: + system.slice + -.mount + dev-sdb2.device + +Conflicts: + umount.target + + + + + dev-sdb2.swap + + +swap.target: + +After: + dev-disk-by\x2ddiskseq-2\x2dpart2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2\x2dpart2.swap + dev-disk-by\x2dpartuuid-35b9b746\x2d7d5f\x2d6246\x2d97aa\x2d620e817c288c.swap + dev-sdb2.swap + dev-disk-by\x2dpath-pci\x2d0000:01:00.1\x2data\x2d2.0\x2dpart2.swap + dev-disk-by\x2did-ata\x2dCT1000MX500SSD1_2205E605AF2A\x2dpart2.swap + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + dev-disk-by\x2did-wwn\x2d0x500a0751e605af2a\x2dpart2.swap + +Before: + tmp.mount + sysinit.target + run-user-1000.mount + shutdown.target + +Requires: + dev-disk-by\x2duuid-33162725\x2d9580\x2d40a9\x2da3ab\x2d8523b16c4e92.swap + +Conflicts: + shutdown.target + + + + + swap.target + + +tmp.mount: + +After: + system.slice + -.mount + systemd-journald.socket + swap.target + +Before: + basic.target + systemd-timesyncd.service + local-fs.target + upower.service + man-db.service + systemd-hostnamed.service + colord.service + umount.target + systemd-logind.service + polkit.service + archlinux-keyring-wkd-sync.service + systemd-oomd.service + dbus-broker.service + shadow.service + +Requires: + -.mount + system.slice + +Conflicts: + umount.target + + + + + tmp.mount (8ms) + + +boot.mount: + +After: + blockdev@dev-disk-by\x2duuid-96EB\x2d4C82.target + blockdev@dev-sdb1.target + systemd-journald.socket + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + system.slice + local-fs-pre.target + -.mount + dev-sdb1.device + +Before: + umount.target + local-fs.target + +Requires: + system.slice + systemd-fsck@dev-disk-by\x2duuid-96EB\x2d4C82.service + -.mount + dev-sdb1.device + +Conflicts: + umount.target + + + + + boot.mount (128ms) + + +local-fs.target: + +After: + local-fs-pre.target + -.mount + var-lib-machines.mount + boot.mount + systemd-fsck-root.service + run-user-1000-gvfs.mount + systemd-remount-fs.service + run-user-1000.mount + run-user-1000-keybase-kbfs.mount + tmp.mount + run-user-1000-doc.mount + +Before: + systemd-journal-catalog-update.service + sysinit.target + systemd-tmpfiles-clean.service + systemd-sysext.service + systemd-update-done.service + ldconfig.service + systemd-boot-random-seed.service + systemd-tmpfiles-setup.service + systemd-binfmt.service + audit-rules.service + systemd-machine-id-commit.service + auditd.service + systemd-sysext.socket + containerd.service + +Requires: + -.mount + boot.mount + +Wants: + systemd-fsck-root.service + systemd-remount-fs.service + tmp.mount + +Conflicts: + shutdown.target + + + + + local-fs.target + + +systemd-sysext.socket: + +After: + local-fs.target + -.mount + system.slice + +Before: + sockets.target + +Requires: + -.mount + system.slice + + + + + systemd-sysext.socket + + +ldconfig.service: + +After: + systemd-journald.socket + local-fs.target + system.slice + +Before: + sysinit.target + systemd-update-done.service + initrd-switch-root.target + shutdown.target + +Requires: + system.slice + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + ldconfig.service (1.806s) + + +systemd-binfmt.service: + +After: + local-fs.target + proc-sys-fs-binfmt_misc.mount + systemd-journald.socket + system.slice + proc-sys-fs-binfmt_misc.automount + +Before: + sysinit.target + shutdown.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-binfmt.service (95ms) + + +systemd-tmpfiles-setup.service: + +After: + systemd-journald.socket + system.slice + systemd-sysusers.service + systemd-journal-flush.service + systemd-sysext.service + run-credentials-systemd\x2dtmpfiles\x2dsetup.service.mount + systemd-journald.service + local-fs.target + +Before: + initrd-switch-root.target + man-db.service + auditd.service + archlinux-keyring-wkd-sync.service + upower.service + polkit.service + shutdown.target + colord.service + audit-rules.service + shadow.service + dbus-broker.service + systemd-update-utmp.service + systemd-hostnamed.service + systemd-firstboot.service + systemd-oomd.service + systemd-timesyncd.service + sysinit.target + systemd-journal-catalog-update.service + systemd-logind.service + +Requires: + system.slice + +Conflicts: + initrd-switch-root.target + shutdown.target + + + + + systemd-tmpfiles-setup.service (1.687s) + + +proc-sys-fs-binfmt_misc.mount: + +After: + -.mount + -.slice + proc-sys-fs-binfmt_misc.automount + systemd-journald.socket + +Before: + systemd-binfmt.service + +Requires: + -.slice + -.mount + + + + + proc-sys-fs-binfmt_misc.mount (4ms) + + +dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusb\x2d0:5:1.2.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusb\x2d0:5:1.2.device + + +dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusbv2\x2d0:5:1.2.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusbv2\x2d0:5:1.2.device + + +dev-snd-controlC3.device: + + + + + dev-snd-controlC3.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.0-usb1-1\x2d5-1\x2d5:1.2-sound-card3-controlC3.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.0-usb1-1\x2d5-1\x2d5:1.2-sound-card3-controlC3.device + + +dev-snd-by\x2did-usb\x2d046d_HD_Pro_Webcam_C920_3E97D3DF\x2d02.device: + + + + + dev-snd-by\x2did-usb\x2d046d_HD_Pro_Webcam_C920_3E97D3DF\x2d02.device + + +dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusb\x2d0:1:1.0.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusb\x2d0:1:1.0.device + + +dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusbv2\x2d0:1:1.0.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:0b:00.3\x2dusbv2\x2d0:1:1.0.device + + +dev-snd-by\x2did-usb\x2dBEHRINGER_UMC404HD_192k\x2d00.device: + + + + + dev-snd-by\x2did-usb\x2dBEHRINGER_UMC404HD_192k\x2d00.device + + +sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.3-usb3-3\x2d1-3\x2d1:1.0-sound-card1-controlC1.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:08.1-0000:0b:00.3-usb3-3\x2d1-3\x2d1:1.0-sound-card1-controlC1.device + + +dev-snd-controlC1.device: + + + + + dev-snd-controlC1.device + + +sys-devices-pci0000:00-0000:00:01.2-0000:01:00.0-usb1-1\x2d6-1\x2d6.2-1\x2d6.2.4-1\x2d6.2.4:1.0-sound-card4-controlC4.device: + +Wants: + sound.target + + + + + sys-devices-pci0000:00-0000:00:01.2-0000:01:00.0-usb1-1\x2d6-1\x2d6.2-1\x2d6.2.4-1\x2d6.2.4:1.0-sound-card4-controlC4.device + + +dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusb\x2d0:6.2.4:1.0.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusb\x2d0:6.2.4:1.0.device + + +dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusbv2\x2d0:6.2.4:1.0.device: + + + + + dev-snd-by\x2dpath-pci\x2d0000:01:00.0\x2dusbv2\x2d0:6.2.4:1.0.device + + +dev-snd-by\x2did-usb\x2dHercules_Rocksmith_USB_Guitar_Adapter\x2d00.device: + + + + + dev-snd-by\x2did-usb\x2dHercules_Rocksmith_USB_Guitar_Adapter\x2d00.device + + +dev-snd-controlC4.device: + + + + + dev-snd-controlC4.device + + +systemd-journal-catalog-update.service: + +After: + systemd-tmpfiles-setup.service + local-fs.target + systemd-journald.socket + system.slice + +Before: + systemd-update-done.service + shutdown.target + sysinit.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-journal-catalog-update.service (326ms) + + +systemd-timesyncd.service: + +After: + tmp.mount + systemd-journald.socket + system.slice + systemd-tmpfiles-setup.service + systemd-remount-fs.service + systemd-sysusers.service + -.mount + +Before: + time-set.target + shutdown.target + sysinit.target + +Requires: + -.mount + system.slice + +Wants: + time-set.target + tmp.mount + +Conflicts: + shutdown.target + + + + + systemd-timesyncd.service (102ms) + + +systemd-update-utmp.service: + +After: + systemd-tmpfiles-setup.service + system.slice + auditd.service + systemd-remount-fs.service + -.mount + systemd-journald.socket + +Before: + sysinit.target + shutdown.target + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + systemd-update-utmp.service (101ms) + + +time-set.target: + +After: + systemd-timesyncd.service + +Before: + shutdown.target + docker.service + shadow.timer + time-sync.target + archlinux-keyring-wkd-sync.timer + man-db.timer + systemd-tmpfiles-clean.service + +Conflicts: + shutdown.target + + + + + time-set.target + + +systemd-update-done.service: + +After: + system.slice + local-fs.target + systemd-journal-catalog-update.service + systemd-sysusers.service + systemd-journald.socket + systemd-hwdb-update.service + ldconfig.service + +Before: + sysinit.target + shutdown.target + +Requires: + system.slice + +Conflicts: + shutdown.target + + + + + systemd-update-done.service (36ms) + + +sysinit.target: + +After: + dev-hugepages.mount + systemd-journal-catalog-update.service + cryptsetup.target + dev-mqueue.mount + sys-fs-fuse-connections.mount + modprobe@configfs.service + systemd-modules-load.service + systemd-pcrphase-initrd.service + systemd-pcrmachine.service + systemd-tpm2-setup.service + systemd-tmpfiles-setup.service + systemd-hwdb-update.service + systemd-udev-settle.service + integritysetup.target + systemd-timesyncd.service + sys-kernel-tracing.mount + modprobe@fuse.service + sys-kernel-debug.mount + systemd-update-utmp.service + modprobe@dm_mod.service + proc-sys-fs-binfmt_misc.automount + ldconfig.service + systemd-udev-trigger.service + auditd.service + systemd-firstboot.service + modprobe@drm.service + systemd-tmpfiles-setup-dev-early.service + systemd-boot-random-seed.service + systemd-udevd.service + systemd-tpm2-setup-early.service + sys-kernel-config.mount + systemd-sysext.service + systemd-sysctl.service + systemd-binfmt.service + swap.target + modprobe@loop.service + veritysetup.target + systemd-tmpfiles-setup-dev.service + systemd-sysusers.service + systemd-vconsole-setup.service + kmod-static-nodes.service + local-fs.target + systemd-update-done.service + systemd-journald.service + +Before: + upower.service + basic.target + archlinux-keyring-wkd-sync.timer + emergency.service + polkit.service + man-db.service + wpa_supplicant.service + avahi-daemon.socket + emergency.target + cups.socket + sshd.service + dbus.socket + getty@tty1.service + systemd-pcrphase-sysinit.service + user-runtime-dir@1000.service + archlinux-keyring-wkd-sync.service + systemd-tmpfiles-clean.timer + smb.service + udisks2.service + systemd-pcrphase.service + containerd.service + systemd-user-sessions.service + sshdgenkeys.service + rtkit-daemon.service + systemd-hostnamed.service + rescue.service + smbnetfs.service + rescue.target + shadow.service + cups.service + user@1000.service + gdm.service + shadow.timer + NetworkManager.service + colord.service + nmb.service + winbind.service + accounts-daemon.service + cups.path + systemd-ask-password-wall.service + man-db.timer + docker.socket + avahi-daemon.service + docker.service + shutdown.target + systemd-logind.service + +Wants: + systemd-firstboot.service + systemd-tpm2-setup.service + lvm2-monitor.service + sys-kernel-tracing.mount + systemd-modules-load.service + systemd-random-seed.service + swap.target + systemd-sysctl.service + veritysetup.target + sys-kernel-config.mount + systemd-tmpfiles-setup-dev.service + systemd-ask-password-console.path + dev-mqueue.mount + sys-fs-fuse-connections.mount + lvm2-lvmpolld.socket + systemd-pcrmachine.service + systemd-machine-id-commit.service + systemd-binfmt.service + systemd-update-done.service + systemd-repart.service + cryptsetup.target + proc-sys-fs-binfmt_misc.automount + systemd-update-utmp.service + systemd-pcrphase-sysinit.service + systemd-sysusers.service + ldconfig.service + systemd-tpm2-setup-early.service + systemd-hwdb-update.service + systemd-journal-flush.service + systemd-udev-trigger.service + systemd-pcrphase.service + systemd-tmpfiles-setup.service + systemd-boot-random-seed.service + systemd-journal-catalog-update.service + dev-hugepages.mount + integritysetup.target + systemd-timesyncd.service + systemd-journald.service + kmod-static-nodes.service + sys-kernel-debug.mount + systemd-tmpfiles-setup-dev-early.service + systemd-udevd.service + local-fs.target + +Conflicts: + shutdown.target + emergency.service + emergency.target + + + + + sysinit.target + + +cups.path: + +After: + sysinit.target + -.mount + +Before: + multi-user.target + paths.target + shutdown.target + cups.service + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + cups.path + + +archlinux-keyring-wkd-sync.timer: + +After: + sysinit.target + time-sync.target + time-set.target + -.mount + +Before: + timers.target + archlinux-keyring-wkd-sync.service + shutdown.target + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + archlinux-keyring-wkd-sync.timer + + +man-db.timer: + +After: + -.mount + time-set.target + sysinit.target + time-sync.target + +Before: + timers.target + man-db.service + shutdown.target + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + man-db.timer + + +shadow.timer: + +After: + sysinit.target + -.mount + time-sync.target + time-set.target + +Before: + shutdown.target + shadow.service + timers.target + +Requires: + sysinit.target + -.mount + +Conflicts: + shutdown.target + + + + + shadow.timer + + +systemd-tmpfiles-clean.timer: + +After: + sysinit.target + +Before: + shutdown.target + timers.target + systemd-tmpfiles-clean.service + +Requires: + sysinit.target + +Conflicts: + shutdown.target + + + + + systemd-tmpfiles-clean.timer + + +paths.target: + +After: + systemd-ask-password-console.path + cups.path + systemd-ask-password-wall.path + +Before: + shutdown.target + basic.target + +Conflicts: + shutdown.target + + + + + paths.target + + +timers.target: + +After: + shadow.timer + archlinux-keyring-wkd-sync.timer + systemd-tmpfiles-clean.timer + man-db.timer + +Wants: + systemd-tmpfiles-clean.timer + man-db.timer + archlinux-keyring-wkd-sync.timer + shadow.timer + +Conflicts: + shutdown.target + + + + + timers.target + + +avahi-daemon.socket: + +After: + sysinit.target + system.slice + -.mount + +Before: + sockets.target + avahi-daemon.service + shutdown.target + +Requires: + sysinit.target + system.slice + -.mount + +Conflicts: + shutdown.target + + + + + avahi-daemon.socket + + +cups.socket: + +After: + sysinit.target + system.slice + -.mount + +Before: + cups.service + sockets.target + shutdown.target + +Requires: + sysinit.target + system.slice + -.mount + +Conflicts: + shutdown.target + + + + + cups.socket + + +dbus.socket: + +After: + sysinit.target + -.mount + system.slice + +Before: + wpa_supplicant.service + shutdown.target + systemd-logind.service + polkit.service + avahi-daemon.service + gdm.service + rtkit-daemon.service + dbus-broker.service + upower.service + udisks2.service + accounts-daemon.service + sockets.target + NetworkManager.service + systemd-hostnamed.service + colord.service + +Requires: + sysinit.target + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + dbus.socket + + +docker.socket: + +After: + -.mount + sysinit.target + system.slice + +Before: + sockets.target + shutdown.target + docker.service + +Requires: + -.mount + sysinit.target + system.slice + +Conflicts: + shutdown.target + + + + + docker.socket (20ms) + + +dbus-broker.service: + +After: + system.slice + -.mount + systemd-journald.socket + dbus.socket + systemd-tmpfiles-setup.service + tmp.mount + +Before: + basic.target + shutdown.target + NetworkManager.service + wpa_supplicant.service + user@1000.service + user-runtime-dir@1000.service + +Requires: + system.slice + dbus.socket + -.mount + +Wants: + tmp.mount + dbus.socket + +Conflicts: + shutdown.target + + + + + dbus-broker.service (541ms) + + +sockets.target: + +After: + systemd-sysext.socket + docker.socket + systemd-journald-dev-log.socket + cups.socket + systemd-udevd-kernel.socket + systemd-journald-audit.socket + systemd-oomd.socket + systemd-journald.socket + dbus.socket + systemd-pcrextend.socket + syslog.socket + systemd-udevd-control.socket + avahi-daemon.socket + +Before: + shutdown.target + basic.target + +Wants: + systemd-udevd-kernel.socket + systemd-coredump.socket + dm-event.socket + systemd-udevd-control.socket + cups.socket + systemd-journald.socket + dbus.socket + systemd-pcrextend.socket + systemd-sysext.socket + systemd-journald-dev-log.socket + avahi-daemon.socket + +Conflicts: + shutdown.target + + + + + sockets.target + + +basic.target: + +After: + sockets.target + paths.target + slices.target + systemd-pcrphase-sysinit.service + -.mount + dbus-broker.service + sysinit.target + tmp.mount + +Before: + smb.service + wpa_supplicant.service + shutdown.target + multi-user.target + cups.service + systemd-hostnamed.service + shadow.service + getty@tty1.service + systemd-logind.service + NetworkManager.service + polkit.service + udisks2.service + user@1000.service + systemd-pcrphase.service + systemd-ask-password-wall.service + rtkit-daemon.service + man-db.service + avahi-daemon.service + winbind.service + initrd.target + systemd-user-sessions.service + accounts-daemon.service + archlinux-keyring-wkd-sync.service + nmb.service + containerd.service + sshd.service + user-runtime-dir@1000.service + sshdgenkeys.service + upower.service + gdm.service + smbnetfs.service + colord.service + docker.service + +Requires: + sysinit.target + -.mount + +Wants: + paths.target + slices.target + timers.target + tmp.mount + sockets.target + +Conflicts: + shutdown.target + + + + + basic.target + + +NetworkManager.service: + +After: + dbus.socket + system.slice + sysinit.target + systemd-journald.socket + dbus-broker.service + basic.target + network-pre.target + +Before: + network.target + multi-user.target + shutdown.target + +Requires: + sysinit.target + dbus.socket + system.slice + +Wants: + network.target + +Conflicts: + shutdown.target + + + + + NetworkManager.service (847ms) + + +avahi-daemon.service: + +After: + systemd-journald.socket + sysinit.target + dbus.socket + system.slice + avahi-daemon.socket + basic.target + +Before: + multi-user.target + shutdown.target + +Requires: + avahi-daemon.socket + system.slice + dbus.socket + sysinit.target + +Conflicts: + shutdown.target + + + + + avahi-daemon.service (36ms) + + +systemd-logind.service: + +After: + dbus.socket + system.slice + user.slice + sysinit.target + -.mount + systemd-journald.socket + basic.target + tmp.mount + modprobe@drm.service + nss-user-lookup.target + systemd-remount-fs.service + systemd-tmpfiles-setup.service + +Before: + shutdown.target + session-3.scope + multi-user.target + +Requires: + -.mount + system.slice + sysinit.target + +Wants: + tmp.mount + modprobe@drm.service + dbus.socket + user.slice + +Conflicts: + shutdown.target + + + + + systemd-logind.service (46ms) + + +shadow.service: + +After: + basic.target + systemd-tmpfiles-setup.service + shadow.timer + systemd-sysusers.service + sysinit.target + systemd-journald.socket + -.mount + tmp.mount + system.slice + +Before: + shutdown.target + +Requires: + system.slice + -.mount + sysinit.target + +Wants: + tmp.mount + +Conflicts: + shutdown.target + + + + + shadow.service + + +dev-rfkill.device: + + + + + dev-rfkill.device + + +sys-devices-virtual-misc-rfkill.device: + +Before: + systemd-rfkill.service + systemd-rfkill.socket + +Wants: + systemd-rfkill.socket + + + + + sys-devices-virtual-misc-rfkill.device + + +systemd-rfkill.socket: + +After: + -.mount + system.slice + systemd-remount-fs.service + sys-devices-virtual-misc-rfkill.device + +Before: + systemd-rfkill.service + shutdown.target + +Requires: + -.mount + system.slice + +Conflicts: + shutdown.target + + + + + systemd-rfkill.socket + + +network.target: + +After: + NetworkManager.service + wpa_supplicant.service + network-pre.target + +Before: + cups.service + network-online.target + nmb.service + containerd.service + shutdown.target + sshd.service + winbind.service + smb.service + systemd-user-sessions.service + +Conflicts: + shutdown.target + + + + + network.target + + +network-online.target: + +After: + network.target + +Before: + nmb.service + smb.service + docker.service + archlinux-keyring-wkd-sync.service + smbnetfs.service + shutdown.target + +Conflicts: + shutdown.target + + + + + network-online.target + + +containerd.service: + +After: + local-fs.target + network.target + system.slice + sysinit.target + basic.target + systemd-journald.socket + +Before: + docker.service + shutdown.target + +Requires: + sysinit.target + system.slice + +Conflicts: + shutdown.target + + + + + containerd.service (1.587s) + + +cups.service: + +After: + cups.path + system.slice + network.target + nss-user-lookup.target + basic.target + nslcd.service + systemd-journald.socket + cups.socket + sysinit.target + +Before: + multi-user.target + shutdown.target + +Requires: + cups.socket + sysinit.target + system.slice + +Conflicts: + shutdown.target + + + + + cups.service (1.028s) + + +nmb.service: + +After: + sysinit.target + basic.target + network.target + network-online.target + systemd-journald.socket + system.slice + +Before: + shutdown.target + smb.service + winbind.service + multi-user.target + +Requires: + sysinit.target + system.slice + +Wants: + network-online.target + +Conflicts: + shutdown.target + + + + + nmb.service (715ms) + + +smbnetfs.service: + +After: + systemd-journald.socket + network-online.target + sysinit.target + basic.target + system.slice + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + system.slice + +Wants: + network-online.target + +Conflicts: + shutdown.target + + + + + smbnetfs.service + + +sshd.service: + +After: + network.target + basic.target + system.slice + sshdgenkeys.service + systemd-journald.socket + sysinit.target + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + system.slice + +Wants: + sshdgenkeys.service + +Conflicts: + shutdown.target + + + + + sshd.service + + +systemd-user-sessions.service: + +After: + systemd-journald.socket + basic.target + sysinit.target + nss-user-lookup.target + remote-fs.target + network.target + systemd-pcrphase.service + system.slice + home.mount + +Before: + user@1000.service + session-3.scope + getty@tty1.service + gdm.service + multi-user.target + shutdown.target + systemd-ask-password-wall.service + +Requires: + sysinit.target + system.slice + +Conflicts: + shutdown.target + + + + + systemd-user-sessions.service (59ms) + + +gdm.service: + +After: + getty@tty1.service + rc-local.service + sysinit.target + systemd-journald.socket + plymouth-quit.service + basic.target + dbus.socket + plymouth-start.service + system.slice + systemd-user-sessions.service + +Before: + shutdown.target + graphical.target + +Requires: + system.slice + dbus.socket + sysinit.target + +Conflicts: + shutdown.target + plymouth-quit.service + getty@tty1.service + + + + + gdm.service (75ms) + + +nss-user-lookup.target: + +Before: + systemd-user-sessions.service + cups.service + systemd-logind.service + shutdown.target + accounts-daemon.service + +Conflicts: + shutdown.target + + + + + nss-user-lookup.target + + +accounts-daemon.service: + +After: + basic.target + nss-user-lookup.target + dbus.socket + -.mount + systemd-remount-fs.service + sysinit.target + systemd-journald.socket + system.slice + +Before: + shutdown.target + +Requires: + dbus.socket + system.slice + sysinit.target + -.mount + +Wants: + nss-user-lookup.target + +Conflicts: + shutdown.target + + + + + accounts-daemon.service (263ms) + + +colord.service: + +After: + sysinit.target + system.slice + basic.target + systemd-journald.socket + tmp.mount + systemd-tmpfiles-setup.service + dbus.socket + -.mount + +Before: + shutdown.target + +Requires: + sysinit.target + system.slice + -.mount + dbus.socket + +Wants: + tmp.mount + +Conflicts: + shutdown.target + + + + + colord.service (158ms) + + +polkit.service: + +After: + dbus.socket + system.slice + basic.target + systemd-journald.socket + sysinit.target + tmp.mount + -.mount + systemd-tmpfiles-setup.service + +Before: + shutdown.target + +Requires: + dbus.socket + system.slice + -.mount + sysinit.target + +Wants: + tmp.mount + +Conflicts: + shutdown.target + + + + + polkit.service (112ms) + + +smb.service: + +After: + basic.target + winbind.service + systemd-journald.socket + nmb.service + sysinit.target + network.target + network-online.target + system.slice + +Before: + multi-user.target + shutdown.target + +Requires: + sysinit.target + system.slice + +Wants: + network-online.target + +Conflicts: + shutdown.target + + + + + smb.service (241ms) + + +docker.service: + +After: + docker.socket + systemd-journald.socket + time-set.target + basic.target + network-online.target + system.slice + sysinit.target + firewalld.service + containerd.service + +Before: + multi-user.target + shutdown.target + +Requires: + system.slice + sysinit.target + docker.socket + +Wants: + containerd.service + network-online.target + +Conflicts: + shutdown.target + + + + + docker.service (20.771s) + + +upower.service: + +After: + tmp.mount + systemd-journald.socket + sysinit.target + systemd-remount-fs.service + systemd-tmpfiles-setup.service + system.slice + -.mount + dbus.socket + basic.target + +Before: + shutdown.target + +Requires: + sysinit.target + dbus.socket + -.mount + system.slice + +Wants: + tmp.mount + +Conflicts: + shutdown.target + + + + + upower.service (1.880s) + + +rtkit-daemon.service: + +After: + basic.target + dbus.socket + sysinit.target + system.slice + systemd-journald.socket + +Before: + shutdown.target + +Requires: + sysinit.target + system.slice + dbus.socket + +Conflicts: + shutdown.target + + + + + rtkit-daemon.service (83ms) + + +wpa_supplicant.service: + +After: + dbus-broker.service + basic.target + sysinit.target + systemd-journald.socket + system.slice + dbus.socket + +Before: + network.target + shutdown.target + +Requires: + sysinit.target + system.slice + dbus.socket + +Wants: + network.target + +Conflicts: + shutdown.target + + + + + wpa_supplicant.service (268ms) + + +sys-subsystem-net-devices-br\x2d22f1333873ca.device: + + + + + sys-subsystem-net-devices-br\x2d22f1333873ca.device + + +sys-devices-virtual-net-br\x2d22f1333873ca.device: + + + + + sys-devices-virtual-net-br\x2d22f1333873ca.device + + +sys-devices-virtual-net-br\x2d5429383fe602.device: + + + + + sys-devices-virtual-net-br\x2d5429383fe602.device + + +sys-subsystem-net-devices-br\x2d5429383fe602.device: + + + + + sys-subsystem-net-devices-br\x2d5429383fe602.device + + +sys-devices-virtual-net-br\x2dd72852bd8e80.device: + + + + + sys-devices-virtual-net-br\x2dd72852bd8e80.device + + +sys-subsystem-net-devices-br\x2dd72852bd8e80.device: + + + + + sys-subsystem-net-devices-br\x2dd72852bd8e80.device + + +sys-subsystem-net-devices-br\x2ddbaca52dee91.device: + + + + + sys-subsystem-net-devices-br\x2ddbaca52dee91.device + + +sys-devices-virtual-net-br\x2ddbaca52dee91.device: + + + + + sys-devices-virtual-net-br\x2ddbaca52dee91.device + + +sys-devices-virtual-net-br\x2df2df9fe532ab.device: + + + + + sys-devices-virtual-net-br\x2df2df9fe532ab.device + + +sys-subsystem-net-devices-br\x2df2df9fe532ab.device: + + + + + sys-subsystem-net-devices-br\x2df2df9fe532ab.device + + +sys-devices-virtual-net-br\x2d21db65a7643a.device: + + + + + sys-devices-virtual-net-br\x2d21db65a7643a.device + + +sys-subsystem-net-devices-br\x2d21db65a7643a.device: + + + + + sys-subsystem-net-devices-br\x2d21db65a7643a.device + + +sys-devices-virtual-net-br\x2d3d3f6107eb09.device: + + + + + sys-devices-virtual-net-br\x2d3d3f6107eb09.device + + +sys-subsystem-net-devices-br\x2d3d3f6107eb09.device: + + + + + sys-subsystem-net-devices-br\x2d3d3f6107eb09.device + + +sys-subsystem-net-devices-br\x2d9649490f4ab5.device: + + + + + sys-subsystem-net-devices-br\x2d9649490f4ab5.device + + +sys-devices-virtual-net-br\x2d9649490f4ab5.device: + + + + + sys-devices-virtual-net-br\x2d9649490f4ab5.device + + +sys-subsystem-net-devices-br\x2d055e71fb8427.device: + + + + + sys-subsystem-net-devices-br\x2d055e71fb8427.device + + +sys-devices-virtual-net-br\x2d055e71fb8427.device: + + + + + sys-devices-virtual-net-br\x2d055e71fb8427.device + + +sys-devices-virtual-net-docker0.device: + + + + + sys-devices-virtual-net-docker0.device + + +sys-subsystem-net-devices-docker0.device: + + + + + sys-subsystem-net-devices-docker0.device + + +sys-subsystem-net-devices-br\x2d2bc0c5163ca2.device: + + + + + sys-subsystem-net-devices-br\x2d2bc0c5163ca2.device + + +sys-devices-virtual-net-br\x2d2bc0c5163ca2.device: + + + + + sys-devices-virtual-net-br\x2d2bc0c5163ca2.device + + +sys-subsystem-net-devices-br\x2d7113eaba7591.device: + + + + + sys-subsystem-net-devices-br\x2d7113eaba7591.device + + +sys-devices-virtual-net-br\x2d7113eaba7591.device: + + + + + sys-devices-virtual-net-br\x2d7113eaba7591.device + + +sys-subsystem-net-devices-br\x2dd62686fd23e3.device: + + + + + sys-subsystem-net-devices-br\x2dd62686fd23e3.device + + +sys-devices-virtual-net-br\x2dd62686fd23e3.device: + + + + + sys-devices-virtual-net-br\x2dd62686fd23e3.device + + +sys-devices-virtual-net-br\x2ddff069d346ff.device: + + + + + sys-devices-virtual-net-br\x2ddff069d346ff.device + + +sys-subsystem-net-devices-br\x2ddff069d346ff.device: + + + + + sys-subsystem-net-devices-br\x2ddff069d346ff.device + + +sys-subsystem-net-devices-br\x2d5e9c4b7c9a5d.device: + + + + + sys-subsystem-net-devices-br\x2d5e9c4b7c9a5d.device + + +sys-devices-virtual-net-br\x2d5e9c4b7c9a5d.device: + + + + + sys-devices-virtual-net-br\x2d5e9c4b7c9a5d.device + + +sys-subsystem-net-devices-br\x2d625eeac54ca2.device: + + + + + sys-subsystem-net-devices-br\x2d625eeac54ca2.device + + +sys-devices-virtual-net-br\x2d625eeac54ca2.device: + + + + + sys-devices-virtual-net-br\x2d625eeac54ca2.device + + +multi-user.target: + +After: + systemd-user-sessions.service + docker.service + sshd.service + smb.service + rescue.target + cups.service + systemd-logind.service + avahi-daemon.service + getty.target + rescue.service + smbnetfs.service + NetworkManager.service + cups.path + systemd-oomd.service + basic.target + nmb.service + +Before: + shutdown.target + graphical.target + +Requires: + basic.target + +Wants: + systemd-ask-password-wall.path + cups.path + systemd-user-sessions.service + NetworkManager.service + systemd-logind.service + docker.service + sshd.service + cups.service + dbus-broker.service + nmb.service + avahi-daemon.service + remote-fs.target + smb.service + smbnetfs.service + getty.target + +Conflicts: + rescue.target + rescue.service + shutdown.target + + + + + multi-user.target + + +graphical.target: + +After: + rescue.target + rescue.service + multi-user.target + gdm.service + +Before: + shutdown.target + +Requires: + multi-user.target + +Wants: + gdm.service + +Conflicts: + rescue.target + rescue.service + shutdown.target + + + + + graphical.target + + + + + Activating + + Active + + Deactivating + + Setting up security module + + Generators + + Loading unit files + + + diff --git a/themes/devroom-2024/assets/scss/devroom.scss b/themes/devroom-2024/assets/scss/devroom.scss index 6d633ad..e3b5df6 100644 --- a/themes/devroom-2024/assets/scss/devroom.scss +++ b/themes/devroom-2024/assets/scss/devroom.scss @@ -177,6 +177,13 @@ img { } +figure.side-image { + width: 24%; + float: right; + margin-left: 1rem; + margin-bottom: 1rem; +} + ol { list-style-position: outside; }