You are not logged in.
Update:
I find that I set the wrong mkinitcpio hooks. I need to use udev instead of systemd. So the proper hooks will be like:
HOOKS=(base udev autodetect modconf block lvm2 filesystems keyboard fsck)--------------------------------------------------------------------------------------
Hi, I want to set up a SSD cache for my HDD based /home. I followed the wiki and succeeded. But when rebooting,
the log shows that my /home mount point cannot be found and the system drops into the emergency mode.
On my computer, there are one SDD(sda) and two HDDs(sdb and sdc). I put the root on the SDD, and make a lvm logical volume on
the two HDDs to be my /home mount point. Thus if no lvm cache setup, lsblk gives out:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 447.1G 0 disk
├─sda1 8:1 0 512M 0 part /boot/efi
├─sda2 8:2 0 1G 0 part /boot
├─sda3 8:3 0 10G 0 part [SWAP]
├─sda4 8:4 0 200G 0 part
│ └─vg0-root 254:0 0 200G 0 lvm /.snapshots
│ /
└─sda5 8:5 0 29.3G 0 part
sdb 8:16 0 931.5G 0 disk
└─sdb1 8:17 0 931.5G 0 part
└─vg1-home 254:1 0 1.8T 0 lvm /home
sdc 8:32 0 931.5G 0 disk
└─sdc1 8:33 0 931.5G 0 part
└─vg1-home 254:1 0 1.8T 0 lvm /homeThen, I use these command to create cache for vg1-home from sda5:
sudo pvcreate /dev/sda5
sudo vgextend vg1 /dev/sda5
sudo lvcreate -n home_cache -l +100%FREE vg1 /dev/sda5
sudo lvconvert --type cache --cachemode writeback --cachevol vg1/home_cache vg1/homeand lsblk gives out now:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 447.1G 0 disk
├─sda1 8:1 0 512M 0 part /boot/efi
├─sda2 8:2 0 1G 0 part /boot
├─sda3 8:3 0 10G 0 part [SWAP]
├─sda4 8:4 0 200G 0 part
│ └─vg0-root 254:0 0 200G 0 lvm /.snapshots
│ /
└─sda5 8:5 0 29.3G 0 part
└─vg1-home_cache_cvol 254:2 0 29.3G 0 lvm
├─vg1-home_cache_cvol-cdata 254:3 0 29.3G 0 lvm
│ └─vg1-home 254:1 0 1.8T 0 lvm /home
└─vg1-home_cache_cvol-cmeta 254:4 0 28M 0 lvm
└─vg1-home 254:1 0 1.8T 0 lvm /home
sdb 8:16 0 931.5G 0 disk
└─sdb1 8:17 0 931.5G 0 part
└─vg1-home_corig 254:5 0 1.8T 0 lvm
└─vg1-home 254:1 0 1.8T 0 lvm /home
sdc 8:32 0 931.5G 0 disk
└─sdc1 8:33 0 931.5G 0 part
└─vg1-home_corig 254:5 0 1.8T 0 lvm
└─vg1-home 254:1 0 1.8T 0 lvm /homeand
sudo lvs -ao+devices vg1gives out:
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert Devices
home vg1 Cwi-aoC--- <1.82t [home_cache_cvol] [home_corig] 0.22 13.57 2.06 home_corig(0)
[home_cache_cvol] vg1 Cwi-aoC--- 29.29g /dev/sda5(0)
[home_corig] vg1 owi-aoC--- <1.82t /dev/sdb1(0)
[home_corig] vg1 owi-aoC--- <1.82t /dev/sdc1(0)I think it's ok and reboot, but then system cannot boot normally and dropped into
emergency mode. So I login as root and check.
First lsblk gives out:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 447.1G 0 disk
├─sda1 8:1 0 512M 0 part /boot/efi
├─sda2 8:2 0 1G 0 part /boot
├─sda3 8:3 0 10G 0 part [SWAP]
├─sda4 8:4 0 200G 0 part
│ └─vg0-root 254:0 0 200G 0 lvm /.snapshots
│ /
└─sda5 8:5 0 29.3G 0 part
└─vg1-home_cache_cvol 254:1 0 29.3G 0 lvm
└─vg1-home_cache_cvol-cmeta 254:3 0 28M 0 lvm
sdb 8:16 0 931.5G 0 disk
└─sdb1 8:17 0 931.5G 0 part
└─vg1-home_corig 254:4 0 1.8T 0 lvm
sdc 8:32 0 931.5G 0 disk
└─sdc1 8:33 0 931.5G 0 part
└─vg1-home_corig 254:4 0 1.8T 0 lvmYou can find that vg1-home_cache_cvol-cdata volume is missing.
Second, /dev/vg1/home is missing, and
ls -l /dev/mappergives out:
total 0
crw------- 1 root root 10, 236 Dec 2 19:10 control
lrwxrwxrwx 1 root root 7 Dec 2 19:10 vg0-root -> ../dm-0
lrwxrwxrwx 1 root root 7 Dec 2 19:10 vg1-home_cache_cvol -> ../dm-1
lrwxrwxrwx 1 root root 7 Dec 2 19:10 vg1-home_cache_cvol-cmeta -> ../dm-3
lrwxrwxrwx 1 root root 7 Dec 2 19:10 vg1-home_corig -> ../dm-4and
lvs -ao+devices vg1gives out:
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert Devices
home vg1 Cwi---C--- <1.82t [home_cache_cvol] [home_corig] home_corig(0)
[home_cache_cvol] vg1 Cwi-aoC--- 29.29g /dev/sda5(0)
[home_corig] vg1 owi-a-C--- <1.82t /dev/sdb1(0)
[home_corig] vg1 owi-a-C--- <1.82t /dev/sdc1(0)So, it seemed that somehow the vg1-home_cache_cvol-cdata volume cannot be activated when booting,
then the /dev/vg1/home mount point can not be generated and /home cannot be mounted causing
the system drop into emergency mode.
I cannot solve this problem and I have tried my best to find possible solutions online but failed.
So any suggestions from you guys will be apprieciated.
Bty, I have updated all applications to the newest and
uname -agives out:
Linux lab 5.15.5-zen1-1-zen #1 ZEN SMP PREEMPT Thu, 25 Nov 2021 22:09:35 +0000 x86_64 GNU/Linuxand
journalctl -xbin the emergency mode since ata related information appeared gives out:
Dec 02 19:10:50 archlinux kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Dec 02 19:10:50 archlinux kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Dec 02 19:10:50 archlinux kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Dec 02 19:10:50 archlinux kernel: ata1.00: ATA-11: KIOXIA-EXCERIA SATA SSD, SBFA15.3, max UDMA/133
Dec 02 19:10:50 archlinux kernel: ata1.00: 937703088 sectors, multi 16: LBA48 NCQ (depth 32), AA
Dec 02 19:10:50 archlinux kernel: ata1.00: Features: Dev-Sleep
Dec 02 19:10:50 archlinux kernel: ata1.00: configured for UDMA/133
Dec 02 19:10:50 archlinux kernel: ata6.00: ATA-9: ST1000DM003-1ER162, CC45, max UDMA/133
Dec 02 19:10:50 archlinux kernel: scsi 0:0:0:0: Direct-Access ATA KIOXIA-EXCERIA S 15.3 PQ: 0 ANSI: 5
Dec 02 19:10:50 archlinux kernel: ata5.00: ATA-8: ST1000DM003-1SB102, CC43, max UDMA/133
Dec 02 19:10:50 archlinux kernel: ata6.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Dec 02 19:10:50 archlinux kernel: ata5.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 32), AA
Dec 02 19:10:50 archlinux kernel: sd 0:0:0:0: [sda] 937703088 512-byte logical blocks: (480 GB/447 GiB)
Dec 02 19:10:50 archlinux kernel: sd 0:0:0:0: [sda] Write Protect is off
Dec 02 19:10:50 archlinux kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Dec 02 19:10:50 archlinux kernel: sd 0:0:0:0: [sda] Asking for cache data failed
Dec 02 19:10:50 archlinux kernel: sd 0:0:0:0: [sda] Assuming drive cache: write through
Dec 02 19:10:50 archlinux kernel: ata6.00: configured for UDMA/133
Dec 02 19:10:50 archlinux kernel: ata5.00: configured for UDMA/133
Dec 02 19:10:50 archlinux kernel: scsi 4:0:0:0: Direct-Access ATA ST1000DM003-1SB1 CC43 PQ: 0 ANSI: 5
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] 4096-byte physical blocks
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] Write Protect is off
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] Asking for cache data failed
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
Dec 02 19:10:50 archlinux kernel: scsi 5:0:0:0: Direct-Access ATA ST1000DM003-1ER1 CC45 PQ: 0 ANSI: 5
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] 4096-byte physical blocks
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] Write Protect is off
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] Asking for cache data failed
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] Assuming drive cache: write through
Dec 02 19:10:50 archlinux kernel: sda: sda1 sda2 sda3 sda4 sda5
Dec 02 19:10:50 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Dec 02 19:10:50 archlinux kernel: sdc: sdc1
Dec 02 19:10:50 archlinux kernel: sd 5:0:0:0: [sdc] Attached SCSI disk
Dec 02 19:10:50 archlinux kernel: sdb: sdb1
Dec 02 19:10:50 archlinux kernel: sd 4:0:0:0: [sdb] Attached SCSI disk
Dec 02 19:10:50 archlinux kernel: Freeing unused decrypted memory: 2036K
Dec 02 19:10:50 archlinux kernel: Freeing unused kernel image (initmem) memory: 1900K
Dec 02 19:10:50 archlinux kernel: Write protecting the kernel read-only data: 30720k
Dec 02 19:10:50 archlinux kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=800a, bcdDevice= 0.05
Dec 02 19:10:50 archlinux kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 02 19:10:50 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Dec 02 19:10:50 archlinux kernel: hub 1-1:1.0: USB hub found
Dec 02 19:10:50 archlinux kernel: hub 1-1:1.0: 6 ports detected
Dec 02 19:10:50 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1556K
Dec 02 19:10:50 archlinux kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=8002, bcdDevice= 0.05
Dec 02 19:10:50 archlinux kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 02 19:10:50 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Dec 02 19:10:50 archlinux kernel: rodata_test: all tests were successful
Dec 02 19:10:50 archlinux kernel: Run /init as init process
Dec 02 19:10:50 archlinux kernel: with arguments:
Dec 02 19:10:50 archlinux kernel: /init
Dec 02 19:10:50 archlinux kernel: with environment:
Dec 02 19:10:50 archlinux kernel: HOME=/
Dec 02 19:10:50 archlinux kernel: TERM=linux
Dec 02 19:10:50 archlinux kernel: BOOT_IMAGE=/vmlinuz-linux-zen
Dec 02 19:10:50 archlinux kernel: hub 2-1:1.0: USB hub found
Dec 02 19:10:50 archlinux kernel: hub 2-1:1.0: 8 ports detected
Dec 02 19:10:50 archlinux systemd[1]: systemd 249.7-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Dec 02 19:10:50 archlinux systemd[1]: Detected architecture x86-64.
Dec 02 19:10:50 archlinux systemd[1]: Running in initial RAM disk.
Dec 02 19:10:50 archlinux kernel: fbcon: Taking over console
Dec 02 19:10:50 archlinux systemd[1]: Initializing machine ID from random generator.
Dec 02 19:10:50 archlinux kernel: Console: switching to colour frame buffer device 240x67
Dec 02 19:10:50 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
Dec 02 19:10:50 archlinux systemd[1]: Reached target Local File Systems.
Dec 02 19:10:50 archlinux systemd[1]: Reached target Path Units.
Dec 02 19:10:50 archlinux systemd[1]: Reached target Slice Units.
Dec 02 19:10:50 archlinux systemd[1]: Reached target Swaps.
Dec 02 19:10:50 archlinux systemd[1]: Reached target Timer Units.
Dec 02 19:10:50 archlinux systemd[1]: Listening on Journal Audit Socket.
Dec 02 19:10:50 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
Dec 02 19:10:50 archlinux systemd[1]: Listening on Journal Socket.
Dec 02 19:10:50 archlinux systemd[1]: Listening on udev Control Socket.
Dec 02 19:10:50 archlinux systemd[1]: Listening on udev Kernel Socket.
Dec 02 19:10:50 archlinux systemd[1]: Reached target Socket Units.
Dec 02 19:10:50 archlinux systemd[1]: Starting Create List of Static Device Nodes...
Dec 02 19:10:50 archlinux systemd[1]: Starting Journal Service...
Dec 02 19:10:50 archlinux systemd[1]: Starting Load Kernel Modules...
Dec 02 19:10:50 archlinux systemd[1]: Starting Coldplug All udev Devices...
Dec 02 19:10:50 archlinux systemd[1]: Finished Create List of Static Device Nodes.
Dec 02 19:10:50 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
Dec 02 19:10:50 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
Dec 02 19:10:50 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
Dec 02 19:10:50 archlinux kernel: device-mapper: uevent: version 1.0.3
Dec 02 19:10:50 archlinux kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
Dec 02 19:10:50 archlinux systemd[1]: Finished Load Kernel Modules.
Dec 02 19:10:50 archlinux kernel: audit: type=1130 audit(1638443450.945:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:50 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
Dec 02 19:10:50 archlinux kernel: audit: type=1130 audit(1638443450.956:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:50 archlinux systemd-journald[272]: Journal started
░░ Subject: The journal has been started
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The system journal process has started up, opened the journal
░░ files for writing and is now ready to process requests.
Dec 02 19:10:50 archlinux systemd-journald[272]: Runtime Journal (/run/log/journal/c95c784d11d044ae8b64db3c4ec04f9c) is 8.0M, max 318.3M, 310.3M free.
░░ Subject: Disk space used by the journal
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ Runtime Journal (/run/log/journal/c95c784d11d044ae8b64db3c4ec04f9c) is currently using 8.0M.
░░ Maximum allowed usage is set to 318.3M.
░░ Leaving at least 159.1M free (of currently available 3.1G of disk space).
░░ Enforced usage limit is thus 318.3M, of which 310.3M are still available.
░░
░░ The limits controlling how much disk space is used by the journal may
░░ be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
░░ RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
░░ /etc/systemd/journald.conf. See journald.conf(5) for details.
Dec 02 19:10:50 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:50 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:50 archlinux systemd-modules-load[273]: Inserted module 'dm_mod'
Dec 02 19:10:50 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:50 archlinux systemd[1]: Started Journal Service.
Dec 02 19:10:50 archlinux kernel: audit: type=1130 audit(1638443450.978:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Finished Coldplug All udev Devices.
░░ Subject: A start job for unit systemd-udev-trigger.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit systemd-udev-trigger.service has finished successfully.
░░
░░ The job identifier is 14.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Reached target System Initialization.
░░ Subject: A start job for unit sysinit.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit sysinit.target has finished successfully.
░░
░░ The job identifier is 3.
Dec 02 19:10:51 archlinux systemd[1]: Reached target Basic System.
░░ Subject: A start job for unit basic.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit basic.target has finished successfully.
░░
░░ The job identifier is 2.
Dec 02 19:10:51 archlinux kernel: audit: type=1130 audit(1638443451.046:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Dec 02 19:10:51 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Dec 02 19:10:51 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
Dec 02 19:10:51 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
Dec 02 19:10:51 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 02 19:10:51 archlinux kernel: usb usb3: Product: xHCI Host Controller
Dec 02 19:10:51 archlinux kernel: usb usb3: Manufacturer: Linux 5.15.5-zen1-1-zen xhci-hcd
Dec 02 19:10:51 archlinux kernel: usb usb3: SerialNumber: 0000:00:14.0
Dec 02 19:10:51 archlinux kernel: hub 3-0:1.0: USB hub found
Dec 02 19:10:51 archlinux kernel: hub 3-0:1.0: 15 ports detected
Dec 02 19:10:51 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Dec 02 19:10:51 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Dec 02 19:10:51 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Dec 02 19:10:51 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
Dec 02 19:10:51 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 02 19:10:51 archlinux kernel: usb usb4: Product: xHCI Host Controller
Dec 02 19:10:51 archlinux kernel: usb usb4: Manufacturer: Linux 5.15.5-zen1-1-zen xhci-hcd
Dec 02 19:10:51 archlinux kernel: usb usb4: SerialNumber: 0000:00:14.0
Dec 02 19:10:51 archlinux kernel: hub 4-0:1.0: USB hub found
Dec 02 19:10:51 archlinux kernel: hub 4-0:1.0: 6 ports detected
Dec 02 19:10:51 archlinux kernel: random: lvm: uninitialized urandom read (4 bytes read)
Dec 02 19:10:51 archlinux kernel: random: lvm: uninitialized urandom read (4 bytes read)
Dec 02 19:10:51 archlinux lvm[303]: PV /dev/sda4 online, VG vg0 is complete.
Dec 02 19:10:51 archlinux lvm[302]: PV /dev/sda5 online, VG vg1 incomplete (need 2).
Dec 02 19:10:51 archlinux systemd[1]: Started /usr/bin/lvm vgchange -aay --nohints vg0.
░░ Subject: A start job for unit lvm-activate-vg0.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit lvm-activate-vg0.service has finished successfully.
░░
░░ The job identifier is 34.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm-activate-vg0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: audit: type=1130 audit(1638443451.116:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm-activate-vg0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: random: lvm: uninitialized urandom read (4 bytes read)
Dec 02 19:10:51 archlinux kernel: raid6: skip pq benchmark and using algorithm avx2x4
Dec 02 19:10:51 archlinux kernel: raid6: using avx2x2 recovery algorithm
Dec 02 19:10:51 archlinux kernel: xor: automatically using best checksumming function avx
Dec 02 19:10:51 archlinux lvm[329]: PV /dev/sdc1 online, VG vg1 incomplete (need 1).
Dec 02 19:10:51 archlinux lvm[330]: PV /dev/sdb1 online, VG vg1 is complete.
Dec 02 19:10:51 archlinux systemd[1]: Started /usr/bin/lvm vgchange -aay --nohints vg1.
░░ Subject: A start job for unit lvm-activate-vg1.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit lvm-activate-vg1.service has finished successfully.
░░
░░ The job identifier is 37.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm-activate-vg1 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: audit: type=1130 audit(1638443451.187:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm-activate-vg1 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
Dec 02 19:10:51 archlinux kernel: BTRFS: device label root devid 1 transid 1983 /dev/dm-0 scanned by systemd-udevd (286)
Dec 02 19:10:51 archlinux lvm[323]: 1 logical volume(s) in volume group "vg0" now active
Dec 02 19:10:51 archlinux systemd[1]: Found device /dev/mapper/vg0-root.
░░ Subject: A start job for unit dev-mapper-vg0\x2droot.device has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit dev-mapper-vg0\x2droot.device has finished successfully.
░░
░░ The job identifier is 27.
Dec 02 19:10:51 archlinux systemd[1]: Reached target Initrd Root Device.
░░ Subject: A start job for unit initrd-root-device.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-root-device.target has finished successfully.
░░
░░ The job identifier is 26.
Dec 02 19:10:51 archlinux systemd[1]: Starting File System Check on /dev/mapper/vg0-root...
░░ Subject: A start job for unit systemd-fsck-root.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit systemd-fsck-root.service has begun execution.
░░
░░ The job identifier is 31.
Dec 02 19:10:51 archlinux systemd[1]: Finished File System Check on /dev/mapper/vg0-root.
░░ Subject: A start job for unit systemd-fsck-root.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit systemd-fsck-root.service has finished successfully.
░░
░░ The job identifier is 31.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: audit: type=1130 audit(1638443451.227:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Mounting /sysroot...
░░ Subject: A start job for unit sysroot.mount has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit sysroot.mount has begun execution.
░░
░░ The job identifier is 30.
Dec 02 19:10:51 archlinux kernel: BTRFS info (device dm-0): flagging fs with big metadata feature
Dec 02 19:10:51 archlinux kernel: BTRFS info (device dm-0): disk space caching is enabled
Dec 02 19:10:51 archlinux kernel: BTRFS info (device dm-0): has skinny extents
Dec 02 19:10:51 archlinux kernel: BTRFS info (device dm-0): enabling ssd optimizations
Dec 02 19:10:51 archlinux systemd[1]: Mounted /sysroot.
░░ Subject: A start job for unit sysroot.mount has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit sysroot.mount has finished successfully.
░░
░░ The job identifier is 30.
Dec 02 19:10:51 archlinux systemd[1]: Reached target Initrd Root File System.
░░ Subject: A start job for unit initrd-root-fs.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-root-fs.target has finished successfully.
░░
░░ The job identifier is 29.
Dec 02 19:10:51 archlinux systemd[1]: Starting Reload Configuration from the Real Root...
░░ Subject: A start job for unit initrd-parse-etc.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-parse-etc.service has begun execution.
░░
░░ The job identifier is 33.
Dec 02 19:10:51 archlinux systemd[1]: Reloading.
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux kernel: audit: type=1334 audit(1638443451.249:9): prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux kernel: audit: type=1334 audit(1638443451.250:10): prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux kernel: random: fast init done
Dec 02 19:10:51 archlinux audit: BPF prog-id=9 op=LOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=10 op=LOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=11 op=LOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=12 op=LOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=13 op=LOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=14 op=LOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux systemd[1]: initrd-parse-etc.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit initrd-parse-etc.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Finished Reload Configuration from the Real Root.
░░ Subject: A start job for unit initrd-parse-etc.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-parse-etc.service has finished successfully.
░░
░░ The job identifier is 33.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Reached target Initrd File Systems.
░░ Subject: A start job for unit initrd-fs.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-fs.target has finished successfully.
░░
░░ The job identifier is 28.
Dec 02 19:10:51 archlinux systemd[1]: Reached target Initrd Default Target.
░░ Subject: A start job for unit initrd.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd.target has finished successfully.
░░
░░ The job identifier is 1.
Dec 02 19:10:51 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
░░ Subject: A start job for unit initrd-cleanup.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-cleanup.service has begun execution.
░░
░░ The job identifier is 42.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Initrd Default Target.
░░ Subject: A stop job for unit initrd.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit initrd.target has finished.
░░
░░ The job identifier is 77 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Basic System.
░░ Subject: A stop job for unit basic.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit basic.target has finished.
░░
░░ The job identifier is 76 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Initrd Root Device.
░░ Subject: A stop job for unit initrd-root-device.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit initrd-root-device.target has finished.
░░
░░ The job identifier is 89 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Path Units.
░░ Subject: A stop job for unit paths.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit paths.target has finished.
░░
░░ The job identifier is 75 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Slice Units.
░░ Subject: A stop job for unit slices.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit slices.target has finished.
░░
░░ The job identifier is 85 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Socket Units.
░░ Subject: A stop job for unit sockets.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit sockets.target has finished.
░░
░░ The job identifier is 87 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target System Initialization.
░░ Subject: A stop job for unit sysinit.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit sysinit.target has finished.
░░
░░ The job identifier is 82 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Local File Systems.
░░ Subject: A stop job for unit local-fs.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit local-fs.target has finished.
░░
░░ The job identifier is 86 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Swaps.
░░ Subject: A stop job for unit swap.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit swap.target has finished.
░░
░░ The job identifier is 78 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Stopped target Timer Units.
░░ Subject: A stop job for unit timers.target has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit timers.target has finished.
░░
░░ The job identifier is 84 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: lvm-activate-vg0.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit lvm-activate-vg0.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Stopped /usr/bin/lvm vgchange -aay --nohints vg0.
░░ Subject: A stop job for unit lvm-activate-vg0.service has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit lvm-activate-vg0.service has finished.
░░
░░ The job identifier is 88 and the job result is done.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm-activate-vg0 comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux lvm[338]: wait4 child process 388 failed: Interrupted system call
Dec 02 19:10:51 archlinux lvm[338]: Check of pool vg1/home_cache_cvol failed (status:-1). Manual repair required!
Dec 02 19:10:51 archlinux systemd[1]: Stopping /usr/bin/lvm vgchange -aay --nohints vg1...
░░ Subject: A stop job for unit lvm-activate-vg1.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit lvm-activate-vg1.service has begun execution.
░░
░░ The job identifier is 74.
Dec 02 19:10:51 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit systemd-modules-load.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Stopped Load Kernel Modules.
░░ Subject: A stop job for unit systemd-modules-load.service has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-modules-load.service has finished.
░░
░░ The job identifier is 79 and the job result is done.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit systemd-udev-trigger.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Stopped Coldplug All udev Devices.
░░ Subject: A stop job for unit systemd-udev-trigger.service has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-udev-trigger.service has finished.
░░
░░ The job identifier is 49 and the job result is done.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
░░ Subject: A stop job for unit systemd-udevd.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-udevd.service has begun execution.
░░
░░ The job identifier is 52.
Dec 02 19:10:51 archlinux systemd[1]: initrd-cleanup.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit initrd-cleanup.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
░░ Subject: A start job for unit initrd-cleanup.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-cleanup.service has finished successfully.
░░
░░ The job identifier is 42.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux kernel: usb 3-1: new full-speed USB device number 2 using xhci_hcd
Dec 02 19:10:51 archlinux systemd[1]: systemd-udevd.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit systemd-udevd.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
░░ Subject: A stop job for unit systemd-udevd.service has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-udevd.service has finished.
░░
░░ The job identifier is 52 and the job result is done.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit systemd-udevd-control.socket has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Closed udev Control Socket.
░░ Subject: A stop job for unit systemd-udevd-control.socket has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-udevd-control.socket has finished.
░░
░░ The job identifier is 50 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit systemd-udevd-kernel.socket has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Closed udev Kernel Socket.
░░ Subject: A stop job for unit systemd-udevd-kernel.socket has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-udevd-kernel.socket has finished.
░░
░░ The job identifier is 53 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: Starting Cleanup udev Database...
░░ Subject: A start job for unit initrd-udevadm-cleanup-db.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-udevadm-cleanup-db.service has begun execution.
░░
░░ The job identifier is 46.
Dec 02 19:10:51 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit systemd-tmpfiles-setup-dev.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
░░ Subject: A stop job for unit systemd-tmpfiles-setup-dev.service has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit systemd-tmpfiles-setup-dev.service has finished.
░░
░░ The job identifier is 80 and the job result is done.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: kmod-static-nodes.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit kmod-static-nodes.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Stopped Create List of Static Device Nodes.
░░ Subject: A stop job for unit kmod-static-nodes.service has finished
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A stop job for unit kmod-static-nodes.service has finished.
░░
░░ The job identifier is 81 and the job result is done.
Dec 02 19:10:51 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit initrd-udevadm-cleanup-db.service has successfully entered the 'dead' state.
Dec 02 19:10:51 archlinux systemd[1]: Finished Cleanup udev Database.
░░ Subject: A start job for unit initrd-udevadm-cleanup-db.service has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-udevadm-cleanup-db.service has finished successfully.
░░
░░ The job identifier is 46.
Dec 02 19:10:51 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Dec 02 19:10:51 archlinux systemd[1]: Reached target Switch Root.
░░ Subject: A start job for unit initrd-switch-root.target has finished successfully
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-switch-root.target has finished successfully.
░░
░░ The job identifier is 45.
Dec 02 19:10:51 archlinux systemd[1]: Starting Switch Root...
░░ Subject: A start job for unit initrd-switch-root.service has begun execution
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit initrd-switch-root.service has begun execution.
░░
░░ The job identifier is 57.
Dec 02 19:10:51 archlinux lvm[338]: device-mapper: remove ioctl on (254:1) failed: Device or resource busy
Dec 02 19:10:51 archlinux lvm[338]: Interrupted...
Dec 02 19:10:51 archlinux lvm[338]: 0 logical volume(s) in volume group "vg1" now active
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux systemd[1]: Switching root.
Dec 02 19:10:51 archlinux audit: BPF prog-id=0 op=UNLOAD
Dec 02 19:10:51 archlinux systemd-journald[272]: Journal stopped
░░ Subject: The journal has been stopped
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The system journal process has shut down and closed all currently
░░ active journal files.
Dec 02 19:10:51 lab systemd-journald[272]: Received SIGTERM from PID 1 (systemd).Last edited by Sollovin (2021-12-03 02:17:14)
Offline