You are not logged in.

#1 2021-10-06 08:05:26

RageBanken
Member
Registered: 2020-09-16
Posts: 30

Override ENERGY_PERF_BIAS being changed on boot.

So, I have my bios manually set to performance yet during boot it is being overwritten to "normal".  From what reading I've done it seems like this is going to require modifying kernel modules to change the behavior.  Is there an easier way to get the system to stop doing this?  Where do I even start?

As a side question, why is this behavior occurring?  Is this a default behavior and if so, why?

Offline

#2 2021-10-06 08:48:17

Ropid
Member
Registered: 2015-03-09
Posts: 1,069

Re: Override ENERGY_PERF_BIAS being changed on boot.

There's a command "x86_energy_perf_policy" that can change this on a running system. It's in a package with the same name. You would have to run this at boot through writing your own systemd service file.

There's also a "cpupower" tool and service. The cpupower service has a config file "/etc/default/cpupower" and there's a line "perf_bias=..." in that example config that you can use for what you want. If you use the cpupower service, you then wouldn't need to use x86_energy_perf_policy and your own service. The "perf_bias" option is explained in "man cpupower-set".

Offline

#3 2021-10-06 09:05:21

RageBanken
Member
Registered: 2020-09-16
Posts: 30

Re: Override ENERGY_PERF_BIAS being changed on boot.

Yeah, I saw x86_energy_perf_policy first thing, it's temporary nature (thus need for .service file) was a pretty big no-thanks.  I'm hesitant on cpupower for the same base reason I'm hesitant on any 'additional' packages:  If the system is already doing it, then the system should be changeable to stop doing it.

Yeah I know, it's common for people to just throw more and more packages at problems.  Personally I have a thing against bloat (yes it makes more work for me, and yes I know it's almost problem level of obsession.)

I'm really hoping there's some poorly documented kernel parameter or such that could solve this, but I'm not holding my breath.

I'll give cpupower-set a read here in a little bit as soon as I finish taking care of getting a few other performance issues taken care of.


Thanks for the suggestions and reading reference!

Offline

#4 2021-10-06 09:46:46

Ropid
Member
Registered: 2015-03-09
Posts: 1,069

Re: Override ENERGY_PERF_BIAS being changed on boot.

If you need to compile your own kernel to change the default behavior, then this is a lot more annoying than installing a command and using a service. A git repository for the kernel is about 4GB size. Compiling a kernel needs 35 to 45 minutes with four CPU cores. You would have to recompile it once a week or so to follow the Arch kernel package releases.

About writing your own systemd service, the file contents would look like this:

[Unit]
Description=Run x86_energy_perf_policy at boot

[Service]
Type=oneshot
ExecStart=/usr/bin/x86_energy_perf_policy put your arguments here

[Install]
WantedBy=multi-user.target

You save this kind of file in "/etc/systemd/system/". You then do "sudo systemctl daemon-reload" and you check that systemd sees it with "systemctl cat ...". You enable and run it with "sudo systemctl enable --now ...".

Offline

#5 2021-10-07 04:12:50

RageBanken
Member
Registered: 2020-09-16
Posts: 30

Re: Override ENERGY_PERF_BIAS being changed on boot.

Yeah, I'm familiar with the basics of compiling and have usually found a way to avoid it without having to resort to adding bloat.  I am already up to my eyeballs in overrides for existing service files.

What I'm looking at is: https://www.kernel.org/doc/html/v5.15-r … l_epb.html

Generally, the EPB is expected to be set by user space (directly via sysfs or with the help of the x86_energy_perf_policy tool)

  I've been lucky so far and haven't had to mess with sysfs but sounds more acceptable than adding an extra package.

On the other hand: https://www.phoronix.com/scan.php?page= … _epb&num=2 (yes I know, different distro and OLD)

Previously the power policy for MSR_IA32_ENERGY_PERF_BIAS could be overrode using the "epb=" kernel command line parameter with a value of either disable or a value between 0 and 15.

  What ever happened to that parameter?  Is it still around at all, or anything like it?  That would be a much more ideal solution and a simple change to grub...  (see following bit)

For that matter: https://wiki.archlinux.org/title/CPU_fr … ncy_driver

... The intel_pstate may ignore the BIOS P-State settings. ... If you encounter a problem while using this driver, add intel_pstate=disable to your kernel line in order to revert to using the acpi-cpufreq driver." && "Even P State behavior mentioned above can be influenced with /sys/devices/system/cpu/intel_pstate,

  This would suggest it's still configurable without having to add packages or the need to compile a kernel.  ...but, is "disable" really the only value available?  If so, what would be the best way to go about dealing with  /sys/devices/system/cpu/intel_pstate without adding more packages?

Last edited by RageBanken (2021-10-07 04:41:14)

Offline

#6 2021-10-07 04:39:02

RageBanken
Member
Registered: 2020-09-16
Posts: 30

Re: Override ENERGY_PERF_BIAS being changed on boot.

Think I may have found a potential solution:

https://wiki.archlinux.org/title/CPU_fr … _governors

Alternatively, you can activate a governor on every available CPU manually:

# echo governor | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor

where governor is the name of the governor, mentioned in the above table, that you want to activate.

I would assume this is also temporary and would need at least a service file if not also a shell script for every boot?

Though the question stands, can't the value be assigned through a boot line parameter?  For instance, can't I just add  intel_pstate=performance to my boot line, or something similar?

Last edited by RageBanken (2021-10-07 04:44:29)

Offline

#7 2021-10-07 11:10:43

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,660

Re: Override ENERGY_PERF_BIAS being changed on boot.

You can since very recently  see the tip box in: https://wiki.archlinux.org/title/CPU_fr … _permanent

However there really isn't any real difference between that and setting it in a systemd service, cpupower already ships with a service file that reads an easy to adjust configuration that can be changed to make all of these changes you ask for here in one go

Offline

#8 2021-10-07 23:21:30

RageBanken
Member
Registered: 2020-09-16
Posts: 30

Re: Override ENERGY_PERF_BIAS being changed on boot.

Ooo, that right there is exactly what I'm looking for!  A nice simple change, without the need to add extra packages.  Good point out!

So, I just tried adding cpufreq.default_governor=performance though and after reboot the system is still changing the setting to  "normal" on boot.

Looking into setting a udev rule now, as suggested by that same section in regards to race conditions.  (Honestly just guessing at this point.)

Including a walked over copy of journalctl -b

