NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
18.4k stars 14.35k forks source link

Strange nondeterministic boot failure when `boot.initrd.systemd.enable=true` #245089

Closed someplaceguy closed 1 year ago

someplaceguy commented 1 year ago

Describe the bug

I just experienced a second boot failure due to the same issue I reported in https://github.com/NixOS/nixpkgs/issues/244737#issuecomment-1646652958.

However, now I have more details about this failure.

Basically, the issue is that when I have the systemd in initrd option enabled, sometimes the boot process stops due to a failure to "start Switch Root":

IMG_20230722_195541

This never happens unless I enable the systemd in initrd option, and it has happened both times when the only thing I did was enable that option (nothing else changed).

There are quite a few strange things about this failure, some of which I don't know whether they are separate bugs or not:

  1. The boot failure is nondeterministic. It only happens about once every 10 boots or so, without any changes whatsoever to my config (except for enabling the systemd in initrd option, as I mentioned).
  2. When the failure happens, it doesn't allow me to log in, as the messages suggest I should. Instead, it says Cannot open access to console, the root account is locked. See sulogin(8) man page for more details. I had never experienced such issues regarding logging in as root.
  3. If I press Enter then the boot process actually appears to proceed normally, which is not what I expected.
  4. Not only does the boot proceed normally, but I don't actually experience issue #244737 anymore, which is also quite strange. However, when I don't encounter this boot failure, then /run/wrappers always fails to mount during boot when the systemd in initrd option is enabled.

After I fixed the issue I was having in #244892 I was able to get more log messages. Here's a new screenshot from another boot failure with more verbose logging:

IMG_20230723_211445

As you can see, it's complaining about /sysroot not appearing to be an OS tree, due to the os-release file being missing.

You may also notice that /sysroot was unmounted prior to the start of the Switch Root unit.

At first glance, you'd think this could be the cause of the problem, but when looking at the logs which I've included below, this is what actually appears to happen:

  1. /sysroot appears to be unmounted sucessfully
  2. Then we see the 'switch root' failure
  3. Almost immediately after, /sysroot gets mounted again.

Perhaps this suggests a race condition between mounting /sysroot and starting the switch root unit?

NOTE: actually, this may actually not be happening "almost immediately after", please read the first comment in this issue.

  1. Again, almost immediately after, there is an attempt to unmount the /sysroot tree but it fails due to /sysroot/dev and /sysroot/run being busy. However, I'm not sure if this unmount attempt is simply due to the switch root failure or whether this is actually what is supposed to happen.

NOTE: again, this may not be happening almost immediately after, see first comment.

You can click here to see all the log messages for this boot that mention `sysroot`.
**Please note that the timestamps are misleading:** ``` 2023-07-23T20:15:03.277842+00:00 wizylap daemon.info systemd[1]: Mounting /sysroot... 2023-07-23T20:15:03.277845+00:00 wizylap daemon.info systemd[1]: Mounted /sysroot. 2023-07-23T20:15:03.277858+00:00 wizylap daemon.info systemd-sysroot-fstab-check[680]: /sysroot should be mounted in the initrd, will request daemon-reload. 2023-07-23T20:15:03.277874+00:00 wizylap daemon.info systemd-sysroot-fstab-check[680]: Requesting initrd-fs.target/start/replace... 2023-07-23T20:15:03.277879+00:00 wizylap daemon.info systemd-sysroot-fstab-check[680]: Requesting swap.target/start/replace... 2023-07-23T20:15:03.277979+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/dev/pts... 2023-07-23T20:15:03.277983+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/dev/shm... 2023-07-23T20:15:03.277987+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/nix/store... 2023-07-23T20:15:03.277991+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/proc... 2023-07-23T20:15:03.277995+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/run/keys... 2023-07-23T20:15:03.277999+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/run/wrappers... 2023-07-23T20:15:03.278003+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/sys... 2023-07-23T20:15:03.278048+00:00 wizylap daemon.info systemd[1]: sysroot-dev-pts.mount: Deactivated successfully. 2023-07-23T20:15:03.278052+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/dev/pts. 2023-07-23T20:15:03.278055+00:00 wizylap daemon.info systemd[1]: sysroot-dev-shm.mount: Deactivated successfully. 2023-07-23T20:15:03.278060+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/dev/shm. 2023-07-23T20:15:03.278064+00:00 wizylap daemon.info systemd[1]: sysroot-nix-store.mount: Deactivated successfully. 2023-07-23T20:15:03.278068+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/nix/store. 2023-07-23T20:15:03.278072+00:00 wizylap daemon.info systemd[1]: sysroot-proc.mount: Deactivated successfully. 2023-07-23T20:15:03.278075+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/proc. 2023-07-23T20:15:03.278080+00:00 wizylap daemon.info systemd[1]: sysroot-run-keys.mount: Deactivated successfully. 2023-07-23T20:15:03.278084+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/run/keys. 2023-07-23T20:15:03.278088+00:00 wizylap daemon.info systemd[1]: sysroot-run-wrappers.mount: Deactivated successfully. 2023-07-23T20:15:03.278092+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/run/wrappers. 2023-07-23T20:15:03.278095+00:00 wizylap daemon.info systemd[1]: sysroot-sys.mount: Deactivated successfully. 2023-07-23T20:15:03.278099+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/sys. 2023-07-23T20:15:03.278104+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/dev... 2023-07-23T20:15:03.278107+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/run... 2023-07-23T20:15:03.278127+00:00 wizylap daemon.info systemd[1]: sysroot-dev.mount: Deactivated successfully. 2023-07-23T20:15:03.278131+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/dev. 2023-07-23T20:15:03.278134+00:00 wizylap daemon.info systemd[1]: sysroot-run.mount: Deactivated successfully. 2023-07-23T20:15:03.278138+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot/run. 2023-07-23T20:15:03.278146+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot... 2023-07-23T20:15:03.278169+00:00 wizylap daemon.info systemd[1]: sysroot.mount: Deactivated successfully. 2023-07-23T20:15:03.278173+00:00 wizylap daemon.info systemd[1]: Unmounted /sysroot. 2023-07-23T20:15:03.278279+00:00 wizylap daemon.err @ystemctl[1226]: Failed to switch root: Specified switch root path '/sysroot' does not seem to be an OS tree. os-release file is missing. 2023-07-23T20:15:03.278410+00:00 wizylap daemon.info systemd-sysroot-fstab-check[1239]: /sysroot should be mounted in the initrd, will request daemon-reload. 2023-07-23T20:15:03.278444+00:00 wizylap daemon.info systemd-sysroot-fstab-check[1239]: Requesting initrd-fs.target/start/replace... 2023-07-23T20:15:03.278449+00:00 wizylap daemon.info systemd-sysroot-fstab-check[1239]: Requesting swap.target/start/replace... 2023-07-23T20:15:03.278666+00:00 wizylap daemon.info systemd[1]: Mounting /sysroot... 2023-07-23T20:15:03.278670+00:00 wizylap daemon.info systemd[1]: Mounted /sysroot. 2023-07-23T20:15:03.278752+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/dev... 2023-07-23T20:15:03.278755+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot/run... 2023-07-23T20:15:03.278771+00:00 wizylap daemon.info umount[1778]: umount: /sysroot/dev: target is busy. 2023-07-23T20:15:03.278787+00:00 wizylap daemon.info umount[1779]: umount: /sysroot/run: target is busy. 2023-07-23T20:15:03.278798+00:00 wizylap daemon.notice systemd[1]: sysroot-dev.mount: Mount process exited, code=exited, status=32/n/a 2023-07-23T20:15:03.278802+00:00 wizylap daemon.err systemd[1]: Failed unmounting /sysroot/dev. 2023-07-23T20:15:03.278814+00:00 wizylap daemon.notice systemd[1]: sysroot-run.mount: Mount process exited, code=exited, status=32/n/a 2023-07-23T20:15:03.278818+00:00 wizylap daemon.err systemd[1]: Failed unmounting /sysroot/run. 2023-07-23T20:15:03.278825+00:00 wizylap daemon.info systemd[1]: Unmounting /sysroot... 2023-07-23T20:15:03.278856+00:00 wizylap daemon.info umount[1780]: umount: /sysroot: target is busy. 2023-07-23T20:15:03.278865+00:00 wizylap daemon.notice systemd[1]: sysroot.mount: Mount process exited, code=exited, status=32/n/a 2023-07-23T20:15:03.278869+00:00 wizylap daemon.err systemd[1]: Failed unmounting /sysroot. ```

I've attached the full boot log below.

Steps To Reproduce

All I did was enable systemd in initrd option I mentioned above.

Expected behavior

I expected the boot process to complete without any errors or any requirement to press Enter.

I also expected to be able to login when systemd was in emergency mode, as it suggested I should.

Screenshots

See above.

Additional context

Here's the full boot log (well, up to a certain point), however, please note that the timestamps are misleading:

log.txt

Notify maintainers

cc @ElvishJerricco

someplaceguy commented 1 year ago

I'm sorry, but I just realized that there's something misleading about my logs.

I don't think the timestamps in my logs actually correspond to when the events happened, because the log messages from boot actually get written to the log files when rsyslog starts, which is when the messages actually get timestamped, i.e. all the messages from boot get a similar timestamp because that's when rsyslog starts and dumps whatever is in /dev/kmsg to the log files.

So when I said "almost immediately after", this may have been quite misleading. I've added a couple of notes to the original description to reflect that.

ElvishJerricco commented 1 year ago

When the failure happens, it doesn't allow me to log in, as the messages suggest I should. Instead, it says Cannot open access to console, the root account is locked. See sulogin(8) man page for more details. I had never experienced such issues regarding logging in as root.

Currently the root account is not shared by default with systemd stage 1. You can set boot.initrd.systemd.emergencyAccess to change this. The valid values are a hashed password, true for unauthenticated access, or false for no access (default false). I personally use boot.initrd.systemd.emergencyAccess = config.user.users.root.hashedPassword; but this assumes you're using hashedPassword on your regular root account.

Anyway, the problem is clearly that right after systemd-sysroot-fstab-check (which is initrd-parse-etc.service), everything starts getting unmounted. I don't even see a hint of initrd-nixos-activation.service running first, which is a huge red flag. It looks like it's trying to systemctl isolate something without the proper dependencies existing. Now, initrd-parse-etc.service does have a final effect of starting initrd-cleanup.service, which does do systemctl --no-block isolate initrd-switch-root.target, but initrd-cleanup.service is still ordered After=initrd.target, so it should still let everything else happen first, which is not happening here. I do not think it's initrd-cleanup.service that's the culprit.

I mean, it's immediate. It mounts /sysroot, then it immediately (correctly) does initrd-parse-etc.service (the systemd-sysroot-fstab-check stuff), but then it immediately goes to isolate for switch-root, which is very hard to explain.

ElvishJerricco commented 1 year ago

I think we need to see more of your configuration. There's clearly something unusual that we're not seeing here.

someplaceguy commented 1 year ago

I personally use boot.initrd.systemd.emergencyAccess = config.user.users.root.hashedPassword; but this assumes you're using hashedPassword on your regular root account.

I will try this, thanks!

@ElvishJerricco Regarding your diagnosis, did you check the full log which I had appended at the bottom of the initial description of this issue?

The events you mentioned seem to be happening like you expect they should:

023-07-23T20:15:03.277858+00:00 wizylap daemon.info systemd-sysroot-fstab-check[680]: /sysroot should be mounted in the initrd, will request daemon-reload.
2023-07-23T20:15:03.277862+00:00 wizylap daemon.info systemd[1]: Reloading requested from client PID 680 (unit initrd-parse-etc.service)...
2023-07-23T20:15:03.277865+00:00 wizylap daemon.info systemd[1]: Reloading...
2023-07-23T20:15:03.277869+00:00 wizylap daemon.info systemd[1]: Reloading finished in 128 ms.
2023-07-23T20:15:03.277874+00:00 wizylap daemon.info systemd-sysroot-fstab-check[680]: Requesting initrd-fs.target/start/replace...
2023-07-23T20:15:03.277879+00:00 wizylap daemon.info systemd-sysroot-fstab-check[680]: Requesting swap.target/start/replace...
2023-07-23T20:15:03.277884+00:00 wizylap daemon.info systemd[1]: initrd-parse-etc.service: Deactivated successfully.

Here we just saw systemd-sysroot-fstab-check / initrd-parse-etc.service running. Immediately afterwards:

2023-07-23T20:15:03.277888+00:00 wizylap daemon.info systemd[1]: Finished Mountpoints Configured in the Real Root.
2023-07-23T20:15:03.277891+00:00 wizylap daemon.info systemd[1]: Reached target Initrd File Systems.
2023-07-23T20:15:03.277895+00:00 wizylap daemon.info systemd[1]: Starting NixOS Activation...
2023-07-23T20:15:03.277900+00:00 wizylap daemon.info initrd-nixos-activation-start[690]: booting system configuration /nix/store/6gzh1m84v0y05ckp5yjmq4xdcliwph4x-nixos-system
-wizylap-23.05.git.c5683679fda4
2023-07-23T20:15:03.277905+00:00 wizylap daemon.info initrd-nixos-activation-start[690]: running activation script...
2023-07-23T20:15:03.277909+00:00 wizylap daemon.info initrd-nixos-activation-start[721]: setting up /etc...
2023-07-23T20:15:03.277914+00:00 wizylap daemon.info systemd[1]: initrd-nixos-activation.service: Deactivated successfully.
2023-07-23T20:15:03.277918+00:00 wizylap daemon.info systemd[1]: Finished NixOS Activation.

Here we saw initrd-nixos-activation script / service running. Immediately afterwards:

2023-07-23T20:15:03.277921+00:00 wizylap daemon.info systemd[1]: Reached target Initrd Default Target.
2023-07-23T20:15:03.277926+00:00 wizylap daemon.info systemd[1]: Starting Cleaning Up and Shutting Down Daemons...

Here we saw initrd.target being reached and only afterwards did we see initrd-cleanup.service starting.

So as far as I can tell there is nothing wrong with any of the issues you mentioned?

I have noticed that after all this has happened, /sysroot gets unmounted, then initrd-switch-root.service tries to start but fails because the os-release file is missing inside /sysroot.

I have also noticed that in those boots where I don't experience this issue, /sysroot does not get unmounted before initrd-switch-root.service starts.

But the other mountpoints such as /sysroot/{dev,run,...} always do get unmounted just before initrd-switch-root.service starts, whether I experience this issue or not.

I don't know what is causing /sysroot to get unmounted, though. I have enabled the rd.systemd.log_level=debug kernel parameter so when I experience this issue again, I will provide more verbose logs.

someplaceguy commented 1 year ago

Ok, so I think I may have diagnosed this issue, although I could be wrong because I'm a bit out of my depth here.

You said that initrd-cleanup.service does systemctl --no-block isolate initrd-switch-root.target, which I believe to be true according to the contents of my initrd.

The systemctl isolate command does the following according to systemctl's man page:

      isolate UNIT
           Start the unit specified on the command line and its dependencies and stop all others, unless they have IgnoreOnIsolate=yes

Now I have two questions:

  1. Does systemctl isolate stop mount units as well?
  2. And if so, does the sysroot.mount unit contain the IgnoreOnIsolate=yes config option?

The answer to the second question seems to be no, because only journald-related units have IgnoreOnIsolate=yes.

My answer to the first question seems to be "I think so?", because my initrd has no file that appears to be explicitly unmounting /sysroot/run, nor does it have any unit which mentions sysroot-run.mount, and yet /sysroot/run is getting unmounted just after initrd-cleanup.service starts.

In summary, initrd-cleanup.service runs the systemctl isolate command, which in turn seems to be stopping the sysroot.mount unit (but only sometimes, for some reason), because nothing seems to prevent it from doing so?

someplaceguy commented 1 year ago

In summary, initrd-cleanup.service runs the systemctl isolate command, which in turn seems to be stopping the sysroot.mount unit (but only sometimes, for some reason), because nothing seems to prevent it from doing so?

Actually, there may be something that should be preventing it from being unmounted.

So, the full command is systemctl --no-block isolate initrd-switch-root.target and initrd-switch-root.target seems to have a Want=initrd-root-fs.target as a dependency.

The initrd-root-fs.target unit does not seem to depend on sysroot.mount unit explicitly, but the systemd.special man page says the following:

      initrd-root-fs.target
           systemd-fstab-generator(3) automatically adds dependencies of type Before= to the sysroot.mount unit, which is generated from the kernel command line's root=
           setting (or equivalent).

So now there are 2 additional questions:

  1. Does the systemctl isolate command consider a Before= option to be a dependency that shouldn't be stopped?
  2. Is systemd-fstab-generator correctly generating this dependency?

Regarding the second question, my kernel command line does not have a root= parameter, so perhaps this is the issue?

someplaceguy commented 1 year ago

Note that the full log that I provided for this issue is a bit confusing because there are many events that happen twice (such as the activation script running and switching root):

  1. The first one, which is when switching the root fails
  2. The second one, which happens after I press Enter and the system succeeds booting

So I hope you don't get confused because of this.

If you only want to look at events that happened up until the failure, search for the Started Emergency Shell string and ignore any lines after that.

someplaceguy commented 1 year ago

I think I may have found another clue that systemd-fstab-generator may not be adding the proper dependency between sysroot.mount and initrd-root-fs.target, which likely explains why the systemctl isolate command is stopping sysroot.mount just before switching the root.

I haven't been able to reproduce this issue with rd.systemd.log_level=debug yet, but when I boot with this parameter, I see the following messages in my logs by systemd-fstab-generator:

2023-07-24T01:16:24.597166+00:00 wizylap daemon.debug systemd-fstab-generator[116]: Could not find a root= entry on the kernel command line.
2023-07-24T01:16:24.597170+00:00 wizylap daemon.debug systemd-fstab-generator[116]: Parsing /etc/fstab...
2023-07-24T01:16:24.597176+00:00 wizylap daemon.debug systemd-fstab-generator[116]: Parsing /nix/store/s43k33w1p9dqnb030w5yrwv48pjvr49x-initrd-fstab...
2023-07-24T01:16:24.597180+00:00 wizylap daemon.debug systemd-fstab-generator[116]: Failed to read symlink target for /, using as-is: No such file or directory
2023-07-24T01:16:24.597184+00:00 wizylap daemon.debug systemd-fstab-generator[116]: Found entry what=rpool where=/ type=zfs makefs=no growfs=no pcrfs=no noauto=no nofail=no

Notice how it detects my root filesystem correctly but apparently it detects it with the / mountpoint and it doesn't find any filesystem as being mounted in /sysroot (hence why there's only a line with where=/ but no lines with where=/sysroot).

This is very likely to mean that the root filesystem was found in the parse_fstab() function, not in the add_sysroot_mount() function of fstab-generator.c.

In fact, that's what the log indicates by the message Parsing /nix/store/...initrd-fstab. This file contains the following:

rpool / zfs x-initrd.mount,relatime 0 0

If my system had a root= kernel command line parameter, then add_sysroot_mount() would have printed where=/sysroot.

So I wonder if the above file should have contained /sysroot as the mountpoint instead of /?

ElvishJerricco commented 1 year ago

You're missing the fact that initrd-switch-root.service has Wants=initrd-fs.target, which means all stage 1 FSes, obviously including /sysroot, should be pulled in and not stopped by isolate.

So I wonder if the above file should have contained /sysroot as the mountpoint instead of /?

This is added implicitly by nature of being parsed from the file in the SYSTEMD_SYSROOT_FSTAB environment variable.

someplaceguy commented 1 year ago

With some effort, I've been able to capture some debug data that could help diagnose this issue as well as #244737, which I think are related.

Specifically, with your help, I was able to enter the rescue shell when the initrd-switch-root.service failed to start. My goal was to get the set of all dependencies between all the units that were known to systemd at that point in time.

Unfortunately, this initrd didn't have systemd-analyze available, but with some trickery I was able to mount my root filesystem and create a special-purpose chroot that contained all the necessary files in the necessary places.

I have attached a tarball with all this information. Here's the description of the files:

  1. deps.{dot,pdf,png,svg} - a graphviz dot file (and its conversion to various formats) containing all the dependencies and ordering requirements between all the units
  2. deps2.{dot,pdf,png,svg} - the same as above, but I filtered out the ordering dependencies to make the required dependencies easier to see.
  3. deps-colors.txt - a text file containing the color legend, i.e. what each color means in the above files
  4. plot.{pdf,svg} - an SVG file (and its PDF conversion) containing a visualization of when units were started and for how long they ran.

The deps.dot file was generated by systemd-analyze dot and the plot.svg file was generated by systemd-analyze plot. The man page describing the latter command contains a few caveats that could lead to misleading conclusions if not taken into account.

I haven't done almost any analysis yet but from my quick look I noticed something which seems suspicious to me, which is better seen in the deps2.{png,pdf} files: initrd-switch-root.target has a Wants=initrd-switch-root.service, but initrd-switch-root.service also has a Wants=initrd-switch-root.target.

I'm not sure if this is a bug or not, especially because the upstream systemd package also contains this cyclic dependency, but I wouldn't be surprised if it were indeed a bug and that it could cause strange issues (e.g. race conditions) in some circumstances...

systemd-debug-data.tar.gz

EDIT: please ignore the tmp-*.mount units, as these mounts were manually done by me in the emergency shell as part of setting up a proper chroot to make systemd-analyze work.

Also, I don't think the sysroot.mount unit should have been there, because when I entered the emergency shell, /sysroot was unmounted. However, one of the first things I did was mount -t zfs rpool /sysroot so that I could access the systemd-analyze binary, so I think that's why sysroot.mount was recreated...

ElvishJerricco commented 1 year ago

Fixed in https://github.com/NixOS/nixpkgs/pull/245837

turlando commented 10 months ago

I'm not sure this has been completely fixed. I'm running 23.11 and I consistently get at every boot the error stated in the first message. Pressing enter to continue actually makes the OS to successfully boot.