-- Journal begins at Tue 2021-10-05 21:52:46 PDT, ends at Thu 2021-10-07 15:21:05 PDT. --
Oct 07 15:03:53 furverts kernel: microcode: microcode updated early to revision 0x21, date = 2019-02-13
Oct 07 15:03:53 furverts kernel: Linux version 5.14.9-hardened1-1-hardened (linux-hardened@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils) 2.36.1) #1 SMP PREEMPT Thu, 30 Sep 2021 17:35:16 +0000
Oct 07 15:03:53 furverts kernel: Command line: BOOT_IMAGE=/vmlinuz-linux-hardened root=UUID=eff3d494-2044-4806-9f95-1411b9758401 rw ipv6.disable=1 apparmor=1 lsm=landlock,lockdown,yama,apparmor,bpf mtrr_spare_reg_nr=1 mtrr_gran_size=16M mtrr_chunk_size=64M cpufreq.default_governor=performance loglevel=3 quiet
Oct 07 15:03:53 furverts kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Oct 07 15:03:53 furverts kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Oct 07 15:03:53 furverts kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Oct 07 15:03:53 furverts kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Oct 07 15:03:53 furverts kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Oct 07 15:03:53 furverts kernel: signal: max sigframe size: 1776
Oct 07 15:03:53 furverts kernel: BIOS-provided physical RAM map:
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000040005000-0x00000000da18afff] usable
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000da18b000-0x00000000da626fff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000da627000-0x00000000da640fff] ACPI data
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000da641000-0x00000000dc60dfff] ACPI NVS
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000dc60e000-0x00000000dc736fff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000dc737000-0x00000000dc7d1fff] type 20
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000dc7d2000-0x00000000dc7d2fff] usable
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000dc7d3000-0x00000000dc815fff] ACPI NVS
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000dc816000-0x00000000dcffffff] usable
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000dd000000-0x00000000df9fffff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Oct 07 15:03:53 furverts kernel: BIOS-e820: [mem 0x0000000100000000-0x000000041e5fffff] usable
Oct 07 15:03:53 furverts kernel: NX (Execute Disable) protection: active
Oct 07 15:03:53 furverts kernel: efi: EFI v2.31 by American Megatrends
Oct 07 15:03:53 furverts kernel: efi: ACPI=0xda62c000 ACPI 2.0=0xda62c000 SMBIOS=0xdc735018 
Oct 07 15:03:53 furverts kernel: SMBIOS 2.7 present.
Oct 07 15:03:53 furverts kernel: DMI: LENOVO 2697AS1/MAHOBAY, BIOS 9SKT9CAUS 12/11/2018
Oct 07 15:03:53 furverts kernel: tsc: Fast TSC calibration using PIT
Oct 07 15:03:53 furverts kernel: tsc: Detected 3192.735 MHz processor
Oct 07 15:03:53 furverts kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Oct 07 15:03:53 furverts kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Oct 07 15:03:53 furverts kernel: last_pfn = 0x41e600 max_arch_pfn = 0x400000000
Oct 07 15:03:53 furverts kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Oct 07 15:03:53 furverts kernel: total RAM covered: 16318M
Oct 07 15:03:53 furverts kernel:  gran_size: 16M         chunk_size: 64M         num_reg: 9          lose cover RAM: 14M
Oct 07 15:03:53 furverts kernel: e820: update [mem 0xdd000000-0xffffffff] usable ==> reserved
Oct 07 15:03:53 furverts kernel: e820: update [mem 0x41e000000-0x41e5fffff] usable ==> reserved
Oct 07 15:03:53 furverts kernel: WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 6MB of RAM.
Oct 07 15:03:53 furverts kernel: update e820 for mtrr
Oct 07 15:03:53 furverts kernel: modified physical RAM map:
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000000000000-0x0000000000000fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000000001000-0x000000000009dfff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x000000000009e000-0x000000000009ffff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000000100000-0x000000001fffffff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000020000000-0x00000000201fffff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000020200000-0x0000000040003fff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000040004000-0x0000000040004fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000040005000-0x00000000da18afff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000da18b000-0x00000000da626fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000da627000-0x00000000da640fff] ACPI data
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000da641000-0x00000000dc60dfff] ACPI NVS
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000dc60e000-0x00000000dc736fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000dc737000-0x00000000dc7d1fff] type 20
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000dc7d2000-0x00000000dc7d2fff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000dc7d3000-0x00000000dc815fff] ACPI NVS
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000dc816000-0x00000000dcffffff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000dd000000-0x00000000df9fffff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Oct 07 15:03:53 furverts kernel: modified: [mem 0x0000000100000000-0x000000041dffffff] usable
Oct 07 15:03:53 furverts kernel: modified: [mem 0x000000041e000000-0x000000041e5fffff] reserved
Oct 07 15:03:53 furverts kernel: last_pfn = 0x41e000 max_arch_pfn = 0x400000000
Oct 07 15:03:53 furverts kernel: last_pfn = 0xdd000 max_arch_pfn = 0x400000000
Oct 07 15:03:53 furverts kernel: Secure boot disabled
Oct 07 15:03:53 furverts kernel: RAMDISK: [mem 0x366f3000-0x37370fff]
Oct 07 15:03:53 furverts kernel: ACPI: Early table checksum verification disabled
Oct 07 15:03:53 furverts kernel: ACPI: RSDP 0x00000000DA62C000 000024 (v02 LENOVO)
Oct 07 15:03:53 furverts kernel: ACPI: XSDT 0x00000000DA62C088 00008C (v01 LENOVO TC-9S    00001620 AMI  00010013)
Oct 07 15:03:53 furverts kernel: ACPI: FACP 0x00000000DA63E640 00010C (v05 LENOVO TC-9S    00001620 AMI  00010013)
Oct 07 15:03:53 furverts kernel: ACPI: DSDT 0x00000000DA62C1A0 01249E (v02 LENOVO TC-9S    00001620 INTL 20051117)
Oct 07 15:03:53 furverts kernel: ACPI: FACS 0x00000000DC5FB080 000040
Oct 07 15:03:53 furverts kernel: ACPI: APIC 0x00000000DA63E750 000072 (v03 LENOVO TC-9S    00001620 AMI  00010013)
Oct 07 15:03:53 furverts kernel: ACPI: FPDT 0x00000000DA63E7C8 000044 (v01 LENOVO TC-9S    00001620 AMI  00010013)
Oct 07 15:03:53 furverts kernel: ACPI: MCFG 0x00000000DA63E810 00003C (v01 LENOVO TC-9S    00001620 MSFT 00000097)
Oct 07 15:03:53 furverts kernel: ACPI: SLIC 0x00000000DA63E850 000176 (v01 LENOVO TC-9S    00001620 AMI  00010013)
Oct 07 15:03:53 furverts kernel: ACPI: HPET 0x00000000DA63E9C8 000038 (v01 LENOVO TC-9S    00001620 AMI. 00000005)
Oct 07 15:03:53 furverts kernel: ACPI: SSDT 0x00000000DA63EA00 00036D (v01 LENOVO TC-9S    00001620 INTL 20091112)
Oct 07 15:03:53 furverts kernel: ACPI: SSDT 0x00000000DA63ED70 0009AA (v01 LENOVO TC-9S    00001620 INTL 20051117)
Oct 07 15:03:53 furverts kernel: ACPI: SSDT 0x00000000DA63F720 000B22 (v01 LENOVO TC-9S    00001620 INTL 20051117)
Oct 07 15:03:53 furverts kernel: ACPI: DMAR 0x00000000DA640248 0000B8 (v01 LENOVO TC-9S    00001620 INTL 00000001)
Oct 07 15:03:53 furverts kernel: ACPI: ASF! 0x00000000DA640300 0000A5 (v32 LENOVO TC-9S    00001620 TFSM 000F4240)
Oct 07 15:03:53 furverts kernel: ACPI: BGRT 0x00000000DA6403A8 000038 (v00 LENOVO TC-9S    00001620 AMI  00010013)
Oct 07 15:03:53 furverts kernel: ACPI: TCPA 0x00000000DA6403E0 000032 (v02 LENOVO TC-9S    00001620 MSFT 01000013)
Oct 07 15:03:53 furverts kernel: ACPI: Reserving FACP table memory at [mem 0xda63e640-0xda63e74b]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving DSDT table memory at [mem 0xda62c1a0-0xda63e63d]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving FACS table memory at [mem 0xdc5fb080-0xdc5fb0bf]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving APIC table memory at [mem 0xda63e750-0xda63e7c1]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving FPDT table memory at [mem 0xda63e7c8-0xda63e80b]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving MCFG table memory at [mem 0xda63e810-0xda63e84b]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving SLIC table memory at [mem 0xda63e850-0xda63e9c5]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving HPET table memory at [mem 0xda63e9c8-0xda63e9ff]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving SSDT table memory at [mem 0xda63ea00-0xda63ed6c]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving SSDT table memory at [mem 0xda63ed70-0xda63f719]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving SSDT table memory at [mem 0xda63f720-0xda640241]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving DMAR table memory at [mem 0xda640248-0xda6402ff]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving ASF! table memory at [mem 0xda640300-0xda6403a4]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving BGRT table memory at [mem 0xda6403a8-0xda6403df]
Oct 07 15:03:53 furverts kernel: ACPI: Reserving TCPA table memory at [mem 0xda6403e0-0xda640411]
Oct 07 15:03:53 furverts kernel: No NUMA configuration found
Oct 07 15:03:53 furverts kernel: Faking a node at [mem 0x0000000000000000-0x000000041dffffff]
Oct 07 15:03:53 furverts kernel: NODE_DATA(0) allocated [mem 0x41dff4000-0x41dff7fff]
Oct 07 15:03:53 furverts kernel: Zone ranges:
Oct 07 15:03:53 furverts kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Oct 07 15:03:53 furverts kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Oct 07 15:03:53 furverts kernel:   Normal   [mem 0x0000000100000000-0x000000041dffffff]
Oct 07 15:03:53 furverts kernel:   Device   empty
Oct 07 15:03:53 furverts kernel: Movable zone start for each node
Oct 07 15:03:53 furverts kernel: Early memory node ranges
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x0000000000100000-0x000000001fffffff]
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x0000000020200000-0x0000000040003fff]
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x0000000040005000-0x00000000da18afff]
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x00000000dc7d2000-0x00000000dc7d2fff]
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x00000000dc816000-0x00000000dcffffff]
Oct 07 15:03:53 furverts kernel:   node   0: [mem 0x0000000100000000-0x000000041dffffff]
Oct 07 15:03:53 furverts kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000041dffffff]
Oct 07 15:03:53 furverts kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone DMA: 98 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone DMA32: 512 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone DMA32: 9799 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone DMA32: 67 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone Normal: 12288 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
Oct 07 15:03:53 furverts kernel: Reserving Intel graphics memory at [mem 0xdda00000-0xdf9fffff]
Oct 07 15:03:53 furverts kernel: ACPI: PM-Timer IO Port: 0x408
Oct 07 15:03:53 furverts kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Oct 07 15:03:53 furverts kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Oct 07 15:03:53 furverts kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 07 15:03:53 furverts kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 07 15:03:53 furverts kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Oct 07 15:03:53 furverts kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Oct 07 15:03:53 furverts kernel: e820: update [mem 0xd8417000-0xd845efff] usable ==> reserved
Oct 07 15:03:53 furverts kernel: TSC deadline timer available
Oct 07 15:03:53 furverts kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Oct 07 15:03:53 furverts kernel: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
Oct 07 15:03:53 furverts kernel: Booting paravirtualized kernel on bare hardware
Oct 07 15:03:53 furverts kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Oct 07 15:03:53 furverts kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:4 nr_node_ids:1
Oct 07 15:03:53 furverts kernel: percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u524288
Oct 07 15:03:53 furverts kernel: pcpu-alloc: s196608 r8192 d28672 u524288 alloc=1*2097152
Oct 07 15:03:53 furverts kernel: pcpu-alloc: [0] 0 1 2 3 
Oct 07 15:03:53 furverts kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4097879
Oct 07 15:03:53 furverts kernel: Policy zone: Normal
Oct 07 15:03:53 furverts kernel: Kernel command line: pti=on page_alloc.shuffle=1 BOOT_IMAGE=/vmlinuz-linux-hardened root=UUID=eff3d494-2044-4806-9f95-1411b9758401 rw ipv6.disable=1 apparmor=1 lsm=landlock,lockdown,yama,apparmor,bpf mtrr_spare_reg_nr=1 mtrr_gran_size=16M mtrr_chunk_size=64M cpufreq.default_governor=performance loglevel=3 quiet
Oct 07 15:03:53 furverts kernel: Unknown command line parameters: pti=on BOOT_IMAGE=/vmlinuz-linux-hardened
Oct 07 15:03:53 furverts kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Oct 07 15:03:53 furverts kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Oct 07 15:03:53 furverts kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:on
Oct 07 15:03:53 furverts kernel: mem auto-init: clearing system memory may take some time...
Oct 07 15:03:53 furverts kernel: Memory: 16209704K/16653384K available (14344K kernel code, 1984K rwdata, 4628K rodata, 2172K init, 3892K bss, 443420K reserved, 0K cma-reserved)
Oct 07 15:03:53 furverts kernel: random: get_random_u64 called from __kmem_cache_create+0x2a/0x5d0 with crng_init=0
Oct 07 15:03:53 furverts kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Oct 07 15:03:53 furverts kernel: Kernel/User page tables isolation: enabled
Oct 07 15:03:53 furverts kernel: ftrace: allocating 41147 entries in 161 pages
Oct 07 15:03:53 furverts kernel: ftrace: allocated 161 pages with 3 groups
Oct 07 15:03:53 furverts kernel: rcu: Preemptible hierarchical RCU implementation.
Oct 07 15:03:53 furverts kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Oct 07 15:03:53 furverts kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Oct 07 15:03:53 furverts kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Oct 07 15:03:53 furverts kernel:         Trampoline variant of Tasks RCU enabled.
Oct 07 15:03:53 furverts kernel:         Rude variant of Tasks RCU enabled.
Oct 07 15:03:53 furverts kernel:         Tracing variant of Tasks RCU enabled.
Oct 07 15:03:53 furverts kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Oct 07 15:03:53 furverts kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Oct 07 15:03:53 furverts kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
Oct 07 15:03:53 furverts kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Oct 07 15:03:53 furverts kernel: Console: colour dummy device 80x25
Oct 07 15:03:53 furverts kernel: printk: console [tty0] enabled
Oct 07 15:03:53 furverts kernel: ACPI: Core revision 20210604
Oct 07 15:03:53 furverts kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Oct 07 15:03:53 furverts kernel: APIC: Switch to symmetric I/O mode setup
Oct 07 15:03:53 furverts kernel: DMAR: Host address width 36
Oct 07 15:03:53 furverts kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Oct 07 15:03:53 furverts kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
Oct 07 15:03:53 furverts kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Oct 07 15:03:53 furverts kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
Oct 07 15:03:53 furverts kernel: DMAR: RMRR base: 0x000000da595000 end: 0x000000da5c9fff
Oct 07 15:03:53 furverts kernel: DMAR: RMRR base: 0x000000dd800000 end: 0x000000df9fffff
Oct 07 15:03:53 furverts kernel: DMAR-IR: IOAPIC id 8 under DRHD base  0xfed91000 IOMMU 1
Oct 07 15:03:53 furverts kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Oct 07 15:03:53 furverts kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Oct 07 15:03:53 furverts kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Oct 07 15:03:53 furverts kernel: x2apic enabled
Oct 07 15:03:53 furverts kernel: Switched APIC routing to cluster x2apic.
Oct 07 15:03:53 furverts kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 07 15:03:53 furverts kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e057ae94e3, max_idle_ns: 440795219108 ns
Oct 07 15:03:53 furverts kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6388.53 BogoMIPS (lpj=10642450)
Oct 07 15:03:53 furverts kernel: pid_max: default: 32768 minimum: 301
Oct 07 15:03:53 furverts kernel: LSM: Security Framework initializing
Oct 07 15:03:53 furverts kernel: landlock: Up and running.
Oct 07 15:03:53 furverts kernel: Yama: becoming mindful.
Oct 07 15:03:53 furverts kernel: AppArmor: AppArmor initialized
Oct 07 15:03:53 furverts kernel: LSM support for eBPF active
Oct 07 15:03:53 furverts kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Oct 07 15:03:53 furverts kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Oct 07 15:03:53 furverts kernel: CPU0: Thermal monitoring enabled (TM1)
Oct 07 15:03:53 furverts kernel: process: using mwait in idle threads
Oct 07 15:03:53 furverts kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Oct 07 15:03:53 furverts kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Oct 07 15:03:53 furverts kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Oct 07 15:03:53 furverts kernel: Spectre V2 : Mitigation: Full generic retpoline
Oct 07 15:03:53 furverts kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Oct 07 15:03:53 furverts kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Oct 07 15:03:53 furverts kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Oct 07 15:03:53 furverts kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Oct 07 15:03:53 furverts kernel: SRBDS: Vulnerable: No microcode
Oct 07 15:03:53 furverts kernel: MDS: Mitigation: Clear CPU buffers
Oct 07 15:03:53 furverts kernel: Freeing SMP alternatives memory: 36K
Oct 07 15:03:53 furverts kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1088
Oct 07 15:03:53 furverts kernel: smpboot: CPU0: Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (family: 0x6, model: 0x3a, stepping: 0x9)
Oct 07 15:03:53 furverts kernel: Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
Oct 07 15:03:53 furverts kernel: ... version:                3
Oct 07 15:03:53 furverts kernel: ... bit width:              48
Oct 07 15:03:53 furverts kernel: ... generic registers:      8
Oct 07 15:03:53 furverts kernel: ... value mask:             0000ffffffffffff
Oct 07 15:03:53 furverts kernel: ... max period:             00007fffffffffff
Oct 07 15:03:53 furverts kernel: ... fixed-purpose events:   3
Oct 07 15:03:53 furverts kernel: ... event mask:             00000007000000ff
Oct 07 15:03:53 furverts kernel: rcu: Hierarchical SRCU implementation.
Oct 07 15:03:53 furverts kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Oct 07 15:03:53 furverts kernel: smp: Bringing up secondary CPUs ...
Oct 07 15:03:53 furverts kernel: x86: Booting SMP configuration:
Oct 07 15:03:53 furverts kernel: .... node  #0, CPUs:      #1 #2 #3
Oct 07 15:03:53 furverts kernel: smp: Brought up 1 node, 4 CPUs
Oct 07 15:03:53 furverts kernel: smpboot: Max logical packages: 1
Oct 07 15:03:53 furverts kernel: smpboot: Total of 4 processors activated (25552.12 BogoMIPS)
Oct 07 15:03:53 furverts kernel: devtmpfs: initialized
Oct 07 15:03:53 furverts kernel: x86/mm: Memory block size: 128MB
Oct 07 15:03:53 furverts kernel: ACPI: PM: Registering ACPI NVS region [mem 0xda641000-0xdc60dfff] (33345536 bytes)
Oct 07 15:03:53 furverts kernel: ACPI: PM: Registering ACPI NVS region [mem 0xdc7d3000-0xdc815fff] (274432 bytes)
Oct 07 15:03:53 furverts kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Oct 07 15:03:53 furverts kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Oct 07 15:03:53 furverts kernel: pinctrl core: initialized pinctrl subsystem
Oct 07 15:03:53 furverts kernel: pinctrl core: failed to create debugfs directory
Oct 07 15:03:53 furverts kernel: PM: RTC time: 22:03:48, date: 2021-10-07
Oct 07 15:03:53 furverts kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Oct 07 15:03:53 furverts kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Oct 07 15:03:53 furverts kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Oct 07 15:03:53 furverts kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Oct 07 15:03:53 furverts kernel: audit: initializing netlink subsys (disabled)
Oct 07 15:03:53 furverts kernel: audit: type=2000 audit(1633644228.039:1): state=initialized audit_enabled=0 res=1
Oct 07 15:03:53 furverts kernel: thermal_sys: Registered thermal governor 'fair_share'
Oct 07 15:03:53 furverts kernel: thermal_sys: Registered thermal governor 'bang_bang'
Oct 07 15:03:53 furverts kernel: thermal_sys: Registered thermal governor 'step_wise'
Oct 07 15:03:53 furverts kernel: thermal_sys: Registered thermal governor 'user_space'
Oct 07 15:03:53 furverts kernel: thermal_sys: Registered thermal governor 'power_allocator'
Oct 07 15:03:53 furverts kernel: cpuidle: using governor ladder
Oct 07 15:03:53 furverts kernel: cpuidle: using governor menu
Oct 07 15:03:53 furverts kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Oct 07 15:03:53 furverts kernel: ACPI: bus type PCI registered
Oct 07 15:03:53 furverts kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 07 15:03:53 furverts kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Oct 07 15:03:53 furverts kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Oct 07 15:03:53 furverts kernel: PCI: Using configuration type 1 for base access
Oct 07 15:03:53 furverts kernel: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
Oct 07 15:03:53 furverts kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Oct 07 15:03:53 furverts kernel: Kprobes globally optimized
Oct 07 15:03:53 furverts kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(Module Device)
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(Processor Device)
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(Processor Aggregator Device)
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(Linux-Dell-Video)
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Oct 07 15:03:53 furverts kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Oct 07 15:03:53 furverts kernel: ACPI: 4 ACPI AML tables successfully acquired and loaded
Oct 07 15:03:53 furverts kernel: ACPI: Dynamic OEM Table Load:
Oct 07 15:03:53 furverts kernel: ACPI: SSDT 0xFFFF8FFA40D90000 00083B (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
Oct 07 15:03:53 furverts kernel: ACPI: Dynamic OEM Table Load:
Oct 07 15:03:53 furverts kernel: ACPI: SSDT 0xFFFF8FFA40D9F800 000303 (v01 PmRef  ApIst    00003000 INTL 20051117)
Oct 07 15:03:53 furverts kernel: ACPI: Dynamic OEM Table Load:
Oct 07 15:03:53 furverts kernel: ACPI: SSDT 0xFFFF8FFB0CA2EC00 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
Oct 07 15:03:53 furverts kernel: ACPI: Interpreter enabled
Oct 07 15:03:53 furverts kernel: ACPI: PM: (supports S0 S3 S5)
Oct 07 15:03:53 furverts kernel: ACPI: Using IOAPIC for interrupt routing
Oct 07 15:03:53 furverts kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 07 15:03:53 furverts kernel: ACPI: Enabled 17 GPEs in block 00 to 3F
Oct 07 15:03:53 furverts kernel: ACPI: PM: Power Resource [FN00]
Oct 07 15:03:53 furverts kernel: ACPI: PM: Power Resource [FN01]
Oct 07 15:03:53 furverts kernel: ACPI: PM: Power Resource [FN02]
Oct 07 15:03:53 furverts kernel: ACPI: PM: Power Resource [FN03]
Oct 07 15:03:53 furverts kernel: ACPI: PM: Power Resource [FN04]
Oct 07 15:03:53 furverts kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Oct 07 15:03:53 furverts kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
Oct 07 15:03:53 furverts kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Oct 07 15:03:53 furverts kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
Oct 07 15:03:53 furverts kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
Oct 07 15:03:53 furverts kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Oct 07 15:03:53 furverts kernel: PCI host bridge to bus 0000:00
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
Oct 07 15:03:53 furverts kernel: pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: [8086:0152] type 00 class 0x030000
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Oct 07 15:03:53 furverts kernel: pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
Oct 07 15:03:53 furverts kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf7c20000-0xf7c2ffff 64bit]
Oct 07 15:03:53 furverts kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Oct 07 15:03:53 furverts kernel: pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
Oct 07 15:03:53 furverts kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf7c3c000-0xf7c3c00f 64bit]
Oct 07 15:03:53 furverts kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Oct 07 15:03:53 furverts kernel: pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
Oct 07 15:03:53 furverts kernel: pci 0000:00:16.3: reg 0x10: [io  0xf0e0-0xf0e7]
Oct 07 15:03:53 furverts kernel: pci 0000:00:16.3: reg 0x14: [mem 0xf7c3a000-0xf7c3afff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
Oct 07 15:03:53 furverts kernel: pci 0000:00:19.0: reg 0x10: [mem 0xf7c00000-0xf7c1ffff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:19.0: reg 0x14: [mem 0xf7c39000-0xf7c39fff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:19.0: reg 0x18: [io  0xf080-0xf09f]
Oct 07 15:03:53 furverts kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Oct 07 15:03:53 furverts kernel: pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
Oct 07 15:03:53 furverts kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xf7c38000-0xf7c383ff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Oct 07 15:03:53 furverts kernel: pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
Oct 07 15:03:53 furverts kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf7c30000-0xf7c33fff 64bit]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Oct 07 15:03:53 furverts kernel: pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
Oct 07 15:03:53 furverts kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf7c37000-0xf7c373ff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.0: [8086:1e48] type 00 class 0x060100
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: [8086:1e02] type 00 class 0x010601
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: reg 0x10: [io  0xf0d0-0xf0d7]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: reg 0x14: [io  0xf0c0-0xf0c3]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: reg 0x18: [io  0xf0b0-0xf0b7]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: reg 0x1c: [io  0xf0a0-0xf0a3]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: reg 0x20: [io  0xf060-0xf07f]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xf7c36000-0xf7c367ff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.2: PME# supported from D3hot
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf7c35000-0xf7c350ff 64bit]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1f.3: reg 0x20: [io  0xf040-0xf05f]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: extended config space not accessible
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0: PCI bridge to [bus 01] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000c3fff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000cc000-0x000cffff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0x000dc000-0x000dffff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0:   bridge window [mem 0xdfa00000-0xfeafffff window] (subtractive decode)
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKA disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKB disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKC disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKD disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKE disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKF disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKG disabled
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Oct 07 15:03:53 furverts kernel: ACPI: PCI: Interrupt link LNKH disabled
Oct 07 15:03:53 furverts kernel: iommu: Default domain type: Translated 
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Oct 07 15:03:53 furverts kernel: vgaarb: loaded
Oct 07 15:03:53 furverts kernel: SCSI subsystem initialized
Oct 07 15:03:53 furverts kernel: libata version 3.00 loaded.
Oct 07 15:03:53 furverts kernel: ACPI: bus type USB registered
Oct 07 15:03:53 furverts kernel: usbcore: registered new interface driver usbfs
Oct 07 15:03:53 furverts kernel: usbcore: registered new interface driver hub
Oct 07 15:03:53 furverts kernel: usbcore: registered new device driver usb
Oct 07 15:03:53 furverts kernel: pps_core: LinuxPPS API ver. 1 registered
Oct 07 15:03:53 furverts kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Oct 07 15:03:53 furverts kernel: PTP clock support registered
Oct 07 15:03:53 furverts kernel: EDAC MC: Ver: 3.0.0
Oct 07 15:03:53 furverts kernel: Registered efivars operations
Oct 07 15:03:53 furverts kernel: NetLabel: Initializing
Oct 07 15:03:53 furverts kernel: NetLabel:  domain hash size = 128
Oct 07 15:03:53 furverts kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Oct 07 15:03:53 furverts kernel: NetLabel:  unlabeled traffic allowed by default
Oct 07 15:03:53 furverts kernel: PCI: Using ACPI for IRQ routing
Oct 07 15:03:53 furverts kernel: PCI: pci_cache_line_size set to 64 bytes
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0xd8417000-0xdbffffff]
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0xda18b000-0xdbffffff]
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0xdc7d3000-0xdfffffff]
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0xdd000000-0xdfffffff]
Oct 07 15:03:53 furverts kernel: e820: reserve RAM buffer [mem 0x41e000000-0x41fffffff]
Oct 07 15:03:53 furverts kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Oct 07 15:03:53 furverts kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Oct 07 15:03:53 furverts kernel: clocksource: Switched to clocksource tsc-early
Oct 07 15:03:53 furverts kernel: VFS: Disk quotas dquot_6.6.0
Oct 07 15:03:53 furverts kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 07 15:03:53 furverts kernel: AppArmor: AppArmor Filesystem Enabled
Oct 07 15:03:53 furverts kernel: pnp: PnP ACPI init
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0x1100-0x110f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0xffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0xffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0x0400-0x0453] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0x0458-0x047f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0x0500-0x057f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:02: [io  0x0454-0x0457] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:03: [io  0x0a00-0x0a2f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:03: [io  0x0a30-0x0a3f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:03: [io  0x0a40-0x0a4f] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:03: [io  0x0218-0x0219] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:04: [io  0x04d0-0x04d1] has been reserved
Oct 07 15:03:53 furverts kernel: pnp 00:05: [dma 0 disabled]
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xff000000-0xffffffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
Oct 07 15:03:53 furverts kernel: system 00:07: [mem 0xdfa00000-0xdfa00fff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:08: [mem 0x20000000-0x201fffff] has been reserved
Oct 07 15:03:53 furverts kernel: system 00:08: [mem 0x40004000-0x40004fff] has been reserved
Oct 07 15:03:53 furverts kernel: pnp: PnP ACPI: found 9 devices
Oct 07 15:03:53 furverts kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Oct 07 15:03:53 furverts kernel: NET: Registered PF_INET protocol family
Oct 07 15:03:53 furverts kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Oct 07 15:03:53 furverts kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Oct 07 15:03:53 furverts kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Oct 07 15:03:53 furverts kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Oct 07 15:03:53 furverts kernel: TCP: Hash tables configured (established 131072 bind 65536)
Oct 07 15:03:53 furverts kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Oct 07 15:03:53 furverts kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Oct 07 15:03:53 furverts kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Oct 07 15:03:53 furverts kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Oct 07 15:03:53 furverts kernel: NET: Registered PF_XDP protocol family
Oct 07 15:03:53 furverts kernel: pci 0000:00:1e.0: PCI bridge to [bus 01]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:00: resource 15 [mem 0xdfa00000-0xfeafffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 4 [io  0x0000-0x0cf7 window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 5 [io  0x0d00-0xffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 7 [mem 0x000c0000-0x000c3fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 8 [mem 0x000c4000-0x000c7fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 9 [mem 0x000c8000-0x000cbfff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 10 [mem 0x000cc000-0x000cffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 11 [mem 0x000d0000-0x000d3fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 12 [mem 0x000d4000-0x000d7fff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 13 [mem 0x000d8000-0x000dbfff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 14 [mem 0x000dc000-0x000dffff window]
Oct 07 15:03:53 furverts kernel: pci_bus 0000:01: resource 15 [mem 0xdfa00000-0xfeafffff window]
Oct 07 15:03:53 furverts kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Oct 07 15:03:53 furverts kernel: pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x740 took 20139 usecs
Oct 07 15:03:53 furverts kernel: pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x740 took 22792 usecs
Oct 07 15:03:53 furverts kernel: PCI: CLS 64 bytes, default 64
Oct 07 15:03:53 furverts kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 07 15:03:53 furverts kernel: software IO TLB: mapped [mem 0x00000000d3fd0000-0x00000000d7fd0000] (64MB)
Oct 07 15:03:53 furverts kernel: Trying to unpack rootfs image as initramfs...
Oct 07 15:03:53 furverts kernel: Initialise system trusted keyrings
Oct 07 15:03:53 furverts kernel: Key type blacklist registered
Oct 07 15:03:53 furverts kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
Oct 07 15:03:53 furverts kernel: zbud: loaded
Oct 07 15:03:53 furverts kernel: Key type asymmetric registered
Oct 07 15:03:53 furverts kernel: Asymmetric key parser 'x509' registered
Oct 07 15:03:53 furverts kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
Oct 07 15:03:53 furverts kernel: io scheduler mq-deadline registered
Oct 07 15:03:53 furverts kernel: io scheduler kyber registered
Oct 07 15:03:53 furverts kernel: io scheduler bfq registered
Oct 07 15:03:53 furverts kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Oct 07 15:03:53 furverts kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 07 15:03:53 furverts kernel: efifb: probing for efifb
Oct 07 15:03:53 furverts kernel: efifb: Ignoring BGRT: unexpected or invalid BMP data
Oct 07 15:03:53 furverts kernel: efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
Oct 07 15:03:53 furverts kernel: efifb: mode is 1024x768x32, linelength=4096, pages=1
Oct 07 15:03:53 furverts kernel: efifb: scrolling: redraw
Oct 07 15:03:53 furverts kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 07 15:03:53 furverts kernel: fbcon: Deferring console take-over
Oct 07 15:03:53 furverts kernel: fb0: EFI VGA frame buffer device
Oct 07 15:03:53 furverts kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Oct 07 15:03:53 furverts kernel: ACPI: button: Power Button [PWRB]
Oct 07 15:03:53 furverts kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Oct 07 15:03:53 furverts kernel: ACPI: button: Power Button [PWRF]
Oct 07 15:03:53 furverts kernel: thermal LNXTHERM:00: registered as thermal_zone0
Oct 07 15:03:53 furverts kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
Oct 07 15:03:53 furverts kernel: thermal LNXTHERM:01: registered as thermal_zone1
Oct 07 15:03:53 furverts kernel: ACPI: thermal: Thermal Zone [TZ01] (30 C)
Oct 07 15:03:53 furverts kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 07 15:03:53 furverts kernel: 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Oct 07 15:03:53 furverts kernel: serial 0000:00:16.3: enabling device (0000 -> 0003)
Oct 07 15:03:53 furverts kernel: 0000:00:16.3: ttyS4 at I/O 0xf0e0 (irq = 19, base_baud = 115200) is a 16550A
Oct 07 15:03:53 furverts kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Oct 07 15:03:53 furverts kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
Oct 07 15:03:53 furverts kernel: ahci 0000:00:1f.2: version 3.0
Oct 07 15:03:53 furverts kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Oct 07 15:03:53 furverts kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0xf impl SATA mode
Oct 07 15:03:53 furverts kernel: ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems sxs apst 
Oct 07 15:03:53 furverts kernel: Freeing initrd memory: 12792K
Oct 07 15:03:53 furverts kernel: scsi host0: ahci
Oct 07 15:03:53 furverts kernel: scsi host1: ahci
Oct 07 15:03:53 furverts kernel: scsi host2: ahci
Oct 07 15:03:53 furverts kernel: scsi host3: ahci
Oct 07 15:03:53 furverts kernel: scsi host4: ahci
Oct 07 15:03:53 furverts kernel: scsi host5: ahci
Oct 07 15:03:53 furverts kernel: ata1: SATA max UDMA/133 abar m2048@0xf7c36000 port 0xf7c36100 irq 26
Oct 07 15:03:53 furverts kernel: ata2: SATA max UDMA/133 abar m2048@0xf7c36000 port 0xf7c36180 irq 26
Oct 07 15:03:53 furverts kernel: ata3: SATA max UDMA/133 abar m2048@0xf7c36000 port 0xf7c36200 irq 26
Oct 07 15:03:53 furverts kernel: ata4: SATA max UDMA/133 abar m2048@0xf7c36000 port 0xf7c36280 irq 26
Oct 07 15:03:53 furverts kernel: ata5: DUMMY
Oct 07 15:03:53 furverts kernel: ata6: DUMMY
Oct 07 15:03:53 furverts kernel: usbcore: registered new interface driver usbserial_generic
Oct 07 15:03:53 furverts kernel: usbserial: USB Serial support registered for generic
Oct 07 15:03:53 furverts kernel: rtc_cmos 00:01: RTC can wake from S4
Oct 07 15:03:53 furverts kernel: rtc_cmos 00:01: registered as rtc0
Oct 07 15:03:53 furverts kernel: rtc_cmos 00:01: setting system clock to 2021-10-07T22:03:48 UTC (1633644228)
Oct 07 15:03:53 furverts kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Oct 07 15:03:53 furverts kernel: intel_pstate: Intel P-state driver initializing
Oct 07 15:03:53 furverts kernel: ledtrig-cpu: registered to indicate activity on CPUs
Oct 07 15:03:53 furverts kernel: drop_monitor: Initializing network drop monitor service
Oct 07 15:03:53 furverts kernel: IPv6: Loaded, but administratively disabled, reboot required to enable
Oct 07 15:03:53 furverts kernel: NET: Registered PF_PACKET protocol family
Oct 07 15:03:53 furverts kernel: microcode: sig=0x306a9, pf=0x2, revision=0x21
Oct 07 15:03:53 furverts kernel: microcode: Microcode Update Driver: v2.2.
Oct 07 15:03:53 furverts kernel: IPI shorthand broadcast: enabled
Oct 07 15:03:53 furverts kernel: sched_clock: Marking stable (1998188872, 294717)->(2002231373, -3747784)
Oct 07 15:03:53 furverts kernel: registered taskstats version 1
Oct 07 15:03:53 furverts kernel: Loading compiled-in X.509 certificates
Oct 07 15:03:53 furverts kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 88ea51287729b4288c4a60a95996e045da4d283e'
Oct 07 15:03:53 furverts kernel: zswap: loaded using pool lz4/z3fold
Oct 07 15:03:53 furverts kernel: zswap: debugfs initialization failed
Oct 07 15:03:53 furverts kernel: Key type ._fscrypt registered
Oct 07 15:03:53 furverts kernel: Key type .fscrypt registered
Oct 07 15:03:53 furverts kernel: Key type fscrypt-provisioning registered
Oct 07 15:03:53 furverts kernel: AppArmor: AppArmor sha1 policy hashing enabled
Oct 07 15:03:53 furverts kernel: PM:   Magic number: 9:398:97
Oct 07 15:03:53 furverts kernel: RAS: Correctable Errors collector initialized.
Oct 07 15:03:53 furverts kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Oct 07 15:03:53 furverts kernel: ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Oct 07 15:03:53 furverts kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Oct 07 15:03:53 furverts kernel: ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Oct 07 15:03:53 furverts kernel: ata1.00: ATA-8: ST250DM000-1BD141, KC65, max UDMA/100
Oct 07 15:03:53 furverts kernel: ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 32)
Oct 07 15:03:53 furverts kernel: ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Oct 07 15:03:53 furverts kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Oct 07 15:03:53 furverts kernel: ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Oct 07 15:03:53 furverts kernel: ata1.00: configured for UDMA/100
Oct 07 15:03:53 furverts kernel: scsi 0:0:0:0: Direct-Access     ATA      ST250DM000-1BD14 KC65 PQ: 0 ANSI: 5
Oct 07 15:03:53 furverts kernel: sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
Oct 07 15:03:53 furverts kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
Oct 07 15:03:53 furverts kernel: sd 0:0:0:0: [sda] Write Protect is off
Oct 07 15:03:53 furverts kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 07 15:03:53 furverts kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 07 15:03:53 furverts kernel:  sda: sda1 sda2 sda3
Oct 07 15:03:53 furverts kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Oct 07 15:03:53 furverts kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 07 15:03:53 furverts kernel: ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Oct 07 15:03:53 furverts kernel: ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Oct 07 15:03:53 furverts kernel: ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Oct 07 15:03:53 furverts kernel: ata2.00: ATA-8: WDC WD10EADS-00M2B0, 01.00A01, max UDMA/133
Oct 07 15:03:53 furverts kernel: ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Oct 07 15:03:53 furverts kernel: ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Oct 07 15:03:53 furverts kernel: ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Oct 07 15:03:53 furverts kernel: ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Oct 07 15:03:53 furverts kernel: ata2.00: configured for UDMA/133
Oct 07 15:03:53 furverts kernel: scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EADS-00M 0A01 PQ: 0 ANSI: 5
Oct 07 15:03:53 furverts kernel: sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Oct 07 15:03:53 furverts kernel: sd 1:0:0:0: [sdb] Write Protect is off
Oct 07 15:03:53 furverts kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Oct 07 15:03:53 furverts kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 07 15:03:53 furverts kernel:  sdb: sdb1 sdb2
Oct 07 15:03:53 furverts kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
Oct 07 15:03:53 furverts kernel: tsc: Refined TSC clocksource calibration: 3192.748 MHz
Oct 07 15:03:53 furverts kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e05875245f, max_idle_ns: 440795336287 ns
Oct 07 15:03:53 furverts kernel: clocksource: Switched to clocksource tsc
Oct 07 15:03:53 furverts kernel: ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 07 15:03:53 furverts kernel: ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Oct 07 15:03:53 furverts kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Oct 07 15:03:53 furverts kernel: ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Oct 07 15:03:53 furverts kernel: ata3.00: ATAPI: hp       CDDVDW TS-H653T, H6D1, max UDMA/100
Oct 07 15:03:53 furverts kernel: ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Oct 07 15:03:53 furverts kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Oct 07 15:03:53 furverts kernel: ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Oct 07 15:03:53 furverts kernel: ata3.00: configured for UDMA/100
Oct 07 15:03:53 furverts kernel: scsi 2:0:0:0: CD-ROM            hp       CDDVDW TS-H653T  H6D1 PQ: 0 ANSI: 5
Oct 07 15:03:53 furverts kernel: ata4: SATA link down (SStatus 0 SControl 300)
Oct 07 15:03:53 furverts kernel: Freeing unused decrypted memory: 2036K
Oct 07 15:03:53 furverts kernel: Freeing unused kernel image (initmem) memory: 2172K
Oct 07 15:03:53 furverts kernel: Write protecting the kernel read-only data: 22528k
Oct 07 15:03:53 furverts kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Oct 07 15:03:53 furverts kernel: Freeing unused kernel image (rodata/data gap) memory: 1516K
Oct 07 15:03:53 furverts kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Oct 07 15:03:53 furverts kernel: rodata_test: all tests were successful
Oct 07 15:03:53 furverts kernel: x86/mm: Checking user space page tables
Oct 07 15:03:53 furverts kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Oct 07 15:03:53 furverts kernel: Run /init as init process
Oct 07 15:03:53 furverts kernel:   with arguments:
Oct 07 15:03:53 furverts kernel:     /init
Oct 07 15:03:53 furverts kernel:   with environment:
Oct 07 15:03:53 furverts kernel:     HOME=/
Oct 07 15:03:53 furverts kernel:     TERM=linux
Oct 07 15:03:53 furverts kernel:     pti=on
Oct 07 15:03:53 furverts kernel:     BOOT_IMAGE=/vmlinuz-linux-hardened
Oct 07 15:03:53 furverts kernel: fbcon: Taking over console
Oct 07 15:03:53 furverts kernel: Console: switching to colour frame buffer device 128x48
Oct 07 15:03:53 furverts kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 07 15:03:53 furverts kernel: ehci-pci: EHCI PCI platform driver
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1a.0: debug port 2
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7c38000
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Oct 07 15:03:53 furverts kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Oct 07 15:03:53 furverts kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 07 15:03:53 furverts kernel: usb usb1: Product: EHCI Host Controller
Oct 07 15:03:53 furverts kernel: usb usb1: Manufacturer: Linux 5.14.9-hardened1-1-hardened ehci_hcd
Oct 07 15:03:53 furverts kernel: usb usb1: SerialNumber: 0000:00:1a.0
Oct 07 15:03:53 furverts kernel: hub 1-0:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 1-0:1.0: 3 ports detected
Oct 07 15:03:53 furverts kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Oct 07 15:03:53 furverts kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Oct 07 15:03:53 furverts kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x000000000000b930
Oct 07 15:03:53 furverts kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Oct 07 15:03:53 furverts kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Oct 07 15:03:53 furverts kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Oct 07 15:03:53 furverts kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Oct 07 15:03:53 furverts kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 07 15:03:53 furverts kernel: usb usb2: Product: xHCI Host Controller
Oct 07 15:03:53 furverts kernel: usb usb2: Manufacturer: Linux 5.14.9-hardened1-1-hardened xhci-hcd
Oct 07 15:03:53 furverts kernel: usb usb2: SerialNumber: 0000:00:14.0
Oct 07 15:03:53 furverts kernel: hub 2-0:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 2-0:1.0: 4 ports detected
Oct 07 15:03:53 furverts kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.14
Oct 07 15:03:53 furverts kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 07 15:03:53 furverts kernel: usb usb3: Product: xHCI Host Controller
Oct 07 15:03:53 furverts kernel: usb usb3: Manufacturer: Linux 5.14.9-hardened1-1-hardened xhci-hcd
Oct 07 15:03:53 furverts kernel: usb usb3: SerialNumber: 0000:00:14.0
Oct 07 15:03:53 furverts kernel: hub 3-0:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 3-0:1.0: 4 ports detected
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1d.0: debug port 2
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7c37000
Oct 07 15:03:53 furverts kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Oct 07 15:03:53 furverts kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Oct 07 15:03:53 furverts kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 07 15:03:53 furverts kernel: usb usb4: Product: EHCI Host Controller
Oct 07 15:03:53 furverts kernel: usb usb4: Manufacturer: Linux 5.14.9-hardened1-1-hardened ehci_hcd
Oct 07 15:03:53 furverts kernel: usb usb4: SerialNumber: 0000:00:1d.0
Oct 07 15:03:53 furverts kernel: hub 4-0:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 4-0:1.0: 3 ports detected
Oct 07 15:03:53 furverts kernel: sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
Oct 07 15:03:53 furverts kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 07 15:03:53 furverts kernel: sr 2:0:0:0: Attached scsi CD-ROM sr0
Oct 07 15:03:53 furverts kernel: random: fast init done
Oct 07 15:03:53 furverts kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Oct 07 15:03:53 furverts kernel: usb 2-1: new full-speed USB device number 2 using xhci_hcd
Oct 07 15:03:53 furverts kernel: usb 4-1: new high-speed USB device number 2 using ehci-pci
Oct 07 15:03:53 furverts kernel: usb 2-1: New USB device found, idVendor=0557, idProduct=8021, bcdDevice= 1.00
Oct 07 15:03:53 furverts kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 07 15:03:53 furverts kernel: hub 2-1:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 2-1:1.0: 4 ports detected
Oct 07 15:03:53 furverts kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
Oct 07 15:03:53 furverts kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 07 15:03:53 furverts kernel: hub 1-1:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 1-1:1.0: 6 ports detected
Oct 07 15:03:53 furverts kernel: usb 4-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
Oct 07 15:03:53 furverts kernel: usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 07 15:03:53 furverts kernel: hub 4-1:1.0: USB hub found
Oct 07 15:03:53 furverts kernel: hub 4-1:1.0: 8 ports detected
Oct 07 15:03:53 furverts kernel: usb 2-1.3: new low-speed USB device number 3 using xhci_hcd
Oct 07 15:03:53 furverts kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Oct 07 15:03:53 furverts kernel: usb 2-1.3: New USB device found, idVendor=0557, idProduct=2212, bcdDevice= 1.00
Oct 07 15:03:53 furverts kernel: usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 07 15:03:53 furverts kernel: usb 2-1.3: Product: USB KVM SWITCH
Oct 07 15:03:53 furverts kernel: usb 2-1.3: Manufacturer: KVM
Oct 07 15:03:53 furverts systemd[1]: systemd 249.4-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Oct 07 15:03:53 furverts systemd[1]: Detected architecture x86-64.
Oct 07 15:03:53 furverts systemd[1]: Hostname set to <furverts>.
Oct 07 15:03:53 furverts kernel: random: crng init done
Oct 07 15:03:53 furverts systemd[1]: Queued start job for default target Graphical Interface.
Oct 07 15:03:53 furverts systemd[1]: Created slice Slice /system/getty.
Oct 07 15:03:53 furverts systemd[1]: Created slice Slice /system/modprobe.
Oct 07 15:03:53 furverts systemd[1]: Created slice Slice /system/systemd-fsck.
Oct 07 15:03:53 furverts systemd[1]: Created slice User and Session Slice.
Oct 07 15:03:53 furverts systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Oct 07 15:03:53 furverts systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Oct 07 15:03:53 furverts systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Oct 07 15:03:53 furverts systemd[1]: Reached target Local Encrypted Volumes.
Oct 07 15:03:53 furverts systemd[1]: Reached target Path Units.
Oct 07 15:03:53 furverts systemd[1]: Reached target Remote File Systems.
Oct 07 15:03:53 furverts systemd[1]: Reached target Slice Units.
Oct 07 15:03:53 furverts systemd[1]: Reached target Local Verity Integrity Protected Volumes.
Oct 07 15:03:53 furverts systemd[1]: Listening on Device-mapper event daemon FIFOs.
Oct 07 15:03:53 furverts systemd[1]: Listening on Process Core Dump Socket.
Oct 07 15:03:53 furverts systemd[1]: Listening on Journal Audit Socket.
Oct 07 15:03:53 furverts systemd[1]: Listening on Journal Socket (/dev/log).
Oct 07 15:03:53 furverts systemd[1]: Listening on Journal Socket.
Oct 07 15:03:53 furverts systemd[1]: Listening on Network Service Netlink Socket.
Oct 07 15:03:53 furverts systemd[1]: Listening on udev Control Socket.
Oct 07 15:03:53 furverts systemd[1]: Listening on udev Kernel Socket.
Oct 07 15:03:53 furverts systemd[1]: Mounting Huge Pages File System...
Oct 07 15:03:53 furverts systemd[1]: Mounting POSIX Message Queue File System...
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Kernel Debug File System being skipped.
Oct 07 15:03:53 furverts systemd[1]: Mounting Kernel Trace File System...
Oct 07 15:03:53 furverts systemd[1]: Starting Load AppArmor profiles...
Oct 07 15:03:53 furverts systemd[1]: Starting Create List of Static Device Nodes...
Oct 07 15:03:53 furverts systemd[1]: Starting Load Kernel Module configfs...
Oct 07 15:03:53 furverts systemd[1]: Starting Load Kernel Module drm...
Oct 07 15:03:53 furverts systemd[1]: Starting Load Kernel Module fuse...
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Oct 07 15:03:53 furverts systemd[1]: Starting Journal Service...
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
Oct 07 15:03:53 furverts systemd[1]: Starting Remount Root and Kernel File Systems...
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Oct 07 15:03:53 furverts systemd[1]: Starting Apply Kernel Variables...
Oct 07 15:03:53 furverts systemd[1]: Starting Coldplug All udev Devices...
Oct 07 15:03:53 furverts systemd[1]: Mounted POSIX Message Queue File System.
Oct 07 15:03:53 furverts systemd[1]: Mounted Kernel Trace File System.
Oct 07 15:03:53 furverts systemd[1]: modprobe@configfs.service: Deactivated successfully.
Oct 07 15:03:53 furverts systemd[1]: Finished Load Kernel Module configfs.
Oct 07 15:03:53 furverts systemd[1]: Mounting Kernel Configuration File System...
Oct 07 15:03:53 furverts systemd[1]: Finished Create List of Static Device Nodes.
Oct 07 15:03:53 furverts systemd[1]: Mounted Huge Pages File System.
Oct 07 15:03:53 furverts systemd[1]: Mounted Kernel Configuration File System.
Oct 07 15:03:53 furverts kernel: EXT4-fs (sda2): re-mounted. Opts: (null). Quota mode: none.
Oct 07 15:03:53 furverts systemd[1]: Finished Remount Root and Kernel File Systems.
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Oct 07 15:03:53 furverts systemd[1]: Starting Load/Save Random Seed...
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Create System Users being skipped.
Oct 07 15:03:53 furverts systemd[1]: Starting Create Static Device Nodes in /dev...
Oct 07 15:03:53 furverts systemd[1]: Finished Apply Kernel Variables.
Oct 07 15:03:53 furverts kernel: fuse: init (API version 7.34)
Oct 07 15:03:53 furverts systemd-journald[202]: Journal started
Oct 07 15:03:53 furverts systemd-journald[202]: Runtime Journal (/run/log/journal/9ac1183f84ff46a8b8eaff0f76740aca) is 8.0M, max 794.3M, 786.3M free.
Oct 07 15:03:53 furverts apparmor.systemd[197]: Restarting AppArmor
Oct 07 15:03:53 furverts apparmor.systemd[197]: Reloading AppArmor profiles
Oct 07 15:03:53 furverts systemd[1]: Starting CLI Netfilter Manager...
Oct 07 15:03:53 furverts systemd[1]: Started Journal Service.
Oct 07 15:03:53 furverts kernel: audit: type=1130 audit(1633644233.670:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts systemd[1]: modprobe@drm.service: Deactivated successfully.
Oct 07 15:03:53 furverts systemd[1]: Finished Load Kernel Module drm.
Oct 07 15:03:53 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts systemd[1]: modprobe@fuse.service: Deactivated successfully.
Oct 07 15:03:53 furverts systemd[1]: Finished Load Kernel Module fuse.
Oct 07 15:03:53 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts systemd[1]: Mounting FUSE Control File System...
Oct 07 15:03:53 furverts kernel: audit: type=1130 audit(1633644233.674:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts kernel: audit: type=1131 audit(1633644233.674:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts kernel: audit: type=1130 audit(1633644233.674:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts kernel: audit: type=1131 audit(1633644233.674:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts systemd[1]: Starting Flush Journal to Persistent Storage...
Oct 07 15:03:53 furverts systemd[1]: Mounted FUSE Control File System.
Oct 07 15:03:53 furverts systemd[1]: Finished Coldplug All udev Devices.
Oct 07 15:03:53 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts kernel: audit: type=1130 audit(1633644233.740:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts systemd-journald[202]: Time spent on flushing to /var/log/journal/9ac1183f84ff46a8b8eaff0f76740aca is 527.598ms for 800 entries.
Oct 07 15:03:53 furverts systemd-journald[202]: System Journal (/var/log/journal/9ac1183f84ff46a8b8eaff0f76740aca) is 41.0M, max 50.0M, 8.9M free.
Oct 07 15:03:56 furverts kernel: audit: type=1130 audit(1633644233.874:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:56 furverts kernel: audit: type=1130 audit(1633644233.940:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:56 furverts kernel: audit: type=1334 audit(1633644233.940:10): prog-id=6 op=LOAD
Oct 07 15:03:56 furverts kernel: audit: type=1334 audit(1633644233.944:11): prog-id=7 op=LOAD
Oct 07 15:03:53 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts audit: BPF prog-id=6 op=LOAD
Oct 07 15:03:53 furverts audit: BPF prog-id=7 op=LOAD
Oct 07 15:03:53 furverts audit: BPF prog-id=8 op=LOAD
Oct 07 15:03:54 furverts audit[222]: NETFILTER_CFG table=filter family=2 entries=0 op=xt_register pid=222 subj==unconfined comm="modprobe"
Oct 07 15:03:54 furverts audit[222]: SYSCALL arch=c000003e syscall=175 success=yes exit=0 a0=613770e44010 a1=2419 a2=bf96a05b270 a3=ffffffffffffffb8 items=0 ppid=103 pid=222 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="modprobe" exe="/usr/bin/kmod" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F6D6F6470726F6265002D71002D2D0069707461626C655F66696C746572
Oct 07 15:03:54 furverts audit[235]: NETFILTER_CFG table=filter family=2 entries=4 op=xt_replace pid=235 subj==unconfined comm="iptables-restor"
Oct 07 15:03:54 furverts audit[235]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=a796f5662c0 items=0 ppid=220 pid=235 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:54 furverts audit[225]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=225 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[225]: SYSCALL arch=c000003e syscall=1 success=yes exit=23009 a0=7 a1=e01d54c73b0 a2=59e1 a3=0 items=0 ppid=218 pid=225 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[226]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=226 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[226]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=226 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[226]: SYSCALL arch=c000003e syscall=1 success=yes exit=37299 a0=7 a1=e01d54c73b0 a2=91b3 a3=0 items=0 ppid=218 pid=226 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[224]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="ping" pid=224 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[224]: SYSCALL arch=c000003e syscall=1 success=yes exit=32505 a0=7 a1=e01d54c73b0 a2=7ef9 a3=0 items=0 ppid=218 pid=224 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[227]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="php-fpm" pid=227 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[227]: SYSCALL arch=c000003e syscall=1 success=yes exit=42113 a0=7 a1=e01d54c7280 a2=a481 a3=0 items=0 ppid=218 pid=227 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[239]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="klogd" pid=239 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[239]: SYSCALL arch=c000003e syscall=1 success=yes exit=18209 a0=7 a1=e01d54bf2b0 a2=4721 a3=0 items=0 ppid=218 pid=239 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[241]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="syslogd" pid=241 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[241]: SYSCALL arch=c000003e syscall=1 success=yes exit=34881 a0=7 a1=e01d54ca530 a2=8841 a3=0 items=0 ppid=218 pid=241 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[240]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="syslog-ng" pid=240 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[240]: SYSCALL arch=c000003e syscall=1 success=yes exit=44065 a0=7 a1=e01d54ca960 a2=ac21 a3=0 items=0 ppid=218 pid=240 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[238]: NETFILTER_CFG table=filter family=2 entries=4 op=xt_replace pid=238 subj==unconfined comm="iptables-restor"
Oct 07 15:03:54 furverts audit[238]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=918f812ed70 items=0 ppid=220 pid=238 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:54 furverts audit[243]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-anvil" pid=243 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[243]: SYSCALL arch=c000003e syscall=1 success=yes exit=18369 a0=7 a1=e01d54bf5a0 a2=47c1 a3=0 items=0 ppid=218 pid=243 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[244]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-auth" pid=244 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[244]: SYSCALL arch=c000003e syscall=1 success=yes exit=42617 a0=7 a1=e01d54cc180 a2=a679 a3=0 items=0 ppid=218 pid=244 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[245]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-config" pid=245 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[245]: SYSCALL arch=c000003e syscall=1 success=yes exit=34177 a0=7 a1=e01d54c9fa0 a2=8581 a3=0 items=0 ppid=218 pid=245 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[242]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/apache2/mpm-prefork/apache2" pid=242 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[242]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/apache2/mpm-prefork/apache2//DEFAULT_URI" pid=242 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[242]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/apache2/mpm-prefork/apache2//HANDLING_UNTRUSTED_INPUT" pid=242 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[242]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/apache2/mpm-prefork/apache2//phpsysinfo" pid=242 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[242]: SYSCALL arch=c000003e syscall=1 success=yes exit=73204 a0=7 a1=6a17919a9010 a2=11df4 a3=0 items=0 ppid=218 pid=242 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:54 furverts audit: BPF prog-id=9 op=LOAD
Oct 07 15:03:54 furverts audit[250]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-dict" pid=250 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[250]: SYSCALL arch=c000003e syscall=1 success=yes exit=35441 a0=7 a1=e01d54ca0d0 a2=8a71 a3=0 items=0 ppid=218 pid=250 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[249]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-deliver" pid=249 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[249]: SYSCALL arch=c000003e syscall=1 success=yes exit=34481 a0=7 a1=e01d54ca190 a2=86b1 a3=0 items=0 ppid=218 pid=249 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[251]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-dovecot-auth" pid=251 comm="apparmor_parser"
Oct 07 15:03:54 furverts audit[251]: SYSCALL arch=c000003e syscall=1 success=yes exit=38929 a0=7 a1=e01d54cba90 a2=9811 a3=0 items=0 ppid=218 pid=251 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:54 furverts audit[247]: NETFILTER_CFG table=filter family=2 entries=58 op=xt_replace pid=247 subj==unconfined comm="iptables-restor"
Oct 07 15:03:54 furverts audit[247]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=bfd2d90bbe0 items=0 ppid=220 pid=247 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:54 furverts audit[284]: NETFILTER_CFG table=filter family=2 entries=60 op=xt_replace pid=284 subj==unconfined comm="iptables-restor"
Oct 07 15:03:54 furverts audit[284]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=cf775f8bd30 items=0 ppid=220 pid=284 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:54 furverts audit[287]: NETFILTER_CFG table=filter family=2 entries=64 op=xt_replace pid=287 subj==unconfined comm="iptables-restor"
Oct 07 15:03:54 furverts audit[287]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=2b039e17910 items=0 ppid=220 pid=287 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:54 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:55 furverts audit[252]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-dovecot-lda" pid=252 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[252]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-dovecot-lda//sendmail" pid=252 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[252]: SYSCALL arch=c000003e syscall=1 success=yes exit=80067 a0=7 a1=e01d54d0d40 a2=138c3 a3=0 items=0 ppid=218 pid=252 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[280]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-imap-login" pid=280 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[280]: SYSCALL arch=c000003e syscall=1 success=yes exit=19561 a0=7 a1=e01d54c7410 a2=4c69 a3=0 items=0 ppid=218 pid=280 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[279]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-imap" pid=279 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[279]: SYSCALL arch=c000003e syscall=1 success=yes exit=35385 a0=7 a1=e01d54c74a0 a2=8a39 a3=0 items=0 ppid=218 pid=279 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[289]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-log" pid=289 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[289]: SYSCALL arch=c000003e syscall=1 success=yes exit=17937 a0=7 a1=e01d54bf250 a2=4611 a3=0 items=0 ppid=218 pid=289 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[281]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-lmtp" pid=281 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[281]: SYSCALL arch=c000003e syscall=1 success=yes exit=35705 a0=7 a1=e01d54c7260 a2=8b79 a3=0 items=0 ppid=218 pid=281 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[290]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-managesieve" pid=290 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[290]: SYSCALL arch=c000003e syscall=1 success=yes exit=20001 a0=7 a1=e01d54bf360 a2=4e21 a3=0 items=0 ppid=218 pid=290 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[291]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-managesieve-login" pid=291 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[291]: SYSCALL arch=c000003e syscall=1 success=yes exit=20233 a0=7 a1=e01d54bf250 a2=4f09 a3=0 items=0 ppid=218 pid=291 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[292]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-pop3" pid=292 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[292]: SYSCALL arch=c000003e syscall=1 success=yes exit=33729 a0=7 a1=e01d54c9600 a2=83c1 a3=0 items=0 ppid=218 pid=292 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:55 furverts audit[294]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-script-login" pid=294 comm="apparmor_parser"
Oct 07 15:03:55 furverts audit[294]: SYSCALL arch=c000003e syscall=1 success=yes exit=33505 a0=7 a1=e01d54c9310 a2=82e1 a3=0 items=0 ppid=218 pid=294 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:55 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[295]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-ssl-params" pid=295 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[295]: SYSCALL arch=c000003e syscall=1 success=yes exit=19233 a0=7 a1=e01d54bf170 a2=4b21 a3=0 items=0 ppid=218 pid=295 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:53 furverts systemd[1]: Finished Load/Save Random Seed.
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in First Boot Complete being skipped.
Oct 07 15:03:53 furverts systemd[1]: Finished Create Static Device Nodes in /dev.
Oct 07 15:03:53 furverts systemd[1]: Reached target Preparation for Local File Systems.
Oct 07 15:03:53 furverts systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Oct 07 15:03:53 furverts systemd[1]: Starting Rule-based Manager for Device Events and Files...
Oct 07 15:03:54 furverts systemd[1]: Started Rule-based Manager for Device Events and Files.
Oct 07 15:03:54 furverts systemd[1]: Starting Network Configuration...
Oct 07 15:03:56 furverts systemd[1]: Finished Flush Journal to Persistent Storage.
Oct 07 15:03:56 furverts audit[293]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-pop3-login" pid=293 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[293]: SYSCALL arch=c000003e syscall=1 success=yes exit=19593 a0=7 a1=e01d54bf2b0 a2=4c89 a3=0 items=0 ppid=218 pid=293 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[296]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot-stats" pid=296 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[296]: SYSCALL arch=c000003e syscall=1 success=yes exit=18121 a0=7 a1=e01d54bf920 a2=46c9 a3=0 items=0 ppid=218 pid=296 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[297]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="apache2" pid=297 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[297]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="apache2//DEFAULT_URI" pid=297 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[297]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="apache2//HANDLING_UNTRUSTED_INPUT" pid=297 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[297]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="apache2//phpsysinfo" pid=297 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[297]: SYSCALL arch=c000003e syscall=1 success=yes exit=70748 a0=7 a1=6a17919a9010 a2=1145c a3=0 items=0 ppid=218 pid=297 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts kernel: input: PC Speaker as /devices/platform/pcspkr/input/input2
Oct 07 15:03:56 furverts audit[301]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dovecot" pid=301 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[301]: SYSCALL arch=c000003e syscall=1 success=yes exit=44161 a0=7 a1=e01d54cad00 a2=ac81 a3=0 items=0 ppid=218 pid=301 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[302]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="identd" pid=302 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[302]: SYSCALL arch=c000003e syscall=1 success=yes exit=32545 a0=7 a1=e01d54c6400 a2=7f21 a3=0 items=0 ppid=218 pid=302 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[303]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="mdnsd" pid=303 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[303]: SYSCALL arch=c000003e syscall=1 success=yes exit=32425 a0=7 a1=e01d54c62c0 a2=7ea9 a3=0 items=0 ppid=218 pid=303 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[305]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nscd" pid=305 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[305]: SYSCALL arch=c000003e syscall=1 success=yes exit=33769 a0=7 a1=e01d54c8850 a2=83e9 a3=0 items=0 ppid=218 pid=305 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts systemd-networkd[257]: lo: Link UP
Oct 07 15:03:56 furverts systemd-networkd[257]: lo: Gained carrier
Oct 07 15:03:56 furverts systemd-networkd[257]: Enumeration completed
Oct 07 15:03:56 furverts systemd[1]: Started Network Configuration.
Oct 07 15:03:56 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:56 furverts audit[304]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nmbd" pid=304 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[304]: SYSCALL arch=c000003e syscall=1 success=yes exit=34857 a0=7 a1=e01d54c6210 a2=8829 a3=0 items=0 ppid=218 pid=304 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[307]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="smbd" pid=307 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[307]: SYSCALL arch=c000003e syscall=1 success=yes exit=42785 a0=7 a1=e01d54ca700 a2=a721 a3=0 items=0 ppid=218 pid=307 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[298]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="avahi-daemon" pid=298 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[298]: SYSCALL arch=c000003e syscall=1 success=yes exit=36217 a0=7 a1=e01d54c9300 a2=8d79 a3=0 items=0 ppid=218 pid=298 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[300]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dnsmasq" pid=300 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[300]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="dnsmasq//libvirt_leaseshelper" pid=300 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[300]: SYSCALL arch=c000003e syscall=1 success=yes exit=65555 a0=7 a1=e01d54c9080 a2=10013 a3=0 items=0 ppid=218 pid=300 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[306]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="ntpd" pid=306 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[306]: SYSCALL arch=c000003e syscall=1 success=yes exit=38473 a0=7 a1=e01d54c8690 a2=9649 a3=0 items=0 ppid=218 pid=306 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[311]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="traceroute" pid=311 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[311]: SYSCALL arch=c000003e syscall=1 success=yes exit=34097 a0=7 a1=e01d54c8410 a2=8531 a3=0 items=0 ppid=218 pid=311 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[312]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="winbindd" pid=312 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[312]: SYSCALL arch=c000003e syscall=1 success=yes exit=37705 a0=7 a1=e01d54c80b0 a2=9349 a3=0 items=0 ppid=218 pid=312 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts audit[288]: NETFILTER_CFG table=filter family=2 entries=73 op=xt_replace pid=288 subj==unconfined comm="iptables-restor"
Oct 07 15:03:56 furverts audit[288]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=1d86816cc90 items=0 ppid=220 pid=288 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:56 furverts audit[310]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="smbldap-useradd" pid=310 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[310]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="smbldap-useradd///etc/init.d/nscd" pid=310 comm="apparmor_parser"
Oct 07 15:03:56 furverts audit[310]: SYSCALL arch=c000003e syscall=1 success=yes exit=70242 a0=7 a1=e01d54cfc20 a2=11262 a3=0 items=0 ppid=218 pid=310 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="apparmor_parser" exe="/usr/bin/apparmor_parser" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=2F7362696E2F61707061726D6F725F706172736572002D2D7265706C616365002D2D002F6574632F61707061726D6F722E64
Oct 07 15:03:56 furverts systemd[1]: Finished Load AppArmor profiles.
Oct 07 15:03:56 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=apparmor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:56 furverts kernel: EDAC ie31200: No ECC support
Oct 07 15:03:56 furverts kernel: EDAC ie31200: No ECC support
Oct 07 15:03:56 furverts kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20210604/utaddress-204)
Oct 07 15:03:56 furverts kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Oct 07 15:03:56 furverts kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20210604/utaddress-204)
Oct 07 15:03:56 furverts kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Oct 07 15:03:56 furverts kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000053F (\GPRE) (20210604/utaddress-204)
Oct 07 15:03:56 furverts kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20210604/utaddress-204)
Oct 07 15:03:56 furverts kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Oct 07 15:03:56 furverts kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000053F (\GPRE) (20210604/utaddress-204)
Oct 07 15:03:56 furverts kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20210604/utaddress-204)
Oct 07 15:03:56 furverts kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Oct 07 15:03:56 furverts kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Oct 07 15:03:56 furverts audit[317]: NETFILTER_CFG table=filter family=2 entries=99 op=xt_replace pid=317 subj==unconfined comm="iptables-restor"
Oct 07 15:03:56 furverts audit[317]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=94ff0b72790 items=0 ppid=220 pid=317 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:56 furverts audit[326]: NETFILTER_CFG table=filter family=2 entries=106 op=xt_replace pid=326 subj==unconfined comm="iptables-restor"
Oct 07 15:03:56 furverts audit[326]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=a22b589bcf0 items=0 ppid=220 pid=326 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:56 furverts kernel: i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
Oct 07 15:03:56 furverts kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Oct 07 15:03:56 furverts kernel: e1000e: Intel(R) PRO/1000 Network Driver
Oct 07 15:03:56 furverts kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Oct 07 15:03:56 furverts kernel: i2c i2c-0: 4/4 memory slots populated (from DMI)
Oct 07 15:03:56 furverts kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Oct 07 15:03:56 furverts kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
Oct 07 15:03:56 furverts kernel: i2c i2c-0: Successfully instantiated SPD at 0x51
Oct 07 15:03:56 furverts kernel: i2c i2c-0: Successfully instantiated SPD at 0x52
Oct 07 15:03:56 furverts kernel: i2c i2c-0: Successfully instantiated SPD at 0x53
Oct 07 15:03:56 furverts kernel: tpm_tis 00:06: 1.2 TPM (device-id 0xFE, rev-id 71)
Oct 07 15:03:56 furverts systemd[1]: Found device WDC_WD10EADS-00M2B0 2.
Oct 07 15:03:56 furverts systemd[1]: Starting File System Check on /dev/disk/by-uuid/ba19b9ef-af9e-41c0-acf8-49085e4dc13c...
Oct 07 15:03:56 furverts systemd[1]: Found device WDC_WD10EADS-00M2B0 1.
Oct 07 15:03:56 furverts systemd[1]: Starting File System Check on /dev/disk/by-uuid/b6c184f3-405b-4630-ad99-e124883391a0...
Oct 07 15:03:56 furverts kernel: tpm tpm0: TPM is disabled/deactivated (0x6)
Oct 07 15:03:56 furverts kernel: e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
Oct 07 15:03:56 furverts kernel: Linux agpgart interface v0.103
Oct 07 15:03:56 furverts kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 44:37:e6:c8:20:22
Oct 07 15:03:56 furverts kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Oct 07 15:03:56 furverts kernel: e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
Oct 07 15:03:56 furverts kernel: at24 0-0050: supply vcc not found, using dummy regulator
Oct 07 15:03:56 furverts kernel: at24 0-0050: 256 byte spd EEPROM, read-only
Oct 07 15:03:56 furverts kernel: at24 0-0051: supply vcc not found, using dummy regulator
Oct 07 15:03:56 furverts kernel: at24 0-0051: 256 byte spd EEPROM, read-only
Oct 07 15:03:56 furverts kernel: at24 0-0052: supply vcc not found, using dummy regulator
Oct 07 15:03:56 furverts kernel: at24 0-0052: 256 byte spd EEPROM, read-only
Oct 07 15:03:56 furverts kernel: at24 0-0053: supply vcc not found, using dummy regulator
Oct 07 15:03:56 furverts kernel: at24 0-0053: 256 byte spd EEPROM, read-only
Oct 07 15:03:56 furverts systemd-udevd[264]: Using default interface naming scheme 'v249'.
Oct 07 15:03:56 furverts audit[327]: NETFILTER_CFG table=filter family=2 entries=122 op=xt_replace pid=327 subj==unconfined comm="iptables-restor"
Oct 07 15:03:56 furverts audit[327]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=d2b32d19290 items=0 ppid=220 pid=327 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:56 furverts audit[349]: NETFILTER_CFG table=filter family=2 entries=133 op=xt_replace pid=349 subj==unconfined comm="iptables-restor"
Oct 07 15:03:56 furverts audit[349]: SYSCALL arch=c000003e syscall=54 success=yes exit=0 a0=4 a1=0 a2=40 a3=665c0c65bb0 items=0 ppid=220 pid=349 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables-restor" exe="/usr/bin/xtables-legacy-multi" subj==unconfined key=(null)
Oct 07 15:03:56 furverts audit: PROCTITLE proctitle=69707461626C65732D726573746F7265002D6E
Oct 07 15:03:56 furverts kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
Oct 07 15:03:56 furverts kernel: RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
Oct 07 15:03:56 furverts kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Oct 07 15:03:56 furverts kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
Oct 07 15:03:56 furverts kernel: iTCO_vendor_support: vendor-support=0
Oct 07 15:03:56 furverts kernel: iTCO_wdt iTCO_wdt.1.auto: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
Oct 07 15:03:56 furverts kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
Oct 07 15:03:56 furverts kernel: cec: Failed to create debugfs cec dir
Oct 07 15:03:56 furverts kernel: cryptd: max_cpu_qlen set to 1000
Oct 07 15:03:56 furverts kernel: AVX version of gcm_enc/dec engaged.
Oct 07 15:03:56 furverts kernel: AES CTR mode by8 optimization enabled
Oct 07 15:03:57 furverts kernel: snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
Oct 07 15:03:57 furverts systemd-fsck[345]: /dev/sdb1: clean, 517/50331648 files, 3550500/201326592 blocks
Oct 07 15:03:57 furverts systemd[1]: Finished File System Check on /dev/disk/by-uuid/b6c184f3-405b-4630-ad99-e124883391a0.
Oct 07 15:03:57 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-b6c184f3\x2d405b\x2d4630\x2dad99\x2de124883391a0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:57 furverts kernel: checking generic (e0000000 300000) vs hw (f7800000 400000)
Oct 07 15:03:57 furverts kernel: checking generic (e0000000 300000) vs hw (e0000000 10000000)
Oct 07 15:03:57 furverts kernel: fb0: switching to inteldrmfb from EFI VGA
Oct 07 15:03:57 furverts kernel: Console: switching to colour dummy device 80x25
Oct 07 15:03:57 furverts kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Oct 07 15:03:57 furverts kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Oct 07 15:03:57 furverts kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Oct 07 15:03:57 furverts kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Oct 07 15:03:57 furverts kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
Oct 07 15:03:57 furverts kernel: snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Oct 07 15:03:57 furverts systemd[1]: Mounting /srv...
Oct 07 15:03:57 furverts kernel: fbcon: i915 (fb0) is primary device
Oct 07 15:03:57 furverts systemd-fsck[373]: /dev/sdb2: clean, 2225/10723328 files, 985144/42863793 blocks
Oct 07 15:03:57 furverts systemd[1]: Finished File System Check on /dev/disk/by-uuid/ba19b9ef-af9e-41c0-acf8-49085e4dc13c.
Oct 07 15:03:57 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-ba19b9ef\x2daf9e\x2d41c0\x2dacf8\x2d49085e4dc13c comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:57 furverts kernel: e1000e 0000:00:19.0 eno1: renamed from eth0
Oct 07 15:03:57 furverts kernel: Console: switching to colour frame buffer device 128x48
Oct 07 15:03:57 furverts systemd-networkd[257]: eth0: Interface name change detected, renamed to eno1.
Oct 07 15:03:57 furverts systemd-udevd[267]: Using default interface naming scheme 'v249'.
Oct 07 15:03:57 furverts kernel: EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Oct 07 15:03:57 furverts kernel: i915 0000:00:02.0: [drm] fb0: i915 frame buffer device
Oct 07 15:03:57 furverts ufw-init[387]: Problem loading ipv6 (skipping)
Oct 07 15:03:57 furverts systemd[1]: Mounting /home...
Oct 07 15:03:57 furverts systemd[1]: Finished CLI Netfilter Manager.
Oct 07 15:03:57 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=ufw comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:57 furverts systemd[1]: Mounted /srv.
Oct 07 15:03:57 furverts systemd[1]: Mounted /home.
Oct 07 15:03:57 furverts kernel: EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Oct 07 15:03:57 furverts kernel: hid: raw HID events driver (C) Jiri Kosina
Oct 07 15:03:57 furverts kernel: usbcore: registered new interface driver usbhid
Oct 07 15:03:57 furverts kernel: usbhid: USB HID core driver
Oct 07 15:03:57 furverts kernel: input: KVM USB KVM SWITCH as /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.3/2-1.3:1.0/0003:0557:2212.0001/input/input4
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2: autoconfig for ALC662 rev3: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:    speaker_outs=1 (0x15/0x0/0x0/0x0/0x0)
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:    mono: mono_out=0x0
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:    inputs:
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:      Front Mic=0x19
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:      Rear Mic=0x18
Oct 07 15:03:57 furverts kernel: snd_hda_codec_realtek hdaudioC0D2:      Line=0x1a
Oct 07 15:03:57 furverts systemd-networkd[257]: eno1: Link UP
Oct 07 15:03:57 furverts kernel: input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Oct 07 15:03:57 furverts kernel: input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Oct 07 15:03:57 furverts kernel: hid-generic 0003:0557:2212.0001: input,hidraw0: USB HID v1.00 Keyboard [KVM USB KVM SWITCH] on usb-0000:00:14.0-1.3/input0
Oct 07 15:03:57 furverts kernel: input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
Oct 07 15:03:57 furverts kernel: input: KVM USB KVM SWITCH as /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.3/2-1.3:1.1/0003:0557:2212.0002/input/input11
Oct 07 15:03:57 furverts kernel: input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
Oct 07 15:03:57 furverts kernel: hid-generic 0003:0557:2212.0002: input,hidraw1: USB HID v1.00 Mouse [KVM USB KVM SWITCH] on usb-0000:00:14.0-1.3/input1
Oct 07 15:03:57 furverts kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
Oct 07 15:03:57 furverts kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
Oct 07 15:03:57 furverts kernel: mousedev: PS/2 mouse device common for all mice
Oct 07 15:03:57 furverts systemd[1]: Reached target Sound Card.
Oct 07 15:03:57 furverts systemd[1]: Found device ST250DM000-1BD141 3.
Oct 07 15:03:57 furverts systemd[1]: Activating swap /dev/disk/by-uuid/d355fa06-bd9a-47c0-bfc7-f3e8798c0196...
Oct 07 15:03:57 furverts kernel: intel_rapl_common: Found RAPL domain package
Oct 07 15:03:57 furverts kernel: intel_rapl_common: Found RAPL domain core
Oct 07 15:03:57 furverts kernel: intel_rapl_common: Found RAPL domain uncore
Oct 07 15:03:57 furverts kernel: intel_rapl_common: RAPL package-0 domain package locked by BIOS
Oct 07 15:03:57 furverts kernel: Adding 8394912k swap on /dev/sda3.  Priority:-2 extents:1 across:8394912k FS
Oct 07 15:03:57 furverts systemd[1]: Activated swap /dev/disk/by-uuid/d355fa06-bd9a-47c0-bfc7-f3e8798c0196.
Oct 07 15:03:57 furverts systemd[1]: Reached target Swaps.
Oct 07 15:03:57 furverts systemd[1]: Mounting Temporary Directory /tmp...
Oct 07 15:03:57 furverts systemd[1]: Mounted Temporary Directory /tmp.
Oct 07 15:03:58 furverts systemd[1]: Found device ST250DM000-1BD141 1.
Oct 07 15:03:58 furverts systemd[1]: Starting File System Check on /dev/disk/by-uuid/8C7B-F466...
Oct 07 15:03:58 furverts systemd-fsck[398]: fsck.fat 4.2 (2021-01-31)
Oct 07 15:03:58 furverts systemd-fsck[398]: /dev/sda1: 366 files, 16189/229944 clusters
Oct 07 15:03:58 furverts systemd[1]: Finished File System Check on /dev/disk/by-uuid/8C7B-F466.
Oct 07 15:03:58 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-8C7B\x2dF466 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:58 furverts systemd[1]: Mounting /boot...
Oct 07 15:03:58 furverts systemd[1]: Mounted /boot.
Oct 07 15:03:58 furverts systemd[1]: Reached target Local File Systems.
Oct 07 15:03:58 furverts systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
Oct 07 15:03:58 furverts systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Oct 07 15:03:58 furverts systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Oct 07 15:03:58 furverts systemd[1]: Starting Create Volatile Files and Directories...
Oct 07 15:03:58 furverts systemd[1]: Finished Create Volatile Files and Directories.
Oct 07 15:03:58 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:58 furverts systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Oct 07 15:03:58 furverts audit: BPF prog-id=10 op=LOAD
Oct 07 15:03:58 furverts systemd[1]: Starting Network Name Resolution...
Oct 07 15:03:58 furverts systemd[1]: Condition check resulted in Update is Completed being skipped.
Oct 07 15:03:58 furverts systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Oct 07 15:03:58 furverts audit[403]: SYSTEM_BOOT pid=403 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:58 furverts systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Oct 07 15:03:58 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:58 furverts systemd[1]: Reached target System Initialization.
Oct 07 15:03:58 furverts systemd[1]: Started Twice daily renewal of Let's Encrypt certificates.
Oct 07 15:03:58 furverts systemd[1]: Started Daily verification of password and group files.
Oct 07 15:03:58 furverts systemd[1]: Started Daily Spigot Backup.
Oct 07 15:03:58 furverts systemd[1]: Started Daily Cleanup of Temporary Directories.
Oct 07 15:03:58 furverts systemd[1]: Reached target Timer Units.
Oct 07 15:03:58 furverts systemd[1]: Listening on D-Bus System Message Bus Socket.
Oct 07 15:03:58 furverts systemd[1]: Reached target Socket Units.
Oct 07 15:03:58 furverts systemd[1]: Reached target Basic System.
Oct 07 15:03:58 furverts systemd[1]: Started D-Bus System Message Bus.
Oct 07 15:03:58 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:58 furverts systemd[1]: Starting Dynamic DNS Update Client...
Oct 07 15:03:58 furverts audit: BPF prog-id=11 op=LOAD
Oct 07 15:03:58 furverts audit: BPF prog-id=12 op=LOAD
Oct 07 15:03:58 furverts audit: BPF prog-id=13 op=LOAD
Oct 07 15:03:58 furverts systemd[1]: Starting User Login Management...
Oct 07 15:03:58 furverts kernel: kauditd_printk_skb: 175 callbacks suppressed
Oct 07 15:03:58 furverts kernel: audit: type=1334 audit(1633644238.677:77): prog-id=11 op=LOAD
Oct 07 15:03:58 furverts kernel: audit: type=1334 audit(1633644238.677:78): prog-id=12 op=LOAD
Oct 07 15:03:58 furverts kernel: audit: type=1334 audit(1633644238.677:79): prog-id=13 op=LOAD
Oct 07 15:03:58 furverts systemd-resolved[402]: Positive Trust Anchors:
Oct 07 15:03:58 furverts systemd-resolved[402]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Oct 07 15:03:58 furverts systemd-resolved[402]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Oct 07 15:03:59 furverts systemd-logind[406]: New seat seat0.
Oct 07 15:03:59 furverts systemd-logind[406]: Watching system buttons on /dev/input/event1 (Power Button)
Oct 07 15:03:59 furverts systemd-logind[406]: Watching system buttons on /dev/input/event0 (Power Button)
Oct 07 15:03:59 furverts systemd-logind[406]: Watching system buttons on /dev/input/event4 (KVM USB KVM SWITCH)
Oct 07 15:03:59 furverts systemd[1]: Started User Login Management.
Oct 07 15:03:59 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts dbus-daemon[404]: [system] Successfully activated service 'org.freedesktop.systemd1'
Oct 07 15:03:59 furverts kernel: audit: type=1130 audit(1633644239.167:80): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts systemd-resolved[402]: Using system hostname 'furverts'.
Oct 07 15:03:59 furverts systemd[1]: Started Network Name Resolution.
Oct 07 15:03:59 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-resolved comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts systemd[1]: Reached target Network.
Oct 07 15:03:59 furverts systemd[1]: Reached target Host and Network Name Lookups.
Oct 07 15:03:59 furverts kernel: audit: type=1130 audit(1633644239.527:81): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-resolved comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts systemd[1]: Starting MariaDB 10.6.4 database server...
Oct 07 15:03:59 furverts audit: BPF prog-id=14 op=LOAD
Oct 07 15:03:59 furverts systemd[1]: Starting A high performance web server and a reverse proxy server...
Oct 07 15:03:59 furverts audit: BPF prog-id=15 op=LOAD
Oct 07 15:03:59 furverts kernel: audit: type=1334 audit(1633644239.597:82): prog-id=14 op=LOAD
Oct 07 15:03:59 furverts kernel: audit: type=1334 audit(1633644239.597:83): prog-id=15 op=LOAD
Oct 07 15:03:59 furverts systemd[1]: Starting The PHP FastCGI Process Manager...
Oct 07 15:03:59 furverts systemd[1]: Starting Permit User Sessions...
Oct 07 15:03:59 furverts systemd[1]: Finished Permit User Sessions.
Oct 07 15:03:59 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts systemd[1]: Started Getty on tty1.
Oct 07 15:03:59 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts systemd[1]: Reached target Login Prompts.
Oct 07 15:03:59 furverts kernel: audit: type=1130 audit(1633644239.617:84): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:03:59 furverts kernel: audit: type=1130 audit(1633644239.617:85): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:00 furverts systemd[1]: Started A high performance web server and a reverse proxy server.
Oct 07 15:04:00 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=nginx comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:00 furverts kernel: audit: type=1130 audit(1633644240.837:86): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=nginx comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:00 furverts systemd[1]: Started Dynamic DNS Update Client.
Oct 07 15:04:00 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=ddclient comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:01 furverts ddclient[435]: WARNING:  cannot connect to dynamicdns.park-your-domain.com:80 socket: IO::Socket::INET: Bad hostname 'dynamicdns.park-your-domain.com'
Oct 07 15:04:01 furverts ddclient[436]: WARNING:  found neither ipv4 nor ipv6 address
Oct 07 15:04:01 furverts ddclient[437]: WARNING:  cannot connect to dynamicdns.park-your-domain.com:80 socket: IO::Socket::INET: Bad hostname 'dynamicdns.park-your-domain.com'
Oct 07 15:04:01 furverts ddclient[438]: WARNING:  found neither ipv4 nor ipv6 address
Oct 07 15:04:02 furverts mariadbd[430]: 2021-10-07 15:04:02 0 [Note] /usr/bin/mariadbd (server 10.6.4-MariaDB) starting as process 430 ...
Oct 07 15:04:03 furverts systemd[1]: Started The PHP FastCGI Process Manager.
Oct 07 15:04:03 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=php-fpm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Number of pools: 1
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Using Linux native AIO
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Completed initialization of buffer pool
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: 128 rollback segments are active.
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Creating shared tablespace for temporary tables
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: 10.6.4 started; log sequence number 17938806; transaction id 18740
Oct 07 15:04:03 furverts mariadbd[430]: 2021-10-07 15:04:03 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
Oct 07 15:04:04 furverts mariadbd[430]: 2021-10-07 15:04:04 0 [Note] Server socket created on IP: '127.0.0.1'.
Oct 07 15:04:04 furverts mariadbd[430]: 2021-10-07 15:04:04 0 [Note] /usr/bin/mariadbd: ready for connections.
Oct 07 15:04:04 furverts mariadbd[430]: Version: '10.6.4-MariaDB'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Arch Linux
Oct 07 15:04:04 furverts systemd[1]: Started MariaDB 10.6.4 database server.
Oct 07 15:04:04 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=mariadb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:04 furverts systemd[1]: Reached target Multi-User System.
Oct 07 15:04:04 furverts systemd[1]: Reached target Graphical Interface.
Oct 07 15:04:04 furverts kernel: kauditd_printk_skb: 2 callbacks suppressed
Oct 07 15:04:04 furverts kernel: audit: type=1130 audit(1633644244.967:89): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=mariadb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:04 furverts systemd[1]: Starting Spigot...
Oct 07 15:04:05 furverts spigot[454]: Starting server... done
Oct 07 15:04:05 furverts spigot[454]: Starting idle server daemon... done
Oct 07 15:04:05 furverts systemd[1]: Started Spigot.
Oct 07 15:04:05 furverts systemd[1]: Startup finished in 4.882s (kernel) + 14.098s (userspace) = 18.980s.
Oct 07 15:04:05 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=spigot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:05 furverts kernel: audit: type=1130 audit(1633644245.477:90): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=spigot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:07 furverts systemd-networkd[257]: eno1: Gained carrier
Oct 07 15:04:07 furverts kernel: e1000e 0000:00:19.0 eno1: NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
Oct 07 15:04:07 furverts kernel: e1000e 0000:00:19.0 eno1: 10/100 speed: disabling TSO
Oct 07 15:04:07 furverts kernel: e1000e 0000:00:19.0 eno1: NIC Link is Down
Oct 07 15:04:07 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC= SRC=192.168.0.69 DST=224.0.0.252 LEN=54 TOS=0x00 PREC=0x00 TTL=255 ID=63822 PROTO=UDP SPT=5355 DPT=5355 LEN=34 
Oct 07 15:04:08 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC= SRC=192.168.0.69 DST=224.0.0.252 LEN=54 TOS=0x00 PREC=0x00 TTL=255 ID=63875 PROTO=UDP SPT=5355 DPT=5355 LEN=34 
Oct 07 15:04:08 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC= SRC=192.168.0.69 DST=224.0.0.252 LEN=54 TOS=0x00 PREC=0x00 TTL=255 ID=63881 PROTO=UDP SPT=5355 DPT=5355 LEN=34 
Oct 07 15:04:08 furverts mariadbd[430]: 2021-10-07 15:04:08 0 [Note] InnoDB: Buffer pool(s) load completed at 211007 15:04:08
Oct 07 15:04:08 furverts systemd-networkd[257]: eno1: Lost carrier
Oct 07 15:04:15 furverts audit[418]: USER_AUTH pid=418 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:15 furverts kernel: audit: type=1100 audit(1633644255.597:91): pid=418 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:15 furverts dbus-daemon[404]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.4' (uid=0 pid=418 comm="/bin/login -p --           ")
Oct 07 15:04:15 furverts dbus-daemon[404]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:04:15 furverts login[418]: pam_systemd_home(login:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:04:15 furverts audit[418]: USER_ACCT pid=418 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:15 furverts kernel: audit: type=1101 audit(1633644255.664:92): pid=418 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:15 furverts audit[418]: CRED_ACQ pid=418 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:15 furverts audit[418]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=718e0fd723d0 a2=4 a3=3e8 items=0 ppid=1 pid=418 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=1000 fsgid=0 tty=tty1 ses=1 comm="login" exe="/usr/bin/login" subj==unconfined key=(null)
Oct 07 15:04:15 furverts audit: PROCTITLE proctitle=2F62696E2F6C6F67696E002D70002D2D
Oct 07 15:04:15 furverts login[418]: pam_unix(login:session): session opened for user imperator(uid=1000) by LOGIN(uid=0)
Oct 07 15:04:15 furverts kernel: audit: type=1103 audit(1633644255.714:93): pid=418 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:15 furverts kernel: audit: type=1006 audit(1633644255.714:94): pid=418 uid=0 subj==unconfined old-auid=4294967295 auid=1000 tty=tty1 old-ses=4294967295 ses=1 res=1
Oct 07 15:04:15 furverts kernel: audit: type=1300 audit(1633644255.714:94): arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=718e0fd723d0 a2=4 a3=3e8 items=0 ppid=1 pid=418 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=1000 fsgid=0 tty=tty1 ses=1 comm="login" exe="/usr/bin/login" subj==unconfined key=(null)
Oct 07 15:04:15 furverts kernel: audit: type=1327 audit(1633644255.714:94): proctitle=2F62696E2F6C6F67696E002D70002D2D
Oct 07 15:04:15 furverts systemd[1]: Created slice User Slice of UID 1000.
Oct 07 15:04:15 furverts systemd[1]: Starting User Runtime Directory /run/user/1000...
Oct 07 15:04:15 furverts systemd-logind[406]: New session 1 of user imperator.
Oct 07 15:04:15 furverts systemd[1]: Finished User Runtime Directory /run/user/1000.
Oct 07 15:04:15 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:15 furverts systemd[1]: Starting User Manager for UID 1000...
Oct 07 15:04:15 furverts kernel: audit: type=1130 audit(1633644255.804:95): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:15 furverts dbus-daemon[404]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.6' (uid=0 pid=522 comm="(systemd) ")
Oct 07 15:04:15 furverts dbus-daemon[404]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:04:15 furverts systemd[522]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:04:15 furverts systemd[522]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[imperator] ruser=[<unknown>] rhost=[<unknown>]
Oct 07 15:04:15 furverts audit[522]: USER_ACCT pid=522 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:15 furverts audit[522]: CRED_ACQ pid=522 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=? acct="imperator" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Oct 07 15:04:15 furverts audit[522]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=9 a1=79042a10e4d0 a2=4 a3=3e8 items=0 ppid=1 pid=522 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="(systemd)" exe="/usr/lib/systemd/systemd" subj==unconfined key=(null)
Oct 07 15:04:15 furverts audit: PROCTITLE proctitle="(systemd)"
Oct 07 15:04:15 furverts systemd[522]: pam_unix(systemd-user:session): session opened for user imperator(uid=1000) by (uid=0)
Oct 07 15:04:15 furverts systemd[522]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Oct 07 15:04:15 furverts audit[522]: USER_START pid=522 uid=0 auid=1000 ses=2 subj==unconfined msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="imperator" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:15 furverts kernel: audit: type=1101 audit(1633644255.834:96): pid=522 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:15 furverts kernel: audit: type=1103 audit(1633644255.834:97): pid=522 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=? acct="imperator" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Oct 07 15:04:15 furverts kernel: audit: type=1006 audit(1633644255.834:98): pid=522 uid=0 subj==unconfined old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
Oct 07 15:04:16 furverts systemd[522]: Queued start job for default target Main User Target.
Oct 07 15:04:16 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:04:16 furverts audit[418]: USER_START pid=418 uid=0 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:16 furverts audit[418]: CRED_REFR pid=418 uid=0 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/login" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:04:16 furverts systemd[522]: Created slice User Application Slice.
Oct 07 15:04:16 furverts login[418]: pam_env(login:session): deprecated reading of user environment enabled
Oct 07 15:04:16 furverts systemd[522]: Reached target Paths.
Oct 07 15:04:16 furverts login[418]: LOGIN ON tty1 BY imperator
Oct 07 15:04:16 furverts systemd[522]: Reached target Timers.
Oct 07 15:04:16 furverts systemd[522]: Starting D-Bus User Message Bus Socket...
Oct 07 15:04:16 furverts systemd[522]: Listening on GnuPG network certificate management daemon.
Oct 07 15:04:16 furverts systemd[522]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Oct 07 15:04:16 furverts systemd[522]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Oct 07 15:04:16 furverts systemd[522]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Oct 07 15:04:16 furverts systemd[522]: Listening on GnuPG cryptographic agent and passphrase cache.
Oct 07 15:04:16 furverts systemd[522]: Listening on p11-kit server.
Oct 07 15:04:16 furverts systemd[522]: Listening on D-Bus User Message Bus Socket.
Oct 07 15:04:16 furverts systemd[522]: Reached target Sockets.
Oct 07 15:04:16 furverts systemd[522]: Reached target Basic System.
Oct 07 15:04:16 furverts systemd[522]: Reached target Main User Target.
Oct 07 15:04:16 furverts systemd[522]: Startup finished in 219ms.
Oct 07 15:04:16 furverts systemd[1]: Started User Manager for UID 1000.
Oct 07 15:04:16 furverts systemd[1]: Started Session 1 of User imperator.
Oct 07 15:04:17 furverts kernel: e1000e 0000:00:19.0 eno1: NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
Oct 07 15:04:17 furverts kernel: e1000e 0000:00:19.0 eno1: 10/100 speed: disabling TSO
Oct 07 15:04:17 furverts systemd-networkd[257]: eno1: Gained carrier
Oct 07 15:04:18 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC= SRC=192.168.0.69 DST=224.0.0.252 LEN=54 TOS=0x00 PREC=0x00 TTL=255 ID=816 PROTO=UDP SPT=5355 DPT=5355 LEN=34 
Oct 07 15:04:18 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC= SRC=192.168.0.69 DST=224.0.0.252 LEN=54 TOS=0x00 PREC=0x00 TTL=255 ID=855 PROTO=UDP SPT=5355 DPT=5355 LEN=34 
Oct 07 15:04:18 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC= SRC=192.168.0.69 DST=224.0.0.252 LEN=54 TOS=0x00 PREC=0x00 TTL=255 ID=885 PROTO=UDP SPT=5355 DPT=5355 LEN=34 
Oct 07 15:04:20 furverts kernel: nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based firewall rule not found. Use the iptables CT target to attach helpers instead.
Oct 07 15:04:20 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=52205 DPT=5353 LEN=51 
Oct 07 15:05:54 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:06:28 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=43038 DPT=5353 LEN=51 
Oct 07 15:07:30 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=37971 DPT=5353 LEN=51 
Oct 07 15:07:59 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:08:51 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=48827 DPT=5353 LEN=51 
Oct 07 15:09:24 furverts audit[1017]: USER_AUTH pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts kernel: kauditd_printk_skb: 6 callbacks suppressed
Oct 07 15:09:24 furverts kernel: audit: type=1100 audit(1633644564.050:103): pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="imperator" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts kernel: audit: type=1101 audit(1633644564.050:104): pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts kernel: audit: type=1110 audit(1633644564.054:105): pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts kernel: audit: type=1105 audit(1633644564.054:106): pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts audit[1017]: USER_ACCT pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts audit[1017]: CRED_REFR pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts audit[1017]: USER_START pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts dbus-daemon[404]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.8' (uid=0 pid=1017 comm="sudo dmesg ")
Oct 07 15:09:24 furverts dbus-daemon[404]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:09:24 furverts sudo[1017]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:09:24 furverts sudo[1017]: imperator : TTY=tty1 ; PWD=/home/imperator ; USER=root ; COMMAND=/usr/bin/dmesg
Oct 07 15:09:24 furverts sudo[1017]: pam_unix(sudo:session): session opened for user root(uid=0) by imperator(uid=1000)
Oct 07 15:09:24 furverts sudo[1017]: pam_unix(sudo:session): session closed for user root
Oct 07 15:09:24 furverts audit[1017]: USER_END pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts audit[1017]: CRED_DISP pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts kernel: audit: type=1106 audit(1633644564.904:107): pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:24 furverts kernel: audit: type=1104 audit(1633644564.904:108): pid=1017 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts dbus-daemon[404]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.9' (uid=0 pid=1019 comm="sudo dmesg ")
Oct 07 15:09:37 furverts dbus-daemon[404]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:09:37 furverts sudo[1019]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Oct 07 15:09:37 furverts audit[1019]: USER_ACCT pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts kernel: audit: type=1101 audit(1633644577.247:109): pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="imperator" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts sudo[1019]: imperator : TTY=tty1 ; PWD=/home/imperator ; USER=root ; COMMAND=/usr/bin/dmesg
Oct 07 15:09:37 furverts audit[1019]: CRED_REFR pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts audit[1019]: USER_START pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts sudo[1019]: pam_unix(sudo:session): session opened for user root(uid=0) by imperator(uid=1000)
Oct 07 15:09:37 furverts kernel: audit: type=1110 audit(1633644577.250:110): pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts kernel: audit: type=1105 audit(1633644577.250:111): pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts sudo[1019]: pam_unix(sudo:session): session closed for user root
Oct 07 15:09:37 furverts audit[1019]: USER_END pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts audit[1019]: CRED_DISP pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts kernel: audit: type=1106 audit(1633644577.257:112): pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:09:37 furverts kernel: audit: type=1104 audit(1633644577.257:113): pid=1019 uid=1000 auid=1000 ses=1 subj==unconfined msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=furverts addr=? terminal=/dev/tty1 res=success'
Oct 07 15:10:04 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:10:58 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=53929 DPT=5353 LEN=51 
Oct 07 15:12:08 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=48131 DPT=5353 LEN=51 
Oct 07 15:12:09 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:13:30 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=39919 DPT=5353 LEN=51 
Oct 07 15:14:14 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:15:30 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=53536 DPT=5353 LEN=51 
Oct 07 15:16:19 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:16:34 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=56009 DPT=5353 LEN=51 
Oct 07 15:18:24 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:18:43 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=33235 DPT=5353 LEN=51 
Oct 07 15:18:50 furverts systemd[1]: Starting Cleanup of Temporary Directories...
Oct 07 15:18:50 furverts systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Oct 07 15:18:50 furverts systemd[1]: Finished Cleanup of Temporary Directories.
Oct 07 15:18:50 furverts audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:18:50 furverts audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:18:50 furverts kernel: audit: type=1130 audit(1633645130.790:114): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:18:50 furverts kernel: audit: type=1131 audit(1633645130.790:115): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Oct 07 15:19:54 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=52808 DPT=5353 LEN=51 
Oct 07 15:20:29 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=01:00:5e:00:00:01:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2 
Oct 07 15:21:05 furverts kernel: [UFW BLOCK] IN=eno1 OUT= MAC=44:37:e6:c8:20:22:70:f2:20:c4:dd:a0:08:00 SRC=192.168.0.1 DST=192.168.0.69 LEN=71 TOS=0x00 PREC=0x00 TTL=64 ID=0 PROTO=UDP SPT=57616 DPT=5353 LEN=51 

Last edited by RageBanken (2021-10-07 23:38:51)

Offline

#9 2021-10-08 03:29:11

Ropid
Member
Registered: 2015-03-09
Posts: 1,069

Re: Override ENERGY_PERF_BIAS being changed on boot.

I'm guessing these are two different settings that are using the "performance" word and seeing that same "performance" word is confusing you.

That log message seems to be about the "perf bias" thing that's a setting inside the Intel CPU hardware, with a value "0" being "max performance" and "15" being "max efficiency". This perf bias thing is about something that the CPU can do by itself without help from the OS.

The frequency governor is something else, it's about how the OS chooses to switch between P-states to enable and disable the CPU's boosting.

The "cpupower-set" man-page tries to explain what that perf bias stuff is about. It mentions P-states and C-states as well and says that the CPU's perf bias stuff is something else.

Offline

#10 2021-10-08 07:42:22

RageBanken
Member
Registered: 2020-09-16
Posts: 30

Re: Override ENERGY_PERF_BIAS being changed on boot.

I need the OS to stop messing with the existing bios setting and let the chipset manage it's own power (especially since intel seem bent on breaking it.)  I'm willing to let the system manage it if it would stop forcing to "normal".  This system spends a fair amount of time in an idle state but needs to come up when accessed.  As it is now, it idles too far and takes forever to come back into an active state.  i.e. when it receives a remote connection it can take up to 5 minutes (so far.)  It's worse if I need to log in locally.  Enter the username and it can take up to 10 minutes before it finally ticks over to asking for a password.  Long story short, it needs to not idle down so far.  What little power is supposedly saved isn't worth the performance hit.

For reference, when I had a full desktop environment on it with power manager set to performance, this was never a problem.

The specific journal entry that keeps coming up no matter what I do is:

Oct 07 15:03:53 furverts kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'

Again, I need the system to stop changing this setting, and I'm not willing to accept yet another package install for something the system is obviously already capable of doing on its own.  If I'm wrong and need to look elsewhere to stop it from going into power-saving on idle, then so be it, but as it stands this is the only message I'm seeing that references it.

Offline

#11 2021-10-08 09:24:35

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,660

Re: Override ENERGY_PERF_BIAS being changed on boot.

Why are you making such a mountain out of the mole hill? Edit /etc/default/cpupower uncomment perf_bias and set the setting to 15. Enable the cpupower.service.

FWIW the behavior you are seeing is completely normal and intentional: https://www.kernel.org/doc/html/latest/ … l_epb.html so yes if you wanted to change this so that the kernel doesn't inherently do it you'd need to recompile your kernel which is a lot more work than just running a tool on boot up. How sure are you that your desktop had that value at 0 without the kernel changing it?

Last edited by V1del (2021-10-08 09:30:45)

Offline

#12 2021-10-08 09:34:59

Raynman
Member
Registered: 2011-10-22
Posts: 1,539

Re: Override ENERGY_PERF_BIAS being changed on boot.

V1del wrote:

Why are you making such a mountain out of the mole hill?

Classic X-Y problem?

RageBanken wrote:

As it is now, it idles too far and takes forever to come back into an active state.  i.e. when it receives a remote connection it can take up to 5 minutes (so far.)  It's worse if I need to log in locally.  Enter the username and it can take up to 10 minutes before it finally ticks over to asking for a password.  Long story short, it needs to not idle down so far.  What little power is supposedly saved isn't worth the performance hit.

Offline

#13 2021-10-08 09:54:00

sabroad
Member
Registered: 2015-05-24
Posts: 242

Re: Override ENERGY_PERF_BIAS being changed on boot.

RageBanken wrote:

Enter the username and it can take up to 10 minutes before it finally ticks over to asking for a password.

Yeah- that's not caused by ENERGY_PERF_BIAS.

Post your /etc/nsswitch.conf


--
saint_abroad

Offline

#14 2021-10-08 10:01:08

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,660

Re: Override ENERGY_PERF_BIAS being changed on boot.

That comes in additionally. @RageBanken it is almost impossible for this setting to be responsible for a 10 minute delay on any workload . Does this verifiably disappear if you change just this setting? I highly doubt it. Sounds like a misconfigured networking setup/potentially troubles with your router, however if you wanted to look at this you should open up a new thread and post an entire journal from experiencing such a delay.

Offline

Board footer

Powered by FluxBB