Almost full boot log ``` gen 18 19:37:15 localhost kernel: microcode: microcode updated early to revision 0x2f, date = 2019-11-12 gen 18 19:37:15 localhost kernel: Linux version 6.1.72 (nixbld@localhost) (gcc (GCC) 12.3.0, GNU ld (GNU Binutils) 2.40) #1-NixOS SMP PREEMPT_DYNAMIC Wed Jan 10 16:10:37 UTC 2024 gen 18 19:37:15 localhost kernel: Command line: BOOT_IMAGE=(hd0,gpt1)//kernels/brrqh7ya11gbymv6zy21qkwyy30hif43-linux-6.1.72-bzImage init=/nix/store/5vw8zylnilvagyff4m7iizifhjfh058j-nixos-system-ifigenia-23.11.20240115.b8dd8be/init nohibernate loglevel=4 gen 18 19:37:15 localhost kernel: BIOS-provided physical RAM map: gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000008bfff] usable gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x000000000008c000-0x000000000009ffff] reserved gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000aa299fff] usable gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000aa29a000-0x00000000acbfefff] reserved gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000acbff000-0x00000000acd7efff] ACPI NVS gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000acd7f000-0x00000000acdfefff] ACPI data gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000acdff000-0x00000000acdfffff] usable gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved gen 18 19:37:15 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000024dffffff] usable gen 18 19:37:15 localhost kernel: NX (Execute Disable) protection: active gen 18 19:37:15 localhost kernel: e820: update [mem 0xa2082018-0xa2092057] usable ==> usable gen 18 19:37:15 localhost kernel: e820: update [mem 0xa2082018-0xa2092057] usable ==> usable gen 18 19:37:15 localhost kernel: e820: update [mem 0xa2071018-0xa2081657] usable ==> usable gen 18 19:37:15 localhost kernel: e820: update [mem 0xa2071018-0xa2081657] usable ==> usable gen 18 19:37:15 localhost kernel: extended physical RAM map: gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000008bfff] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x000000000008c000-0x000000000009ffff] reserved gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000000e0000-0x00000000000fffff] reserved gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000a2071017] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000a2071018-0x00000000a2081657] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000a2081658-0x00000000a2082017] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000a2082018-0x00000000a2092057] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000a2092058-0x00000000aa299fff] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000aa29a000-0x00000000acbfefff] reserved gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000acbff000-0x00000000acd7efff] ACPI NVS gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000acd7f000-0x00000000acdfefff] ACPI data gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000acdff000-0x00000000acdfffff] usable gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved gen 18 19:37:15 localhost kernel: reserve setup_data: [mem 0x0000000100000000-0x000000024dffffff] usable gen 18 19:37:15 localhost kernel: efi: EFI v2.31 by Lenovo gen 18 19:37:15 localhost kernel: efi: ACPI=0xacdfe000 ACPI 2.0=0xacdfe014 SMBIOS=0xacbfe000 INITRD=0xa2093e18 RNG=0xacdd1f98 gen 18 19:37:15 localhost kernel: random: crng init done gen 18 19:37:15 localhost kernel: SMBIOS 2.7 present. gen 18 19:37:15 localhost kernel: DMI: LENOVO 20CLS2B000/20CLS2B000, BIOS N10ET29W (1.06 ) 02/12/2015 gen 18 19:37:15 localhost kernel: tsc: Fast TSC calibration using PIT gen 18 19:37:15 localhost kernel: tsc: Detected 2294.488 MHz processor gen 18 19:37:15 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved gen 18 19:37:15 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable gen 18 19:37:15 localhost kernel: last_pfn = 0x24e000 max_arch_pfn = 0x400000000 gen 18 19:37:15 localhost kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT gen 18 19:37:15 localhost kernel: last_pfn = 0xace00 max_arch_pfn = 0x400000000 gen 18 19:37:15 localhost kernel: Using GB pages for direct mapping gen 18 19:37:15 localhost kernel: Secure boot disabled gen 18 19:37:15 localhost kernel: RAMDISK: [mem 0x9b343000-0x9d06afff] gen 18 19:37:15 localhost kernel: ACPI: Early table checksum verification disabled gen 18 19:37:15 localhost kernel: ACPI: RSDP 0x00000000ACDFE014 000024 (v02 LENOVO) gen 18 19:37:15 localhost kernel: ACPI: XSDT 0x00000000ACDFE1C0 0000F4 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: FACP 0x00000000ACDF8000 00010C (v05 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: DSDT 0x00000000ACDE3000 010A1E (v01 LENOVO TP-N10 00001060 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: FACS 0x00000000ACD68000 000040 gen 18 19:37:15 localhost kernel: ACPI: SLIC 0x00000000ACDFD000 000176 (v01 LENOVO TP-N10 00001060 PTEC 00000001) gen 18 19:37:15 localhost kernel: ACPI: ASF! 0x00000000ACDFC000 0000A5 (v32 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: HPET 0x00000000ACDFB000 000038 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: ECDT 0x00000000ACDFA000 000052 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: APIC 0x00000000ACDF7000 000098 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: MCFG 0x00000000ACDF6000 00003C (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDF5000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDF4000 000486 (v01 LENOVO TP-SSDT2 00000200 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDE2000 0009CB (v01 LENOVO SataAhci 00001000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDE1000 000152 (v01 LENOVO Rmv_Batt 00001000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDE0000 000691 (v01 LENOVO Cpu0Ist 00003000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDDF000 000B74 (v02 LENOVO CpuSsdt 00003000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDDE000 000369 (v02 LENOVO CtdpB 00001000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDDC000 001475 (v01 LENOVO SaSsdt 00003000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDDB000 000394 (v02 LENOVO CppcTabl 00001000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: PCCT 0x00000000ACDDA000 00006E (v05 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDD9000 000AC4 (v02 LENOVO Cpc_Tabl 00001000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: TCPA 0x00000000ACDD8000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001) gen 18 19:37:15 localhost kernel: ACPI: SSDT 0x00000000ACDD7000 0006A5 (v01 Intel_ TpmTable 00001000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: UEFI 0x00000000ACDD6000 000042 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: MSDM 0x00000000ACCB1000 000055 (v03 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: BATB 0x00000000ACDD5000 000046 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: FPDT 0x00000000ACDD4000 000064 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: UEFI 0x00000000ACDD3000 00030A (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: DMAR 0x00000000ACDD2000 0000A8 (v01 LENOVO TP-N10 00001060 PTEC 00000002) gen 18 19:37:15 localhost kernel: ACPI: Reserving FACP table memory at [mem 0xacdf8000-0xacdf810b] gen 18 19:37:15 localhost kernel: ACPI: Reserving DSDT table memory at [mem 0xacde3000-0xacdf3a1d] gen 18 19:37:15 localhost kernel: ACPI: Reserving FACS table memory at [mem 0xacd68000-0xacd6803f] gen 18 19:37:15 localhost kernel: ACPI: Reserving SLIC table memory at [mem 0xacdfd000-0xacdfd175] gen 18 19:37:15 localhost kernel: ACPI: Reserving ASF! table memory at [mem 0xacdfc000-0xacdfc0a4] gen 18 19:37:15 localhost kernel: ACPI: Reserving HPET table memory at [mem 0xacdfb000-0xacdfb037] gen 18 19:37:15 localhost kernel: ACPI: Reserving ECDT table memory at [mem 0xacdfa000-0xacdfa051] gen 18 19:37:15 localhost kernel: ACPI: Reserving APIC table memory at [mem 0xacdf7000-0xacdf7097] gen 18 19:37:15 localhost kernel: ACPI: Reserving MCFG table memory at [mem 0xacdf6000-0xacdf603b] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacdf5000-0xacdf5032] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacdf4000-0xacdf4485] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacde2000-0xacde29ca] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacde1000-0xacde1151] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacde0000-0xacde0690] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacddf000-0xacddfb73] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacdde000-0xacdde368] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacddc000-0xacddd474] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacddb000-0xacddb393] gen 18 19:37:15 localhost kernel: ACPI: Reserving PCCT table memory at [mem 0xacdda000-0xacdda06d] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacdd9000-0xacdd9ac3] gen 18 19:37:15 localhost kernel: ACPI: Reserving TCPA table memory at [mem 0xacdd8000-0xacdd8031] gen 18 19:37:15 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0xacdd7000-0xacdd76a4] gen 18 19:37:15 localhost kernel: ACPI: Reserving UEFI table memory at [mem 0xacdd6000-0xacdd6041] gen 18 19:37:15 localhost kernel: ACPI: Reserving MSDM table memory at [mem 0xaccb1000-0xaccb1054] gen 18 19:37:15 localhost kernel: ACPI: Reserving BATB table memory at [mem 0xacdd5000-0xacdd5045] gen 18 19:37:15 localhost kernel: ACPI: Reserving FPDT table memory at [mem 0xacdd4000-0xacdd4063] gen 18 19:37:15 localhost kernel: ACPI: Reserving UEFI table memory at [mem 0xacdd3000-0xacdd3309] gen 18 19:37:15 localhost kernel: ACPI: Reserving DMAR table memory at [mem 0xacdd2000-0xacdd20a7] gen 18 19:37:15 localhost kernel: No NUMA configuration found gen 18 19:37:15 localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000024dffffff] gen 18 19:37:15 localhost kernel: NODE_DATA(0) allocated [mem 0x24dffa000-0x24dffffff] gen 18 19:37:15 localhost kernel: Zone ranges: gen 18 19:37:15 localhost kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff] gen 18 19:37:15 localhost kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] gen 18 19:37:15 localhost kernel: Normal [mem 0x0000000100000000-0x000000024dffffff] gen 18 19:37:15 localhost kernel: Device empty gen 18 19:37:15 localhost kernel: Movable zone start for each node gen 18 19:37:15 localhost kernel: Early memory node ranges gen 18 19:37:15 localhost kernel: node 0: [mem 0x0000000000001000-0x0000000000057fff] gen 18 19:37:15 localhost kernel: node 0: [mem 0x0000000000059000-0x000000000008bfff] gen 18 19:37:15 localhost kernel: node 0: [mem 0x0000000000100000-0x00000000aa299fff] gen 18 19:37:15 localhost kernel: node 0: [mem 0x00000000acdff000-0x00000000acdfffff] gen 18 19:37:15 localhost kernel: node 0: [mem 0x0000000100000000-0x000000024dffffff] gen 18 19:37:15 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000024dffffff] gen 18 19:37:15 localhost kernel: On node 0, zone DMA: 1 pages in unavailable ranges gen 18 19:37:15 localhost kernel: On node 0, zone DMA: 1 pages in unavailable ranges gen 18 19:37:15 localhost kernel: On node 0, zone DMA: 116 pages in unavailable ranges gen 18 19:37:15 localhost kernel: On node 0, zone DMA32: 11109 pages in unavailable ranges gen 18 19:37:15 localhost kernel: On node 0, zone Normal: 12800 pages in unavailable ranges gen 18 19:37:15 localhost kernel: On node 0, zone Normal: 8192 pages in unavailable ranges gen 18 19:37:15 localhost kernel: Reserving Intel graphics memory at [mem 0xae000000-0xafffffff] gen 18 19:37:15 localhost kernel: ACPI: PM-Timer IO Port: 0x1808 gen 18 19:37:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) gen 18 19:37:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) gen 18 19:37:15 localhost kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39 gen 18 19:37:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) gen 18 19:37:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) gen 18 19:37:15 localhost kernel: ACPI: Using ACPI (MADT) for SMP configuration information gen 18 19:37:15 localhost kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000 gen 18 19:37:15 localhost kernel: TSC deadline timer available gen 18 19:37:15 localhost kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x0008c000-0x0009ffff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xa2071000-0xa2071fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xa2081000-0xa2081fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xa2082000-0xa2082fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xa2092000-0xa2092fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xaa29a000-0xacbfefff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xacbff000-0xacd7efff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xacd7f000-0xacdfefff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xace00000-0xadffffff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xae000000-0xafffffff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xf80f7fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff] gen 18 19:37:15 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffffffff] gen 18 19:37:15 localhost kernel: [mem 0xb0000000-0xf80f7fff] available for PCI devices gen 18 19:37:15 localhost kernel: Booting paravirtualized kernel on bare hardware gen 18 19:37:15 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns gen 18 19:37:15 localhost kernel: setup_percpu: NR_CPUS:384 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 gen 18 19:37:15 localhost kernel: percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144 gen 18 19:37:15 localhost kernel: pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152 gen 18 19:37:15 localhost kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 gen 18 19:37:15 localhost kernel: Fallback order for Node 0: 0 gen 18 19:37:15 localhost kernel: Built 1 zonelists, mobility grouping on. Total pages: 2032512 gen 18 19:37:15 localhost kernel: Policy zone: Normal gen 18 19:37:15 localhost kernel: Kernel command line: BOOT_IMAGE=(hd0,gpt1)//kernels/brrqh7ya11gbymv6zy21qkwyy30hif43-linux-6.1.72-bzImage init=/nix/store/5vw8zylnilvagyff4m7iizifhjfh058j-nixos-system-ifigenia-23.11.20240115.b8dd8be/init nohibernate loglevel=4 gen 18 19:37:15 localhost kernel: Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt1)//kernels/brrqh7ya11gbymv6zy21qkwyy30hif43-linux-6.1.72-bzImage", will be passed to user space. gen 18 19:37:15 localhost kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) gen 18 19:37:15 localhost kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) gen 18 19:37:15 localhost kernel: mem auto-init: stack:all(zero), heap alloc:off, heap free:off gen 18 19:37:15 localhost kernel: software IO TLB: area num 8. gen 18 19:37:15 localhost kernel: Memory: 7893960K/8259732K available (12295K kernel code, 2333K rwdata, 7904K rodata, 1896K init, 4252K bss, 365512K reserved, 0K cma-reserved) gen 18 19:37:15 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 gen 18 19:37:15 localhost kernel: Kernel/User page tables isolation: enabled gen 18 19:37:15 localhost kernel: ftrace: allocating 37534 entries in 147 pages gen 18 19:37:15 localhost kernel: ftrace: allocated 147 pages with 4 groups gen 18 19:37:15 localhost kernel: Dynamic Preempt: voluntary gen 18 19:37:15 localhost kernel: rcu: Preemptible hierarchical RCU implementation. gen 18 19:37:15 localhost kernel: rcu: RCU event tracing is enabled. gen 18 19:37:15 localhost kernel: rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=8. gen 18 19:37:15 localhost kernel: Trampoline variant of Tasks RCU enabled. gen 18 19:37:15 localhost kernel: Rude variant of Tasks RCU enabled. gen 18 19:37:15 localhost kernel: Tracing variant of Tasks RCU enabled. gen 18 19:37:15 localhost kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. gen 18 19:37:15 localhost kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 gen 18 19:37:15 localhost kernel: NR_IRQS: 24832, nr_irqs: 760, preallocated irqs: 16 gen 18 19:37:15 localhost kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention. gen 18 19:37:15 localhost kernel: Console: colour dummy device 80x25 gen 18 19:37:15 localhost kernel: printk: console [tty0] enabled gen 18 19:37:15 localhost kernel: ACPI: Core revision 20220331 gen 18 19:37:15 localhost kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns gen 18 19:37:15 localhost kernel: APIC: Switch to symmetric I/O mode setup gen 18 19:37:15 localhost kernel: DMAR: Host address width 39 gen 18 19:37:15 localhost kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0 gen 18 19:37:15 localhost kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 7e1ff0505e gen 18 19:37:15 localhost kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1 gen 18 19:37:15 localhost kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c20660462 ecap f010da gen 18 19:37:15 localhost kernel: DMAR: RMRR base: 0x000000aaf94000 end: 0x000000aafaafff gen 18 19:37:15 localhost kernel: DMAR: RMRR base: 0x000000ad800000 end: 0x000000afffffff gen 18 19:37:15 localhost kernel: DMAR: [Firmware Bug]: No firmware reserved region can cover this RMRR [0x00000000ad800000-0x00000000afffffff], contact BIOS vendor for fixes gen 18 19:37:15 localhost kernel: DMAR: [Firmware Bug]: Your BIOS is broken; bad RMRR [0x00000000ad800000-0x00000000afffffff] BIOS vendor: LENOVO; Ver: N10ET29W (1.06 ); Product Version: ThinkPad X250 gen 18 19:37:15 localhost kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 gen 18 19:37:15 localhost kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000 gen 18 19:37:15 localhost kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit. gen 18 19:37:15 localhost kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting. gen 18 19:37:15 localhost kernel: DMAR-IR: Enabled IRQ remapping in xapic mode gen 18 19:37:15 localhost kernel: x2apic: IRQ remapping doesn't support X2APIC mode gen 18 19:37:15 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 gen 18 19:37:15 localhost kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2112de1be0d, max_idle_ns: 440795220433 ns gen 18 19:37:15 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4588.97 BogoMIPS (lpj=2294488) gen 18 19:37:15 localhost kernel: CPU0: Thermal monitoring enabled (TM1) gen 18 19:37:15 localhost kernel: process: using mwait in idle threads gen 18 19:37:15 localhost kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 gen 18 19:37:15 localhost kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 gen 18 19:37:15 localhost kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization gen 18 19:37:15 localhost kernel: Spectre V2 : Mitigation: Retpolines gen 18 19:37:15 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch gen 18 19:37:15 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT gen 18 19:37:15 localhost kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls gen 18 19:37:15 localhost kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier gen 18 19:37:15 localhost kernel: Spectre V2 : User space: Mitigation: STIBP via prctl gen 18 19:37:15 localhost kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl gen 18 19:37:15 localhost kernel: MDS: Mitigation: Clear CPU buffers gen 18 19:37:15 localhost kernel: TAA: Mitigation: Clear CPU buffers gen 18 19:37:15 localhost kernel: MMIO Stale Data: Unknown: No mitigations gen 18 19:37:15 localhost kernel: SRBDS: Mitigation: Microcode gen 18 19:37:15 localhost kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' gen 18 19:37:15 localhost kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' gen 18 19:37:15 localhost kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' gen 18 19:37:15 localhost kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 gen 18 19:37:15 localhost kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. gen 18 19:37:15 localhost kernel: Freeing SMP alternatives memory: 32K gen 18 19:37:15 localhost kernel: pid_max: default: 32768 minimum: 301 gen 18 19:37:15 localhost kernel: LSM: Security Framework initializing gen 18 19:37:15 localhost kernel: landlock: Up and running. gen 18 19:37:15 localhost kernel: Yama: becoming mindful. gen 18 19:37:15 localhost kernel: SELinux: Initializing. gen 18 19:37:15 localhost kernel: LSM support for eBPF active gen 18 19:37:15 localhost kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) gen 18 19:37:15 localhost kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) gen 18 19:37:15 localhost kernel: smpboot: CPU0: Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz (family: 0x6, model: 0x3d, stepping: 0x4) gen 18 19:37:15 localhost kernel: cblist_init_generic: Setting adjustable number of callback queues. gen 18 19:37:15 localhost kernel: cblist_init_generic: Setting shift to 3 and lim to 1. gen 18 19:37:15 localhost kernel: cblist_init_generic: Setting adjustable number of callback queues. gen 18 19:37:15 localhost kernel: cblist_init_generic: Setting shift to 3 and lim to 1. gen 18 19:37:15 localhost kernel: cblist_init_generic: Setting adjustable number of callback queues. gen 18 19:37:15 localhost kernel: cblist_init_generic: Setting shift to 3 and lim to 1. gen 18 19:37:15 localhost kernel: Performance Events: PEBS fmt2+, Broadwell events, 16-deep LBR, full-width counters, Intel PMU driver. gen 18 19:37:15 localhost kernel: ... version: 3 gen 18 19:37:15 localhost kernel: ... bit width: 48 gen 18 19:37:15 localhost kernel: ... generic registers: 4 gen 18 19:37:15 localhost kernel: ... value mask: 0000ffffffffffff gen 18 19:37:15 localhost kernel: ... max period: 00007fffffffffff gen 18 19:37:15 localhost kernel: ... fixed-purpose events: 3 gen 18 19:37:15 localhost kernel: ... event mask: 000000070000000f gen 18 19:37:15 localhost kernel: signal: max sigframe size: 1776 gen 18 19:37:15 localhost kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1202 gen 18 19:37:15 localhost kernel: rcu: Hierarchical SRCU implementation. gen 18 19:37:15 localhost kernel: rcu: Max phase no-delay instances is 400. gen 18 19:37:15 localhost kernel: smp: Bringing up secondary CPUs ... gen 18 19:37:15 localhost kernel: x86: Booting SMP configuration: gen 18 19:37:15 localhost kernel: .... node #0, CPUs: #1 gen 18 19:37:15 localhost kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details. gen 18 19:37:15 localhost kernel: TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details. gen 18 19:37:15 localhost kernel: #2 #3 gen 18 19:37:15 localhost kernel: smp: Brought up 1 node, 4 CPUs gen 18 19:37:15 localhost kernel: smpboot: Max logical packages: 2 gen 18 19:37:15 localhost kernel: smpboot: Total of 4 processors activated (18355.90 BogoMIPS) gen 18 19:37:15 localhost kernel: devtmpfs: initialized gen 18 19:37:15 localhost kernel: x86/mm: Memory block size: 128MB gen 18 19:37:15 localhost kernel: ACPI: PM: Registering ACPI NVS region [mem 0xacbff000-0xacd7efff] (1572864 bytes) gen 18 19:37:15 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns gen 18 19:37:15 localhost kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear) gen 18 19:37:15 localhost kernel: pinctrl core: initialized pinctrl subsystem gen 18 19:37:15 localhost kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family gen 18 19:37:15 localhost kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations gen 18 19:37:15 localhost kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations gen 18 19:37:15 localhost kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations gen 18 19:37:15 localhost kernel: audit: initializing netlink subsys (disabled) gen 18 19:37:15 localhost kernel: audit: type=2000 audit(1705603035.034:1): state=initialized audit_enabled=0 res=1 gen 18 19:37:15 localhost kernel: thermal_sys: Registered thermal governor 'bang_bang' gen 18 19:37:15 localhost kernel: thermal_sys: Registered thermal governor 'step_wise' gen 18 19:37:15 localhost kernel: thermal_sys: Registered thermal governor 'user_space' gen 18 19:37:15 localhost kernel: cpuidle: using governor menu gen 18 19:37:15 localhost kernel: Detected 1 PCC Subspaces gen 18 19:37:15 localhost kernel: Registering PCC driver as Mailbox controller gen 18 19:37:15 localhost kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it gen 18 19:37:15 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 gen 18 19:37:15 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) gen 18 19:37:15 localhost kernel: PCI: not using MMCONFIG gen 18 19:37:15 localhost kernel: PCI: Using configuration type 1 for base access gen 18 19:37:15 localhost kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance' gen 18 19:37:15 localhost kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. gen 18 19:37:15 localhost kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages gen 18 19:37:15 localhost kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page gen 18 19:37:15 localhost kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages gen 18 19:37:15 localhost kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page gen 18 19:37:15 localhost kernel: fbcon: Taking over console gen 18 19:37:15 localhost kernel: ACPI: Added _OSI(Module Device) gen 18 19:37:15 localhost kernel: ACPI: Added _OSI(Processor Device) gen 18 19:37:15 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions) gen 18 19:37:15 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device) gen 18 19:37:15 localhost kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded gen 18 19:37:15 localhost kernel: ACPI: EC: EC started gen 18 19:37:15 localhost kernel: ACPI: EC: interrupt blocked gen 18 19:37:15 localhost kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62 gen 18 19:37:15 localhost kernel: ACPI: EC: Boot ECDT EC used to handle transactions gen 18 19:37:15 localhost kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored gen 18 19:37:15 localhost kernel: ACPI Error: Needed type [Reference], found [Integer] (____ptrval____) (20220331/exresop-66) gen 18 19:37:15 localhost kernel: ACPI Error: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20220331/dswexec-431) gen 18 19:37:15 localhost kernel: ACPI Error: Aborting method \_PR.CPU0._PDC due to previous error (AE_AML_OPERAND_TYPE) (20220331/psparse-529) gen 18 19:37:15 localhost kernel: ACPI: Dynamic OEM Table Load: gen 18 19:37:15 localhost kernel: ACPI: SSDT 0xFFFF8BAB40C5D800 0005AA (v01 PmRef ApIst 00003000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: Dynamic OEM Table Load: gen 18 19:37:15 localhost kernel: ACPI: SSDT 0xFFFF8BAB41121E00 000119 (v02 PmRef ApCst 00003000 INTL 20120711) gen 18 19:37:15 localhost kernel: ACPI: Interpreter enabled gen 18 19:37:15 localhost kernel: ACPI: PM: (supports S0 S3 S4 S5) gen 18 19:37:15 localhost kernel: ACPI: Using IOAPIC for interrupt routing gen 18 19:37:15 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) gen 18 19:37:15 localhost kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources gen 18 19:37:15 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug gen 18 19:37:15 localhost kernel: PCI: Using E820 reservations for host bridge windows gen 18 19:37:15 localhost kernel: ACPI: Enabled 6 GPEs in block 00 to 7F gen 18 19:37:15 localhost kernel: ACPI: PM: Power Resource [PUBS] gen 18 19:37:15 localhost kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1) gen 18 19:37:15 localhost kernel: ACPI: PM: Power Resource [NVP3] gen 18 19:37:15 localhost kernel: ACPI: PM: Power Resource [NVP2] gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKB disabled gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKC disabled gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKD disabled gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKE disabled gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKF disabled gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKG disabled gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0 gen 18 19:37:15 localhost kernel: ACPI: PCI: Interrupt link LNKH disabled gen 18 19:37:15 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f]) gen 18 19:37:15 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] gen 18 19:37:15 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability LTR] gen 18 19:37:15 localhost kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability] gen 18 19:37:15 localhost kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME PCIeCapability LTR] gen 18 19:37:15 localhost kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME] gen 18 19:37:15 localhost kernel: acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_SUPPORT) gen 18 19:37:15 localhost kernel: PCI host bridge to bus 0000:00 gen 18 19:37:15 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfebfffff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-3f] gen 18 19:37:15 localhost kernel: pci 0000:00:00.0: [8086:1604] type 00 class 0x060000 gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: [8086:1616] type 00 class 0x030000 gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe0ffffff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xdfffffff 64bit pref] gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f] gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: BAR 2: assigned to efifb gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: DMAR: Disabling IOMMU for graphics on this chipset gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pci 0000:00:03.0: [8086:160c] type 00 class 0x040300 gen 18 19:37:15 localhost kernel: pci 0000:00:03.0: reg 0x10: [mem 0xe1230000-0xe1233fff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:00:14.0: [8086:9cb1] type 00 class 0x0c0330 gen 18 19:37:15 localhost kernel: pci 0000:00:14.0: reg 0x10: [mem 0xe1220000-0xe122ffff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:16.0: [8086:9cba] type 00 class 0x078000 gen 18 19:37:15 localhost kernel: pci 0000:00:16.0: reg 0x10: [mem 0xe1239000-0xe123901f 64bit] gen 18 19:37:15 localhost kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:19.0: [8086:15a2] type 00 class 0x020000 gen 18 19:37:15 localhost kernel: pci 0000:00:19.0: reg 0x10: [mem 0xe1200000-0xe121ffff] gen 18 19:37:15 localhost kernel: pci 0000:00:19.0: reg 0x14: [mem 0xe123d000-0xe123dfff] gen 18 19:37:15 localhost kernel: pci 0000:00:19.0: reg 0x18: [io 0x3080-0x309f] gen 18 19:37:15 localhost kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:1b.0: [8086:9ca0] type 00 class 0x040300 gen 18 19:37:15 localhost kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xe1234000-0xe1237fff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:1c.0: [8086:9c9a] type 01 class 0x060400 gen 18 19:37:15 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:1c.1: [8086:9c94] type 01 class 0x060400 gen 18 19:37:15 localhost kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:1f.0: [8086:9cc3] type 00 class 0x060100 gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: [8086:9c83] type 00 class 0x010601 gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: reg 0x10: [io 0x30a8-0x30af] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: reg 0x14: [io 0x30bc-0x30bf] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: reg 0x18: [io 0x30a0-0x30a7] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x30b8-0x30bb] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xe123c000-0xe123c7ff] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.2: PME# supported from D3hot gen 18 19:37:15 localhost kernel: pci 0000:00:1f.3: [8086:9ca2] type 00 class 0x0c0500 gen 18 19:37:15 localhost kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xe1238000-0xe12380ff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf] gen 18 19:37:15 localhost kernel: pci 0000:00:1f.6: [8086:9ca4] type 00 class 0x118000 gen 18 19:37:15 localhost kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xe123b000-0xe123bfff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:02:00.0: [10ec:5227] type 00 class 0xff0000 gen 18 19:37:15 localhost kernel: pci 0000:02:00.0: reg 0x10: [mem 0xe1100000-0xe1100fff] gen 18 19:37:15 localhost kernel: pci 0000:02:00.0: supports D1 D2 gen 18 19:37:15 localhost kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 02] gen 18 19:37:15 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0xe1100000-0xe11fffff] gen 18 19:37:15 localhost kernel: pci 0000:03:00.0: [8086:095b] type 00 class 0x028000 gen 18 19:37:15 localhost kernel: pci 0000:03:00.0: reg 0x10: [mem 0xe1000000-0xe1001fff 64bit] gen 18 19:37:15 localhost kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold gen 18 19:37:15 localhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 03] gen 18 19:37:15 localhost kernel: pci 0000:00:1c.1: bridge window [mem 0xe1000000-0xe10fffff] gen 18 19:37:15 localhost kernel: ACPI: EC: interrupt unblocked gen 18 19:37:15 localhost kernel: ACPI: EC: event unblocked gen 18 19:37:15 localhost kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62 gen 18 19:37:15 localhost kernel: ACPI: EC: GPE=0x25 gen 18 19:37:15 localhost kernel: ACPI: \_SB_.PCI0.LPC_.EC__: Boot ECDT EC initialization complete gen 18 19:37:15 localhost kernel: ACPI: \_SB_.PCI0.LPC_.EC__: EC: Used to handle transactions and events gen 18 19:37:15 localhost kernel: iommu: Default domain type: Translated gen 18 19:37:15 localhost kernel: iommu: DMA domain TLB invalidation policy: lazy mode gen 18 19:37:15 localhost kernel: Registered efivars operations gen 18 19:37:15 localhost kernel: NetLabel: Initializing gen 18 19:37:15 localhost kernel: NetLabel: domain hash size = 128 gen 18 19:37:15 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO gen 18 19:37:15 localhost kernel: NetLabel: unlabeled traffic allowed by default gen 18 19:37:15 localhost kernel: PCI: Using ACPI for IRQ routing gen 18 19:37:15 localhost kernel: PCI: pci_cache_line_size set to 64 bytes gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff] gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0x0008c000-0x0008ffff] gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0xa2071018-0xa3ffffff] gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0xa2082018-0xa3ffffff] gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0xaa29a000-0xabffffff] gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0xace00000-0xafffffff] gen 18 19:37:15 localhost kernel: e820: reserve RAM buffer [mem 0x24e000000-0x24fffffff] gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: vgaarb: bridge control possible gen 18 19:37:15 localhost kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none gen 18 19:37:15 localhost kernel: vgaarb: loaded gen 18 19:37:15 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 gen 18 19:37:15 localhost kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter gen 18 19:37:15 localhost kernel: clocksource: Switched to clocksource tsc-early gen 18 19:37:15 localhost kernel: VFS: Disk quotas dquot_6.6.0 gen 18 19:37:15 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) gen 18 19:37:15 localhost kernel: pnp: PnP ACPI init gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000c4000-0x000c7fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000cc000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000d4000-0x000d7fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000d8000-0x000dbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: pnp 00:00: disabling [mem 0x000dc000-0x000dffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff] gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0x00100000-0xafffffff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved gen 18 19:37:15 localhost kernel: pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff] gen 18 19:37:15 localhost kernel: system 00:01: [io 0x1800-0x189f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0800-0x087f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0880-0x08ff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0900-0x097f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0980-0x09ff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0a00-0x0a7f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0a80-0x0aff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0b00-0x0b7f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x0b80-0x0bff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x15e0-0x15ef] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x1600-0x167f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [io 0x1640-0x165f] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved gen 18 19:37:15 localhost kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved gen 18 19:37:15 localhost kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved gen 18 19:37:15 localhost kernel: system 00:06: [mem 0xb0010000-0xb001ffff] has been reserved gen 18 19:37:15 localhost kernel: system 00:06: [mem 0xb0000000-0xb000ffff] has been reserved gen 18 19:37:15 localhost kernel: pnp: PnP ACPI: found 7 devices gen 18 19:37:15 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns gen 18 19:37:15 localhost kernel: NET: Registered PF_INET protocol family gen 18 19:37:15 localhost kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear) gen 18 19:37:15 localhost kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) gen 18 19:37:15 localhost kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) gen 18 19:37:15 localhost kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) gen 18 19:37:15 localhost kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) gen 18 19:37:15 localhost kernel: TCP: Hash tables configured (established 65536 bind 65536) gen 18 19:37:15 localhost kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear) gen 18 19:37:15 localhost kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) gen 18 19:37:15 localhost kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) gen 18 19:37:15 localhost kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family gen 18 19:37:15 localhost kernel: NET: Registered PF_XDP protocol family gen 18 19:37:15 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 02] gen 18 19:37:15 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0xe1100000-0xe11fffff] gen 18 19:37:15 localhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 03] gen 18 19:37:15 localhost kernel: pci 0000:00:1c.1: bridge window [mem 0xe1000000-0xe10fffff] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: resource 7 [mem 0xb0000000-0xfebfffff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff window] gen 18 19:37:15 localhost kernel: pci_bus 0000:02: resource 1 [mem 0xe1100000-0xe11fffff] gen 18 19:37:15 localhost kernel: pci_bus 0000:03: resource 1 [mem 0xe1000000-0xe10fffff] gen 18 19:37:15 localhost kernel: PCI: CLS 64 bytes, default 64 gen 18 19:37:15 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB) gen 18 19:37:15 localhost kernel: software IO TLB: mapped [mem 0x0000000097343000-0x000000009b343000] (64MB) gen 18 19:37:15 localhost kernel: Trying to unpack rootfs image as initramfs... gen 18 19:37:15 localhost kernel: Initialise system trusted keyrings gen 18 19:37:15 localhost kernel: workingset: timestamp_bits=40 max_order=21 bucket_order=0 gen 18 19:37:15 localhost kernel: zbud: loaded gen 18 19:37:15 localhost kernel: Key type asymmetric registered gen 18 19:37:15 localhost kernel: Asymmetric key parser 'x509' registered gen 18 19:37:15 localhost kernel: Freeing initrd memory: 29856K gen 18 19:37:15 localhost kernel: alg: self-tests for CTR-KDF (hmac(sha256)) passed gen 18 19:37:15 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) gen 18 19:37:15 localhost kernel: io scheduler mq-deadline registered gen 18 19:37:15 localhost kernel: io scheduler kyber registered gen 18 19:37:15 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled gen 18 19:37:15 localhost kernel: intel_pstate: Intel P-state driver initializing gen 18 19:37:15 localhost kernel: efifb: probing for efifb gen 18 19:37:15 localhost kernel: efifb: No BGRT, not showing boot graphics gen 18 19:37:15 localhost kernel: efifb: framebuffer at 0xc0000000, using 1200k, total 1200k gen 18 19:37:15 localhost kernel: efifb: mode is 640x480x32, linelength=2560, pages=1 gen 18 19:37:15 localhost kernel: efifb: scrolling: redraw gen 18 19:37:15 localhost kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 gen 18 19:37:15 localhost kernel: Console: switching to colour frame buffer device 80x30 gen 18 19:37:15 localhost kernel: fb0: EFI VGA frame buffer device gen 18 19:37:15 localhost kernel: drop_monitor: Initializing network drop monitor service gen 18 19:37:15 localhost kernel: NET: Registered PF_INET6 protocol family gen 18 19:37:15 localhost kernel: Segment Routing with IPv6 gen 18 19:37:15 localhost kernel: In-situ OAM (IOAM) with IPv6 gen 18 19:37:15 localhost kernel: microcode: sig=0x306d4, pf=0x40, revision=0x2f gen 18 19:37:15 localhost kernel: microcode: Microcode Update Driver: v2.2. gen 18 19:37:15 localhost kernel: IPI shorthand broadcast: enabled gen 18 19:37:15 localhost kernel: sched_clock: Marking stable (364002095, 1267048)->(393848681, -28579538) gen 18 19:37:15 localhost kernel: registered taskstats version 1 gen 18 19:37:15 localhost kernel: Loading compiled-in X.509 certificates gen 18 19:37:15 localhost kernel: zswap: loaded using pool lzo/zbud gen 18 19:37:15 localhost kernel: Key type .fscrypt registered gen 18 19:37:15 localhost kernel: Key type fscrypt-provisioning registered gen 18 19:37:15 localhost kernel: Freeing unused decrypted memory: 2036K gen 18 19:37:15 localhost kernel: Freeing unused kernel image (initmem) memory: 1896K gen 18 19:37:15 localhost kernel: Write protecting the kernel read-only data: 22528k gen 18 19:37:15 localhost kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K gen 18 19:37:15 localhost kernel: Freeing unused kernel image (rodata/data gap) memory: 288K gen 18 19:37:15 localhost kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found. gen 18 19:37:15 localhost kernel: x86/mm: Checking user space page tables gen 18 19:37:15 localhost kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found. gen 18 19:37:15 localhost kernel: Run /init as init process gen 18 19:37:15 localhost kernel: with arguments: gen 18 19:37:15 localhost kernel: /init gen 18 19:37:15 localhost kernel: with environment: gen 18 19:37:15 localhost kernel: HOME=/ gen 18 19:37:15 localhost kernel: TERM=linux gen 18 19:37:15 localhost kernel: BOOT_IMAGE=(hd0,gpt1)//kernels/brrqh7ya11gbymv6zy21qkwyy30hif43-linux-6.1.72-bzImage gen 18 19:37:15 localhost systemd[1]: Inserted module 'autofs4' gen 18 19:37:15 localhost systemd[1]: systemd 254.6 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 +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified) gen 18 19:37:15 localhost systemd[1]: Detected architecture x86-64. gen 18 19:37:15 localhost systemd[1]: Running in initrd. gen 18 19:37:15 localhost systemd[1]: No hostname configured, using default hostname. gen 18 19:37:15 localhost systemd[1]: Hostname set to . gen 18 19:37:15 localhost systemd[1]: Initializing machine ID from random generator. gen 18 19:37:15 localhost systemd-gpt-auto-generator[90]: EFI loader partition unknown, exiting. gen 18 19:37:15 localhost systemd-gpt-auto-generator[90]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) gen 18 19:37:15 localhost systemd[1]: Queued start job for default target Initrd Default Target. gen 18 19:37:15 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch. gen 18 19:37:15 localhost systemd[1]: Reached target Initrd Root Device. gen 18 19:37:15 localhost systemd[1]: Reached target Path Units. gen 18 19:37:15 localhost systemd[1]: Reached target Slice Units. gen 18 19:37:15 localhost systemd[1]: Reached target Swaps. gen 18 19:37:15 localhost systemd[1]: Reached target Timer Units. gen 18 19:37:15 localhost systemd[1]: Listening on Journal Socket (/dev/log). gen 18 19:37:15 localhost systemd[1]: Listening on Journal Socket. gen 18 19:37:15 localhost systemd[1]: Listening on udev Control Socket. gen 18 19:37:15 localhost systemd[1]: Listening on udev Kernel Socket. gen 18 19:37:15 localhost systemd[1]: Reached target Socket Units. gen 18 19:37:15 localhost systemd[1]: Starting Create List of Static Device Nodes... gen 18 19:37:15 localhost systemd[1]: Starting Journal Service... gen 18 19:37:15 localhost systemd[1]: Starting Load Kernel Modules... gen 18 19:37:15 localhost systemd[1]: Starting Create Static Device Nodes in /dev... gen 18 19:37:15 localhost systemd[1]: Starting Coldplug All udev Devices... gen 18 19:37:15 localhost systemd[1]: Finished Create List of Static Device Nodes. gen 18 19:37:15 localhost systemd[1]: Finished Create Static Device Nodes in /dev. gen 18 19:37:15 localhost systemd[1]: Reached target Preparation for Local File Systems. gen 18 19:37:15 localhost systemd[1]: Reached target Local File Systems. gen 18 19:37:15 localhost systemd[1]: Starting Rule-based Manager for Device Events and Files... gen 18 19:37:15 localhost systemd-journald[95]: Collecting audit messages is disabled. gen 18 19:37:15 localhost systemd[1]: Started Rule-based Manager for Device Events and Files. gen 18 19:37:15 localhost systemd-journald[95]: Journal started gen 18 19:37:15 localhost systemd-journald[95]: Runtime Journal (/run/log/journal/bb017fc34b8548c98399d990ee993ad2) is 8.0M, max 156.6M, 148.6M free. gen 18 19:37:15 localhost systemd-udevd[103]: Using default interface naming scheme 'v253'. gen 18 19:37:15 localhost systemd[1]: Started Journal Service. gen 18 19:37:15 localhost kernel: ACPI: bus type drm_connector registered gen 18 19:37:15 localhost kernel: Linux agpgart interface v0.103 gen 18 19:37:15 localhost systemd[1]: Starting Create Volatile Files and Directories... gen 18 19:37:15 localhost systemd[1]: Finished Create Volatile Files and Directories. gen 18 19:37:15 localhost systemd[1]: Finished Coldplug All udev Devices. gen 18 19:37:15 localhost systemd[1]: Starting Wait for udev To Complete Device Initialization... gen 18 19:37:15 localhost udevadm[136]: systemd-udev-settle.service is deprecated. Please fix zfs-import-system.service not to pull it in. gen 18 19:37:15 localhost kernel: rtc_cmos 00:02: RTC can wake from S4 gen 18 19:37:15 localhost kernel: rtc_cmos 00:02: registered as rtc0 gen 18 19:37:15 localhost kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram gen 18 19:37:15 localhost kernel: SCSI subsystem initialized gen 18 19:37:15 localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 gen 18 19:37:15 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1 gen 18 19:37:15 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12 gen 18 19:37:15 localhost kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78) gen 18 19:37:15 localhost kernel: ACPI: bus type USB registered gen 18 19:37:15 localhost kernel: usbcore: registered new interface driver usbfs gen 18 19:37:15 localhost kernel: usbcore: registered new interface driver hub gen 18 19:37:15 localhost kernel: usbcore: registered new device driver usb gen 18 19:37:15 localhost kernel: libata version 3.00 loaded. gen 18 19:37:15 localhost systemd[1]: Starting Virtual Console Setup... gen 18 19:37:15 localhost systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. gen 18 19:37:15 localhost systemd[1]: Stopped Virtual Console Setup. gen 18 19:37:15 localhost systemd[1]: Starting Virtual Console Setup... gen 18 19:37:15 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller gen 18 19:37:15 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 gen 18 19:37:15 localhost kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x000000000004b810 gen 18 19:37:15 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller gen 18 19:37:15 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 gen 18 19:37:15 localhost kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed gen 18 19:37:15 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01 gen 18 19:37:15 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 gen 18 19:37:15 localhost kernel: usb usb1: Product: xHCI Host Controller gen 18 19:37:15 localhost kernel: usb usb1: Manufacturer: Linux 6.1.72 xhci-hcd gen 18 19:37:15 localhost kernel: usb usb1: SerialNumber: 0000:00:14.0 gen 18 19:37:15 localhost kernel: hub 1-0:1.0: USB hub found gen 18 19:37:15 localhost kernel: hub 1-0:1.0: 11 ports detected gen 18 19:37:15 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01 gen 18 19:37:15 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 gen 18 19:37:15 localhost kernel: usb usb2: Product: xHCI Host Controller gen 18 19:37:15 localhost kernel: usb usb2: Manufacturer: Linux 6.1.72 xhci-hcd gen 18 19:37:15 localhost kernel: usb usb2: SerialNumber: 0000:00:14.0 gen 18 19:37:15 localhost kernel: hub 2-0:1.0: USB hub found gen 18 19:37:15 localhost kernel: hub 2-0:1.0: 4 ports detected gen 18 19:37:15 localhost kernel: ahci 0000:00:1f.2: version 3.0 gen 18 19:37:15 localhost kernel: ahci 0000:00:1f.2: BIOS update required for Link Power Management support gen 18 19:37:15 localhost kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x1 impl SATA mode gen 18 19:37:15 localhost kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst gen 18 19:37:15 localhost kernel: scsi host0: ahci gen 18 19:37:15 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 gen 18 19:37:15 localhost systemd[1]: Finished Virtual Console Setup. gen 18 19:37:15 localhost kernel: scsi host1: ahci gen 18 19:37:15 localhost kernel: scsi host2: ahci gen 18 19:37:15 localhost kernel: ata1: SATA max UDMA/133 abar m2048@0xe123c000 port 0xe123c100 irq 46 gen 18 19:37:15 localhost kernel: ata2: DUMMY gen 18 19:37:15 localhost kernel: ata3: DUMMY gen 18 19:37:15 localhost kernel: usb 1-5: new full-speed USB device number 2 using xhci_hcd gen 18 19:37:16 localhost kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) gen 18 19:37:16 localhost kernel: ata1.00: LPM support broken, forcing max_power gen 18 19:37:16 localhost kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out gen 18 19:37:16 localhost kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out gen 18 19:37:16 localhost kernel: ata1.00: supports DRM functions and may not be fully accessible gen 18 19:37:16 localhost kernel: ata1.00: ATA-10: CT500MX500SSD1, M3CR023, max UDMA/133 gen 18 19:37:16 localhost kernel: ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA gen 18 19:37:16 localhost kernel: ata1.00: Features: Trust Dev-Sleep gen 18 19:37:16 localhost kernel: ata1.00: LPM support broken, forcing max_power gen 18 19:37:16 localhost kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out gen 18 19:37:16 localhost kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out gen 18 19:37:16 localhost kernel: ata1.00: supports DRM functions and may not be fully accessible gen 18 19:37:16 localhost kernel: ata1.00: configured for UDMA/133 gen 18 19:37:16 localhost kernel: Console: switching to colour dummy device 80x25 gen 18 19:37:16 localhost kernel: i915 0000:00:02.0: vgaarb: deactivate vga console gen 18 19:37:16 localhost kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem gen 18 19:37:16 localhost kernel: scsi 0:0:0:0: Direct-Access ATA CT500MX500SSD1 023 PQ: 0 ANSI: 5 gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB) gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes gen 18 19:37:16 localhost kernel: sda: sda1 sda2 gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] supports TCG Opal gen 18 19:37:16 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk gen 18 19:37:16 localhost kernel: usb 1-5: New USB device found, idVendor=058f, idProduct=9540, bcdDevice= 1.20 gen 18 19:37:16 localhost kernel: usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0 gen 18 19:37:16 localhost kernel: usb 1-5: Product: EMV Smartcard Reader gen 18 19:37:16 localhost kernel: usb 1-5: Manufacturer: Generic gen 18 19:37:16 localhost kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0 gen 18 19:37:16 localhost kernel: ACPI: video: Video Device [VID] (multi-head: yes rom: no post: no) gen 18 19:37:16 localhost kernel: ACPI BIOS Error (bug): AE_AML_PACKAGE_LIMIT, Index (0x000000004) is beyond end of object (length 0x4) (20220331/exoparg2-393) gen 18 19:37:16 localhost kernel: ACPI Error: Aborting method \_SB.PCI0.LPC.EC.BFRQ due to previous error (AE_AML_PACKAGE_LIMIT) (20220331/psparse-529) gen 18 19:37:16 localhost kernel: ACPI Error: Aborting method \_SB.PCI0.VID.LCD0._BCL due to previous error (AE_AML_PACKAGE_LIMIT) (20220331/psparse-529) gen 18 19:37:16 localhost kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2 gen 18 19:37:16 localhost kernel: tsc: Refined TSC clocksource calibration: 2294.686 MHz gen 18 19:37:16 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x211399552f8, max_idle_ns: 440795292447 ns gen 18 19:37:16 localhost kernel: clocksource: Switched to clocksource tsc gen 18 19:37:16 localhost kernel: usb 1-7: new full-speed USB device number 3 using xhci_hcd gen 18 19:37:16 localhost kernel: fbcon: i915drmfb (fb0) is primary device gen 18 19:37:16 localhost systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. gen 18 19:37:16 localhost systemd[1]: Stopped Virtual Console Setup. gen 18 19:37:16 localhost kernel: usb 1-7: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01 gen 18 19:37:16 localhost kernel: usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0 gen 18 19:37:16 localhost kernel: usb 1-8: new high-speed USB device number 4 using xhci_hcd gen 18 19:37:16 localhost kernel: usb 1-8: New USB device found, idVendor=5986, idProduct=0366, bcdDevice= 0.18 gen 18 19:37:16 localhost kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0 gen 18 19:37:16 localhost kernel: usb 1-8: Product: Integrated Camera gen 18 19:37:16 localhost kernel: usb 1-8: Manufacturer: SunplusIT Inc gen 18 19:37:17 localhost kernel: Console: switching to colour frame buffer device 240x67 gen 18 19:37:17 localhost kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device gen 18 19:37:17 localhost systemd[1]: Stopping Virtual Console Setup... gen 18 19:37:17 localhost systemd-modules-load[97]: Inserted module 'i915' gen 18 19:37:17 localhost systemd[1]: Starting Virtual Console Setup... gen 18 19:37:17 localhost kernel: spl: loading out-of-tree module taints kernel. gen 18 19:37:17 localhost systemd[1]: Finished Wait for udev To Complete Device Initialization. gen 18 19:37:17 localhost systemd[1]: Finished Virtual Console Setup. gen 18 19:37:17 localhost kernel: zfs: module license 'CDDL' taints kernel. gen 18 19:37:17 localhost kernel: Disabling lock debugging due to kernel taint gen 18 19:37:19 localhost systemd-modules-load[97]: Inserted module 'zfs' gen 18 19:37:19 localhost kernel: ZFS: Loaded module v2.2.2-1, ZFS pool version 5000, ZFS filesystem version 5 gen 18 19:37:19 localhost systemd-modules-load[97]: Inserted module 'dm_mod' gen 18 19:37:19 localhost kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com gen 18 19:37:19 localhost systemd[1]: Finished Load Kernel Modules. gen 18 19:37:19 localhost systemd[1]: Starting Apply Kernel Variables... gen 18 19:37:19 localhost systemd[1]: Starting Import ZFS pool "system"... gen 18 19:37:19 localhost systemd[1]: Finished Apply Kernel Variables. gen 18 19:37:19 localhost systemd[1]: Reached target System Initialization. gen 18 19:37:19 localhost systemd[1]: Reached target Basic System. gen 18 19:37:19 localhost systemd[1]: System is tainted: var-run-bad gen 18 19:37:19 localhost systemd[1]: Started Dispatch Password Requests to Console. gen 18 19:37:19 localhost systemd-tty-ask-password-agent[358]: Starting password query on /dev/tty1. gen 18 19:37:26 localhost systemd-tty-ask-password-agent[358]: Password query on /dev/tty1 finished successfully. gen 18 19:37:27 localhost zfs-import-system-start[196]: importing ZFS pool "system"...Successfully imported system gen 18 19:37:27 localhost systemd[1]: Finished Import ZFS pool "system". gen 18 19:37:27 localhost systemd[1]: Reached target ZFS pool import target. gen 18 19:37:27 localhost systemd[1]: Reached target ZFS startup target. gen 18 19:37:27 localhost systemd[1]: Mounting /sysroot... gen 18 19:37:27 localhost systemd[1]: Starting Rollback system root dataset to empty state... gen 18 19:37:27 localhost systemd[1]: Mounted /sysroot. gen 18 19:37:27 localhost systemd[1]: Reached target Initrd Root File System. gen 18 19:37:27 localhost systemd[1]: Mounting /sysroot/nix... gen 18 19:37:27 localhost systemd[1]: Starting Mountpoints Configured in the Real Root... gen 18 19:37:27 localhost systemd-sysroot-fstab-check[374]: /sysroot should be mounted in the initrd, will request daemon-reload. gen 18 19:37:27 localhost systemd[1]: ephemeral-root.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Finished Rollback system root dataset to empty state. gen 18 19:37:27 localhost systemd[1]: Reloading requested from client PID 374 ('systemd-fstab-g') (unit initrd-parse-etc.service)... gen 18 19:37:27 localhost systemd[1]: Reloading... gen 18 19:37:27 localhost mount[373]: mount: /sysroot/nix: mount point does not exist. gen 18 19:37:27 localhost mount[373]: dmesg(1) may have more information after failed mount system call. gen 18 19:37:27 localhost systemd-gpt-auto-generator[384]: EFI loader partition unknown, exiting. gen 18 19:37:27 localhost systemd-gpt-auto-generator[384]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) gen 18 19:37:27 localhost systemd[1]: Reloading finished in 118 ms. gen 18 19:37:27 localhost systemd-sysroot-fstab-check[374]: Requesting initrd-fs.target/start/replace... gen 18 19:37:27 localhost systemd[1]: sysroot-nix.mount: Mount process exited, code=exited, status=32/n/a gen 18 19:37:27 localhost systemd[1]: sysroot-nix.mount: Failed with result 'exit-code'. gen 18 19:37:27 localhost systemd[1]: Failed to mount /sysroot/nix. gen 18 19:37:27 localhost systemd[1]: Dependency failed for Initrd File Systems. gen 18 19:37:27 localhost systemd[1]: initrd-fs.target: Job initrd-fs.target/start failed with result 'dependency'. gen 18 19:37:27 localhost systemd[1]: initrd-fs.target: Triggering OnFailure= dependencies. gen 18 19:37:27 localhost systemd-sysroot-fstab-check[374]: Requesting swap.target/start/replace... gen 18 19:37:27 localhost systemd[1]: Mounting /sysroot/nix... gen 18 19:37:27 localhost systemd[1]: Stopped target Basic System. gen 18 19:37:27 localhost systemd[1]: Stopped target System Initialization. gen 18 19:37:27 localhost systemd[1]: panic-on-fail.service was skipped because no trigger condition checks were met. gen 18 19:37:27 localhost systemd[1]: Stopping Dispatch Password Requests to Console... gen 18 19:37:27 localhost systemd[1]: Mounted /sysroot/nix. gen 18 19:37:27 localhost systemd[1]: systemd-ask-password-console.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Dispatch Password Requests to Console. gen 18 19:37:27 localhost systemd[1]: systemd-ask-password-console.path: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch. gen 18 19:37:27 localhost systemd[1]: Started Emergency Shell. gen 18 19:37:27 localhost systemd[1]: Reached target Emergency Mode. gen 18 19:37:27 localhost systemd[1]: initrd-parse-etc.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Mountpoints Configured in the Real Root. gen 18 19:37:27 localhost systemd[1]: Reached target Initrd File Systems. gen 18 19:37:27 localhost systemd[1]: Starting Cleaning Up and Shutting Down Daemons... gen 18 19:37:27 localhost systemd[1]: Stopped target Emergency Mode. gen 18 19:37:27 localhost systemd[1]: Stopped target Initrd Root Device. gen 18 19:37:27 localhost systemd[1]: Stopped target Path Units. gen 18 19:37:27 localhost systemd[1]: Stopped target Slice Units. gen 18 19:37:27 localhost systemd[1]: Stopped target Socket Units. gen 18 19:37:27 localhost systemd[1]: Stopped target Swaps. gen 18 19:37:27 localhost systemd[1]: Stopped target Timer Units. gen 18 19:37:27 localhost systemd[1]: Stopped target ZFS startup target. gen 18 19:37:27 localhost systemd[1]: Stopped target ZFS pool import target. gen 18 19:37:27 localhost systemd[1]: kmod-static-nodes.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Create List of Static Device Nodes. gen 18 19:37:27 localhost systemd[1]: systemd-sysctl.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Apply Kernel Variables. gen 18 19:37:27 localhost systemd[1]: systemd-modules-load.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Load Kernel Modules. gen 18 19:37:27 localhost systemd[1]: systemd-modules-load.service: Consumed 2.304s CPU time. gen 18 19:37:27 localhost systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Create Volatile Files and Directories. gen 18 19:37:27 localhost systemd[1]: Stopped target Local File Systems. gen 18 19:37:27 localhost systemd[1]: Stopped target Preparation for Local File Systems. gen 18 19:37:27 localhost systemd[1]: systemd-udev-settle.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Wait for udev To Complete Device Initialization. gen 18 19:37:27 localhost systemd[1]: systemd-udev-trigger.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Coldplug All udev Devices. gen 18 19:37:27 localhost systemd[1]: Stopping Rule-based Manager for Device Events and Files... gen 18 19:37:27 localhost systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Virtual Console Setup. gen 18 19:37:27 localhost systemd[1]: emergency.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Emergency Shell. gen 18 19:37:27 localhost systemd[1]: initrd-cleanup.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Finished Cleaning Up and Shutting Down Daemons. gen 18 19:37:27 localhost systemd[1]: systemd-udevd.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Rule-based Manager for Device Events and Files. gen 18 19:37:27 localhost systemd[1]: systemd-udevd-control.socket: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Closed udev Control Socket. gen 18 19:37:27 localhost systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Closed udev Kernel Socket. gen 18 19:37:27 localhost systemd[1]: Starting Cleanup udev Database... gen 18 19:37:27 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Stopped Create Static Device Nodes in /dev. gen 18 19:37:27 localhost systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully. gen 18 19:37:27 localhost systemd[1]: Finished Cleanup udev Database. gen 18 19:37:27 localhost systemd[1]: Reached target Switch Root. gen 18 19:37:27 localhost systemd[1]: Starting Switch Root... gen 18 19:37:27 localhost (yste[401]: initrd-switch-root.service: Referenced but unset environment variable evaluates to an empty string: NEW_INIT gen 18 19:37:27 localhost @ystemctl[401]: Failed to switch root: Specified switch root path '/sysroot' does not seem to be an OS tree. os-release file is missing. gen 18 19:37:27 localhost systemd[1]: initrd-switch-root.service: Main process exited, code=exited, status=1/FAILURE gen 18 19:37:27 localhost systemd[1]: initrd-switch-root.service: Failed with result 'exit-code'. gen 18 19:37:27 localhost systemd[1]: Failed to start Switch Root. gen 18 19:37:27 localhost systemd[1]: Startup finished in 4.726s (firmware) + 865ms (loader) + 476ms (kernel) + 0 (initrd) + 11.960s (userspace) = 18.029s. gen 18 19:37:27 localhost systemd[1]: initrd-switch-root.service: Triggering OnFailure= dependencies. gen 18 19:37:27 localhost systemd[1]: Started Emergency Shell. gen 18 19:37:27 localhost systemd[1]: Reached target Emergency Mode. gen 18 19:37:27 localhost systemd[1]: panic-on-fail.service was skipped because no trigger condition checks were met. gen 18 19:37:27 localhost (plym[403]: emergency.service: Executable /nix/store/i0sdqs34r68if9s4sfmpixnnj36npiwj-systemd-254.6/bin/plymouth missing, skipping: No such file or directory gen 18 19:37:40 localhost systemd[1]: Reloading requested from client PID 404 ('systemd-sulogin') (unit emergency.service)... gen 18 19:37:40 localhost systemd[1]: Reloading... gen 18 19:37:40 localhost systemd-gpt-auto-generator[410]: EFI loader partition unknown, exiting. gen 18 19:37:40 localhost systemd-gpt-auto-generator[410]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) gen 18 19:37:40 localhost systemd[1]: Reloading finished in 113 ms. gen 18 19:37:40 localhost systemd[1]: emergency.service: Deactivated successfully. gen 18 19:37:40 localhost systemd[1]: Stopped Emergency Shell. gen 18 19:37:40 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch. gen 18 19:37:40 localhost systemd[1]: Reached target Initrd Root Device. gen 18 19:37:40 localhost systemd[1]: Stopped target Switch Root. gen 18 19:37:40 localhost systemd[1]: Stopped target Emergency Mode. gen 18 19:37:40 localhost systemd[1]: Reached target Path Units. gen 18 19:37:40 localhost systemd[1]: Reached target Slice Units. gen 18 19:37:40 localhost systemd[1]: Reached target Swaps. gen 18 19:37:40 localhost systemd[1]: Reached target Timer Units. gen 18 19:37:40 localhost systemd[1]: Reached target ZFS pool import target. gen 18 19:37:40 localhost systemd[1]: Reached target ZFS startup target. gen 18 19:37:40 localhost systemd[1]: Listening on udev Control Socket. gen 18 19:37:40 localhost systemd[1]: Listening on udev Kernel Socket. gen 18 19:37:40 localhost systemd[1]: Reached target Socket Units. gen 18 19:37:40 localhost systemd[1]: Starting Rollback system root dataset to empty state... gen 18 19:37:40 localhost systemd[1]: Starting Mountpoints Configured in the Real Root... gen 18 19:37:40 localhost systemd[1]: Starting Create List of Static Device Nodes... gen 18 19:37:40 localhost systemd[1]: Starting Load Kernel Modules... gen 18 19:37:40 localhost systemd[1]: Starting Create Static Device Nodes in /dev... gen 18 19:37:40 localhost systemd[1]: Starting Coldplug All udev Devices... gen 18 19:37:40 localhost systemd-sysroot-fstab-check[415]: /sysroot should be mounted in the initrd, will request daemon-reload. gen 18 19:37:40 localhost systemd[1]: Finished Create List of Static Device Nodes. gen 18 19:37:40 localhost systemd[1]: Finished Load Kernel Modules. gen 18 19:37:40 localhost systemd[1]: Reloading requested from client PID 415 ('systemd-fstab-g') (unit initrd-parse-etc.service)... gen 18 19:37:40 localhost systemd[1]: Reloading... gen 18 19:37:40 localhost systemd-gpt-auto-generator[434]: EFI loader partition unknown, exiting. gen 18 19:37:40 localhost systemd-gpt-auto-generator[434]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) gen 18 19:37:40 localhost systemd[1]: Reloading finished in 104 ms. gen 18 19:37:40 localhost systemd-sysroot-fstab-check[415]: Requesting initrd-fs.target/start/replace... gen 18 19:37:40 localhost systemd[1]: ephemeral-root.service: Deactivated successfully. gen 18 19:37:40 localhost systemd[1]: Finished Rollback system root dataset to empty state. gen 18 19:37:40 localhost systemd[1]: Finished Create Static Device Nodes in /dev. gen 18 19:37:40 localhost systemd[1]: Finished Coldplug All udev Devices. gen 18 19:37:40 localhost systemd-sysroot-fstab-check[415]: Requesting swap.target/start/replace... gen 18 19:37:40 localhost systemd[1]: Reached target Preparation for Local File Systems. gen 18 19:37:40 localhost systemd[1]: Reached target Local File Systems. gen 18 19:37:40 localhost systemd[1]: Starting Apply Kernel Variables... gen 18 19:37:40 localhost systemd[1]: Starting Create Volatile Files and Directories... gen 18 19:37:40 localhost systemd[1]: Starting Wait for udev To Complete Device Initialization... gen 18 19:37:40 localhost systemd[1]: Starting Rule-based Manager for Device Events and Files... gen 18 19:37:40 localhost systemd[1]: Finished Apply Kernel Variables. gen 18 19:37:40 localhost systemd[1]: Finished Create Volatile Files and Directories. gen 18 19:37:40 localhost udevadm[448]: systemd-udev-settle.service is deprecated. Please fix zfs-import-system.service not to pull it in. gen 18 19:37:40 localhost systemd[1]: initrd-parse-etc.service: Deactivated successfully. gen 18 19:37:40 localhost systemd[1]: Finished Mountpoints Configured in the Real Root. gen 18 19:37:40 localhost systemd-udevd[449]: Using default interface naming scheme 'v253'. gen 18 19:37:40 localhost systemd[1]: Started Rule-based Manager for Device Events and Files. gen 18 19:37:40 localhost systemd[1]: Starting Virtual Console Setup... gen 18 19:37:40 localhost systemd[1]: Finished Wait for udev To Complete Device Initialization. gen 18 19:37:40 localhost systemd[1]: Finished Virtual Console Setup. gen 18 19:37:40 localhost systemd[1]: Reached target System Initialization. gen 18 19:37:40 localhost systemd[1]: Reached target Basic System. gen 18 19:37:40 localhost systemd[1]: Starting NixOS Activation... gen 18 19:37:41 localhost initrd-nixos-activation-start[489]: booting system configuration /nix/store/5vw8zylnilvagyff4m7iizifhjfh058j-nixos-system-ifigenia-23.11.20240115.b8dd8be gen 18 19:37:41 localhost initrd-nixos-activation-start[489]: running activation script... gen 18 19:37:41 localhost initrd-nixos-activation-start[522]: setting up /etc... gen 18 19:37:41 localhost systemd[1]: initrd-nixos-activation.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Finished NixOS Activation. gen 18 19:37:41 localhost systemd[1]: Reached target Initrd Default Target. gen 18 19:37:41 localhost systemd[1]: Starting Cleaning Up and Shutting Down Daemons... gen 18 19:37:41 localhost systemd[1]: Stopped target Initrd Default Target. gen 18 19:37:41 localhost systemd[1]: Stopped target Basic System. gen 18 19:37:41 localhost systemd[1]: Stopped target Initrd Root Device. gen 18 19:37:41 localhost systemd[1]: Stopped target Path Units. gen 18 19:37:41 localhost systemd[1]: systemd-ask-password-console.path: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch. gen 18 19:37:41 localhost systemd[1]: Stopped target Slice Units. gen 18 19:37:41 localhost systemd[1]: Stopped target Socket Units. gen 18 19:37:41 localhost systemd[1]: Stopped target System Initialization. gen 18 19:37:41 localhost systemd[1]: Stopped target Swaps. gen 18 19:37:41 localhost systemd[1]: Stopped target Timer Units. gen 18 19:37:41 localhost systemd[1]: Stopped target ZFS startup target. gen 18 19:37:41 localhost systemd[1]: Stopped target ZFS pool import target. gen 18 19:37:41 localhost systemd[1]: kmod-static-nodes.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Create List of Static Device Nodes. gen 18 19:37:41 localhost systemd[1]: systemd-sysctl.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Apply Kernel Variables. gen 18 19:37:41 localhost systemd[1]: systemd-modules-load.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Load Kernel Modules. gen 18 19:37:41 localhost systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Create Volatile Files and Directories. gen 18 19:37:41 localhost systemd[1]: Stopped target Local File Systems. gen 18 19:37:41 localhost systemd[1]: Stopped target Preparation for Local File Systems. gen 18 19:37:41 localhost systemd[1]: systemd-udev-settle.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Wait for udev To Complete Device Initialization. gen 18 19:37:41 localhost systemd[1]: systemd-udev-trigger.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Coldplug All udev Devices. gen 18 19:37:41 localhost systemd[1]: Stopping Rule-based Manager for Device Events and Files... gen 18 19:37:41 localhost systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Virtual Console Setup. gen 18 19:37:41 localhost systemd[1]: initrd-cleanup.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Finished Cleaning Up and Shutting Down Daemons. gen 18 19:37:41 localhost systemd[1]: systemd-udevd.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Rule-based Manager for Device Events and Files. gen 18 19:37:41 localhost systemd[1]: systemd-udevd-control.socket: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Closed udev Control Socket. gen 18 19:37:41 localhost systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Closed udev Kernel Socket. gen 18 19:37:41 localhost systemd[1]: Starting Cleanup udev Database... gen 18 19:37:41 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Stopped Create Static Device Nodes in /dev. gen 18 19:37:41 localhost systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully. gen 18 19:37:41 localhost systemd[1]: Finished Cleanup udev Database. gen 18 19:37:41 localhost systemd[1]: Reached target Switch Root. gen 18 19:37:41 localhost systemd[1]: Starting Switch Root... gen 18 19:37:41 localhost systemd[1]: Switching root. gen 18 19:37:41 localhost systemd-journald[95]: Journal stopped gen 18 19:37:42 ifigenia systemd-journald[95]: Received SIGTERM from PID 1 (systemd). gen 18 19:37:42 ifigenia systemd[1]: systemd 254.6 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 +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified) gen 18 19:37:42 ifigenia systemd[1]: Detected architecture x86-64. gen 18 19:37:42 ifigenia systemd[1]: Hostname set to . gen 18 19:37:42 ifigenia systemd[1]: Initializing machine ID from random generator. gen 18 19:37:42 ifigenia systemd[1]: bpf-lsm: LSM BPF program attached gen 18 19:37:42 ifigenia systemd-gpt-auto-generator[574]: EFI loader partition unknown, exiting. gen 18 19:37:42 ifigenia systemd-gpt-auto-generator[574]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) gen 18 19:37:42 ifigenia systemd[1]: initrd-switch-root.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Stopped initrd-switch-root.service. gen 18 19:37:42 ifigenia systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. gen 18 19:37:42 ifigenia systemd[1]: Created slice Slice /system/getty. gen 18 19:37:42 ifigenia systemd[1]: Created slice Slice /system/modprobe. gen 18 19:37:42 ifigenia systemd[1]: Created slice Slice /system/systemd-fsck. gen 18 19:37:42 ifigenia systemd[1]: Created slice User and Session Slice. gen 18 19:37:42 ifigenia systemd[1]: Started Dispatch Password Requests to Console Directory Watch. gen 18 19:37:42 ifigenia systemd[1]: Started Forward Password Requests to Wall Directory Watch. gen 18 19:37:42 ifigenia systemd[1]: Reached target Local Encrypted Volumes. gen 18 19:37:42 ifigenia systemd[1]: Stopped target initrd-fs.target. gen 18 19:37:42 ifigenia systemd[1]: Stopped target initrd-root-fs.target. gen 18 19:37:42 ifigenia systemd[1]: Stopped target initrd-switch-root.target. gen 18 19:37:42 ifigenia systemd[1]: Reached target Containers. gen 18 19:37:42 ifigenia systemd[1]: Reached target Path Units. gen 18 19:37:42 ifigenia systemd[1]: Reached target Remote File Systems. gen 18 19:37:42 ifigenia systemd[1]: Reached target Slice Units. gen 18 19:37:42 ifigenia systemd[1]: Reached target ZFS pool import target. gen 18 19:37:42 ifigenia systemd[1]: Listening on Process Core Dump Socket. gen 18 19:37:42 ifigenia systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket. gen 18 19:37:42 ifigenia systemd[1]: Listening on udev Control Socket. gen 18 19:37:42 ifigenia systemd[1]: Listening on udev Kernel Socket. gen 18 19:37:42 ifigenia systemd[1]: Mounting Huge Pages File System... gen 18 19:37:42 ifigenia systemd[1]: Mounting POSIX Message Queue File System... gen 18 19:37:42 ifigenia systemd[1]: Mounting Kernel Debug File System... gen 18 19:37:42 ifigenia systemd[1]: Starting Create List of Static Device Nodes... gen 18 19:37:42 ifigenia systemd[1]: Starting Load Kernel Module configfs... gen 18 19:37:42 ifigenia systemd[1]: Starting Load Kernel Module drm... gen 18 19:37:42 ifigenia systemd[1]: Starting Load Kernel Module efi_pstore... gen 18 19:37:42 ifigenia systemd[1]: Starting Load Kernel Module fuse... gen 18 19:37:42 ifigenia systemd[1]: Starting mount-pstore.service... gen 18 19:37:42 ifigenia systemd[1]: Starting Create SUID/SGID Wrappers... gen 18 19:37:42 ifigenia kernel: pstore: Using crash dump compression: deflate gen 18 19:37:42 ifigenia kernel: pstore: Registered efi as persistent store backend gen 18 19:37:42 ifigenia systemd[1]: Starting Journal Service... gen 18 19:37:42 ifigenia systemd[1]: Starting Load Kernel Modules... gen 18 19:37:42 ifigenia kernel: fuse: init (API version 7.37) gen 18 19:37:42 ifigenia systemd[1]: Starting Remount Root and Kernel File Systems... gen 18 19:37:42 ifigenia systemd[1]: Starting Coldplug All udev Devices... gen 18 19:37:42 ifigenia systemd[1]: zfs-import-system.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Stopped zfs-import-system.service. gen 18 19:37:42 ifigenia systemd-journald[597]: Collecting audit messages is disabled. gen 18 19:37:42 ifigenia systemd[1]: Mounted Huge Pages File System. gen 18 19:37:42 ifigenia systemd[1]: Mounted POSIX Message Queue File System. gen 18 19:37:42 ifigenia systemd[1]: Mounted Kernel Debug File System. gen 18 19:37:42 ifigenia systemd[1]: Finished Create List of Static Device Nodes. gen 18 19:37:42 ifigenia systemd[1]: modprobe@configfs.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd-journald[597]: Journal started gen 18 19:37:42 ifigenia systemd-journald[597]: Runtime Journal (/run/log/journal/4d9f51c248df443b8662d08e0e0d650f) is 8.0M, max 195.7M, 187.7M free. gen 18 19:37:42 ifigenia systemd[1]: Queued start job for default target Graphical Interface. gen 18 19:37:42 ifigenia systemd[1]: systemd-journald.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Finished Load Kernel Module configfs. gen 18 19:37:42 ifigenia systemd[1]: Started Journal Service. gen 18 19:37:42 ifigenia systemd[1]: modprobe@drm.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Finished Load Kernel Module drm. gen 18 19:37:42 ifigenia systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Finished Load Kernel Module efi_pstore. gen 18 19:37:42 ifigenia systemd[1]: modprobe@fuse.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Finished Load Kernel Module fuse. gen 18 19:37:42 ifigenia systemd[1]: Mounting FUSE Control File System... gen 18 19:37:42 ifigenia systemd[1]: Mounting Kernel Configuration File System... gen 18 19:37:42 ifigenia systemd[1]: Starting Create Static Device Nodes in /dev gracefully... gen 18 19:37:42 ifigenia systemd[1]: Finished mount-pstore.service. gen 18 19:37:42 ifigenia systemd[1]: Mounted FUSE Control File System. gen 18 19:37:42 ifigenia systemd[1]: Mounted Kernel Configuration File System. gen 18 19:37:42 ifigenia systemd[1]: Finished Remount Root and Kernel File Systems. gen 18 19:37:42 ifigenia systemd[1]: Finished Create Static Device Nodes in /dev gracefully. gen 18 19:37:42 ifigenia systemd[1]: Starting Flush Journal to Persistent Storage... gen 18 19:37:42 ifigenia systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). gen 18 19:37:42 ifigenia systemd[1]: Starting Load/Save OS Random Seed... gen 18 19:37:42 ifigenia systemd[1]: Starting Create Static Device Nodes in /dev... gen 18 19:37:42 ifigenia systemd-journald[597]: Time spent on flushing to /var/log/journal/4d9f51c248df443b8662d08e0e0d650f is 24.845ms for 1026 entries. gen 18 19:37:42 ifigenia systemd-journald[597]: System Journal (/var/log/journal/4d9f51c248df443b8662d08e0e0d650f) is 512B, max 4.0G, 3.9G free. gen 18 19:37:42 ifigenia systemd-journald[597]: Received client request to flush runtime journal. gen 18 19:37:42 ifigenia systemd[1]: Finished Create Static Device Nodes in /dev. gen 18 19:37:42 ifigenia systemd-modules-load[598]: Inserted module 'kvm_intel' gen 18 19:37:42 ifigenia systemd-modules-load[598]: Failed to find module 'acpi_call' gen 18 19:37:42 ifigenia systemd[1]: Finished Load/Save OS Random Seed. gen 18 19:37:42 ifigenia systemd[1]: Reached target Preparation for Local File Systems. gen 18 19:37:42 ifigenia systemd[1]: Mounting /home/tancredi... gen 18 19:37:42 ifigenia systemd[1]: Mounting /var/state... gen 18 19:37:42 ifigenia systemd[1]: Starting Rule-based Manager for Device Events and Files... gen 18 19:37:42 ifigenia systemd[1]: Finished Coldplug All udev Devices. gen 18 19:37:42 ifigenia systemd[1]: Finished Flush Journal to Persistent Storage. gen 18 19:37:42 ifigenia systemd[1]: Mounted /home/tancredi. gen 18 19:37:42 ifigenia systemd[1]: Mounted /var/state. gen 18 19:37:42 ifigenia systemd-udevd[712]: Using default interface naming scheme 'v253'. gen 18 19:37:42 ifigenia systemd[1]: suid-sgid-wrappers.service: Deactivated successfully. gen 18 19:37:42 ifigenia systemd[1]: Finished Create SUID/SGID Wrappers. gen 18 19:37:42 ifigenia systemd[1]: Started Rule-based Manager for Device Events and Files. gen 18 19:37:42 ifigenia kernel: vboxdrv: Found 4 processor cores/threads gen 18 19:37:42 ifigenia systemd-modules-load[598]: Inserted module 'vboxdrv' gen 18 19:37:42 ifigenia kernel: vboxdrv: TSC mode is Invariant, tentative frequency 2294684502 Hz gen 18 19:37:42 ifigenia kernel: vboxdrv: Successfully loaded version 7.0.12 r159484 (interface 0x00330004) gen 18 19:37:42 ifigenia systemd-modules-load[598]: Inserted module 'vboxnetadp' gen 18 19:37:42 ifigenia kernel: VBoxNetAdp: Successfully started. gen 18 19:37:42 ifigenia systemd[1]: Found device /dev/zvol/system/swap. gen 18 19:37:42 ifigenia systemd[1]: Activating swap /dev/zvol/system/swap... gen 18 19:37:42 ifigenia kernel: Adding 16777212k swap on /dev/zd0. Priority:-2 extents:1 across:16777212k SSFS gen 18 19:37:42 ifigenia systemd[1]: Activated swap /dev/zvol/system/swap. gen 18 19:37:42 ifigenia systemd[1]: Reached target Swaps. gen 18 19:37:42 ifigenia systemd-modules-load[598]: Inserted module 'vboxnetflt' gen 18 19:37:42 ifigenia kernel: VBoxNetFlt: Successfully started. gen 18 19:37:42 ifigenia kernel: ACPI: battery: Slot [BAT0] (battery absent) gen 18 19:37:43 ifigenia systemd[1]: Condition check resulted in CT500MX500SSD1 EFI being skipped. gen 18 19:37:43 ifigenia kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5 gen 18 19:37:43 ifigenia systemd[1]: Starting File System Check on /dev/disk/by-partlabel/efi... gen 18 19:37:43 ifigenia kernel: ACPI: battery: Slot [BAT1] (battery present) gen 18 19:37:43 ifigenia kernel: ACPI: AC: AC Adapter [AC] (on-line) gen 18 19:37:43 ifigenia kernel: ACPI: button: Lid Switch [LID] gen 18 19:37:43 ifigenia kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6 gen 18 19:37:43 ifigenia kernel: ACPI: button: Sleep Button [SLPB] gen 18 19:37:43 ifigenia kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7 gen 18 19:37:43 ifigenia kernel: ACPI: button: Power Button [PWRF] gen 18 19:37:43 ifigenia kernel: pps_core: LinuxPPS API ver. 1 registered gen 18 19:37:43 ifigenia kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti gen 18 19:37:43 ifigenia kernel: thermal LNXTHERM:00: registered as thermal_zone0 gen 18 19:37:43 ifigenia kernel: ACPI: thermal: Thermal Zone [THM0] (53 C) gen 18 19:37:43 ifigenia kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. gen 18 19:37:43 ifigenia systemd-modules-load[598]: Inserted module 'bridge' gen 18 19:37:43 ifigenia systemd-modules-load[598]: Inserted module 'macvlan' gen 18 19:37:43 ifigenia systemd-modules-load[598]: Inserted module 'tap' gen 18 19:37:43 ifigenia systemd-fsck[782]: fsck.fat 4.2 (2021-01-31) gen 18 19:37:43 ifigenia systemd-fsck[782]: /dev/sda1: 344 files, 36700/243487 clusters gen 18 19:37:43 ifigenia kernel: PTP clock support registered gen 18 19:37:43 ifigenia kernel: tun: Universal TUN/TAP device driver, 1.6 gen 18 19:37:43 ifigenia systemd[1]: Finished File System Check on /dev/disk/by-partlabel/efi. gen 18 19:37:43 ifigenia systemd[1]: Created slice Slice /system/systemd-backlight. gen 18 19:37:43 ifigenia systemd-modules-load[598]: Inserted module 'tun' gen 18 19:37:43 ifigenia kernel: Non-volatile memory driver v1.3 gen 18 19:37:43 ifigenia kernel: e1000e: Intel(R) PRO/1000 Network Driver gen 18 19:37:43 ifigenia kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation. gen 18 19:37:43 ifigenia kernel: i801_smbus 0000:00:1f.3: SPD Write Disable is set gen 18 19:37:43 ifigenia kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt gen 18 19:37:43 ifigenia kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode gen 18 19:37:43 ifigenia kernel: i2c i2c-7: 1/1 memory slots populated (from DMI) gen 18 19:37:43 ifigenia kernel: i2c i2c-7: Successfully instantiated SPD at 0x50 gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.26 gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: http://ibm-acpi.sf.net/ gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: ThinkPad BIOS N10ET29W (1.06 ), EC N10HT10W gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: Lenovo ThinkPad X250, model 20CLS2B000 gen 18 19:37:43 ifigenia systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight... gen 18 19:37:43 ifigenia kernel: ACPI BIOS Error (bug): AE_AML_PACKAGE_LIMIT, Index (0x000000004) is beyond end of object (length 0x4) (20220331/exoparg2-393) gen 18 19:37:43 ifigenia kernel: loop: module loaded gen 18 19:37:43 ifigenia systemd-modules-load[598]: Inserted module 'loop' gen 18 19:37:43 ifigenia kernel: ACPI Error: Aborting method \_SB.PCI0.LPC.EC.BFRQ due to previous error (AE_AML_PACKAGE_LIMIT) (20220331/psparse-529) gen 18 19:37:43 ifigenia kernel: ACPI Error: Aborting method \_SB.PCI0.VID.LCD0._BCL due to previous error (AE_AML_PACKAGE_LIMIT) (20220331/psparse-529) gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: radio switch found; radios are enabled gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default... gen 18 19:37:43 ifigenia systemd-modules-load[598]: Inserted module 'ctr' gen 18 19:37:43 ifigenia systemd[1]: Finished Load Kernel Modules. gen 18 19:37:43 ifigenia systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight. gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked gen 18 19:37:43 ifigenia systemd[1]: Starting Firewall... gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one gen 18 19:37:43 ifigenia systemd[1]: Starting Apply Kernel Variables... gen 18 19:37:43 ifigenia systemd[1]: Starting Mount ZFS filesystems... gen 18 19:37:43 ifigenia kernel: thinkpad_acpi: battery 2 registered (start 0, stop 100, behaviours: 0x7) gen 18 19:37:43 ifigenia kernel: ACPI: battery: new extension: ThinkPad Battery Extension gen 18 19:37:43 ifigenia kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8 gen 18 19:37:43 ifigenia kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database gen 18 19:37:43 ifigenia kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' gen 18 19:37:43 ifigenia kernel: cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' gen 18 19:37:43 ifigenia systemd-sysctl[803]: Couldn't write '0' to 'net/ipv4/conf/eth0/proxy_arp', ignoring: No such file or directory gen 18 19:37:43 ifigenia systemd-sysctl[803]: Couldn't write '0' to 'net/ipv4/conf/vboxnet0/proxy_arp', ignoring: No such file or directory gen 18 19:37:43 ifigenia systemd-sysctl[803]: Couldn't write '0' to 'net/ipv4/conf/wlan0/proxy_arp', ignoring: No such file or directory gen 18 19:37:43 ifigenia systemd-sysctl[803]: Couldn't write '2' to 'net/ipv6/conf/eth0/use_tempaddr', ignoring: No such file or directory gen 18 19:37:43 ifigenia systemd-sysctl[803]: Couldn't write '2' to 'net/ipv6/conf/vboxnet0/use_tempaddr', ignoring: No such file or directory gen 18 19:37:43 ifigenia systemd-sysctl[803]: Couldn't write '2' to 'net/ipv6/conf/wlan0/use_tempaddr', ignoring: No such file or directory gen 18 19:37:43 ifigenia zfs[805]: failed to lock /etc/exports.d/zfs.exports.lock: No such file or directory gen 18 19:37:43 ifigenia systemd[1]: Finished Apply Kernel Variables. gen 18 19:37:43 ifigenia kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer gen 18 19:37:43 ifigenia kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules gen 18 19:37:43 ifigenia kernel: RAPL PMU: hw unit of domain package 2^-14 Joules gen 18 19:37:43 ifigenia kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules gen 18 19:37:43 ifigenia kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules gen 18 19:37:43 ifigenia kernel: e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock gen 18 19:37:43 ifigenia systemd[1]: Finished Mount ZFS filesystems. gen 18 19:37:43 ifigenia kernel: cryptd: max_cpu_qlen set to 1000 gen 18 19:37:43 ifigenia kernel: snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) gen 18 19:37:43 ifigenia mtp-probe[815]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5" gen 18 19:37:43 ifigenia mtp-probe[813]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8" gen 18 19:37:43 ifigenia mtp-probe[813]: bus: 1, device: 4 was not an MTP device gen 18 19:37:43 ifigenia kernel: input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10 gen 18 19:37:43 ifigenia kernel: input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11 gen 18 19:37:43 ifigenia kernel: input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12 gen 18 19:37:43 ifigenia systemd[1]: Found device /dev/vboxnetctl. gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3232: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: hp_outs=2 (0x16/0x15/0x0/0x0/0x0) gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0 gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: inputs: gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: Dock Mic=0x19 gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: Mic=0x1a gen 18 19:37:43 ifigenia kernel: snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12 gen 18 19:37:43 ifigenia systemd[1]: Starting Virtual Console Setup... gen 18 19:37:43 ifigenia systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. gen 18 19:37:43 ifigenia kernel: AVX2 version of gcm_enc/dec engaged. gen 18 19:37:43 ifigenia kernel: AES CTR mode by8 optimization enabled gen 18 19:37:43 ifigenia systemd[1]: Stopped Virtual Console Setup. gen 18 19:37:43 ifigenia systemd[1]: Starting Virtual Console Setup... gen 18 19:37:43 ifigenia kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 50:7b:9d:02:13:03 gen 18 19:37:43 ifigenia kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection gen 18 19:37:43 ifigenia kernel: e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: 1000FF-0FF gen 18 19:37:43 ifigenia kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13 gen 18 19:37:43 ifigenia kernel: input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input14 gen 18 19:37:43 ifigenia kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15 gen 18 19:37:43 ifigenia kernel: input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16 gen 18 19:37:43 ifigenia kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input17 gen 18 19:37:43 ifigenia systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. gen 18 19:37:43 ifigenia systemd[1]: Starting Load/Save RF Kill Switch Status... gen 18 19:37:43 ifigenia kernel: Intel(R) Wireless WiFi driver for Linux gen 18 19:37:43 ifigenia kernel: iTCO_wdt iTCO_wdt.1.auto: Found a Wildcat Point_LP TCO device (Version=2, TCOBASE=0x1860) gen 18 19:37:43 ifigenia mtp-probe[815]: bus: 1, device: 2 was not an MTP device gen 18 19:37:43 ifigenia kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0) gen 18 19:37:43 ifigenia kernel: mc: Linux media interface: v0.10 gen 18 19:37:43 ifigenia kernel: at24 7-0050: supply vcc not found, using dummy regulator gen 18 19:37:43 ifigenia kernel: at24 7-0050: 256 byte spd EEPROM, read-only gen 18 19:37:43 ifigenia systemd[1]: Finished Virtual Console Setup. gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: Found debug destination: EXTERNAL_DRAM gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: Found debug configuration: 0 gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: loaded firmware version 29.4063824552.0 7265D-29.ucode op_mode iwlmvm gen 18 19:37:43 ifigenia systemd[1]: Mounting /boot... gen 18 19:37:43 ifigenia systemd[1]: Mounting /tmp... gen 18 19:37:43 ifigenia systemd[1]: Started Load/Save RF Kill Switch Status. gen 18 19:37:43 ifigenia systemd[1]: Mounted /tmp. gen 18 19:37:43 ifigenia systemd[1]: Reached target Local File Systems. gen 18 19:37:43 ifigenia kernel: Bluetooth: Core ver 2.22 gen 18 19:37:43 ifigenia kernel: NET: Registered PF_BLUETOOTH protocol family gen 18 19:37:43 ifigenia kernel: Bluetooth: HCI device and connection manager initialized gen 18 19:37:43 ifigenia kernel: Bluetooth: HCI socket layer initialized gen 18 19:37:43 ifigenia kernel: Bluetooth: L2CAP socket layer initialized gen 18 19:37:43 ifigenia kernel: Bluetooth: SCO socket layer initialized gen 18 19:37:43 ifigenia systemd[1]: Starting Create Volatile Files and Directories... gen 18 19:37:43 ifigenia systemd[1]: Mounted /boot. gen 18 19:37:43 ifigenia systemd-tmpfiles[960]: "/etc/NetworkManager/system-connections" already exists and is not a directory. gen 18 19:37:43 ifigenia kernel: videodev: Linux video capture interface: v2.00 gen 18 19:37:43 ifigenia systemd[1]: Reached target Sound Card. gen 18 19:37:43 ifigenia systemd[1]: Finished Create Volatile Files and Directories. gen 18 19:37:43 ifigenia systemd[1]: Reached target Smart Card. gen 18 19:37:43 ifigenia (udev-worker)[757]: eth0: Config file /etc/systemd/network/40-eth0.link is applied to device based on potentially unpredictable interface name. gen 18 19:37:43 ifigenia systemd[1]: Starting Rebuild Journal Catalog... gen 18 19:37:43 ifigenia kernel: usb 1-8: Found UVC 1.00 device Integrated Camera (5986:0366) gen 18 19:37:43 ifigenia systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer... gen 18 19:37:43 ifigenia systemd[1]: Starting Network Time Synchronization... gen 18 19:37:43 ifigenia kernel: input: Integrated Camera: Integrated C as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input18 gen 18 19:37:43 ifigenia kernel: usbcore: registered new interface driver uvcvideo gen 18 19:37:43 ifigenia systemd[1]: Starting Record System Boot/Shutdown in UTMP... gen 18 19:37:43 ifigenia systemd[1]: Finished Rebuild Journal Catalog. gen 18 19:37:43 ifigenia systemd[1]: Found device Ethernet Connection (3) I218-LM. gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210 gen 18 19:37:43 ifigenia kernel: thermal thermal_zone3: failed to read out thermal zone (-61) gen 18 19:37:43 ifigenia kernel: spi-nor spi0.0: BFPT parsing failed. Please consider using SPI_NOR_SKIP_SFDP when declaring the flash gen 18 19:37:43 ifigenia kernel: spi-nor: probe of spi0.0 failed with error -524 gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: Applying debug destination EXTERNAL_DRAM gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: Allocated 0x00400000 bytes for firmware monitor. gen 18 19:37:43 ifigenia systemd[1]: Starting Update is Completed... gen 18 19:37:43 ifigenia kernel: iwlwifi 0000:03:00.0: base HW address: 4c:34:88:24:ff:13, OTP minor version: 0x0 gen 18 19:37:43 ifigenia kernel: intel_rapl_common: Found RAPL domain package gen 18 19:37:43 ifigenia kernel: intel_rapl_common: Found RAPL domain core gen 18 19:37:43 ifigenia kernel: intel_rapl_common: Found RAPL domain uncore gen 18 19:37:43 ifigenia kernel: intel_rapl_common: Found RAPL domain dram gen 18 19:37:43 ifigenia systemd[1]: Finished Record System Boot/Shutdown in UTMP. gen 18 19:37:43 ifigenia kernel: usbcore: registered new interface driver btusb gen 18 19:37:43 ifigenia systemd[1]: Finished Update is Completed. gen 18 19:37:43 ifigenia systemd[1]: Reached target Bluetooth Support. gen 18 19:37:43 ifigenia kernel: Bluetooth: hci0: Legacy ROM 2.5 revision 1.0 build 3 week 17 2014 gen 18 19:37:43 ifigenia kernel: Bluetooth: hci0: Intel device is already patched. patch num: 32 gen 18 19:37:43 ifigenia kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs' gen 18 19:37:43 ifigenia systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer. gen 18 19:37:43 ifigenia (udev-worker)[746]: wlan0: Config file /etc/systemd/network/40-wlan0.link is applied to device based on potentially unpredictable interface name. gen 18 19:37:43 ifigenia systemd[1]: Found device Wireless 7265 (Dual Band Wireless-AC 7265 [Stone Peak 2 AC]). gen 18 19:37:44 ifigenia kernel: psmouse serio1: synaptics: queried max coordinates: x [..5712], y [..4780] gen 18 19:37:44 ifigenia systemd[1]: Finished Firewall. gen 18 19:37:44 ifigenia systemd[1]: Started Network Time Synchronization. gen 18 19:37:44 ifigenia systemd[1]: Reached target System Initialization. gen 18 19:37:44 ifigenia systemd[1]: Started logrotate.timer. gen 18 19:37:44 ifigenia kernel: psmouse serio1: synaptics: queried min coordinates: x [1232..], y [1074..] gen 18 19:37:44 ifigenia kernel: psmouse serio1: synaptics: Trying to set up SMBus access gen 18 19:37:44 ifigenia systemd[1]: Started Daily Cleanup of Temporary Directories. gen 18 19:37:44 ifigenia systemd[1]: Started zpool-trim.timer. gen 18 19:37:44 ifigenia systemd[1]: Reached target Timer Units. gen 18 19:37:44 ifigenia systemd[1]: Listening on D-Bus System Message Bus Socket. gen 18 19:37:44 ifigenia systemd[1]: Listening on Nix Daemon Socket. gen 18 19:37:44 ifigenia systemd[1]: Listening on PC/SC Smart Card Daemon Activation Socket. gen 18 19:37:44 ifigenia systemd[1]: Reached target Socket Units. gen 18 19:37:44 ifigenia systemd[1]: Reached target Basic System. gen 18 19:37:44 ifigenia systemd[1]: Starting Network Manager Script Dispatcher Service... gen 18 19:37:44 ifigenia systemd[1]: Starting Kernel Auditing... gen 18 19:37:44 ifigenia systemd[1]: Starting D-Bus System Message Bus... gen 18 19:37:44 ifigenia systemd[1]: Starting Logrotate configuration check... gen 18 19:37:44 ifigenia systemd[1]: Starting Name Service Cache Daemon (nsncd)... gen 18 19:37:44 ifigenia systemd[1]: Started Reset console on configuration changes. gen 18 19:37:44 ifigenia logrotate[1075]: warning: logrotate in debug mode does nothing except printing debug messages! Consider using verbose mode (-v) instead if this is not what you want. gen 18 19:37:44 ifigenia 53jnb7d39q9lczldqgkh665jim9hjjp0-audit-disable[1076]: No rules gen 18 19:37:44 ifigenia logrotate[1075]: reading config file /nix/store/qhxkrhpkc0wa5c8fsknn20wrj8hjhxjq-logrotate.conf gen 18 19:37:44 ifigenia logrotate[1075]: note: 'monthly' overrides previously specified 'weekly' gen 18 19:37:44 ifigenia logrotate[1075]: Reading state from file: /var/lib/logrotate.status gen 18 19:37:44 ifigenia logrotate[1075]: state file /var/lib/logrotate.status does not exist gen 18 19:37:44 ifigenia logrotate[1075]: Allocating hash table for state file, size 64 entries gen 18 19:37:44 ifigenia logrotate[1075]: Handling 2 logs gen 18 19:37:44 ifigenia logrotate[1075]: rotating pattern: "/var/log/btmp" monthly (1 rotations) gen 18 19:37:44 ifigenia logrotate[1075]: empty log files are not rotated, only log files >= 1048576 bytes are rotated, old logs are removed gen 18 19:37:44 ifigenia logrotate[1075]: considering log /var/log/btmp gen 18 19:37:44 ifigenia logrotate[1075]: Creating new state gen 18 19:37:44 ifigenia logrotate[1075]: Now: 2024-01-18 19:37 gen 18 19:37:44 ifigenia logrotate[1075]: Last rotated at 2024-01-18 19:00 gen 18 19:37:44 ifigenia logrotate[1075]: log does not need rotating (log has already been rotated) gen 18 19:37:44 ifigenia logrotate[1075]: rotating pattern: "/var/log/wtmp" monthly (1 rotations) gen 18 19:37:44 ifigenia logrotate[1075]: empty log files are not rotated, only log files >= 1048576 bytes are rotated, old logs are removed gen 18 19:37:44 ifigenia logrotate[1075]: considering log /var/log/wtmp gen 18 19:37:44 ifigenia logrotate[1075]: Creating new state gen 18 19:37:44 ifigenia logrotate[1075]: Now: 2024-01-18 19:37 gen 18 19:37:44 ifigenia logrotate[1075]: Last rotated at 2024-01-18 19:00 gen 18 19:37:44 ifigenia logrotate[1075]: log does not need rotating (log has already been rotated) gen 18 19:37:44 ifigenia kernel: rmi4_smbus 7-002c: registering SMbus-connected sensor gen 18 19:37:44 ifigenia systemd[1]: Starting resolvconf update... gen 18 19:37:44 ifigenia systemd[1]: Starting VirtualBox vboxnet0 Interface... gen 18 19:37:44 ifigenia systemd[1]: Starting ZFS file system shares... gen 18 19:37:44 ifigenia systemd[1]: Started ZFS Event Daemon (zed). gen 18 19:37:44 ifigenia nsncd[1077]: Jan 18 18:37:44.122 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 3s }, path: "/var/run/nscd/socket" gen 18 19:37:44 ifigenia systemd[1]: Finished Kernel Auditing. gen 18 19:37:44 ifigenia systemd[1]: Started Name Service Cache Daemon (nsncd). gen 18 19:37:44 ifigenia zed[1087]: ZFS Event Daemon 2.2.2-1 (PID 1087) gen 18 19:37:44 ifigenia zfs[1086]: failed to lock /etc/exports.d/zfs.exports.lock: No such file or directory gen 18 19:37:44 ifigenia zed[1087]: Processing events since eid=0 gen 18 19:37:44 ifigenia systemd[1]: Finished Logrotate configuration check. gen 18 19:37:44 ifigenia systemd[1]: Finished ZFS file system shares. gen 18 19:37:44 ifigenia zed[1129]: eid=8 class=history_event pool='system' gen 18 19:37:44 ifigenia systemd[1]: Reached target Host and Network Name Lookups. gen 18 19:37:44 ifigenia kernel: rmi4_f01 rmi4-00.fn01: found RMI device, manufacturer: Synaptics, product: TM3075-002, fw id: 1741313 gen 18 19:37:44 ifigenia zed[1134]: eid=7 class=config_sync pool='system' gen 18 19:37:44 ifigenia systemd[1]: Reached target User and Group Name Lookups. gen 18 19:37:44 ifigenia systemd[1]: Reached target ZFS startup target. gen 18 19:37:44 ifigenia zed[1142]: eid=4 class=pool_import pool='system' gen 18 19:37:44 ifigenia zed[1138]: eid=2 class=config_cache_write pool='system' gen 18 19:37:44 ifigenia zed[1140]: eid=3 class=config_sync pool='system' gen 18 19:37:44 ifigenia zed[1126]: eid=1 class=history_event pool='system' gen 18 19:37:44 ifigenia systemd[1]: Starting Accounts Service... gen 18 19:37:44 ifigenia zed[1147]: eid=5 class=history_event pool='system' gen 18 19:37:44 ifigenia zed[1148]: eid=6 class=config_sync pool='system' gen 18 19:37:44 ifigenia systemd[1]: Starting User Login Management... gen 18 19:37:44 ifigenia systemd-timesyncd[1042]: Network configuration changed, trying to establish connection. gen 18 19:37:44 ifigenia zed[1151]: eid=10 class=history_event pool='system' gen 18 19:37:44 ifigenia zed[1153]: eid=11 class=history_event pool='system' gen 18 19:37:44 ifigenia zed[1143]: eid=9 class=history_event pool='system' gen 18 19:37:44 ifigenia systemd[1]: Stopped target Host and Network Name Lookups. gen 18 19:37:44 ifigenia systemd[1]: Stopping Host and Network Name Lookups... gen 18 19:37:44 ifigenia systemd[1]: Stopped target User and Group Name Lookups. gen 18 19:37:44 ifigenia systemd[1]: Stopping User and Group Name Lookups... gen 18 19:37:44 ifigenia kernel: input: Synaptics TM3075-002 as /devices/pci0000:00/0000:00:1f.3/i2c-7/7-002c/rmi4-00/input/input19 gen 18 19:37:44 ifigenia systemd[1]: Stopping Name Service Cache Daemon (nsncd)... gen 18 19:37:44 ifigenia dbus-daemon[1074]: dbus[1074]: Unknown username "nm-openconnect" in message bus configuration file gen 18 19:37:44 ifigenia systemd[1]: nscd.service: Deactivated successfully. gen 18 19:37:44 ifigenia kernel: serio: RMI4 PS/2 pass-through port at rmi4-00.fn03 gen 18 19:37:44 ifigenia systemd[1]: Stopped Name Service Cache Daemon (nsncd). gen 18 19:37:44 ifigenia dbus-daemon[1074]: dbus[1074]: Unknown username "nm-openconnect" in message bus configuration file gen 18 19:37:44 ifigenia kernel: mousedev: PS/2 mouse device common for all mice gen 18 19:37:44 ifigenia systemd[1]: Starting Name Service Cache Daemon (nsncd)... gen 18 19:37:44 ifigenia systemd-logind[1149]: New seat seat0. gen 18 19:37:44 ifigenia systemd[1]: Started Name Service Cache Daemon (nsncd). gen 18 19:37:44 ifigenia nsncd[1170]: Jan 18 18:37:44.278 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 3s }, path: "/var/run/nscd/socket" gen 18 19:37:44 ifigenia systemd-logind[1149]: Watching system buttons on /dev/input/event4 (Power Button) gen 18 19:37:44 ifigenia systemd-logind[1149]: Watching system buttons on /dev/input/event2 (Lid Switch) gen 18 19:37:44 ifigenia systemd-logind[1149]: Watching system buttons on /dev/input/event3 (Sleep Button) gen 18 19:37:44 ifigenia systemd[1]: Finished resolvconf update. gen 18 19:37:44 ifigenia systemd[1]: Started D-Bus System Message Bus. gen 18 19:37:44 ifigenia systemd[1]: Reached target Preparation for Network. gen 18 19:37:44 ifigenia systemd[1]: Reached target All Network Interfaces (deprecated). gen 18 19:37:44 ifigenia systemd-logind[1149]: Watching system buttons on /dev/input/event0 (AT Translated Set 2 keyboard) gen 18 19:37:44 ifigenia systemd-logind[1149]: Watching system buttons on /dev/input/event5 (ThinkPad Extra Buttons) gen 18 19:37:44 ifigenia systemd[1]: Reached target Host and Network Name Lookups. gen 18 19:37:44 ifigenia systemd[1]: Reached target User and Group Name Lookups. gen 18 19:37:44 ifigenia systemd[1]: Starting Network Manager... gen 18 19:37:44 ifigenia systemd[1]: Starting Address configuration of eth0... gen 18 19:37:44 ifigenia systemd[1]: Starting Address configuration of wlan0... gen 18 19:37:44 ifigenia systemd[1]: Started User Login Management. gen 18 19:37:44 ifigenia systemd[1]: Started Network Manager Script Dispatcher Service. gen 18 19:37:44 ifigenia dbus-daemon[1074]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.3' (uid=0 pid=1145 comm="/nix/store/zrknmqv9rlc82znyrhksgpjggj94h7g2-accoun" label="kernel") gen 18 19:37:44 ifigenia systemd[1]: Starting Authorization Manager... gen 18 19:37:44 ifigenia systemd[1]: Finished Address configuration of eth0. gen 18 19:37:44 ifigenia kernel: iwlwifi 0000:03:00.0: Applying debug destination EXTERNAL_DRAM gen 18 19:37:44 ifigenia kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3 gen 18 19:37:44 ifigenia kernel: iwlwifi 0000:03:00.0: Applying debug destination EXTERNAL_DRAM gen 18 19:37:44 ifigenia kernel: iwlwifi 0000:03:00.0: FW already configured (0) - re-configuring gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia systemd[1]: Finished Address configuration of wlan0. gen 18 19:37:44 ifigenia dbus-daemon[1074]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.6' (uid=0 pid=1212 comm="/nix/store/q5b4iwjcyvcvw1a3w8d20rbxwn7lcw1n-networ" label="kernel") gen 18 19:37:44 ifigenia kernel: input: TPPS/2 IBM TrackPoint as /devices/pci0000:00/0000:00:1f.3/i2c-7/7-002c/rmi4-00/rmi4-00.fn03/serio2/input/input20 gen 18 19:37:44 ifigenia systemd[1]: Starting Hostname Service... gen 18 19:37:44 ifigenia polkitd[1231]: Started polkitd version 123 gen 18 19:37:44 ifigenia polkitd[1231]: Loading rules from directory /etc/polkit-1/rules.d gen 18 19:37:44 ifigenia polkitd[1231]: Loading rules from directory /run/current-system/sw/share/polkit-1/rules.d gen 18 19:37:44 ifigenia polkitd[1231]: Finished loading, compiling and executing 3 rules gen 18 19:37:44 ifigenia dbus-daemon[1074]: [system] Successfully activated service 'org.freedesktop.PolicyKit1' gen 18 19:37:44 ifigenia systemd[1]: Started Authorization Manager. gen 18 19:37:44 ifigenia polkitd[1231]: Acquired the name org.freedesktop.PolicyKit1 on the system bus gen 18 19:37:44 ifigenia accounts-daemon[1145]: started daemon version 23.13.9 gen 18 19:37:44 ifigenia systemd[1]: Started Accounts Service. gen 18 19:37:44 ifigenia dbus-daemon[1074]: [system] Successfully activated service 'org.freedesktop.hostname1' gen 18 19:37:44 ifigenia systemd[1]: Started Hostname Service. gen 18 19:37:44 ifigenia systemd[1]: Found device /sys/subsystem/net/devices/vboxnet0. gen 18 19:37:44 ifigenia vboxnet0-start[1089]: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100% gen 18 19:37:44 ifigenia systemd[1]: Starting Address configuration of vboxnet0... gen 18 19:37:44 ifigenia network-addresses-vboxnet0-start[1279]: adding address 192.168.56.1/24... done gen 18 19:37:44 ifigenia vboxnet0-start[1089]: Interface 'vboxnet0' was successfully created gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.002962 main VirtualBox XPCOM Server 7.0.12 r159484 linux.amd64 (Oct 12 2023 16:34:38) release log gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.002964 main Log opened 2024-01-18T18:37:44.380764000Z gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.002965 main Build Type: release gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.002977 main OS Product: Linux gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.002978 main OS Release: 6.1.72 gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.002979 main OS Version: #1-NixOS SMP PREEMPT_DYNAMIC Wed Jan 10 16:10:37 UTC 2024 gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003005 main DMI Product Name: 20CLS2B000 gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003016 main DMI Product Version: ThinkPad X250 gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003028 main Firmware type: UEFI gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003309 main Secure Boot: Disabled gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003393 main Host RAM: 7830MB (7.6GB) total, 7455MB (7.2GB) available gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003407 main Executable: /nix/store/b391iiy0mmq69znjcp8jjz9p435clrm9-virtualbox-7.0.12/libexec/virtualbox/VBoxSVC gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003407 main Process ID: 1230 gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.003408 main Package type: LINUX_64BITS_GENERIC (OSE) gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.005283 main IPC socket path: /tmp/.vbox-root-ipc/ipcd gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.115343 nspr-2 VirtualBox: object creation starts gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.119775 nspr-2 Home directory: '/tmp' gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.140850 nspr-2 USB: Unknown USB device detected (idVendor: 0x8087, idProduct: 0x0a2a) gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.141001 nspr-2 Successfully initialised host USB using sysfs gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.313997 nspr-2 HostDnsMonitor: initializing gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.315485 nspr-2 NAT: resolv.conf: ignoring "options edns0" gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.315529 nspr-2 HostDnsMonitor: updating information gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.315533 nspr-2 HostDnsMonitor: unchanged gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.326717 nspr-2 VD: VDInit finished with VINF_SUCCESS gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.333687 nspr-2 VirtualBox: object created gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.386897 nspr-2 Saving settings file "/tmp/VirtualBox.xml" with version "1.12-linux" gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.389952 nspr-2 Finished saving settings file "/tmp/VirtualBox.xml" gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.390101 nspr-2 Saving settings file "/tmp/VirtualBox.xml" with version "1.12-linux" gen 18 19:37:44 ifigenia vboxnet0-start[1288]: 00:00:00.390203 nspr-2 Finished saving settings file "/tmp/VirtualBox.xml" gen 18 19:37:44 ifigenia systemd[1]: Finished Address configuration of vboxnet0. gen 18 19:37:44 ifigenia systemd[1]: Finished VirtualBox vboxnet0 Interface. gen 18 19:37:44 ifigenia systemd[1]: Starting Networking Setup... gen 18 19:37:44 ifigenia systemd[1]: Finished Networking Setup. gen 18 19:37:44 ifigenia kernel: iwlwifi 0000:03:00.0: Applying debug destination EXTERNAL_DRAM gen 18 19:37:44 ifigenia systemd[1]: Starting Extra networking commands.... gen 18 19:37:44 ifigenia systemd[1]: Finished Extra networking commands.. gen 18 19:37:44 ifigenia kernel: iwlwifi 0000:03:00.0: Applying debug destination EXTERNAL_DRAM gen 18 19:37:44 ifigenia kernel: iwlwifi 0000:03:00.0: FW already configured (0) - re-configuring gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia kernel: ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001) gen 18 19:37:44 ifigenia dbus-daemon[1074]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.6' (uid=0 pid=1212 comm="/nix/store/q5b4iwjcyvcvw1a3w8d20rbxwn7lcw1n-networ" label="kernel") gen 18 19:37:44 ifigenia systemd[1]: Starting WPA supplicant... gen 18 19:37:44 ifigenia systemd[1]: Started Network Manager. gen 18 19:37:44 ifigenia systemd[1]: Starting Network Manager Wait Online... gen 18 19:37:45 ifigenia dbus-daemon[1074]: [system] Successfully activated service 'fi.w1.wpa_supplicant1' gen 18 19:37:45 ifigenia wpa_supplicant[1333]: Successfully initialized wpa_supplicant gen 18 19:37:45 ifigenia systemd[1]: Started WPA supplicant. gen 18 19:37:45 ifigenia systemd[1]: Reached target Network. gen 18 19:37:45 ifigenia systemd[1]: Starting Permit User Sessions... gen 18 19:37:45 ifigenia kernel: NET: Registered PF_PACKET protocol family gen 18 19:37:45 ifigenia systemd[1]: Finished Permit User Sessions. gen 18 19:37:45 ifigenia systemd[1]: Starting Display Manager... gen 18 19:37:45 ifigenia systemd[1]: Started Getty on tty1. gen 18 19:37:45 ifigenia systemd[1]: Reached target Login Prompts. gen 18 19:37:45 ifigenia systemd[1]: Started Display Manager. gen 18 19:37:45 ifigenia sddm[1350]: Initializing... gen 18 19:37:45 ifigenia sddm[1350]: Starting... gen 18 19:37:45 ifigenia sddm[1350]: Logind interface found gen 18 19:37:45 ifigenia sddm[1350]: Adding new display... gen 18 19:37:45 ifigenia sddm[1350]: Loaded empty theme configuration gen 18 19:37:45 ifigenia sddm[1350]: Xauthority path: "/run/sddm/xauth_XaktCn" gen 18 19:37:45 ifigenia sddm[1350]: Using VT 2 gen 18 19:37:45 ifigenia sddm[1350]: Display server starting... gen 18 19:37:45 ifigenia sddm[1350]: Writing cookie to "/run/sddm/xauth_XaktCn" gen 18 19:37:45 ifigenia sddm[1350]: Running: /nix/store/6hgf261w7vjw362vqjz3bssa5v35rnn6-xserver-wrapper -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_XaktCn -noreset -displayfd 16 ```
someplaceguy commented 10 months ago

@turlando: It looks like the initrd is failing to mount the /nix filesystem. What does the fileSystems section of your configuration.nix look like?

ElvishJerricco commented 10 months ago

@turlando To be clear, the error message you're seeing is a generic error that applies to any critical failure in initrd, so you're experience a separate issue entirely.

Here's the relevant part of the log:

gen 18 19:37:27 localhost systemd[1]: Mounting /sysroot...
gen 18 19:37:27 localhost systemd[1]: Starting Rollback system root dataset to empty state...
gen 18 19:37:27 localhost systemd[1]: Mounted /sysroot.
gen 18 19:37:27 localhost systemd[1]: Reached target Initrd Root File System.
gen 18 19:37:27 localhost systemd[1]: Mounting /sysroot/nix...
gen 18 19:37:27 localhost systemd[1]: Starting Mountpoints Configured in the Real Root...
gen 18 19:37:27 localhost systemd-sysroot-fstab-check[374]: /sysroot should be mounted in the initrd, will request daemon-reload.
gen 18 19:37:27 localhost systemd[1]: ephemeral-root.service: Deactivated successfully.
gen 18 19:37:27 localhost systemd[1]: Finished Rollback system root dataset to empty state.
gen 18 19:37:27 localhost systemd[1]: Reloading requested from client PID 374 ('systemd-fstab-g') (unit initrd-parse-etc.service)...
gen 18 19:37:27 localhost systemd[1]: Reloading...
gen 18 19:37:27 localhost mount[373]: mount: /sysroot/nix: mount point does not exist.
gen 18 19:37:27 localhost mount[373]:        dmesg(1) may have more information after failed mount system call.

When mount goes to mount /sysroot/nix, it's finding that the mountpoint doesn't exist. It looks to me like your ephemeral-root.service is racing with sysroot-nix.mount. So systemd creates the mountpoint like normal, but before mount actually occurs, the rollback is reverting sysroot to an empty directory which is getting rid of the nix subdirectory.

You should order ephemeral-root.service before sysroot.mount. You can either do this by adding x-systemd.after=ephemeral-root.service to the file system options for /, or you can put before = ["sysroot.mount"]; on ephemeral-root.

turlando commented 10 months ago

Thank you @ElvishJerricco. after = ["zfs-import.target"] in ephemeral-root.service was not enough. I'm wondering if wantedBy = ["initrd.target"] is redundant at this point. Thanks again and sorry for the false alarm.