Disk clone to new machine: drivers correction

Hi everybody,

I just restored a disk image to a new machine. At boot I get:

[ TIME ]Timed out waiting for device /sys/subsystem/net/device/device_name

It is referring to the usb wifi dongle connected to the previous pc.
Some info online involve the use of terminal to modify or delete the missing profile.

Any idea how to get past this?

I’m afraid you have likely provided insufficient information for anyone to offer much help.

Please provide system information (see below) and a detailed description of your issue.

Regards.


Welcome to the Manjaro community

As a new or infrequent forum user, please take some time to familiarise yourself with Forum requirements, and the many ways to use the forum to your benefit:


Update Announcements

The Update Announcements contain important information and a Known Issues and Solutions section that should generally be checked before posting a request for support.

System Information

Output of this command (formatted according to forum requirements) may be useful for those wishing to help:

inxi --filter --verbosity=8

or the short form:

inxi -zv8

Be prepared to provide more information and outputs from other commands whenever asked.

Required reading
Resources

Regards.

netctl is using profiles to manage network connections. If you find out the corresponding <profile> you could disable it by

netctl disable <profile>

Thanks @soundofthunder I try to be more specific.

Let’s try to clarify a couple of concepts, in this line:

[ TIME ]Timed out waiting for device /sys/subsystem/net/device/device_name

The device_name is wlp0s2 which is also the wifi interface named in the previous pc (since I disk-cloned everything). Is wlp0s2 also the profile?

Perhaps I can post the journalctl. I only need to figure out how to extract it since the only way to access it is at boot by typing ctrl+alt+f2

/sys is a virtual file system

If it has to do with netctl, the profiles are in /etc/netctl/

netctl - ArchWiki

Unlikely, as this is the device name. Details to the usage of netctl can be found in the link I provided in my last post (or the repetition by @Nachlese).

I tried with
ls /etc/netctl
Answer is: cannot access ‘/etc/netctl’: no such a file or directory

I tried to export the journal on a log file in one of the hdd.
sudo mount /dev/sda1 /mnt/drivesda
sudo journalctl > /dev/sda1/journal.log
Answer: - bash: /dev/sda1/journal.log: not a directory

As you might have guessed I seldom dabble with terminal. :slightly_smiling_face:

/dev/sda1 is a device file which represents a partition, you can’t use it directly like that. It needs to be mounted to a directory and then you access it through the directory.

Like so:

sudo mount /dev/sda1 /mnt/
journalctl > /mnt/journal.log

# if you need root to write the file
journalctl | sudo tee /mnt/journal.log

# when you're done unmount it
sudo umount /mnt

That the configuration files are not present would lead me to speculate that netctl isn’t even installed. :man_shrugging:

1 Like

Thanks @dmt, logical subtleties I am not able to catch given my limited experience. I’ll try that way and hopefully come back with the log.

I recall I had a systemd service tied to wlp0s2 (in the previous pc) and managed to disable it. So now it is just stuck at:

dev/... : clean, .../... files, .../... blocks

1 Like

And here is the last session log

-- Boot 9e4a3d15df8349e39b62bcd240ef848d --
mar 16 22:02:59 usu kernel: Linux version 5.15.173-1-MANJARO (builduser@fv-az834-236) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT Sun Nov 17 21:30:08 UTC 2024
mar 16 22:02:59 usu kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64 root=UUID=db906425-def3-45af-af01-53c345a87ab3 rw quiet apparmor=1 security=apparmor udev.log_priority=3
mar 16 22:02:59 usu kernel: x86/tme: not enabled by BIOS
mar 16 22:02:59 usu kernel: BIOS-provided physical RAM map:
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000063830fff] usable
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000063831000-0x0000000063831fff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000063832000-0x000000006589bfff] usable
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000006589c000-0x000000006589cfff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000006589d000-0x00000000703fbfff] usable
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000703fc000-0x00000000740fbfff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000740fc000-0x00000000744ebfff] ACPI data
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000744ec000-0x000000007471efff] ACPI NVS
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000007471f000-0x0000000075f1efff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000075f1f000-0x0000000075ffefff] type 20
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000075fff000-0x0000000075ffffff] usable
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000076000000-0x0000000079ffffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000007a400000-0x000000007a7fffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x000000007b000000-0x00000000807fffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
mar 16 22:02:59 usu kernel: BIOS-e820: [mem 0x0000000100000000-0x000000107f7fffff] usable
mar 16 22:02:59 usu kernel: NX (Execute Disable) protection: active
mar 16 22:02:59 usu kernel: efi: EFI v2.80 by American Megatrends
mar 16 22:02:59 usu kernel: efi: ACPI=0x744eb000 ACPI 2.0=0x744eb014 TPMFinalLog=0x7460c000 SMBIOS=0x75d2e000 SMBIOS 3.0=0x75d2d000 MEMATTR=0x6b3bb018 ESRT=0x6d4ad818 
mar 16 22:02:59 usu kernel: SMBIOS 3.4.0 present.
mar 16 22:02:59 usu kernel: DMI: ASUS System Product Name/ROG STRIX Z690-E GAMING WIFI, BIOS 4101 12/03/2024
mar 16 22:02:59 usu kernel: tsc: Detected 3400.000 MHz processor
mar 16 22:02:59 usu kernel: tsc: Detected 3417.600 MHz TSC
mar 16 22:02:59 usu kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
mar 16 22:02:59 usu kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
mar 16 22:02:59 usu kernel: last_pfn = 0x107f800 max_arch_pfn = 0x400000000
mar 16 22:02:59 usu kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
mar 16 22:02:59 usu kernel: total RAM covered: 128960M
mar 16 22:02:59 usu kernel: Found optimal setting for mtrr clean up
mar 16 22:02:59 usu kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 7          lose cover RAM: 0G
mar 16 22:02:59 usu kernel: e820: update [mem 0x7c000000-0xffffffff] usable ==> reserved
mar 16 22:02:59 usu kernel: last_pfn = 0x76000 max_arch_pfn = 0x400000000
mar 16 22:02:59 usu kernel: esrt: Reserving ESRT space from 0x000000006d4ad818 to 0x000000006d4ad8f0.
mar 16 22:02:59 usu kernel: e820: update [mem 0x6d4ad000-0x6d4adfff] usable ==> reserved
mar 16 22:02:59 usu kernel: Using GB pages for direct mapping
mar 16 22:02:59 usu kernel: Incomplete global flushes, disabling PCID
mar 16 22:02:59 usu kernel: Secure boot disabled
mar 16 22:02:59 usu kernel: RAMDISK: [mem 0x35b5f000-0x36da6fff]
mar 16 22:02:59 usu kernel: ACPI: Early table checksum verification disabled
mar 16 22:02:59 usu kernel: ACPI: RSDP 0x00000000744EB014 000024 (v02 ALASKA)
mar 16 22:02:59 usu kernel: ACPI: XSDT 0x00000000744EA728 000114 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: FACP 0x00000000744E8000 000114 (v06 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: DSDT 0x0000000074448000 09F953 (v02 ALASKA A M I    01072009 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: FACS 0x000000007471E000 000040
mar 16 22:02:59 usu kernel: ACPI: MCFG 0x00000000744E9000 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
mar 16 22:02:59 usu kernel: ACPI: FIDT 0x0000000074447000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x0000000074445000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x000000007443F000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x000000007443C000 002BA7 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x0000000074438000 00334F (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: HPET 0x0000000074437000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: APIC 0x0000000074436000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: MCFG 0x0000000074435000 00003C (v01 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x0000000074433000 001F1A (v02 ALASKA Ther_Rvp 00001000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: NHLT 0x0000000074431000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: LPIT 0x0000000074430000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x000000007442C000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x0000000074429000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: DBGP 0x0000000074428000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: DBG2 0x0000000074427000 000054 (v00 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x0000000074426000 000C1F (v02 ALASKA UsbCTabl 00001000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: DMAR 0x0000000074425000 000088 (v01 INTEL  EDK2     00000002      01000013)
mar 16 22:02:59 usu kernel: ACPI: FPDT 0x0000000074424000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x0000000074422000 001EFF (v02 INTEL  xh_adls3 00000000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x000000007441E000 0039DA (v02 SocGpe SocGpe   00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: SSDT 0x000000007441A000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: UEFI 0x000000007455D000 00063A (v01 INTEL  RstVmdE  00000000 INTL 00000000)
mar 16 22:02:59 usu kernel: ACPI: UEFI 0x000000007455C000 00005C (v01 INTEL  RstVmdV  00000000 INTL 00000000)
mar 16 22:02:59 usu kernel: ACPI: WPBT 0x00000000742F0000 000040 (v01 ALASKA A M I    00000001 ASUS 00000001)
mar 16 22:02:59 usu kernel: ACPI: TPM2 0x00000000742EF000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
mar 16 22:02:59 usu kernel: ACPI: BGRT 0x0000000074419000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 16 22:02:59 usu kernel: ACPI: PHAT 0x00000000742EE000 00083C (v01 ALASKA A M I    00000005 MSFT 0100000D)
mar 16 22:02:59 usu kernel: ACPI: WSMT 0x000000007442F000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 16 22:02:59 usu kernel: ACPI: Reserving FACP table memory at [mem 0x744e8000-0x744e8113]
mar 16 22:02:59 usu kernel: ACPI: Reserving DSDT table memory at [mem 0x74448000-0x744e7952]
mar 16 22:02:59 usu kernel: ACPI: Reserving FACS table memory at [mem 0x7471e000-0x7471e03f]
mar 16 22:02:59 usu kernel: ACPI: Reserving MCFG table memory at [mem 0x744e9000-0x744e903b]
mar 16 22:02:59 usu kernel: ACPI: Reserving FIDT table memory at [mem 0x74447000-0x7444709b]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74445000-0x7444538b]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7443f000-0x74444d33]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7443c000-0x7443eba6]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74438000-0x7443b34e]
mar 16 22:02:59 usu kernel: ACPI: Reserving HPET table memory at [mem 0x74437000-0x74437037]
mar 16 22:02:59 usu kernel: ACPI: Reserving APIC table memory at [mem 0x74436000-0x744361db]
mar 16 22:02:59 usu kernel: ACPI: Reserving MCFG table memory at [mem 0x74435000-0x7443503b]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74433000-0x74434f19]
mar 16 22:02:59 usu kernel: ACPI: Reserving NHLT table memory at [mem 0x74431000-0x7443102c]
mar 16 22:02:59 usu kernel: ACPI: Reserving LPIT table memory at [mem 0x74430000-0x744300cb]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7442c000-0x7442e356]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74429000-0x7442ba82]
mar 16 22:02:59 usu kernel: ACPI: Reserving DBGP table memory at [mem 0x74428000-0x74428033]
mar 16 22:02:59 usu kernel: ACPI: Reserving DBG2 table memory at [mem 0x74427000-0x74427053]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74426000-0x74426c1e]
mar 16 22:02:59 usu kernel: ACPI: Reserving DMAR table memory at [mem 0x74425000-0x74425087]
mar 16 22:02:59 usu kernel: ACPI: Reserving FPDT table memory at [mem 0x74424000-0x74424043]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74422000-0x74423efe]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7441e000-0x744219d9]
mar 16 22:02:59 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7441a000-0x7441d9d9]
mar 16 22:02:59 usu kernel: ACPI: Reserving UEFI table memory at [mem 0x7455d000-0x7455d639]
mar 16 22:02:59 usu kernel: ACPI: Reserving UEFI table memory at [mem 0x7455c000-0x7455c05b]
mar 16 22:02:59 usu kernel: ACPI: Reserving WPBT table memory at [mem 0x742f0000-0x742f003f]
mar 16 22:02:59 usu kernel: ACPI: Reserving TPM2 table memory at [mem 0x742ef000-0x742ef04b]
mar 16 22:02:59 usu kernel: ACPI: Reserving BGRT table memory at [mem 0x74419000-0x74419037]
mar 16 22:02:59 usu kernel: ACPI: Reserving PHAT table memory at [mem 0x742ee000-0x742ee83b]
mar 16 22:02:59 usu kernel: ACPI: Reserving WSMT table memory at [mem 0x7442f000-0x7442f027]
mar 16 22:02:59 usu kernel: No NUMA configuration found
mar 16 22:02:59 usu kernel: Faking a node at [mem 0x0000000000000000-0x000000107f7fffff]
mar 16 22:02:59 usu kernel: NODE_DATA(0) allocated [mem 0x107f7fc000-0x107f7fffff]
mar 16 22:02:59 usu kernel: Zone ranges:
mar 16 22:02:59 usu kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
mar 16 22:02:59 usu kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
mar 16 22:02:59 usu kernel:   Normal   [mem 0x0000000100000000-0x000000107f7fffff]
mar 16 22:02:59 usu kernel:   Device   empty
mar 16 22:02:59 usu kernel: Movable zone start for each node
mar 16 22:02:59 usu kernel: Early memory node ranges
mar 16 22:02:59 usu kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
mar 16 22:02:59 usu kernel:   node   0: [mem 0x000000000009f000-0x000000000009ffff]
mar 16 22:02:59 usu kernel:   node   0: [mem 0x0000000000100000-0x0000000063830fff]
mar 16 22:02:59 usu kernel:   node   0: [mem 0x0000000063832000-0x000000006589bfff]
mar 16 22:02:59 usu kernel:   node   0: [mem 0x000000006589d000-0x00000000703fbfff]
mar 16 22:02:59 usu kernel:   node   0: [mem 0x0000000075fff000-0x0000000075ffffff]
mar 16 22:02:59 usu kernel:   node   0: [mem 0x0000000100000000-0x000000107f7fffff]
mar 16 22:02:59 usu kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000107f7fffff]
mar 16 22:02:59 usu kernel: On node 0, zone DMA: 1 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone DMA: 1 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone DMA: 96 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone DMA32: 23555 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
mar 16 22:02:59 usu kernel: On node 0, zone Normal: 2048 pages in unavailable ranges
mar 16 22:02:59 usu kernel: ACPI: PM-Timer IO Port: 0x1808
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
mar 16 22:02:59 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
mar 16 22:02:59 usu kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
mar 16 22:02:59 usu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
mar 16 22:02:59 usu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
mar 16 22:02:59 usu kernel: ACPI: Using ACPI (MADT) for SMP configuration information
mar 16 22:02:59 usu kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
mar 16 22:02:59 usu kernel: e820: update [mem 0x6a177000-0x6a543fff] usable ==> reserved
mar 16 22:02:59 usu kernel: TSC deadline timer available
mar 16 22:02:59 usu kernel: smpboot: Allowing 28 CPUs, 0 hotplug CPUs
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x63831000-0x63831fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x6589c000-0x6589cfff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x6a177000-0x6a543fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x6d4ad000-0x6d4adfff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x703fc000-0x740fbfff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x740fc000-0x744ebfff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x744ec000-0x7471efff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7471f000-0x75f1efff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x75f1f000-0x75ffefff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x76000000-0x79ffffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x7a3fffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7a400000-0x7a7fffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7a800000-0x7affffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7b000000-0x807fffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x80800000-0xbfffffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfdffffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
mar 16 22:02:59 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
mar 16 22:02:59 usu kernel: [mem 0x80800000-0xbfffffff] available for PCI devices
mar 16 22:02:59 usu kernel: Booting paravirtualized kernel on bare hardware
mar 16 22:02:59 usu kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
mar 16 22:02:59 usu kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:28 nr_node_ids:1
mar 16 22:02:59 usu kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
mar 16 22:02:59 usu kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
mar 16 22:02:59 usu kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
mar 16 22:02:59 usu kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
mar 16 22:02:59 usu kernel: Built 1 zonelists, mobility grouping on.  Total pages: 16449291
mar 16 22:02:59 usu kernel: Policy zone: Normal
mar 16 22:02:59 usu kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64 root=UUID=db906425-def3-45af-af01-53c345a87ab3 rw quiet apparmor=1 security=apparmor udev.log_priority=3
mar 16 22:02:59 usu kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64", will be passed to user space.
mar 16 22:02:59 usu kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
mar 16 22:02:59 usu kernel: printk: log_buf_len total cpu_extra contributions: 110592 bytes
mar 16 22:02:59 usu kernel: printk: log_buf_len min size: 131072 bytes
mar 16 22:02:59 usu kernel: printk: log_buf_len: 262144 bytes
mar 16 22:02:59 usu kernel: printk: early log buf free: 114592(87%)
mar 16 22:02:59 usu kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
mar 16 22:02:59 usu kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
mar 16 22:02:59 usu kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
mar 16 22:02:59 usu kernel: Memory: 65401652K/66842212K available (16392K kernel code, 2088K rwdata, 11000K rodata, 2040K init, 3496K bss, 1440300K reserved, 0K cma-reserved)
mar 16 22:02:59 usu kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=28, Nodes=1
mar 16 22:02:59 usu kernel: ftrace: allocating 44627 entries in 175 pages
mar 16 22:02:59 usu kernel: ftrace: allocated 175 pages with 6 groups
mar 16 22:02:59 usu kernel: rcu: Preemptible hierarchical RCU implementation.
mar 16 22:02:59 usu kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
mar 16 22:02:59 usu kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=28.
mar 16 22:02:59 usu kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
mar 16 22:02:59 usu kernel:         Trampoline variant of Tasks RCU enabled.
mar 16 22:02:59 usu kernel:         Rude variant of Tasks RCU enabled.
mar 16 22:02:59 usu kernel:         Tracing variant of Tasks RCU enabled.
mar 16 22:02:59 usu kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
mar 16 22:02:59 usu kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=28
mar 16 22:02:59 usu kernel: NR_IRQS: 20736, nr_irqs: 2280, preallocated irqs: 16
mar 16 22:02:59 usu kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
mar 16 22:02:59 usu kernel: Console: colour dummy device 80x25
mar 16 22:02:59 usu kernel: printk: console [tty0] enabled
mar 16 22:02:59 usu kernel: ACPI: Core revision 20210730
mar 16 22:02:59 usu kernel: hpet: HPET dysfunctional in PC10. Force disabled.
mar 16 22:02:59 usu kernel: APIC: Switch to symmetric I/O mode setup
mar 16 22:02:59 usu kernel: DMAR: Host address width 39
mar 16 22:02:59 usu kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
mar 16 22:02:59 usu kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
mar 16 22:02:59 usu kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
mar 16 22:02:59 usu kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
mar 16 22:02:59 usu kernel: DMAR: RMRR base: 0x0000007c000000 end: 0x000000807fffff
mar 16 22:02:59 usu kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
mar 16 22:02:59 usu kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
mar 16 22:02:59 usu kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
mar 16 22:02:59 usu kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
mar 16 22:02:59 usu kernel: x2apic enabled
mar 16 22:02:59 usu kernel: Switched APIC routing to cluster x2apic.
mar 16 22:02:59 usu kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3143404a908, max_idle_ns: 440795209397 ns
mar 16 22:02:59 usu kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6837.00 BogoMIPS (lpj=11392000)
mar 16 22:02:59 usu kernel: CPU0: Thermal monitoring enabled (TM1)
mar 16 22:02:59 usu kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
mar 16 22:02:59 usu kernel: process: using mwait in idle threads
mar 16 22:02:59 usu kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
mar 16 22:02:59 usu kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
mar 16 22:02:59 usu kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
mar 16 22:02:59 usu kernel: Spectre V2 : WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!
mar 16 22:02:59 usu kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
mar 16 22:02:59 usu kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
mar 16 22:02:59 usu kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
mar 16 22:02:59 usu kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
mar 16 22:02:59 usu kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
mar 16 22:02:59 usu kernel: Register File Data Sampling: Mitigation: Clear Register File
mar 16 22:02:59 usu kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
mar 16 22:02:59 usu kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
mar 16 22:02:59 usu kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
mar 16 22:02:59 usu kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
mar 16 22:02:59 usu kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
mar 16 22:02:59 usu kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
mar 16 22:02:59 usu kernel: x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
mar 16 22:02:59 usu kernel: Freeing SMP alternatives memory: 36K
mar 16 22:02:59 usu kernel: pid_max: default: 32768 minimum: 301
mar 16 22:02:59 usu kernel: LSM: Security Framework initializing
mar 16 22:02:59 usu kernel: landlock: Up and running.
mar 16 22:02:59 usu kernel: Yama: becoming mindful.
mar 16 22:02:59 usu kernel: AppArmor: AppArmor initialized
mar 16 22:02:59 usu kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
mar 16 22:02:59 usu kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
mar 16 22:02:59 usu kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1656
mar 16 22:02:59 usu kernel: smpboot: CPU0: Intel(R) Core(TM) i7-14700K (family: 0x6, model: 0xb7, stepping: 0x1)
mar 16 22:02:59 usu kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, generic architected perfmon, 32-deep LBR, full-width counters, Intel PMU driver.
mar 16 22:02:59 usu kernel: ... version:                5
mar 16 22:02:59 usu kernel: ... bit width:              48
mar 16 22:02:59 usu kernel: ... generic registers:      6
mar 16 22:02:59 usu kernel: ... value mask:             0000ffffffffffff
mar 16 22:02:59 usu kernel: ... max period:             00007fffffffffff
mar 16 22:02:59 usu kernel: ... fixed-purpose events:   3
mar 16 22:02:59 usu kernel: ... event mask:             000000070000003f
mar 16 22:02:59 usu kernel: signal: max sigframe size: 3632
mar 16 22:02:59 usu kernel: rcu: Hierarchical SRCU implementation.
mar 16 22:02:59 usu kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
mar 16 22:02:59 usu kernel: smp: Bringing up secondary CPUs ...
mar 16 22:02:59 usu kernel: x86: Booting SMP configuration:
mar 16 22:02:59 usu kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27
mar 16 22:02:59 usu kernel: smp: Brought up 1 node, 28 CPUs
mar 16 22:02:59 usu kernel: smpboot: Max logical packages: 1
mar 16 22:02:59 usu kernel: smpboot: Total of 28 processors activated (191462.00 BogoMIPS)
mar 16 22:02:59 usu kernel: devtmpfs: initialized
mar 16 22:02:59 usu kernel: x86/mm: Memory block size: 2048MB
mar 16 22:02:59 usu kernel: ACPI: PM: Registering ACPI NVS region [mem 0x744ec000-0x7471efff] (2306048 bytes)
mar 16 22:02:59 usu kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
mar 16 22:02:59 usu kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
mar 16 22:02:59 usu kernel: pinctrl core: initialized pinctrl subsystem
mar 16 22:02:59 usu kernel: PM: RTC time: 21:02:57, date: 2025-03-16
mar 16 22:02:59 usu kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
mar 16 22:02:59 usu kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
mar 16 22:02:59 usu kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
mar 16 22:02:59 usu kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
mar 16 22:02:59 usu kernel: audit: initializing netlink subsys (disabled)
mar 16 22:02:59 usu kernel: audit: type=2000 audit(1742158977.093:1): state=initialized audit_enabled=0 res=1
mar 16 22:02:59 usu kernel: thermal_sys: Registered thermal governor 'fair_share'
mar 16 22:02:59 usu kernel: thermal_sys: Registered thermal governor 'bang_bang'
mar 16 22:02:59 usu kernel: thermal_sys: Registered thermal governor 'step_wise'
mar 16 22:02:59 usu kernel: thermal_sys: Registered thermal governor 'user_space'
mar 16 22:02:59 usu kernel: thermal_sys: Registered thermal governor 'power_allocator'
mar 16 22:02:59 usu kernel: cpuidle: using governor ladder
mar 16 22:02:59 usu kernel: cpuidle: using governor menu
mar 16 22:02:59 usu kernel: HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
mar 16 22:02:59 usu kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
mar 16 22:02:59 usu kernel: ACPI: bus type PCI registered
mar 16 22:02:59 usu kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
mar 16 22:02:59 usu kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
mar 16 22:02:59 usu kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
mar 16 22:02:59 usu kernel: PCI: Using configuration type 1 for base access
mar 16 22:02:59 usu kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
mar 16 22:02:59 usu kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
mar 16 22:02:59 usu kernel: HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
mar 16 22:02:59 usu kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
mar 16 22:02:59 usu kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(Module Device)
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(Processor Device)
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(Processor Aggregator Device)
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(Linux-Dell-Video)
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
mar 16 22:02:59 usu kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
mar 16 22:02:59 usu kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA089002E3A00 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA089025E5000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA089025BE800 000689 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA089025BB000 0004B5 (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA0890386A000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA0890386C000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA0890386E000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: Dynamic OEM Table Load:
mar 16 22:02:59 usu kernel: ACPI: SSDT 0xFFFFA08900136000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
mar 16 22:02:59 usu kernel: ACPI: EC: EC started
mar 16 22:02:59 usu kernel: ACPI: EC: interrupt blocked
mar 16 22:02:59 usu kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 16 22:02:59 usu kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
mar 16 22:02:59 usu kernel: ACPI: Interpreter enabled
mar 16 22:02:59 usu kernel: ACPI: PM: (supports S0 S3 S4 S5)
mar 16 22:02:59 usu kernel: ACPI: Using IOAPIC for interrupt routing
mar 16 22:02:59 usu kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
mar 16 22:02:59 usu kernel: ACPI: Enabled 6 GPEs in block 00 to 7F
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [WRST]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [DRST]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [PRBT]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [WRST]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [FN00]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [FN01]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [FN02]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [FN03]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [FN04]
mar 16 22:02:59 usu kernel: ACPI: PM: Power Resource [PIN]
mar 16 22:02:59 usu kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
mar 16 22:02:59 usu kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
mar 16 22:02:59 usu kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
mar 16 22:02:59 usu kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
mar 16 22:02:59 usu kernel: PCI host bridge to bus 0000:00
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x80800000-0xbfffffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
mar 16 22:02:59 usu kernel: pci 0000:00:00.0: [8086:a740] type 00 class 0x060000
mar 16 22:02:59 usu kernel: pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:01.0: PTM enabled (root), 4ns granularity
mar 16 22:02:59 usu kernel: pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:01.1: PTM enabled (root), 4ns granularity
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: [8086:a780] type 00 class 0x030000
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6004000000-0x6004ffffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: reg 0x20: [io  0x6000-0x603f]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
mar 16 22:02:59 usu kernel: pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000
mar 16 22:02:59 usu kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x6005210000-0x6005217fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:0a.0: enabling Extended Tags
mar 16 22:02:59 usu kernel: pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400
mar 16 22:02:59 usu kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6002000000-0x6003ffffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x82000000-0x83ffffff]
mar 16 22:02:59 usu kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6005100000-0x60051fffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:14.0: [8086:7ae0] type 00 class 0x0c0330
mar 16 22:02:59 usu kernel: pci 0000:00:14.0: reg 0x10: [mem 0x6005200000-0x600520ffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:14.2: [8086:7aa7] type 00 class 0x050000
mar 16 22:02:59 usu kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6005224000-0x6005227fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:14.2: reg 0x18: [mem 0x600522d000-0x600522dfff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:15.0: [8086:7acc] type 00 class 0x0c8000
mar 16 22:02:59 usu kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:15.1: [8086:7acd] type 00 class 0x0c8000
mar 16 22:02:59 usu kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:15.2: [8086:7ace] type 00 class 0x0c8000
mar 16 22:02:59 usu kernel: pci 0000:00:15.2: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:16.0: [8086:7ae8] type 00 class 0x078000
mar 16 22:02:59 usu kernel: pci 0000:00:16.0: reg 0x10: [mem 0x6005229000-0x6005229fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:16.0: PME# supported from D3hot
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: [8086:7ae2] type 00 class 0x010601
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: reg 0x10: [mem 0x85900000-0x85901fff]
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: reg 0x14: [mem 0x85903000-0x859030ff]
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: reg 0x18: [io  0x6090-0x6097]
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: reg 0x1c: [io  0x6080-0x6083]
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: reg 0x20: [io  0x6060-0x607f]
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: reg 0x24: [mem 0x85902000-0x859027ff]
mar 16 22:02:59 usu kernel: pci 0000:00:17.0: PME# supported from D3hot
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0: [8086:7ac8] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1b.0: [8086:7ac0] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0: [8086:7ab8] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1: [8086:7ab9] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1: PTM enabled (root), 4ns granularity
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2: [8086:7aba] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2: PTM enabled (root), 4ns granularity
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0: [8086:7ab0] type 01 class 0x060400
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1f.0: [8086:7a84] type 00 class 0x060100
mar 16 22:02:59 usu kernel: pci 0000:00:1f.3: [8086:7ad0] type 00 class 0x040300
mar 16 22:02:59 usu kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6005220000-0x6005223fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6005000000-0x60050fffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1f.4: [8086:7aa3] type 00 class 0x0c0500
mar 16 22:02:59 usu kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6005228000-0x60052280ff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
mar 16 22:02:59 usu kernel: pci 0000:00:1f.5: [8086:7aa4] type 00 class 0x0c8000
mar 16 22:02:59 usu kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
mar 16 22:02:59 usu kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
mar 16 22:02:59 usu kernel: pci 0000:02:00.0: [144d:a80c] type 00 class 0x010802
mar 16 22:02:59 usu kernel: pci 0000:02:00.0: reg 0x10: [mem 0x85800000-0x85803fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
mar 16 22:02:59 usu kernel: pci 0000:00:01.1:   bridge window [mem 0x85800000-0x858fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0: PCI bridge to [bus 03]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0:   bridge window [io  0x5000-0x5fff]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x84a00000-0x853fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x6000a00000-0x60013fffff 64bit pref]
mar 16 22:02:59 usu kernel: pci 0000:00:1b.0: PCI bridge to [bus 04]
mar 16 22:02:59 usu kernel: pci 0000:05:00.0: [8086:2725] type 00 class 0x028000
mar 16 22:02:59 usu kernel: pci 0000:05:00.0: reg 0x10: [mem 0x85700000-0x85703fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0: PCI bridge to [bus 05]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0:   bridge window [mem 0x85700000-0x857fffff]
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: [1b21:0612] type 00 class 0x010601
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: reg 0x10: [io  0x4050-0x4057]
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: reg 0x14: [io  0x4040-0x4043]
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: reg 0x18: [io  0x4030-0x4037]
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: reg 0x1c: [io  0x4020-0x4023]
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: reg 0x20: [io  0x4000-0x401f]
mar 16 22:02:59 usu kernel: pci 0000:06:00.0: reg 0x24: [mem 0x85600000-0x856001ff]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1: PCI bridge to [bus 06]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1:   bridge window [mem 0x85600000-0x856fffff]
mar 16 22:02:59 usu kernel: pci 0000:07:00.0: [8086:15f3] type 00 class 0x020000
mar 16 22:02:59 usu kernel: pci 0000:07:00.0: reg 0x10: [mem 0x85400000-0x854fffff]
mar 16 22:02:59 usu kernel: pci 0000:07:00.0: reg 0x1c: [mem 0x85500000-0x85503fff]
mar 16 22:02:59 usu kernel: pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2: PCI bridge to [bus 07]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2:   bridge window [mem 0x85400000-0x855fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0: PCI bridge to [bus 08]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x84000000-0x849fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x6000000000-0x60009fffff 64bit pref]
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 1
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
mar 16 22:02:59 usu kernel: ACPI: EC: interrupt unblocked
mar 16 22:02:59 usu kernel: ACPI: EC: event unblocked
mar 16 22:02:59 usu kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 16 22:02:59 usu kernel: ACPI: EC: GPE=0x7
mar 16 22:02:59 usu kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
mar 16 22:02:59 usu kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
mar 16 22:02:59 usu kernel: iommu: Default domain type: Translated 
mar 16 22:02:59 usu kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: vgaarb: bridge control possible
mar 16 22:02:59 usu kernel: vgaarb: loaded
mar 16 22:02:59 usu kernel: SCSI subsystem initialized
mar 16 22:02:59 usu kernel: libata version 3.00 loaded.
mar 16 22:02:59 usu kernel: ACPI: bus type USB registered
mar 16 22:02:59 usu kernel: usbcore: registered new interface driver usbfs
mar 16 22:02:59 usu kernel: usbcore: registered new interface driver hub
mar 16 22:02:59 usu kernel: usbcore: registered new device driver usb
mar 16 22:02:59 usu kernel: pps_core: LinuxPPS API ver. 1 registered
mar 16 22:02:59 usu kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
mar 16 22:02:59 usu kernel: PTP clock support registered
mar 16 22:02:59 usu kernel: EDAC MC: Ver: 3.0.0
mar 16 22:02:59 usu kernel: Registered efivars operations
mar 16 22:02:59 usu kernel: NetLabel: Initializing
mar 16 22:02:59 usu kernel: NetLabel:  domain hash size = 128
mar 16 22:02:59 usu kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
mar 16 22:02:59 usu kernel: NetLabel:  unlabeled traffic allowed by default
mar 16 22:02:59 usu kernel: PCI: Using ACPI for IRQ routing
mar 16 22:02:59 usu kernel: PCI: pci_cache_line_size set to 64 bytes
mar 16 22:02:59 usu kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x63831000-0x63ffffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x6589c000-0x67ffffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x6a177000-0x6bffffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x6d4ad000-0x6fffffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x703fc000-0x73ffffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x76000000-0x77ffffff]
mar 16 22:02:59 usu kernel: e820: reserve RAM buffer [mem 0x107f800000-0x107fffffff]
mar 16 22:02:59 usu kernel: clocksource: Switched to clocksource tsc-early
mar 16 22:02:59 usu kernel: VFS: Disk quotas dquot_6.6.0
mar 16 22:02:59 usu kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
mar 16 22:02:59 usu kernel: AppArmor: AppArmor Filesystem Enabled
mar 16 22:02:59 usu kernel: pnp: PnP ACPI init
mar 16 22:02:59 usu kernel: system 00:00: [io  0x0290-0x029f] has been reserved
mar 16 22:02:59 usu kernel: system 00:01: [io  0x0680-0x069f] has been reserved
mar 16 22:02:59 usu kernel: system 00:01: [io  0x164e-0x164f] has been reserved
mar 16 22:02:59 usu kernel: system 00:02: [io  0x1854-0x1857] has been reserved
mar 16 22:02:59 usu kernel: pnp 00:03: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfedc0000-0xfedc7fff] has been reserved
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfeda0000-0xfeda0fff] has been reserved
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfeda1000-0xfeda1fff] has been reserved
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfed20000-0xfed7ffff] could not be reserved
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfed45000-0xfed8ffff] could not be reserved
mar 16 22:02:59 usu kernel: system 00:03: [mem 0xfee00000-0xfeefffff] could not be reserved
mar 16 22:02:59 usu kernel: system 00:04: [io  0x2000-0x20fe] has been reserved
mar 16 22:02:59 usu kernel: pnp: PnP ACPI: found 6 devices
mar 16 22:02:59 usu kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
mar 16 22:02:59 usu kernel: NET: Registered PF_INET protocol family
mar 16 22:02:59 usu kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
mar 16 22:02:59 usu kernel: tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
mar 16 22:02:59 usu kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
mar 16 22:02:59 usu kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
mar 16 22:02:59 usu kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
mar 16 22:02:59 usu kernel: TCP: Hash tables configured (established 524288 bind 65536)
mar 16 22:02:59 usu kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
mar 16 22:02:59 usu kernel: UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
mar 16 22:02:59 usu kernel: UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
mar 16 22:02:59 usu kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
mar 16 22:02:59 usu kernel: NET: Registered PF_XDP protocol family
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
mar 16 22:02:59 usu kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:15.2: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
mar 16 22:02:59 usu kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x80800000-0x80800fff]
mar 16 22:02:59 usu kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
mar 16 22:02:59 usu kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
mar 16 22:02:59 usu kernel: pci 0000:00:01.1:   bridge window [mem 0x85800000-0x858fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0: PCI bridge to [bus 03]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0:   bridge window [io  0x5000-0x5fff]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x84a00000-0x853fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x6000a00000-0x60013fffff 64bit pref]
mar 16 22:02:59 usu kernel: pci 0000:00:1b.0: PCI bridge to [bus 04]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0: PCI bridge to [bus 05]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.0:   bridge window [mem 0x85700000-0x857fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1: PCI bridge to [bus 06]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.1:   bridge window [mem 0x85600000-0x856fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2: PCI bridge to [bus 07]
mar 16 22:02:59 usu kernel: pci 0000:00:1c.2:   bridge window [mem 0x85400000-0x855fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0: PCI bridge to [bus 08]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x84000000-0x849fffff]
mar 16 22:02:59 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x6000000000-0x60009fffff 64bit pref]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000e3fff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 8 [mem 0x000e4000-0x000e7fff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 9 [mem 0x000e8000-0x000ebfff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 10 [mem 0x000ec000-0x000effff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 11 [mem 0x80800000-0xbfffffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:00: resource 12 [mem 0x4000000000-0x7fffffffff window]
mar 16 22:02:59 usu kernel: pci_bus 0000:02: resource 1 [mem 0x85800000-0x858fffff]
mar 16 22:02:59 usu kernel: pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
mar 16 22:02:59 usu kernel: pci_bus 0000:03: resource 1 [mem 0x84a00000-0x853fffff]
mar 16 22:02:59 usu kernel: pci_bus 0000:03: resource 2 [mem 0x6000a00000-0x60013fffff 64bit pref]
mar 16 22:02:59 usu kernel: pci_bus 0000:05: resource 1 [mem 0x85700000-0x857fffff]
mar 16 22:02:59 usu kernel: pci_bus 0000:06: resource 0 [io  0x4000-0x4fff]
mar 16 22:02:59 usu kernel: pci_bus 0000:06: resource 1 [mem 0x85600000-0x856fffff]
mar 16 22:02:59 usu kernel: pci_bus 0000:07: resource 1 [mem 0x85400000-0x855fffff]
mar 16 22:02:59 usu kernel: pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
mar 16 22:02:59 usu kernel: pci_bus 0000:08: resource 1 [mem 0x84000000-0x849fffff]
mar 16 22:02:59 usu kernel: pci_bus 0000:08: resource 2 [mem 0x6000000000-0x60009fffff 64bit pref]
mar 16 22:02:59 usu kernel: PCI: CLS 64 bytes, default 64
mar 16 22:02:59 usu kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
mar 16 22:02:59 usu kernel: software IO TLB: mapped [mem 0x000000005f831000-0x0000000063831000] (64MB)
mar 16 22:02:59 usu kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3143404a908, max_idle_ns: 440795209397 ns
mar 16 22:02:59 usu kernel: clocksource: Switched to clocksource tsc
mar 16 22:02:59 usu kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
mar 16 22:02:59 usu kernel: Trying to unpack rootfs image as initramfs...
mar 16 22:02:59 usu kernel: Initialise system trusted keyrings
mar 16 22:02:59 usu kernel: Key type blacklist registered
mar 16 22:02:59 usu kernel: workingset: timestamp_bits=41 max_order=24 bucket_order=0
mar 16 22:02:59 usu kernel: zbud: loaded
mar 16 22:02:59 usu kernel: Key type asymmetric registered
mar 16 22:02:59 usu kernel: Asymmetric key parser 'x509' registered
mar 16 22:02:59 usu kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
mar 16 22:02:59 usu kernel: io scheduler mq-deadline registered
mar 16 22:02:59 usu kernel: io scheduler kyber registered
mar 16 22:02:59 usu kernel: io scheduler bfq registered
mar 16 22:02:59 usu kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 122
mar 16 22:02:59 usu kernel: pcieport 0000:00:01.0: AER: enabled with IRQ 122
mar 16 22:02:59 usu kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 123
mar 16 22:02:59 usu kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 123
mar 16 22:02:59 usu kernel: pcieport 0000:00:1a.0: PME: Signaling with IRQ 124
mar 16 22:02:59 usu kernel: pcieport 0000:00:1a.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
mar 16 22:02:59 usu kernel: pcieport 0000:00:1b.0: PME: Signaling with IRQ 125
mar 16 22:02:59 usu kernel: Freeing initrd memory: 18720K
mar 16 22:02:59 usu kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 126
mar 16 22:02:59 usu kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 126
mar 16 22:02:59 usu kernel: pcieport 0000:00:1c.1: PME: Signaling with IRQ 127
mar 16 22:02:59 usu kernel: pcieport 0000:00:1c.1: AER: enabled with IRQ 127
mar 16 22:02:59 usu kernel: pcieport 0000:00:1c.2: PME: Signaling with IRQ 128
mar 16 22:02:59 usu kernel: pcieport 0000:00:1c.2: AER: enabled with IRQ 128
mar 16 22:02:59 usu kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 129
mar 16 22:02:59 usu kernel: pcieport 0000:00:1d.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
mar 16 22:02:59 usu kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
mar 16 22:02:59 usu kernel: Monitor-Mwait will be used to enter C-1 state
mar 16 22:02:59 usu kernel: Monitor-Mwait will be used to enter C-2 state
mar 16 22:02:59 usu kernel: Monitor-Mwait will be used to enter C-3 state
mar 16 22:02:59 usu kernel: ACPI: \_SB_.PR00: Found 3 idle states
mar 16 22:02:59 usu kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
mar 16 22:02:59 usu kernel: ACPI: button: Sleep Button [SLPB]
mar 16 22:02:59 usu kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
mar 16 22:02:59 usu kernel: ACPI: button: Power Button [PWRB]
mar 16 22:02:59 usu kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
mar 16 22:02:59 usu kernel: ACPI: button: Power Button [PWRF]
mar 16 22:02:59 usu kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1656
mar 16 22:02:59 usu kernel: thermal LNXTHERM:00: registered as thermal_zone0
mar 16 22:02:59 usu kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
mar 16 22:02:59 usu kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
mar 16 22:02:59 usu kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
mar 16 22:02:59 usu kernel: hpet_acpi_add: no address or irqs in _CRS
mar 16 22:02:59 usu kernel: Non-volatile memory driver v1.3
mar 16 22:02:59 usu kernel: Linux agpgart interface v0.103
mar 16 22:02:59 usu kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
mar 16 22:02:59 usu kernel: nvme 0000:02:00.0: platform quirk: setting simple suspend
mar 16 22:02:59 usu kernel: nvme nvme0: pci function 0000:02:00.0
mar 16 22:02:59 usu kernel: ahci 0000:00:17.0: version 3.0
mar 16 22:02:59 usu kernel: nvme nvme0: Shutdown timeout set to 10 seconds
mar 16 22:02:59 usu kernel: nvme nvme0: 16/0/0 default/read/poll queues
mar 16 22:02:59 usu kernel:  nvme0n1: p1 p2 p3 p4 p5 p6 p7
mar 16 22:02:59 usu kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf0 impl SATA mode
mar 16 22:02:59 usu kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds 
mar 16 22:02:59 usu kernel: scsi host0: ahci
mar 16 22:02:59 usu kernel: scsi host1: ahci
mar 16 22:02:59 usu kernel: scsi host2: ahci
mar 16 22:02:59 usu kernel: scsi host3: ahci
mar 16 22:02:59 usu kernel: scsi host4: ahci
mar 16 22:02:59 usu kernel: scsi host5: ahci
mar 16 22:02:59 usu kernel: scsi host6: ahci
mar 16 22:02:59 usu kernel: scsi host7: ahci
mar 16 22:02:59 usu kernel: ata1: DUMMY
mar 16 22:02:59 usu kernel: ata2: DUMMY
mar 16 22:02:59 usu kernel: ata3: DUMMY
mar 16 22:02:59 usu kernel: ata4: DUMMY
mar 16 22:02:59 usu kernel: ata5: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902300 irq 131
mar 16 22:02:59 usu kernel: ata6: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902380 irq 131
mar 16 22:02:59 usu kernel: ata7: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902400 irq 131
mar 16 22:02:59 usu kernel: ata8: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902480 irq 131
mar 16 22:02:59 usu kernel: ahci 0000:06:00.0: SSS flag set, parallel bus scan disabled
mar 16 22:02:59 usu kernel: ahci 0000:06:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
mar 16 22:02:59 usu kernel: ahci 0000:06:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc 
mar 16 22:02:59 usu kernel: scsi host8: ahci
mar 16 22:02:59 usu kernel: scsi host9: ahci
mar 16 22:02:59 usu kernel: ata9: SATA max UDMA/133 abar m512@0x85600000 port 0x85600100 irq 148
mar 16 22:02:59 usu kernel: ata10: SATA max UDMA/133 abar m512@0x85600000 port 0x85600180 irq 148
mar 16 22:02:59 usu kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
mar 16 22:02:59 usu kernel: ehci-pci: EHCI PCI platform driver
mar 16 22:02:59 usu kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
mar 16 22:02:59 usu kernel: ohci-pci: OHCI PCI platform driver
mar 16 22:02:59 usu kernel: uhci_hcd: USB Universal Host Controller Interface driver
mar 16 22:02:59 usu kernel: usbcore: registered new interface driver usbserial_generic
mar 16 22:02:59 usu kernel: usbserial: USB Serial support registered for generic
mar 16 22:02:59 usu kernel: rtc_cmos rtc_cmos: RTC can wake from S4
mar 16 22:02:59 usu kernel: rtc_cmos rtc_cmos: registered as rtc0
mar 16 22:02:59 usu kernel: rtc_cmos rtc_cmos: setting system clock to 2025-03-16T21:02:57 UTC (1742158977)
mar 16 22:02:59 usu kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
mar 16 22:02:59 usu kernel: intel_pstate: Intel P-state driver initializing
mar 16 22:02:59 usu kernel: intel_pstate: HWP enabled
mar 16 22:02:59 usu kernel: ledtrig-cpu: registered to indicate activity on CPUs
mar 16 22:02:59 usu kernel: efifb: probing for efifb
mar 16 22:02:59 usu kernel: efifb: showing boot graphics
mar 16 22:02:59 usu kernel: efifb: framebuffer at 0x4000000000, using 32448k, total 32448k
mar 16 22:02:59 usu kernel: efifb: mode is 3840x2160x32, linelength=15360, pages=1
mar 16 22:02:59 usu kernel: efifb: scrolling: redraw
mar 16 22:02:59 usu kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
mar 16 22:02:59 usu kernel: fbcon: Deferring console take-over
mar 16 22:02:59 usu kernel: fb0: EFI VGA frame buffer device
mar 16 22:02:59 usu kernel: hid: raw HID events driver (C) Jiri Kosina
mar 16 22:02:59 usu kernel: ashmem: initialized
mar 16 22:02:59 usu kernel: drop_monitor: Initializing network drop monitor service
mar 16 22:02:59 usu kernel: Initializing XFRM netlink socket
mar 16 22:02:59 usu kernel: NET: Registered PF_INET6 protocol family
mar 16 22:02:59 usu kernel: Segment Routing with IPv6
mar 16 22:02:59 usu kernel: RPL Segment Routing with IPv6
mar 16 22:02:59 usu kernel: In-situ OAM (IOAM) with IPv6
mar 16 22:02:59 usu kernel: NET: Registered PF_PACKET protocol family
mar 16 22:02:59 usu kernel: microcode: sig=0xb0671, pf=0x2, revision=0x12b
mar 16 22:02:59 usu kernel: microcode: Microcode Update Driver: v2.2.
mar 16 22:02:59 usu kernel: IPI shorthand broadcast: enabled
mar 16 22:02:59 usu kernel: sched_clock: Marking stable (518453900, 6401796)->(553376799, -28521103)
mar 16 22:02:59 usu kernel: registered taskstats version 1
mar 16 22:02:59 usu kernel: Loading compiled-in X.509 certificates
mar 16 22:02:59 usu kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 4857a2823bb06de9d59a44939f16ca1130b9c293'
mar 16 22:02:59 usu kernel: zswap: loaded using pool zstd/z3fold
mar 16 22:02:59 usu kernel: Key type .fscrypt registered
mar 16 22:02:59 usu kernel: Key type fscrypt-provisioning registered
mar 16 22:02:59 usu kernel: AppArmor: AppArmor sha1 policy hashing enabled
mar 16 22:02:59 usu kernel: PM:   Magic number: 1:374:45
mar 16 22:02:59 usu kernel: RAS: Correctable Errors collector initialized.
mar 16 22:02:59 usu kernel: clk: Disabling unused clocks
mar 16 22:02:59 usu kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
mar 16 22:02:59 usu kernel: ata8: SATA link down (SStatus 4 SControl 300)
mar 16 22:02:59 usu kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
mar 16 22:02:59 usu kernel: ata9: SATA link down (SStatus 0 SControl 300)
mar 16 22:02:59 usu kernel: ata7: SATA link down (SStatus 4 SControl 300)
mar 16 22:02:59 usu kernel: ata5.00: ATA-10: TOSHIBA MG07ACA14TE, 0103, max UDMA/133
mar 16 22:02:59 usu kernel: ata6.00: ATA-10: TOSHIBA HDWT380, 0603, max UDMA/133
mar 16 22:02:59 usu kernel: ata6.00: 15628053168 sectors, multi 16: LBA48 NCQ (depth 32), AA
mar 16 22:02:59 usu kernel: ata6.00: configured for UDMA/133
mar 16 22:02:59 usu kernel: ata5.00: 27344764928 sectors, multi 16: LBA48 NCQ (depth 32), AA
mar 16 22:02:59 usu kernel: ata5.00: Features: NCQ-prio
mar 16 22:02:59 usu kernel: ata5.00: configured for UDMA/133
mar 16 22:02:59 usu kernel: scsi 4:0:0:0: Direct-Access     ATA      TOSHIBA MG07ACA1 0103 PQ: 0 ANSI: 5
mar 16 22:02:59 usu kernel: scsi 5:0:0:0: Direct-Access     ATA      TOSHIBA HDWT380  0603 PQ: 0 ANSI: 5
mar 16 22:02:59 usu kernel: sd 4:0:0:0: [sda] 27344764928 512-byte logical blocks: (14.0 TB/12.7 TiB)
mar 16 22:02:59 usu kernel: sd 4:0:0:0: [sda] 4096-byte physical blocks
mar 16 22:02:59 usu kernel: sd 4:0:0:0: [sda] Write Protect is off
mar 16 22:02:59 usu kernel: sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
mar 16 22:02:59 usu kernel: sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
mar 16 22:02:59 usu kernel: sd 5:0:0:0: [sdb] 15628053168 512-byte logical blocks: (8.00 TB/7.28 TiB)
mar 16 22:02:59 usu kernel: sd 5:0:0:0: [sdb] 4096-byte physical blocks
mar 16 22:02:59 usu kernel: sd 5:0:0:0: [sdb] Write Protect is off
mar 16 22:02:59 usu kernel: sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
mar 16 22:02:59 usu kernel: sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
mar 16 22:02:59 usu kernel:  sda: sda1
mar 16 22:02:59 usu kernel: sd 4:0:0:0: [sda] Attached SCSI disk
mar 16 22:02:59 usu kernel:  sdb: sdb1 sdb2
mar 16 22:02:59 usu kernel: sd 5:0:0:0: [sdb] Attached SCSI disk
mar 16 22:02:59 usu kernel: ata10: SATA link down (SStatus 0 SControl 300)
mar 16 22:02:59 usu kernel: Freeing unused decrypted memory: 2036K
mar 16 22:02:59 usu kernel: Freeing unused kernel image (initmem) memory: 2040K
mar 16 22:02:59 usu kernel: Write protecting the kernel read-only data: 30720k
mar 16 22:02:59 usu kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
mar 16 22:02:59 usu kernel: Freeing unused kernel image (rodata/data gap) memory: 1288K
mar 16 22:02:59 usu kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
mar 16 22:02:59 usu kernel: rodata_test: all tests were successful
mar 16 22:02:59 usu kernel: Run /init as init process
mar 16 22:02:59 usu kernel:   with arguments:
mar 16 22:02:59 usu kernel:     /init
mar 16 22:02:59 usu kernel:   with environment:
mar 16 22:02:59 usu kernel:     HOME=/
mar 16 22:02:59 usu kernel:     TERM=linux
mar 16 22:02:59 usu kernel:     BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64
mar 16 22:02:59 usu kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
mar 16 22:02:59 usu kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
mar 16 22:02:59 usu kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
mar 16 22:02:59 usu kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
mar 16 22:02:59 usu kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
mar 16 22:02:59 usu kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
mar 16 22:03:02 usu kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
mar 16 22:03:02 usu kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 16 22:03:02 usu kernel: usb usb1: Product: xHCI Host Controller
mar 16 22:03:02 usu kernel: usb usb1: Manufacturer: Linux 5.15.173-1-MANJARO xhci-hcd
mar 16 22:03:02 usu kernel: usb usb1: SerialNumber: 0000:00:14.0
mar 16 22:03:02 usu kernel: hub 1-0:1.0: USB hub found
mar 16 22:03:02 usu kernel: hub 1-0:1.0: 16 ports detected
mar 16 22:03:02 usu kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
mar 16 22:03:02 usu kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 16 22:03:02 usu kernel: usb usb2: Product: xHCI Host Controller
mar 16 22:03:02 usu kernel: usb usb2: Manufacturer: Linux 5.15.173-1-MANJARO xhci-hcd
mar 16 22:03:02 usu kernel: usb usb2: SerialNumber: 0000:00:14.0
mar 16 22:03:02 usu kernel: hub 2-0:1.0: USB hub found
mar 16 22:03:02 usu kernel: hub 2-0:1.0: 8 ports detected
mar 16 22:03:02 usu kernel: usb 1-1: new full-speed USB device number 2 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-1: New USB device found, idVendor=1ea7, idProduct=2002, bcdDevice= 1.03
mar 16 22:03:02 usu kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-1: Product: Gaming Keyboard
mar 16 22:03:02 usu kernel: usb 1-1: Manufacturer: WFDZ
mar 16 22:03:02 usu kernel: input: WFDZ Gaming Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1EA7:2002.0001/input/input3
mar 16 22:03:02 usu kernel: usb 2-4: new SuperSpeed USB device number 2 using xhci_hcd
mar 16 22:03:02 usu kernel: hid-generic 0003:1EA7:2002.0001: input,hidraw0: USB HID v1.10 Keyboard [WFDZ Gaming Keyboard] on usb-0000:00:14.0-1/input0
mar 16 22:03:02 usu kernel: input: WFDZ Gaming Keyboard Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1EA7:2002.0002/input/input4
mar 16 22:03:02 usu kernel: input: WFDZ Gaming Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1EA7:2002.0002/input/input5
mar 16 22:03:02 usu kernel: usb 2-4: New USB device found, idVendor=174c, idProduct=3074, bcdDevice= 0.01
mar 16 22:03:02 usu kernel: usb 2-4: New USB device strings: Mfr=2, Product=3, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 2-4: Product: ASM107x
mar 16 22:03:02 usu kernel: usb 2-4: Manufacturer: ASUS TEK.
mar 16 22:03:02 usu kernel: hub 2-4:1.0: USB hub found
mar 16 22:03:02 usu kernel: hub 2-4:1.0: 4 ports detected
mar 16 22:03:02 usu kernel: input: WFDZ Gaming Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1EA7:2002.0002/input/input6
mar 16 22:03:02 usu kernel: hid-generic 0003:1EA7:2002.0002: input,hiddev96,hidraw1: USB HID v1.10 Mouse [WFDZ Gaming Keyboard] on usb-0000:00:14.0-1/input1
mar 16 22:03:02 usu kernel: usbcore: registered new interface driver usbhid
mar 16 22:03:02 usu kernel: usbhid: USB HID core driver
mar 16 22:03:02 usu kernel: usb 1-2: new high-speed USB device number 3 using xhci_hcd
mar 16 22:03:02 usu kernel: fbcon: Taking over console
mar 16 22:03:02 usu kernel: Console: switching to colour frame buffer device 240x67
mar 16 22:03:02 usu kernel: EXT4-fs (nvme0n1p6): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
mar 16 22:03:02 usu kernel: usb 1-2: New USB device found, idVendor=346d, idProduct=5678, bcdDevice= 2.00
mar 16 22:03:02 usu kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 16 22:03:02 usu kernel: usb 1-2: Product: Disk 2.0
mar 16 22:03:02 usu kernel: usb 1-2: Manufacturer: USB
mar 16 22:03:02 usu kernel: usb 1-2: SerialNumber: 5554371134980044879
mar 16 22:03:02 usu systemd[1]: systemd 256.8-2-manjaro running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
mar 16 22:03:02 usu systemd[1]: Detected architecture x86-64.
mar 16 22:03:02 usu systemd[1]: Hostname set to <usu>.
mar 16 22:03:02 usu systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
mar 16 22:03:02 usu kernel: usb 1-4: new high-speed USB device number 4 using xhci_hcd
mar 16 22:03:02 usu systemd-ssh-generator[582]: Binding SSH to AF_UNIX socket /run/ssh-unix-local/socket.
mar 16 22:03:02 usu systemd-ssh-generator[582]: → connect via 'ssh .host' locally
mar 16 22:03:02 usu systemd[1]: Queued start job for default target Graphical Interface.
mar 16 22:03:02 usu systemd[1]: Created slice CUPS Slice.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/dirmngr.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/getty.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/gpg-agent.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/gpg-agent-browser.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/gpg-agent-extra.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/gpg-agent-ssh.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/keyboxd.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/modprobe.
mar 16 22:03:02 usu systemd[1]: Created slice Slice /system/systemd-fsck.
mar 16 22:03:02 usu systemd[1]: Created slice User and Session Slice.
mar 16 22:03:02 usu systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
mar 16 22:03:02 usu systemd[1]: Started Forward Password Requests to Wall Directory Watch.
mar 16 22:03:02 usu systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
mar 16 22:03:02 usu systemd[1]: Expecting device /dev/disk/by-diskseq/1-part5...
mar 16 22:03:02 usu systemd[1]: Expecting device /dev/disk/by-uuid/F8F0-41CC...
mar 16 22:03:02 usu systemd[1]: Expecting device /dev/tpmrm0...
mar 16 22:03:02 usu systemd[1]: Reached target Local Encrypted Volumes.
mar 16 22:03:02 usu systemd[1]: Reached target Login Prompts.
mar 16 22:03:02 usu systemd[1]: Reached target Local Integrity Protected Volumes.
mar 16 22:03:02 usu systemd[1]: Reached target Remote File Systems.
mar 16 22:03:02 usu systemd[1]: Reached target Slice Units.
mar 16 22:03:02 usu systemd[1]: Reached target Mounting snaps.
mar 16 22:03:02 usu systemd[1]: Reached target Local Verity Protected Volumes.
mar 16 22:03:02 usu systemd[1]: Listening on Device-mapper event daemon FIFOs.
mar 16 22:03:02 usu systemd[1]: Listening on LVM2 poll daemon socket.
mar 16 22:03:02 usu systemd[1]: Listening on Process Core Dump Socket.
mar 16 22:03:02 usu systemd[1]: Listening on Credential Encryption/Decryption.
mar 16 22:03:02 usu systemd[1]: Listening on Journal Socket (/dev/log).
mar 16 22:03:02 usu systemd[1]: Listening on Journal Sockets.
mar 16 22:03:02 usu systemd[1]: Listening on udev Control Socket.
mar 16 22:03:02 usu systemd[1]: Listening on udev Kernel Socket.
mar 16 22:03:02 usu systemd[1]: Mounting Huge Pages File System...
mar 16 22:03:02 usu systemd[1]: Mounting POSIX Message Queue File System...
mar 16 22:03:02 usu systemd[1]: Mounting Kernel Debug File System...
mar 16 22:03:02 usu systemd[1]: Mounting Kernel Trace File System...
mar 16 22:03:02 usu systemd[1]: Starting Load AppArmor profiles...
mar 16 22:03:02 usu systemd[1]: Starting Create List of Static Device Nodes...
mar 16 22:03:02 usu systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module configfs...
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module dm_mod...
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module drm...
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module fuse...
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module loop...
mar 16 22:03:02 usu systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
mar 16 22:03:02 usu systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Modules...
mar 16 22:03:02 usu systemd[1]: Starting Remount Root and Kernel File Systems...
mar 16 22:03:02 usu systemd[1]: Starting Load udev Rules from Credentials...
mar 16 22:03:02 usu systemd[1]: Starting Coldplug All udev Devices...
mar 16 22:03:02 usu systemd[1]: Mounted Huge Pages File System.
mar 16 22:03:02 usu systemd[1]: Mounted POSIX Message Queue File System.
mar 16 22:03:02 usu systemd[1]: Mounted Kernel Debug File System.
mar 16 22:03:02 usu systemd[1]: Mounted Kernel Trace File System.
mar 16 22:03:02 usu systemd[1]: Finished Create List of Static Device Nodes.
mar 16 22:03:02 usu systemd[1]: modprobe@configfs.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module configfs.
mar 16 22:03:02 usu systemd[1]: modprobe@drm.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module drm.
mar 16 22:03:02 usu systemd[1]: Mounting Kernel Configuration File System...
mar 16 22:03:02 usu systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
mar 16 22:03:02 usu kernel: EXT4-fs (nvme0n1p6): re-mounted. Opts: (null). Quota mode: none.
mar 16 22:03:02 usu systemd[1]: Finished Remount Root and Kernel File Systems.
mar 16 22:03:02 usu systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
mar 16 22:03:02 usu kernel: random: lvm: uninitialized urandom read (4 bytes read)
mar 16 22:03:02 usu systemd[1]: Starting Load/Save OS Random Seed...
mar 16 22:03:02 usu systemd[1]: Finished Load udev Rules from Credentials.
mar 16 22:03:02 usu systemd[1]: Mounted Kernel Configuration File System.
mar 16 22:03:02 usu kernel: device-mapper: uevent: version 1.0.3
mar 16 22:03:02 usu kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
mar 16 22:03:02 usu kernel: loop: module loaded
mar 16 22:03:02 usu systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module dm_mod.
mar 16 22:03:02 usu systemd[1]: modprobe@loop.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module loop.
mar 16 22:03:02 usu kernel: fuse: init (API version 7.34)
mar 16 22:03:02 usu systemd[1]: modprobe@fuse.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module fuse.
mar 16 22:03:02 usu systemd[1]: Mounting FUSE Control File System...
mar 16 22:03:02 usu kernel: sd 4:0:0:0: Attached scsi generic sg0 type 0
mar 16 22:03:02 usu kernel: sd 5:0:0:0: Attached scsi generic sg1 type 0
mar 16 22:03:02 usu systemd[1]: Mounted FUSE Control File System.
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="goldendict" pid=642 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=623 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="github-desktop" pid=641 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="foliate" pid=639 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=618 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="geary" pid=640 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="epiphany" pid=635 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="element-desktop" pid=634 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: audit: type=1400 audit(1742158979.289:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=627 comm="apparmor_parser"
mar 16 22:03:02 usu kernel: i2c_dev: i2c /dev entries driver
mar 16 22:03:02 usu kernel: vboxdrv: loading out-of-tree module taints kernel.
mar 16 22:03:02 usu kernel: vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
mar 16 22:03:02 usu kernel: vboxdrv: Found 28 processor cores/threads
mar 16 22:03:02 usu systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
mar 16 22:03:02 usu systemd[1]: Create System Users was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu systemd[1]: Starting Create Static Device Nodes in /dev...
mar 16 22:03:02 usu systemd[1]: Finished Create Static Device Nodes in /dev.
mar 16 22:03:02 usu systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
mar 16 22:03:02 usu systemd[1]: Starting Journal Service...
mar 16 22:03:02 usu systemd[1]: Starting Rule-based Manager for Device Events and Files...
mar 16 22:03:02 usu kernel: vboxdrv: TSC mode is Invariant, tentative frequency 3417599548 Hz
mar 16 22:03:02 usu kernel: vboxdrv: Successfully loaded version 7.1.4 r165100 (interface 0x00340001)
mar 16 22:03:02 usu kernel: VBoxNetAdp: Successfully started.
mar 16 22:03:02 usu kernel: VBoxNetFlt: Successfully started.
mar 16 22:03:02 usu systemd-journald[756]: Collecting audit messages is disabled.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Modules.
mar 16 22:03:02 usu systemd[1]: Starting Apply Kernel Variables...
mar 16 22:03:02 usu systemd[1]: Finished Apply Kernel Variables.
mar 16 22:03:02 usu systemd[1]: Starting CLI Netfilter Manager...
mar 16 22:03:02 usu systemd[1]: Started Rule-based Manager for Device Events and Files.
mar 16 22:03:02 usu systemd[1]: Finished Coldplug All udev Devices.
mar 16 22:03:02 usu systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
mar 16 22:03:02 usu systemd[1]: Reached target Preparation for Local File Systems.
mar 16 22:03:02 usu systemd[1]: Found device Samsung SSD 990 PRO 2TB 5.
mar 16 22:03:02 usu systemd[1]: Found device Samsung SSD 990 PRO 2TB EFI\x20system\x20partition.
mar 16 22:03:02 usu systemd[1]: Finished Load AppArmor profiles.
mar 16 22:03:02 usu kernel: acpi PNP0C14:06: duplicate WMI GUID 97845ED0-4E6D-11DE-8A39-0800200C9A66 (first instance was on PNP0C14:02)
mar 16 22:03:02 usu kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
mar 16 22:03:02 usu kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
mar 16 22:03:02 usu kernel: i2c i2c-0: 2/4 memory slots populated (from DMI)
mar 16 22:03:02 usu kernel: i2c i2c-0: Memory type 0x22 not supported yet, not instantiating SPD
mar 16 22:03:02 usu systemd[1]: Finished CLI Netfilter Manager.
mar 16 22:03:02 usu kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
mar 16 22:03:02 usu kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
mar 16 22:03:02 usu kernel: cryptd: max_cpu_qlen set to 1000
mar 16 22:03:02 usu kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
mar 16 22:03:02 usu kernel: Intel(R) 2.5G Ethernet Linux Driver
mar 16 22:03:02 usu kernel: Copyright(c) 2018 Intel Corporation.
mar 16 22:03:02 usu kernel: igc 0000:07:00.0: PTM enabled, 4ns granularity
mar 16 22:03:02 usu kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
mar 16 22:03:02 usu kernel: iTCO_vendor_support: vendor-support=0
mar 16 22:03:02 usu systemd[1]: Found device /dev/tpmrm0.
mar 16 22:03:02 usu kernel: i8042: PNP: No PS/2 controller found.
mar 16 22:03:02 usu systemd[1]: Reached target Trusted Platform Module.
mar 16 22:03:02 usu systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
mar 16 22:03:02 usu systemd[1]: Activating swap Swap Partition...
mar 16 22:03:02 usu systemd[1]: Starting File System Check on /dev/disk/by-uuid/F8F0-41CC...
mar 16 22:03:02 usu systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: Starting Virtual Console Setup...
mar 16 22:03:02 usu kernel: Adding 8342524k swap on /dev/nvme0n1p5.  Priority:-2 extents:1 across:8342524k SSFS
mar 16 22:03:02 usu systemd[1]: Activated swap Swap Partition.
mar 16 22:03:02 usu systemd[1]: Reached target Swaps.
mar 16 22:03:02 usu kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
mar 16 22:03:02 usu kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
mar 16 22:03:02 usu systemd[1]: Finished Virtual Console Setup.
mar 16 22:03:02 usu systemd[1]: Finished File System Check on /dev/disk/by-uuid/F8F0-41CC.
mar 16 22:03:02 usu kernel: pps pps0: new PPS source ptp0
mar 16 22:03:02 usu kernel: igc 0000:07:00.0 (unnamed net_device) (uninitialized): PHC added
mar 16 22:03:02 usu kernel: intel-lpss 0000:00:15.2: enabling device (0004 -> 0006)
mar 16 22:03:02 usu kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
mar 16 22:03:02 usu kernel: igc 0000:07:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
mar 16 22:03:02 usu kernel: igc 0000:07:00.0 eth0: MAC: 50:eb:f6:79:c3:98
mar 16 22:03:02 usu kernel: igc 0000:07:00.0 enp7s0: renamed from eth0
mar 16 22:03:02 usu kernel: AVX2 version of gcm_enc/dec engaged.
mar 16 22:03:02 usu kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
mar 16 22:03:02 usu kernel: AES CTR mode by8 optimization enabled
mar 16 22:03:02 usu kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
mar 16 22:03:02 usu kernel: asus_wmi: ASUS WMI generic driver loaded
mar 16 22:03:02 usu kernel: asus_wmi: SFUN value: 0x1
mar 16 22:03:02 usu kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
mar 16 22:03:02 usu kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
mar 16 22:03:02 usu kernel: asus_wmi: Failed to get WMI notify code: AE_NOT_FOUND
mar 16 22:03:02 usu kernel: asus_wmi: Failed to get event during flush: -5
mar 16 22:03:02 usu kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input9
mar 16 22:03:02 usu kernel: intel-spi 0000:00:1f.5: mx25l25635e (32768 Kbytes)
mar 16 22:03:02 usu kernel: asus_wmi: SFUN value: 0x1
mar 16 22:03:02 usu kernel: eeepc-wmi eeepc-wmi: Detected ATK, not ASUSWMI, use DSTS
mar 16 22:03:02 usu kernel: Creating 1 MTD partitions on "0000:00:1f.5":
mar 16 22:03:02 usu kernel: 0x000000000000-0x000002000000 : "BIOS"
mar 16 22:03:02 usu kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input10
mar 16 22:03:02 usu kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
mar 16 22:03:02 usu kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
mar 16 22:03:02 usu kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
mar 16 22:03:02 usu kernel: cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
mar 16 22:03:02 usu kernel: kvm: unknown parameter 'enable_virt_at_load' ignored
mar 16 22:03:02 usu kernel: Intel(R) Wireless WiFi driver for Linux
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: enabling device (0000 -> 0002)
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: api flags index 2 larger than supported by driver
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.63.2.2
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: loaded firmware version 66.f1c864e0.0 ty-a0-gf-a0-66.ucode op_mode iwlmvm
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
mar 16 22:03:02 usu kernel: thermal thermal_zone2: failed to read out thermal zone (-61)
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: loaded PNVM version 0x16611aa6
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: Detected RF GF, rfid=0x10d000
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0: base HW address: 44:e5:17:06:dd:5d
mar 16 22:03:02 usu systemd[1]: Starting Load/Save RF Kill Switch Status...
mar 16 22:03:02 usu kernel: iwlwifi 0000:05:00.0 wlp5s0: renamed from wlan0
mar 16 22:03:02 usu systemd[1]: Started Load/Save RF Kill Switch Status.
mar 16 22:03:02 usu kernel: random: crng init done
mar 16 22:03:02 usu systemd[1]: Finished Load/Save OS Random Seed.
mar 16 22:03:02 usu systemd[1]: Mounting /boot/efi...
mar 16 22:03:02 usu systemd[1]: Mounting /tmp...
mar 16 22:03:02 usu systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for core, revision 17200...
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for core20, revision 2434...
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for core20, revision 2496...
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for electrum, revision 2...
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for riseup-vpn, revision 179...
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for riseup-vpn, revision 184...
mar 16 22:03:02 usu kernel: loop0: detected capacity change from 0 to 213384
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for snapd, revision 23545...
mar 16 22:03:02 usu kernel: loop1: detected capacity change from 0 to 130448
mar 16 22:03:02 usu kernel: loop2: detected capacity change from 0 to 130552
mar 16 22:03:02 usu systemd[1]: Mounting Mount unit for snapd, revision 23771...
mar 16 22:03:02 usu systemd[1]: Mounted /tmp.
mar 16 22:03:02 usu kernel: loop3: detected capacity change from 0 to 216800
mar 16 22:03:02 usu kernel: loop4: detected capacity change from 0 to 471968
mar 16 22:03:02 usu kernel: loop5: detected capacity change from 0 to 474984
mar 16 22:03:02 usu kernel: loop6: detected capacity change from 0 to 91008
mar 16 22:03:02 usu kernel: loop7: detected capacity change from 0 to 91024
mar 16 22:03:02 usu kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
mar 16 22:03:02 usu systemd[1]: Mounted /boot/efi.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for core, revision 17200.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for core20, revision 2434.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for core20, revision 2496.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for electrum, revision 2.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for riseup-vpn, revision 179.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for riseup-vpn, revision 184.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for snapd, revision 23545.
mar 16 22:03:02 usu systemd[1]: Mounted Mount unit for snapd, revision 23771.
mar 16 22:03:02 usu systemd[1]: Reached target Mounted snaps.
mar 16 22:03:02 usu systemd[1]: Reached target Local File Systems.
mar 16 22:03:02 usu systemd[1]: Listening on Boot Entries Service Socket.
mar 16 22:03:02 usu systemd[1]: Listening on System Extension Image Management.
mar 16 22:03:02 usu systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu systemd[1]: Starting Load AppArmor profiles managed internally by snapd...
mar 16 22:03:02 usu systemd[1]: Starting Set Up Additional Binary Formats...
mar 16 22:03:02 usu systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1063 (systemd-binfmt)
mar 16 22:03:02 usu kernel: usb 1-4: New USB device found, idVendor=0b05, idProduct=1996, bcdDevice= 0.13
mar 16 22:03:02 usu kernel: usb 1-4: New USB device strings: Mfr=3, Product=1, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-4: Product: USB Audio
mar 16 22:03:02 usu kernel: usb 1-4: Manufacturer: Generic
mar 16 22:03:02 usu kernel: hid-generic 0003:0B05:1996.0003: hiddev97,hidraw2: USB HID v1.11 Device [Generic USB Audio] on usb-0000:00:14.0-4/input7
mar 16 22:03:02 usu kernel: usb 1-5: new high-speed USB device number 5 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-5: New USB device found, idVendor=174c, idProduct=2074, bcdDevice= 0.01
mar 16 22:03:02 usu kernel: usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-5: Product: ASM107x
mar 16 22:03:02 usu kernel: usb 1-5: Manufacturer: ASUS TEK.
mar 16 22:03:02 usu kernel: hub 1-5:1.0: USB hub found
mar 16 22:03:02 usu kernel: hub 1-5:1.0: 4 ports detected
mar 16 22:03:02 usu systemd[1]: Mounting Arbitrary Executable File Formats File System...
mar 16 22:03:02 usu systemd[1]: Mounted Arbitrary Executable File Formats File System.
mar 16 22:03:02 usu systemd[1]: Finished Set Up Additional Binary Formats.
mar 16 22:03:02 usu systemd[1]: Finished Load AppArmor profiles managed internally by snapd.
mar 16 22:03:02 usu kernel: usb 1-10: new high-speed USB device number 6 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-10: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
mar 16 22:03:02 usu kernel: usb 1-10: New USB device strings: Mfr=0, Product=1, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-10: Product: USB2.0 Hub
mar 16 22:03:02 usu kernel: hub 1-10:1.0: USB hub found
mar 16 22:03:02 usu kernel: hub 1-10:1.0: 4 ports detected
mar 16 22:03:02 usu kernel: usb 1-5.2: new full-speed USB device number 7 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-5.2: New USB device found, idVendor=25a7, idProduct=fa23, bcdDevice= 2.41
mar 16 22:03:02 usu kernel: usb 1-5.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-5.2: Product: 2.4G Receiver
mar 16 22:03:02 usu kernel: usb 1-5.2: Manufacturer: Compx
mar 16 22:03:02 usu kernel: input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.0/0003:25A7:FA23.0004/input/input11
mar 16 22:03:02 usu kernel: usb 1-11: new high-speed USB device number 8 using xhci_hcd
mar 16 22:03:02 usu kernel: hid-generic 0003:25A7:FA23.0004: input,hidraw3: USB HID v1.10 Keyboard [Compx 2.4G Receiver] on usb-0000:00:14.0-5.2/input0
mar 16 22:03:02 usu kernel: input: Compx 2.4G Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input12
mar 16 22:03:02 usu kernel: input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input13
mar 16 22:03:02 usu kernel: input: Compx 2.4G Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input14
mar 16 22:03:02 usu kernel: input: Compx 2.4G Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input15
mar 16 22:03:02 usu kernel: hid-generic 0003:25A7:FA23.0005: input,hiddev98,hidraw4: USB HID v1.10 Mouse [Compx 2.4G Receiver] on usb-0000:00:14.0-5.2/input1
mar 16 22:03:02 usu kernel: usb 1-11: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
mar 16 22:03:02 usu kernel: usb 1-11: New USB device strings: Mfr=0, Product=1, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-11: Product: USB2.0 Hub
mar 16 22:03:02 usu kernel: hub 1-11:1.0: USB hub found
mar 16 22:03:02 usu kernel: hub 1-11:1.0: 3 ports detected
mar 16 22:03:02 usu kernel: usb 1-10.2: new high-speed USB device number 9 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-10.2: New USB device found, idVendor=0402, idProduct=3922, bcdDevice= 0.01
mar 16 22:03:02 usu kernel: usb 1-10.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
mar 16 22:03:02 usu kernel: usb 1-10.2: Product: USBLCD
mar 16 22:03:02 usu kernel: usb 1-13: new full-speed USB device number 10 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-13: config 1 has an invalid interface number: 2 but max is 1
mar 16 22:03:02 usu kernel: usb 1-13: config 1 has no interface number 1
mar 16 22:03:02 usu kernel: usb 1-13: New USB device found, idVendor=0b05, idProduct=19af, bcdDevice= 1.00
mar 16 22:03:02 usu kernel: usb 1-13: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 16 22:03:02 usu kernel: usb 1-13: Product: AURA LED Controller
mar 16 22:03:02 usu kernel: usb 1-13: Manufacturer: AsusTek Computer Inc.
mar 16 22:03:02 usu kernel: usb 1-13: SerialNumber: 9876543210
mar 16 22:03:02 usu kernel: hid-generic 0003:0B05:19AF.0006: hiddev99,hidraw5: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:00:14.0-13/input2
mar 16 22:03:02 usu kernel: usb 1-10.3: new full-speed USB device number 11 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-10.3: New USB device found, idVendor=1b1c, idProduct=1d04, bcdDevice= 0.0a
mar 16 22:03:02 usu kernel: usb 1-10.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 16 22:03:02 usu kernel: usb 1-10.3: Product: SPEC-OMEGA
mar 16 22:03:02 usu kernel: usb 1-10.3: Manufacturer: Corsair
mar 16 22:03:02 usu kernel: usb 1-10.3: SerialNumber: 3BC00311E9947BAFD3927D5F051C00F5
mar 16 22:03:02 usu kernel: hid-generic 0003:1B1C:1D04.0007: hiddev100,hidraw6: USB HID v1.11 Device [Corsair SPEC-OMEGA] on usb-0000:00:14.0-10.3/input0
mar 16 22:03:02 usu kernel: usb 1-14: new full-speed USB device number 12 using xhci_hcd
mar 16 22:03:02 usu kernel: usb 1-14: New USB device found, idVendor=8087, idProduct=0032, bcdDevice= 0.00
mar 16 22:03:02 usu kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
mar 16 22:03:02 usu systemd-journald[756]: Journal started
mar 16 22:03:02 usu systemd-journald[756]: Runtime Journal (/run/log/journal/32f41b3e23284159aa63efbddd62001f) is 8M, max 3.1G, 3.1G free.
mar 16 22:03:02 usu mtp-probe[1102]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4"
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'crypto_user'
mar 16 22:03:02 usu mtp-probe[1100]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2"
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'sg'
mar 16 22:03:02 usu mtp-probe[1103]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-13"
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'i2c_dev'
mar 16 22:03:02 usu mtp-probe[1090]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
mar 16 22:02:59 usu systemd-random-seed[614]: Kernel entropy pool is not initialized yet, waiting until it is.
mar 16 22:03:02 usu mtp-probe[1100]: bus: 1, device: 3 was not an MTP device
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'vboxdrv'
mar 16 22:03:02 usu mtp-probe[1103]: bus: 1, device: 10 was not an MTP device
mar 16 22:03:02 usu apparmor.systemd[592]: Restarting AppArmor
mar 16 22:03:02 usu apparmor.systemd[592]: Reloading AppArmor profiles
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'vboxnetadp'
mar 16 22:03:02 usu mtp-probe[1102]: bus: 1, device: 4 was not an MTP device
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'vboxnetflt'
mar 16 22:03:02 usu mtp-probe[1090]: bus: 1, device: 2 was not an MTP device
mar 16 22:02:59 usu systemd-modules-load[600]: Inserted module 'uinput'
mar 16 22:02:59 usu (udev-worker)[820]: event9: Failed to call EVIOCSKEYCODE with scan code 0x7c, and key code 190: Invalid argument
mar 16 22:03:02 usu systemd[1]: Starting Flush Journal to Persistent Storage...
mar 16 22:03:02 usu mtp-probe[1123]: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2"
mar 16 22:03:02 usu mtp-probe[1123]: bus: 1, device: 7 was not an MTP device
mar 16 22:03:02 usu systemd-fsck[961]: fsck.fat 4.2 (2021-01-31)
mar 16 22:03:02 usu systemd-fsck[961]: /dev/nvme0n1p2: 520 files, 82011/98304 clusters
mar 16 22:03:02 usu snapd-apparmor[1062]: main.go:146: Loading profiles [/var/lib/snapd/apparmor/profiles/snap-confine.core.17200 /var/lib/snapd/apparmor/profiles/snap-confine.snapd.23545 /var/lib/snapd/apparmor/profiles/snap-confine.snapd.23771 /var/lib/snapd/apparmor/profiles/snap-update-ns.core /var/lib/snapd/apparmor/profiles/snap-update-ns.electrum /var/lib/snapd/apparmor/profiles/snap-update-ns.riseup-vpn /var/lib/snapd/apparmor/profiles/snap.core.hook.configure /var/lib/snapd/apparmor/profiles/snap.electrum.electrum /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.bitmask-root /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.hook.install /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.hook.remove /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.launcher /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.openvpn]
mar 16 22:03:02 usu systemd-journald[756]: Time spent on flushing to /var/log/journal/32f41b3e23284159aa63efbddd62001f is 33.348ms for 1187 entries.
mar 16 22:03:02 usu systemd-journald[756]: System Journal (/var/log/journal/32f41b3e23284159aa63efbddd62001f) is 32M, max 4G, 3.9G free.
mar 16 22:03:02 usu systemd[1]: Started Journal Service.
mar 16 22:03:02 usu systemd-journald[756]: Received client request to flush runtime journal.
mar 16 22:03:02 usu kernel: mousedev: PS/2 mouse device common for all mice
mar 16 22:03:02 usu kernel: usb-storage 1-2:1.0: USB Mass Storage device detected
mar 16 22:03:02 usu kernel: scsi host10: usb-storage 1-2:1.0
mar 16 22:03:02 usu kernel: usb-storage 1-10.2:1.0: USB Mass Storage device detected
mar 16 22:03:02 usu kernel: scsi host11: usb-storage 1-10.2:1.0
mar 16 22:03:02 usu kernel: usbcore: registered new interface driver usb-storage
mar 16 22:03:02 usu kernel: mc: Linux media interface: v0.10
mar 16 22:03:02 usu kernel: usbcore: registered new interface driver uas
mar 16 22:03:02 usu kernel: Bluetooth: Core ver 2.22
mar 16 22:03:02 usu kernel: NET: Registered PF_BLUETOOTH protocol family
mar 16 22:03:02 usu kernel: Bluetooth: HCI device and connection manager initialized
mar 16 22:03:02 usu kernel: Bluetooth: HCI socket layer initialized
mar 16 22:03:02 usu kernel: Bluetooth: L2CAP socket layer initialized
mar 16 22:03:02 usu kernel: Bluetooth: SCO socket layer initialized
mar 16 22:03:02 usu kernel: usbcore: registered new interface driver btusb
mar 16 22:03:02 usu kernel: Bluetooth: hci0: Firmware timestamp 2024.33 buildtype 1 build 81755
mar 16 22:03:02 usu kernel: Bluetooth: hci0: Found device firmware: intel/ibt-0041-0041.sfi
mar 16 22:03:02 usu kernel: Bluetooth: hci0: Boot Address: 0x100800
mar 16 22:03:02 usu kernel: Bluetooth: hci0: Firmware Version: 91-33.24
mar 16 22:03:02 usu kernel: Bluetooth: hci0: Firmware already loaded
mar 16 22:03:02 usu mtp-probe[1163]: checking bus 1, device 11: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3"
mar 16 22:03:02 usu systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
mar 16 22:03:02 usu mtp-probe[1163]: bus: 1, device: 11 was not an MTP device
mar 16 22:03:02 usu systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu mtp-probe[1169]: checking bus 1, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2"
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module dm_mod...
mar 16 22:03:02 usu mtp-probe[1169]: bus: 1, device: 9 was not an MTP device
mar 16 22:03:02 usu systemd[1]: Starting Load Kernel Module loop...
mar 16 22:03:02 usu mtp-probe[1255]: checking bus 1, device 11: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3"
mar 16 22:03:02 usu systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu mtp-probe[1255]: bus: 1, device: 11 was not an MTP device
mar 16 22:03:02 usu systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
mar 16 22:03:02 usu mtp-probe[1258]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-13"
mar 16 22:03:02 usu systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
mar 16 22:03:02 usu mtp-probe[1258]: bus: 1, device: 10 was not an MTP device
mar 16 22:03:02 usu systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu mtp-probe[1260]: checking bus 1, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2"
mar 16 22:03:02 usu systemd[1]: Create System Users was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu mtp-probe[1260]: bus: 1, device: 9 was not an MTP device
mar 16 22:03:02 usu systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module dm_mod.
mar 16 22:03:02 usu systemd[1]: modprobe@loop.service: Deactivated successfully.
mar 16 22:03:02 usu systemd[1]: Finished Load Kernel Module loop.
mar 16 22:03:02 usu systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu systemd[1]: Finished Flush Journal to Persistent Storage.
mar 16 22:03:02 usu systemd[1]: Starting Create System Files and Directories...
mar 16 22:03:02 usu systemd[1]: Finished Create System Files and Directories.
mar 16 22:03:02 usu systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
mar 16 22:03:02 usu systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
mar 16 22:03:02 usu systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
mar 16 22:03:02 usu systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
mar 16 22:03:02 usu systemd[1]: Starting Network Time Synchronization...
mar 16 22:03:02 usu systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
mar 16 22:03:02 usu systemd[1]: Starting Record System Boot/Shutdown in UTMP...
mar 16 22:03:02 usu systemd[1]: Finished Record System Boot/Shutdown in UTMP.
mar 16 22:03:02 usu systemd[1]: Started Network Time Synchronization.
mar 16 22:03:02 usu systemd[1]: Reached target System Initialization.
mar 16 22:03:02 usu systemd[1]: Started CUPS Scheduler.
mar 16 22:03:02 usu systemd[1]: Started Daily Cleanup of Temporary Directories.
mar 16 22:03:02 usu systemd[1]: Reached target Path Units.
mar 16 22:03:02 usu systemd[1]: Reached target System Time Set.
mar 16 22:03:02 usu systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
mar 16 22:03:02 usu systemd[1]: Started Daily rotation of log files.
mar 16 22:03:02 usu systemd[1]: Started Daily man-db regeneration.
mar 16 22:03:02 usu systemd[1]: Started Monthly clean packages cache.
mar 16 22:03:02 usu systemd[1]: Started Generate mirrorlist weekly.
mar 16 22:03:02 usu systemd[1]: Started pkgfile database update timer.
mar 16 22:03:02 usu systemd[1]: Started Daily verification of password and group files.
mar 16 22:03:02 usu systemd[1]: Reached target Timer Units.
mar 16 22:03:02 usu systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
mar 16 22:03:02 usu systemd[1]: Listening on CUPS Scheduler.
mar 16 22:03:02 usu systemd[1]: Listening on D-Bus System Message Bus Socket.
mar 16 22:03:02 usu systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
mar 16 22:03:02 usu systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
mar 16 22:03:02 usu systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
mar 16 22:03:02 usu systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
mar 16 22:03:02 usu systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
mar 16 22:03:02 usu systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
mar 16 22:03:02 usu systemd[1]: Starting Socket activation for snappy daemon...
mar 16 22:03:02 usu systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
mar 16 22:03:02 usu systemd[1]: Listening on Hostname Service Socket.
mar 16 22:03:02 usu systemd[1]: Starting D-Bus System Message Bus...
mar 16 22:03:02 usu systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu systemd[1]: Listening on Socket activation for snappy daemon.
mar 16 22:03:02 usu systemd[1]: Reached target Socket Units.
mar 16 22:03:02 usu dbus-broker-launch[1281]: Looking up NSS user entry for 'pulse'...
mar 16 22:03:02 usu dbus-broker-launch[1281]: NSS returned no entry for 'pulse'
mar 16 22:03:02 usu dbus-broker-launch[1281]: Invalid user-name in /usr/share/dbus-1/system.d/pulseaudio-system.conf +27: user="pulse"
mar 16 22:03:02 usu systemd[1]: Started D-Bus System Message Bus.
mar 16 22:03:02 usu systemd[1]: Reached target Basic System.
mar 16 22:03:02 usu systemd[1]: Starting Network Manager...
mar 16 22:03:02 usu systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
mar 16 22:03:02 usu systemd[1]: Starting Bluetooth service...
mar 16 22:03:02 usu systemd[1]: Starting Authorization Manager...
mar 16 22:03:02 usu systemd[1]: Starting Snap Daemon...
mar 16 22:03:02 usu (uetoothd)[1289]: bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
mar 16 22:03:02 usu systemd[1]: Starting User Login Management...
mar 16 22:03:02 usu systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 16 22:03:02 usu mtp-probe[1293]: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2"
mar 16 22:03:02 usu mtp-probe[1293]: bus: 1, device: 7 was not an MTP device
mar 16 22:03:02 usu avahi-daemon[1288]: Found user 'avahi' (UID 971) and group 'avahi' (GID 971).
mar 16 22:03:02 usu avahi-daemon[1288]: Successfully dropped root privileges.
mar 16 22:03:02 usu avahi-daemon[1288]: avahi-daemon 0.8 starting up.
mar 16 22:03:02 usu dbus-broker-launch[1281]: Ready
mar 16 22:03:02 usu systemd[1]: Started Avahi mDNS/DNS-SD Stack.
mar 16 22:03:02 usu avahi-daemon[1288]: Successfully called chroot().
mar 16 22:03:02 usu avahi-daemon[1288]: Successfully dropped remaining capabilities.
mar 16 22:03:02 usu avahi-daemon[1288]: No service file found in /etc/avahi/services.
mar 16 22:03:02 usu avahi-daemon[1288]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
mar 16 22:03:02 usu avahi-daemon[1288]: New relevant interface lo.IPv6 for mDNS.
mar 16 22:03:02 usu avahi-daemon[1288]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
mar 16 22:03:02 usu avahi-daemon[1288]: New relevant interface lo.IPv4 for mDNS.
mar 16 22:03:02 usu avahi-daemon[1288]: Network interface enumeration completed.
mar 16 22:03:02 usu avahi-daemon[1288]: Registering new address record for ::1 on lo.*.
mar 16 22:03:02 usu avahi-daemon[1288]: Registering new address record for 127.0.0.1 on lo.IPv4.
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9288] NetworkManager (version 1.50.0-1) is starting... (boot:9e4a3d15-df83-49e3-9b62-bcd240ef848d)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9288] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
mar 16 22:03:02 usu bluetoothd[1289]: Bluetooth daemon 5.79
mar 16 22:03:02 usu systemd[1]: Started Bluetooth service.
mar 16 22:03:02 usu systemd[1]: Reached target Bluetooth Support.
mar 16 22:03:02 usu bluetoothd[1289]: Starting SDP server
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9316] manager[0x55ddc2b09200]: monitoring kernel firmware directory '/lib/firmware'.
mar 16 22:03:02 usu systemd[1]: Starting Hostname Service...
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event2 (Power Button)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event1 (Power Button)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event0 (Sleep Button)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event3 (WFDZ Gaming Keyboard)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event5 (WFDZ Gaming Keyboard Consumer Control)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event6 (WFDZ Gaming Keyboard System Control)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event10 (Compx 2.4G Receiver)
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event13 (Compx 2.4G Receiver Consumer Control)
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support bap plugin
mar 16 22:03:02 usu systemd-logind[1294]: Watching system buttons on /dev/input/event14 (Compx 2.4G Receiver System Control)
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support bass plugin
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support mcp plugin
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support vcp plugin
mar 16 22:03:02 usu bluetoothd[1289]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support micp plugin
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support ccp plugin
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support csip plugin
mar 16 22:03:02 usu bluetoothd[1289]: src/plugin.c:init_plugin() System does not support asha plugin
mar 16 22:03:02 usu bluetoothd[1289]: Bluetooth management interface 1.21 initialized
mar 16 22:03:02 usu bluetoothd[1289]: Battery Provider Manager created
mar 16 22:03:02 usu systemd-logind[1294]: New seat seat0.
mar 16 22:03:02 usu systemd[1]: Started User Login Management.
mar 16 22:03:02 usu kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
mar 16 22:03:02 usu kernel: Bluetooth: BNEP filters: protocol multicast
mar 16 22:03:02 usu kernel: Bluetooth: BNEP socket layer initialized
mar 16 22:03:02 usu polkitd[1291]: Started polkitd version 125
mar 16 22:03:02 usu kernel: NET: Registered PF_ALG protocol family
mar 16 22:03:02 usu systemd[1]: Started Authorization Manager.
mar 16 22:03:02 usu systemd[1]: Starting Modem Manager...
mar 16 22:03:02 usu ModemManager[1339]: <msg> ModemManager (version 1.22.0-1) starting in system bus...
mar 16 22:03:02 usu systemd[1]: Started Hostname Service.
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9566] hostname: hostname: using hostnamed
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9566] hostname: static hostname changed from (none) to "usu"
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9568] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9573] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.0/0000:05:00.0/ieee80211/phy0/rfkill0) (driver iwlwifi)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9573] manager[0x55ddc2b09200]: rfkill: Wi-Fi hardware radio set enabled
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9573] manager[0x55ddc2b09200]: rfkill: WWAN hardware radio set disabled
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9608] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-ovs.so)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9616] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-bluetooth.so)
mar 16 22:03:02 usu systemd[1]: Started Modem Manager.
mar 16 22:03:02 usu kernel: NET: Registered PF_QIPCRTR protocol family
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9695] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-team.so)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9697] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-adsl.so)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9699] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-wwan.so)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9705] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-wifi.so)
mar 16 22:03:02 usu snapd[1292]: overlord.go:274: Acquiring state lock file
mar 16 22:03:02 usu snapd[1292]: overlord.go:279: Acquired state lock file
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9706] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9706] manager: rfkill: WWAN enabled by radio killswitch; disabled by state file
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9706] manager: Networking is enabled by state file
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9708] settings: Loaded settings plugin: keyfile (internal)
mar 16 22:03:02 usu systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9729] dhcp: init: Using DHCP client 'internal'
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9730] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9734] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9739] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9741] device (lo): Activation: starting connection 'lo' (31f9b10f-1524-4e76-a0d5-f6f5209ffd08)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9744] manager: (enp7s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9748] settings: (enp7s0): created default wired connection 'Wired connection 1'
mar 16 22:03:02 usu NetworkManager[1286]: <info>  [1742158982.9748] device (enp7s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 16 22:03:02 usu systemd[1]: Started Network Manager Script Dispatcher Service.
mar 16 22:03:02 usu snapd[1292]: daemon.go:250: started snapd/2.66.1-1 (series 16; classic; devmode) manjaro/rolling (amd64) linux/5.15.173-1-MANJARO.
mar 16 22:03:02 usu systemd[1]: tmp-syscheck\x2dmountpoint\x2d130871002.mount: Deactivated successfully.
mar 16 22:03:02 usu kernel: loop8: detected capacity change from 0 to 8
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.0055] device (wlp5s0): driver supports Access Point (AP) mode
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.0057] manager: (wlp5s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.0058] device (wlp5s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 16 22:03:03 usu snapd[1292]: daemon.go:353: adjusting startup timeout by 55s (pessimistic estimate of 30s plus 5s per snap)
mar 16 22:03:03 usu snapd[1292]: backends.go:58: AppArmor status: apparmor is enabled but some kernel features are missing: dbus, network
mar 16 22:03:03 usu kernel: kauditd_printk_skb: 173 callbacks suppressed
mar 16 22:03:03 usu kernel: audit: type=1400 audit(1742158983.129:184): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1397 comm="apparmor_parser"
mar 16 22:03:03 usu kernel: audit: type=1400 audit(1742158983.163:185): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1397 comm="apparmor_parser"
mar 16 22:03:03 usu systemd[1]: Started Snap Daemon.
mar 16 22:03:03 usu systemd[1]: Starting Time & Date Service...
mar 16 22:03:03 usu systemd[1]: Started Time & Date Service.
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.2722] device (wlp5s0): set-hw-addr: set MAC address to 4A:F4:34:B6:51:9C (scanning)
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5362] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5380] ovsdb: disconnected from ovsdb
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5381] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5384] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5386] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5391] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
mar 16 22:03:03 usu systemd[1]: Started Network Manager.
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5417] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
mar 16 22:03:03 usu systemd[1]: Starting WPA supplicant...
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5417] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.5418] device (lo): Activation: successful, device activated.
mar 16 22:03:03 usu systemd[1]: Started WPA supplicant.
mar 16 22:03:03 usu wpa_supplicant[1410]: Successfully initialized wpa_supplicant
mar 16 22:03:03 usu systemd[1]: Reached target Network.
mar 16 22:03:03 usu systemd[1]: Starting CUPS Scheduler...
mar 16 22:03:03 usu systemd[1]: Starting Permit User Sessions...
mar 16 22:03:03 usu systemd[1]: Finished Permit User Sessions.
mar 16 22:03:03 usu systemd[1]: Started Command Scheduler.
mar 16 22:03:03 usu systemd[1]: Started Simple Desktop Display Manager.
mar 16 22:03:03 usu crond[1414]: (CRON) STARTUP (1.7.2)
mar 16 22:03:03 usu crond[1414]: (CRON) INFO (Syslog will be used instead of sendmail.)
mar 16 22:03:03 usu crond[1414]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 51% if used.)
mar 16 22:03:03 usu crond[1414]: (CRON) INFO (running with inotify support)
mar 16 22:03:03 usu systemd[1]: Started CUPS Scheduler.
mar 16 22:03:03 usu systemd[1]: Reached target Multi-User System.
mar 16 22:03:03 usu systemd[1]: Reached target Graphical Interface.
mar 16 22:03:03 usu systemd[1]: Startup finished in 41.163s (firmware) + 1.774s (loader) + 2.034s (kernel) + 4.541s (userspace) = 49.513s.
mar 16 22:03:03 usu sddm[1415]: Initializing...
mar 16 22:03:03 usu sddm[1415]: Starting...
mar 16 22:03:03 usu sddm[1415]: Logind interface found
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.6351] device (wlp5s0): supplicant interface state: internal-starting -> disconnected
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.6352] Wi-Fi P2P device controlled by interface wlp5s0 created
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.6356] manager: (p2p-dev-wlp5s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.6359] device (p2p-dev-wlp5s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.6365] device (wlp5s0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
mar 16 22:03:03 usu NetworkManager[1286]: <info>  [1742158983.6371] device (p2p-dev-wlp5s0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
mar 16 22:03:03 usu kernel: scsi 10:0:0:0: Direct-Access     VendorCo ProductCode      2.00 PQ: 0 ANSI: 4
mar 16 22:03:03 usu kernel: sd 10:0:0:0: Attached scsi generic sg2 type 0
mar 16 22:03:03 usu kernel: sd 10:0:0:0: [sdc] 61440000 512-byte logical blocks: (31.5 GB/29.3 GiB)
mar 16 22:03:03 usu kernel: sd 10:0:0:0: [sdc] Write Protect is off
mar 16 22:03:03 usu kernel: sd 10:0:0:0: [sdc] Mode Sense: 03 00 00 00
mar 16 22:03:03 usu kernel: sd 10:0:0:0: [sdc] No Caching mode page found
mar 16 22:03:03 usu kernel: sd 10:0:0:0: [sdc] Assuming drive cache: write through
mar 16 22:03:03 usu kernel:  sdc: sdc1
mar 16 22:03:03 usu kernel: sd 10:0:0:0: [sdc] Attached SCSI removable disk
mar 16 22:03:03 usu kernel: scsi 11:0:0:0: Direct-Access     USBLCD   USB PRC System        PQ: 0 ANSI: 0 CCS
mar 16 22:03:03 usu kernel: sd 11:0:0:0: Attached scsi generic sg3 type 0
mar 16 22:03:03 usu kernel: sd 11:0:0:0: [sdd] Media removed, stopped polling
mar 16 22:03:03 usu kernel: sd 11:0:0:0: [sdd] Attached SCSI removable disk
mar 16 22:03:03 usu avahi-daemon[1288]: Server startup complete. Host name is usu.local. Local service cookie is 1514197674.
mar 16 22:03:06 usu wpa_supplicant[1410]: wlp5s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=IT
mar 16 22:03:06 usu wpa_supplicant[1410]: p2p-dev-wlp5s0: Channel list changed: 6 GHz was enabled
mar 16 22:03:06 usu wpa_supplicant[1410]: wlp5s0: Channel list changed: 6 GHz was enabled
mar 16 22:03:06 usu wpa_supplicant[1410]: wlp5s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=IT
mar 16 22:03:07 usu kernel: usbcore: registered new interface driver snd-usb-audio
mar 16 22:03:07 usu NetworkManager[1286]: <info>  [1742158987.0419] modem-manager: ModemManager available
mar 16 22:03:07 usu mtp-probe[1421]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4"
mar 16 22:03:07 usu mtp-probe[1421]: bus: 1, device: 4 was not an MTP device
mar 16 22:03:07 usu systemd[1]: Starting Save/Restore Sound Card State...
mar 16 22:03:07 usu systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
mar 16 22:03:07 usu systemd[1]: Finished Save/Restore Sound Card State.
mar 16 22:03:07 usu systemd[1]: Reached target Sound Card.
mar 16 22:03:07 usu systemd[1]: systemd-rfkill.service: Deactivated successfully.
mar 16 22:03:09 usu NetworkManager[1286]: <info>  [1742158989.0057] manager: startup complete
mar 16 22:03:13 usu systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 16 22:03:32 usu systemd[1]: systemd-hostnamed.service: Deactivated successfully.
mar 16 22:03:33 usu systemd[1]: systemd-timedated.service: Deactivated successfully.
mar 16 22:03:35 usu snapd[1292]: stateengine.go:161: state ensure error: persistent network error: Get "https://api.snapcraft.io/api/v1/snaps/sections": dial tcp: lookup api.snapcraft.io: Temporary failure in name resolution
mar 16 22:03:35 usu systemd[1]: Starting Time & Date Service...
mar 16 22:03:35 usu systemd[1]: Started Time & Date Service.
mar 16 22:03:59 usu kernel: snd_hda_intel 0000:00:1f.3: couldn't bind with audio component
mar 16 22:04:00 usu kernel: snd_hda_intel 0000:00:1f.3: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000
mar 16 22:04:01 usu kernel: snd_hda_intel 0000:00:1f.3: No response from codec, disabling MSI: last cmd=0x000f0000
mar 16 22:04:02 usu kernel: snd_hda_intel 0000:00:1f.3: Codec #0 probe error; disabling it...
mar 16 22:04:03 usu kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
mar 16 22:04:03 usu snapd[1292]: udevmon.go:149: udev event error: Unable to parse uevent, err: cannot parse libudev event: invalid env data
mar 16 22:04:05 usu systemd[1]: systemd-timedated.service: Deactivated successfully.
mar 16 22:04:36 usu systemd[1]: Started Getty on tty2.
mar 16 22:04:41 usu dbus-broker-launch[1281]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
mar 16 22:04:43 usu login[1453]: pam_unix(login:session): session opened for user usu(uid=1000) by usu(uid=0)
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1207] policy: auto-activating connection 'Tenda_lav' (d1977352-80fc-4cf1-abe5-7c8e8e2f9a80)
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1214] device (wlp5s0): Activation: starting connection 'Tenda_lav' (d1977352-80fc-4cf1-abe5-7c8e8e2f9a80)
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1215] device (wlp5s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1218] manager: NetworkManager state is now CONNECTING
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1247] device (wlp5s0): set-hw-addr: reset MAC address to 44:E5:17:06:DD:5D (preserve)
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1266] device (wlp5s0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1269] device (wlp5s0): Activation: (wifi) access point 'Tenda_lav' has security, but secrets are required.
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1269] device (wlp5s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
mar 16 22:04:43 usu NetworkManager[1286]: <warn>  [1742159083.1273] device (wlp5s0): no secrets: No agents were available for this request.
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1273] device (wlp5s0): state change: need-auth -> failed (reason 'no-secrets', managed-type: 'full')
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1276] manager: NetworkManager state is now DISCONNECTED
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1296] device (wlp5s0): set-hw-addr: set MAC address to 16:D1:FC:7A:79:54 (scanning)
mar 16 22:04:43 usu NetworkManager[1286]: <warn>  [1742159083.1310] device (wlp5s0): Activation: failed for connection 'Tenda_lav'
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1316] device (wlp5s0): state change: failed -> disconnected (reason 'none', managed-type: 'full')
mar 16 22:04:43 usu systemd-logind[1294]: New session 1 of user usu.
mar 16 22:04:43 usu systemd[1]: Created slice User Slice of UID 1000.
mar 16 22:04:43 usu systemd[1]: Starting User Runtime Directory /run/user/1000...
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1767] device (wlp5s0): supplicant interface state: disconnected -> inactive
mar 16 22:04:43 usu NetworkManager[1286]: <info>  [1742159083.1767] device (p2p-dev-wlp5s0): supplicant management interface state: disconnected -> inactive
mar 16 22:04:43 usu systemd[1]: Finished User Runtime Directory /run/user/1000.
mar 16 22:04:43 usu systemd[1]: Starting User Manager for UID 1000...
mar 16 22:04:43 usu (systemd)[1461]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[usu] ruser=[<unknown>] rhost=[<unknown>]
mar 16 22:04:43 usu (systemd)[1461]: pam_unix(systemd-user:session): session opened for user usu(uid=1000) by usu(uid=0)
mar 16 22:04:43 usu systemd-logind[1294]: New session 2 of user usu.
mar 16 22:04:43 usu 30-systemd-environment-d-generator[1465]: /usr/lib/environment.d/99-environment.conf:7: invalid variable name "export CHROMIUM_FLAGS", ignoring.
mar 16 22:04:43 usu systemd-xdg-autostart-generator[1468]: Exec binary 'cairo-dock' does not exist: No such file or directory
mar 16 22:04:43 usu systemd-xdg-autostart-generator[1468]: /home/usu/.config/autostart/cairo-dock.desktop: not generating unit, executable specified in Exec= does not exist.
mar 16 22:04:43 usu systemd[1461]: Queued start job for default target Main User Target.
mar 16 22:04:43 usu systemd[1461]: Created slice User Application Slice.
mar 16 22:04:43 usu systemd[1461]: Reached target Paths.
mar 16 22:04:43 usu systemd[1461]: Reached target Timers.
mar 16 22:04:43 usu systemd[1461]: Starting D-Bus User Message Bus Socket...
mar 16 22:04:43 usu systemd[1461]: Listening on GnuPG network certificate management daemon.
mar 16 22:04:43 usu systemd[1461]: Starting GCR ssh-agent wrapper...
mar 16 22:04:43 usu systemd[1461]: Listening on GNOME Keyring daemon.
mar 16 22:04:43 usu systemd[1461]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 16 22:04:43 usu systemd[1461]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
mar 16 22:04:43 usu systemd[1461]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
mar 16 22:04:43 usu systemd[1461]: Listening on GnuPG cryptographic agent and passphrase cache.
mar 16 22:04:43 usu systemd[1461]: Listening on GnuPG public key management service.
mar 16 22:04:43 usu systemd[1461]: Listening on p11-kit server.
mar 16 22:04:43 usu systemd[1461]: Listening on PipeWire Multimedia System Sockets.
mar 16 22:04:43 usu systemd[1461]: Listening on Sound System.
mar 16 22:04:43 usu systemd[1461]: Listening on D-Bus User Message Bus Socket.
mar 16 22:04:43 usu systemd[1461]: Listening on GCR ssh-agent wrapper.
mar 16 22:04:43 usu systemd[1461]: Reached target Sockets.
mar 16 22:04:43 usu systemd[1461]: Reached target Basic System.
mar 16 22:04:43 usu systemd[1]: Started User Manager for UID 1000.
mar 16 22:04:43 usu systemd[1461]: Started AppImageLauncher daemon.
mar 16 22:04:43 usu systemd[1]: Started Session 1 of User usu.
mar 16 22:04:43 usu systemd[1461]: Starting Update XDG user dir configuration...
mar 16 22:04:43 usu login[1453]: LOGIN ON tty2 BY usu
mar 16 22:04:43 usu systemd[1461]: Finished Update XDG user dir configuration.
mar 16 22:04:43 usu systemd[1461]: Reached target Main User Target.
mar 16 22:04:43 usu systemd[1461]: Startup finished in 185ms.
mar 16 22:04:43 usu appimagelauncherd[1474]: Searching for existing AppImages
mar 16 22:04:43 usu appimagelauncherd[1474]: Searching directory: /home/usu
mar 16 22:04:43 usu appimagelauncherd[1474]: Searching directory: /home/usu/Applications
mar 16 22:04:43 usu appimagelauncherd[1474]: Found AppImage: /home/usu/Applications/electrum-4.5.8-x86_64_7eee3fee6d0dd944747aea530ac99bd9.AppImage
mar 16 22:04:43 usu appimagelauncherd[1474]: AppImage integrated already, skipping
mar 16 22:04:43 usu appimagelauncherd[1474]: Watching directories: /home/usu /home/usu/Applications
mar 16 22:05:13 usu appimagelauncherd[1474]: Directories to watch disappeared, unintegrating AppImages formerly found in there
mar 16 22:05:25 usu sudo[1495]:      usu : TTY=tty2 ; PWD=/home/usu ; USER=root ; COMMAND=/usr/bin/mount /dev/sda1 /mnt/mydrive
mar 16 22:05:25 usu sudo[1495]: pam_unix(sudo:session): session opened for user root(uid=0) by usu(uid=1000)
mar 16 22:05:26 usu ntfs-3g[1502]: Version 2022.10.3 external FUSE 29
mar 16 22:05:26 usu ntfs-3g[1502]: Mounted /dev/sda1 (Read-Write, label "14T", NTFS 3.1)
mar 16 22:05:26 usu ntfs-3g[1502]: Cmdline options: rw
mar 16 22:05:26 usu ntfs-3g[1502]: Mount options: allow_other,nonempty,relatime,rw,fsname=/dev/sda1,blkdev,blksize=4096
mar 16 22:05:26 usu ntfs-3g[1502]: Ownership and permissions disabled, configuration type 7
mar 16 22:05:26 usu sudo[1495]: pam_unix(sudo:session): session closed for user root
mar 16 22:07:04 usu sudo[1505]:      usu : TTY=tty2 ; PWD=/home/usu ; USER=root ; COMMAND=/usr/bin/journalctl
mar 16 22:07:04 usu sudo[1505]: pam_unix(sudo:session): session opened for user root(uid=0) by usu(uid=1000)
mar 16 22:07:04 usu sudo[1505]: pam_unix(sudo:session): session closed for user root
mar 16 22:08:35 usu systemd[1]: Starting Time & Date Service...
mar 16 22:08:35 usu systemd[1]: Started Time & Date Service.
mar 16 22:09:02 usu sudo[1517]:      usu : TTY=tty2 ; PWD=/home/usu ; USER=root ; COMMAND=/usr/bin/tee /mnt/mydrive/log.log
mar 16 22:09:02 usu sudo[1517]: pam_unix(sudo:session): session opened for user root(uid=0) by usu(uid=1000)
mar 16 22:09:05 usu systemd[1]: systemd-timedated.service: Deactivated successfully.

What do you mean by this?

Maybe go back a step or two - figuratively speaking.

It is some message that you saw somewhere?
It is bothering you.

Is it an actual problem?

It is obviously not preventing your system from booting and the WiFi network is also working.
That’s what it looks like to me.

How did we even get to speculating about netctl?

By “this” I mean not being able to complete boot or maybe the boot is fine, GRUB is the problem, don’t know.

Not necessarily if I wanted to use it without GUI.

Just because at a point it was giving Timed out waiting for device, but now I does not show it anymore.

How about [SOLVED] System stuck at '/dev/sda2: clean…' after system upgrade / Newbie Corner / Arch Linux Forums, yesterday I also tried to run a -Syu withour much luck…

The machine boots just fine, according to your log.
You can and did log in - it appears to be a KDE Plasma DE
sddm (the display manager) seems to start - I saw no errors
No idea why you apparently do not get to see it’s login interface.

How much luck did you have? With what? :wink:

Encouraging at least.

Do I detect sarcasm here :grinning:? What do you mean anyway?

Correct! :+1:
I mean the lack of specificity, especially regarding the result, in:

… it looks like information, but it doesn’t contain any :wink:

Well let’s say I didn’t mean to be specific since at the stage I was when I run the update I didn’t know if running a system update was even relevant. But now we confirmed the system is actually “kicking”.

Here the specifics:

I boot it once more, now along with the usual
dev/... : clean, .../... files, .../... blocks
it gives another line
[FAILED] Failed to start pkgfile database update

-- Boot dba0c78526b94bdb96ac3f80bd4516bd --
mar 17 20:10:52 usu kernel: Linux version 5.15.173-1-MANJARO (builduser@fv-az834-236) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT Sun Nov 17 21:30:08 UTC 2024
mar 17 20:10:52 usu kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64 root=UUID=db906425-def3-45af-af01-53c345a87ab3 rw quiet apparmor=1 security=apparmor udev.log_priority=3
mar 17 20:10:52 usu kernel: x86/tme: not enabled by BIOS
mar 17 20:10:52 usu kernel: BIOS-provided physical RAM map:
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000063830fff] usable
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000063831000-0x0000000063831fff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000063832000-0x000000006589bfff] usable
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000006589c000-0x000000006589cfff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000006589d000-0x00000000703fbfff] usable
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000703fc000-0x00000000740fbfff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000740fc000-0x00000000744ebfff] ACPI data
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000744ec000-0x000000007471efff] ACPI NVS
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000007471f000-0x0000000075f1efff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000075f1f000-0x0000000075ffefff] type 20
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000075fff000-0x0000000075ffffff] usable
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000076000000-0x0000000079ffffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000007a400000-0x000000007a7fffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x000000007b000000-0x00000000807fffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
mar 17 20:10:52 usu kernel: BIOS-e820: [mem 0x0000000100000000-0x000000107f7fffff] usable
mar 17 20:10:52 usu kernel: NX (Execute Disable) protection: active
mar 17 20:10:52 usu kernel: efi: EFI v2.80 by American Megatrends
mar 17 20:10:52 usu kernel: efi: ACPI=0x744eb000 ACPI 2.0=0x744eb014 TPMFinalLog=0x7460c000 SMBIOS=0x75d2e000 SMBIOS 3.0=0x75d2d000 MEMATTR=0x6b1af018 ESRT=0x6b73f598 
mar 17 20:10:52 usu kernel: SMBIOS 3.4.0 present.
mar 17 20:10:52 usu kernel: DMI: ASUS System Product Name/ROG STRIX Z690-E GAMING WIFI, BIOS 4101 12/03/2024
mar 17 20:10:52 usu kernel: tsc: Detected 3400.000 MHz processor
mar 17 20:10:52 usu kernel: tsc: Detected 3417.600 MHz TSC
mar 17 20:10:52 usu kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
mar 17 20:10:52 usu kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
mar 17 20:10:52 usu kernel: last_pfn = 0x107f800 max_arch_pfn = 0x400000000
mar 17 20:10:52 usu kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
mar 17 20:10:52 usu kernel: total RAM covered: 128960M
mar 17 20:10:52 usu kernel: Found optimal setting for mtrr clean up
mar 17 20:10:52 usu kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 7          lose cover RAM: 0G
mar 17 20:10:52 usu kernel: e820: update [mem 0x7c000000-0xffffffff] usable ==> reserved
mar 17 20:10:52 usu kernel: last_pfn = 0x76000 max_arch_pfn = 0x400000000
mar 17 20:10:52 usu kernel: esrt: Reserving ESRT space from 0x000000006b73f598 to 0x000000006b73f670.
mar 17 20:10:52 usu kernel: e820: update [mem 0x6b73f000-0x6b73ffff] usable ==> reserved
mar 17 20:10:52 usu kernel: Using GB pages for direct mapping
mar 17 20:10:52 usu kernel: Incomplete global flushes, disabling PCID
mar 17 20:10:52 usu kernel: Secure boot disabled
mar 17 20:10:52 usu kernel: RAMDISK: [mem 0x35b5f000-0x36da6fff]
mar 17 20:10:52 usu kernel: ACPI: Early table checksum verification disabled
mar 17 20:10:52 usu kernel: ACPI: RSDP 0x00000000744EB014 000024 (v02 ALASKA)
mar 17 20:10:52 usu kernel: ACPI: XSDT 0x00000000744EA728 000114 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: FACP 0x00000000744E8000 000114 (v06 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: DSDT 0x0000000074448000 09F953 (v02 ALASKA A M I    01072009 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: FACS 0x000000007471E000 000040
mar 17 20:10:52 usu kernel: ACPI: MCFG 0x00000000744E9000 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
mar 17 20:10:52 usu kernel: ACPI: FIDT 0x0000000074447000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x0000000074445000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x000000007443F000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x000000007443C000 002BA7 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x0000000074438000 00334F (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: HPET 0x0000000074437000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: APIC 0x0000000074436000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: MCFG 0x0000000074435000 00003C (v01 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x0000000074433000 001F1A (v02 ALASKA Ther_Rvp 00001000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: NHLT 0x0000000074431000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: LPIT 0x0000000074430000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x000000007442C000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x0000000074429000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: DBGP 0x0000000074428000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: DBG2 0x0000000074427000 000054 (v00 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x0000000074426000 000C1F (v02 ALASKA UsbCTabl 00001000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: DMAR 0x0000000074425000 000088 (v01 INTEL  EDK2     00000002      01000013)
mar 17 20:10:52 usu kernel: ACPI: FPDT 0x0000000074424000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x0000000074422000 001EFF (v02 INTEL  xh_adls3 00000000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x000000007441E000 0039DA (v02 SocGpe SocGpe   00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: SSDT 0x000000007441A000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: UEFI 0x000000007455D000 00063A (v01 INTEL  RstVmdE  00000000 INTL 00000000)
mar 17 20:10:52 usu kernel: ACPI: UEFI 0x000000007455C000 00005C (v01 INTEL  RstVmdV  00000000 INTL 00000000)
mar 17 20:10:52 usu kernel: ACPI: WPBT 0x00000000742F0000 000040 (v01 ALASKA A M I    00000001 ASUS 00000001)
mar 17 20:10:52 usu kernel: ACPI: TPM2 0x00000000742EF000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
mar 17 20:10:52 usu kernel: ACPI: BGRT 0x0000000074419000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 17 20:10:52 usu kernel: ACPI: PHAT 0x00000000742EE000 00083C (v01 ALASKA A M I    00000005 MSFT 0100000D)
mar 17 20:10:52 usu kernel: ACPI: WSMT 0x000000007442F000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 17 20:10:52 usu kernel: ACPI: Reserving FACP table memory at [mem 0x744e8000-0x744e8113]
mar 17 20:10:52 usu kernel: ACPI: Reserving DSDT table memory at [mem 0x74448000-0x744e7952]
mar 17 20:10:52 usu kernel: ACPI: Reserving FACS table memory at [mem 0x7471e000-0x7471e03f]
mar 17 20:10:52 usu kernel: ACPI: Reserving MCFG table memory at [mem 0x744e9000-0x744e903b]
mar 17 20:10:52 usu kernel: ACPI: Reserving FIDT table memory at [mem 0x74447000-0x7444709b]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74445000-0x7444538b]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7443f000-0x74444d33]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7443c000-0x7443eba6]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74438000-0x7443b34e]
mar 17 20:10:52 usu kernel: ACPI: Reserving HPET table memory at [mem 0x74437000-0x74437037]
mar 17 20:10:52 usu kernel: ACPI: Reserving APIC table memory at [mem 0x74436000-0x744361db]
mar 17 20:10:52 usu kernel: ACPI: Reserving MCFG table memory at [mem 0x74435000-0x7443503b]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74433000-0x74434f19]
mar 17 20:10:52 usu kernel: ACPI: Reserving NHLT table memory at [mem 0x74431000-0x7443102c]
mar 17 20:10:52 usu kernel: ACPI: Reserving LPIT table memory at [mem 0x74430000-0x744300cb]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7442c000-0x7442e356]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74429000-0x7442ba82]
mar 17 20:10:52 usu kernel: ACPI: Reserving DBGP table memory at [mem 0x74428000-0x74428033]
mar 17 20:10:52 usu kernel: ACPI: Reserving DBG2 table memory at [mem 0x74427000-0x74427053]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74426000-0x74426c1e]
mar 17 20:10:52 usu kernel: ACPI: Reserving DMAR table memory at [mem 0x74425000-0x74425087]
mar 17 20:10:52 usu kernel: ACPI: Reserving FPDT table memory at [mem 0x74424000-0x74424043]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x74422000-0x74423efe]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7441e000-0x744219d9]
mar 17 20:10:52 usu kernel: ACPI: Reserving SSDT table memory at [mem 0x7441a000-0x7441d9d9]
mar 17 20:10:52 usu kernel: ACPI: Reserving UEFI table memory at [mem 0x7455d000-0x7455d639]
mar 17 20:10:52 usu kernel: ACPI: Reserving UEFI table memory at [mem 0x7455c000-0x7455c05b]
mar 17 20:10:52 usu kernel: ACPI: Reserving WPBT table memory at [mem 0x742f0000-0x742f003f]
mar 17 20:10:52 usu kernel: ACPI: Reserving TPM2 table memory at [mem 0x742ef000-0x742ef04b]
mar 17 20:10:52 usu kernel: ACPI: Reserving BGRT table memory at [mem 0x74419000-0x74419037]
mar 17 20:10:52 usu kernel: ACPI: Reserving PHAT table memory at [mem 0x742ee000-0x742ee83b]
mar 17 20:10:52 usu kernel: ACPI: Reserving WSMT table memory at [mem 0x7442f000-0x7442f027]
mar 17 20:10:52 usu kernel: No NUMA configuration found
mar 17 20:10:52 usu kernel: Faking a node at [mem 0x0000000000000000-0x000000107f7fffff]
mar 17 20:10:52 usu kernel: NODE_DATA(0) allocated [mem 0x107f7fc000-0x107f7fffff]
mar 17 20:10:52 usu kernel: Zone ranges:
mar 17 20:10:52 usu kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
mar 17 20:10:52 usu kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
mar 17 20:10:52 usu kernel:   Normal   [mem 0x0000000100000000-0x000000107f7fffff]
mar 17 20:10:52 usu kernel:   Device   empty
mar 17 20:10:52 usu kernel: Movable zone start for each node
mar 17 20:10:52 usu kernel: Early memory node ranges
mar 17 20:10:52 usu kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
mar 17 20:10:52 usu kernel:   node   0: [mem 0x000000000009f000-0x000000000009ffff]
mar 17 20:10:52 usu kernel:   node   0: [mem 0x0000000000100000-0x0000000063830fff]
mar 17 20:10:52 usu kernel:   node   0: [mem 0x0000000063832000-0x000000006589bfff]
mar 17 20:10:52 usu kernel:   node   0: [mem 0x000000006589d000-0x00000000703fbfff]
mar 17 20:10:52 usu kernel:   node   0: [mem 0x0000000075fff000-0x0000000075ffffff]
mar 17 20:10:52 usu kernel:   node   0: [mem 0x0000000100000000-0x000000107f7fffff]
mar 17 20:10:52 usu kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000107f7fffff]
mar 17 20:10:52 usu kernel: On node 0, zone DMA: 1 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone DMA: 1 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone DMA: 96 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone DMA32: 23555 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
mar 17 20:10:52 usu kernel: On node 0, zone Normal: 2048 pages in unavailable ranges
mar 17 20:10:52 usu kernel: ACPI: PM-Timer IO Port: 0x1808
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
mar 17 20:10:52 usu kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
mar 17 20:10:52 usu kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
mar 17 20:10:52 usu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
mar 17 20:10:52 usu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
mar 17 20:10:52 usu kernel: ACPI: Using ACPI (MADT) for SMP configuration information
mar 17 20:10:52 usu kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
mar 17 20:10:52 usu kernel: e820: update [mem 0x6a176000-0x6a542fff] usable ==> reserved
mar 17 20:10:52 usu kernel: TSC deadline timer available
mar 17 20:10:52 usu kernel: smpboot: Allowing 28 CPUs, 0 hotplug CPUs
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x63831000-0x63831fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x6589c000-0x6589cfff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x6a176000-0x6a542fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x6b73f000-0x6b73ffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x703fc000-0x740fbfff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x740fc000-0x744ebfff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x744ec000-0x7471efff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7471f000-0x75f1efff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x75f1f000-0x75ffefff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x76000000-0x79ffffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x7a3fffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7a400000-0x7a7fffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7a800000-0x7affffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x7b000000-0x807fffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0x80800000-0xbfffffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfdffffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
mar 17 20:10:52 usu kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
mar 17 20:10:52 usu kernel: [mem 0x80800000-0xbfffffff] available for PCI devices
mar 17 20:10:52 usu kernel: Booting paravirtualized kernel on bare hardware
mar 17 20:10:52 usu kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
mar 17 20:10:52 usu kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:28 nr_node_ids:1
mar 17 20:10:52 usu kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
mar 17 20:10:52 usu kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
mar 17 20:10:52 usu kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
mar 17 20:10:52 usu kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
mar 17 20:10:52 usu kernel: Built 1 zonelists, mobility grouping on.  Total pages: 16449291
mar 17 20:10:52 usu kernel: Policy zone: Normal
mar 17 20:10:52 usu kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64 root=UUID=db906425-def3-45af-af01-53c345a87ab3 rw quiet apparmor=1 security=apparmor udev.log_priority=3
mar 17 20:10:52 usu kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64", will be passed to user space.
mar 17 20:10:52 usu kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
mar 17 20:10:52 usu kernel: printk: log_buf_len total cpu_extra contributions: 110592 bytes
mar 17 20:10:52 usu kernel: printk: log_buf_len min size: 131072 bytes
mar 17 20:10:52 usu kernel: printk: log_buf_len: 262144 bytes
mar 17 20:10:52 usu kernel: printk: early log buf free: 114592(87%)
mar 17 20:10:52 usu kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
mar 17 20:10:52 usu kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
mar 17 20:10:52 usu kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
mar 17 20:10:52 usu kernel: Memory: 65401648K/66842212K available (16392K kernel code, 2088K rwdata, 11000K rodata, 2040K init, 3496K bss, 1440304K reserved, 0K cma-reserved)
mar 17 20:10:52 usu kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=28, Nodes=1
mar 17 20:10:52 usu kernel: ftrace: allocating 44627 entries in 175 pages
mar 17 20:10:52 usu kernel: ftrace: allocated 175 pages with 6 groups
mar 17 20:10:52 usu kernel: rcu: Preemptible hierarchical RCU implementation.
mar 17 20:10:52 usu kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
mar 17 20:10:52 usu kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=28.
mar 17 20:10:52 usu kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
mar 17 20:10:52 usu kernel:         Trampoline variant of Tasks RCU enabled.
mar 17 20:10:52 usu kernel:         Rude variant of Tasks RCU enabled.
mar 17 20:10:52 usu kernel:         Tracing variant of Tasks RCU enabled.
mar 17 20:10:52 usu kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
mar 17 20:10:52 usu kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=28
mar 17 20:10:52 usu kernel: NR_IRQS: 20736, nr_irqs: 2280, preallocated irqs: 16
mar 17 20:10:52 usu kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
mar 17 20:10:52 usu kernel: Console: colour dummy device 80x25
mar 17 20:10:52 usu kernel: printk: console [tty0] enabled
mar 17 20:10:52 usu kernel: ACPI: Core revision 20210730
mar 17 20:10:52 usu kernel: hpet: HPET dysfunctional in PC10. Force disabled.
mar 17 20:10:52 usu kernel: APIC: Switch to symmetric I/O mode setup
mar 17 20:10:52 usu kernel: DMAR: Host address width 39
mar 17 20:10:52 usu kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
mar 17 20:10:52 usu kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
mar 17 20:10:52 usu kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
mar 17 20:10:52 usu kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
mar 17 20:10:52 usu kernel: DMAR: RMRR base: 0x0000007c000000 end: 0x000000807fffff
mar 17 20:10:52 usu kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
mar 17 20:10:52 usu kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
mar 17 20:10:52 usu kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
mar 17 20:10:52 usu kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
mar 17 20:10:52 usu kernel: x2apic enabled
mar 17 20:10:52 usu kernel: Switched APIC routing to cluster x2apic.
mar 17 20:10:52 usu kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3143404a908, max_idle_ns: 440795209397 ns
mar 17 20:10:52 usu kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6837.00 BogoMIPS (lpj=11392000)
mar 17 20:10:52 usu kernel: CPU0: Thermal monitoring enabled (TM1)
mar 17 20:10:52 usu kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
mar 17 20:10:52 usu kernel: process: using mwait in idle threads
mar 17 20:10:52 usu kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
mar 17 20:10:52 usu kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
mar 17 20:10:52 usu kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
mar 17 20:10:52 usu kernel: Spectre V2 : WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!
mar 17 20:10:52 usu kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
mar 17 20:10:52 usu kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
mar 17 20:10:52 usu kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
mar 17 20:10:52 usu kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
mar 17 20:10:52 usu kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
mar 17 20:10:52 usu kernel: Register File Data Sampling: Mitigation: Clear Register File
mar 17 20:10:52 usu kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
mar 17 20:10:52 usu kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
mar 17 20:10:52 usu kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
mar 17 20:10:52 usu kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
mar 17 20:10:52 usu kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
mar 17 20:10:52 usu kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
mar 17 20:10:52 usu kernel: x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
mar 17 20:10:52 usu kernel: Freeing SMP alternatives memory: 36K
mar 17 20:10:52 usu kernel: pid_max: default: 32768 minimum: 301
mar 17 20:10:52 usu kernel: LSM: Security Framework initializing
mar 17 20:10:52 usu kernel: landlock: Up and running.
mar 17 20:10:52 usu kernel: Yama: becoming mindful.
mar 17 20:10:52 usu kernel: AppArmor: AppArmor initialized
mar 17 20:10:52 usu kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
mar 17 20:10:52 usu kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
mar 17 20:10:52 usu kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1656
mar 17 20:10:52 usu kernel: smpboot: CPU0: Intel(R) Core(TM) i7-14700K (family: 0x6, model: 0xb7, stepping: 0x1)
mar 17 20:10:52 usu kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, generic architected perfmon, 32-deep LBR, full-width counters, Intel PMU driver.
mar 17 20:10:52 usu kernel: ... version:                5
mar 17 20:10:52 usu kernel: ... bit width:              48
mar 17 20:10:52 usu kernel: ... generic registers:      6
mar 17 20:10:52 usu kernel: ... value mask:             0000ffffffffffff
mar 17 20:10:52 usu kernel: ... max period:             00007fffffffffff
mar 17 20:10:52 usu kernel: ... fixed-purpose events:   3
mar 17 20:10:52 usu kernel: ... event mask:             000000070000003f
mar 17 20:10:52 usu kernel: signal: max sigframe size: 3632
mar 17 20:10:52 usu kernel: rcu: Hierarchical SRCU implementation.
mar 17 20:10:52 usu kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
mar 17 20:10:52 usu kernel: smp: Bringing up secondary CPUs ...
mar 17 20:10:52 usu kernel: x86: Booting SMP configuration:
mar 17 20:10:52 usu kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27
mar 17 20:10:52 usu kernel: smp: Brought up 1 node, 28 CPUs
mar 17 20:10:52 usu kernel: smpboot: Max logical packages: 1
mar 17 20:10:52 usu kernel: smpboot: Total of 28 processors activated (191462.00 BogoMIPS)
mar 17 20:10:52 usu kernel: devtmpfs: initialized
mar 17 20:10:52 usu kernel: x86/mm: Memory block size: 2048MB
mar 17 20:10:52 usu kernel: ACPI: PM: Registering ACPI NVS region [mem 0x744ec000-0x7471efff] (2306048 bytes)
mar 17 20:10:52 usu kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
mar 17 20:10:52 usu kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
mar 17 20:10:52 usu kernel: pinctrl core: initialized pinctrl subsystem
mar 17 20:10:52 usu kernel: PM: RTC time: 19:10:50, date: 2025-03-17
mar 17 20:10:52 usu kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
mar 17 20:10:52 usu kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
mar 17 20:10:52 usu kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
mar 17 20:10:52 usu kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
mar 17 20:10:52 usu kernel: audit: initializing netlink subsys (disabled)
mar 17 20:10:52 usu kernel: audit: type=2000 audit(1742238650.093:1): state=initialized audit_enabled=0 res=1
mar 17 20:10:52 usu kernel: thermal_sys: Registered thermal governor 'fair_share'
mar 17 20:10:52 usu kernel: thermal_sys: Registered thermal governor 'bang_bang'
mar 17 20:10:52 usu kernel: thermal_sys: Registered thermal governor 'step_wise'
mar 17 20:10:52 usu kernel: thermal_sys: Registered thermal governor 'user_space'
mar 17 20:10:52 usu kernel: thermal_sys: Registered thermal governor 'power_allocator'
mar 17 20:10:52 usu kernel: cpuidle: using governor ladder
mar 17 20:10:52 usu kernel: cpuidle: using governor menu
mar 17 20:10:52 usu kernel: HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
mar 17 20:10:52 usu kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
mar 17 20:10:52 usu kernel: ACPI: bus type PCI registered
mar 17 20:10:52 usu kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
mar 17 20:10:52 usu kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
mar 17 20:10:52 usu kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
mar 17 20:10:52 usu kernel: PCI: Using configuration type 1 for base access
mar 17 20:10:52 usu kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
mar 17 20:10:52 usu kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
mar 17 20:10:52 usu kernel: HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
mar 17 20:10:52 usu kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
mar 17 20:10:52 usu kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(Module Device)
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(Processor Device)
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(Processor Aggregator Device)
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(Linux-Dell-Video)
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
mar 17 20:10:52 usu kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
mar 17 20:10:52 usu kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC0802E1C00 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC0825E3000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC0825B8000 000689 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC0825BF800 0004B5 (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC08386C000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC083868000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC08386E000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: Dynamic OEM Table Load:
mar 17 20:10:52 usu kernel: ACPI: SSDT 0xFFFF9EC080136000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
mar 17 20:10:52 usu kernel: ACPI: EC: EC started
mar 17 20:10:52 usu kernel: ACPI: EC: interrupt blocked
mar 17 20:10:52 usu kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 17 20:10:52 usu kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
mar 17 20:10:52 usu kernel: ACPI: Interpreter enabled
mar 17 20:10:52 usu kernel: ACPI: PM: (supports S0 S3 S4 S5)
mar 17 20:10:52 usu kernel: ACPI: Using IOAPIC for interrupt routing
mar 17 20:10:52 usu kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
mar 17 20:10:52 usu kernel: ACPI: Enabled 6 GPEs in block 00 to 7F
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [WRST]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [DRST]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [PRBT]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [WRST]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [FN00]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [FN01]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [FN02]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [FN03]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [FN04]
mar 17 20:10:52 usu kernel: ACPI: PM: Power Resource [PIN]
mar 17 20:10:52 usu kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
mar 17 20:10:52 usu kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
mar 17 20:10:52 usu kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
mar 17 20:10:52 usu kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
mar 17 20:10:52 usu kernel: PCI host bridge to bus 0000:00
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x80800000-0xbfffffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: root bus resource [bus 00-e0]
mar 17 20:10:52 usu kernel: pci 0000:00:00.0: [8086:a740] type 00 class 0x060000
mar 17 20:10:52 usu kernel: pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:01.0: PTM enabled (root), 4ns granularity
mar 17 20:10:52 usu kernel: pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:01.1: PTM enabled (root), 4ns granularity
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: [8086:a780] type 00 class 0x030000
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6004000000-0x6004ffffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: reg 0x20: [io  0x6000-0x603f]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
mar 17 20:10:52 usu kernel: pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000
mar 17 20:10:52 usu kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x6005210000-0x6005217fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:0a.0: enabling Extended Tags
mar 17 20:10:52 usu kernel: pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400
mar 17 20:10:52 usu kernel: pci 0000:00:0e.0: reg 0x10: [mem 0x6002000000-0x6003ffffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:0e.0: reg 0x18: [mem 0x82000000-0x83ffffff]
mar 17 20:10:52 usu kernel: pci 0000:00:0e.0: reg 0x20: [mem 0x6005100000-0x60051fffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:14.0: [8086:7ae0] type 00 class 0x0c0330
mar 17 20:10:52 usu kernel: pci 0000:00:14.0: reg 0x10: [mem 0x6005200000-0x600520ffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:14.2: [8086:7aa7] type 00 class 0x050000
mar 17 20:10:52 usu kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6005224000-0x6005227fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:14.2: reg 0x18: [mem 0x600522d000-0x600522dfff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:15.0: [8086:7acc] type 00 class 0x0c8000
mar 17 20:10:52 usu kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:15.1: [8086:7acd] type 00 class 0x0c8000
mar 17 20:10:52 usu kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:15.2: [8086:7ace] type 00 class 0x0c8000
mar 17 20:10:52 usu kernel: pci 0000:00:15.2: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:16.0: [8086:7ae8] type 00 class 0x078000
mar 17 20:10:52 usu kernel: pci 0000:00:16.0: reg 0x10: [mem 0x6005229000-0x6005229fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:16.0: PME# supported from D3hot
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: [8086:7ae2] type 00 class 0x010601
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: reg 0x10: [mem 0x85900000-0x85901fff]
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: reg 0x14: [mem 0x85903000-0x859030ff]
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: reg 0x18: [io  0x6090-0x6097]
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: reg 0x1c: [io  0x6080-0x6083]
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: reg 0x20: [io  0x6060-0x607f]
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: reg 0x24: [mem 0x85902000-0x859027ff]
mar 17 20:10:52 usu kernel: pci 0000:00:17.0: PME# supported from D3hot
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0: [8086:7ac8] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1b.0: [8086:7ac0] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0: [8086:7ab8] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1: [8086:7ab9] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1: PTM enabled (root), 4ns granularity
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2: [8086:7aba] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2: PTM enabled (root), 4ns granularity
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0: [8086:7ab0] type 01 class 0x060400
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1f.0: [8086:7a84] type 00 class 0x060100
mar 17 20:10:52 usu kernel: pci 0000:00:1f.3: [8086:7ad0] type 00 class 0x040300
mar 17 20:10:52 usu kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6005220000-0x6005223fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6005000000-0x60050fffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1f.4: [8086:7aa3] type 00 class 0x0c0500
mar 17 20:10:52 usu kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6005228000-0x60052280ff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
mar 17 20:10:52 usu kernel: pci 0000:00:1f.5: [8086:7aa4] type 00 class 0x0c8000
mar 17 20:10:52 usu kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
mar 17 20:10:52 usu kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
mar 17 20:10:52 usu kernel: pci 0000:02:00.0: [144d:a80c] type 00 class 0x010802
mar 17 20:10:52 usu kernel: pci 0000:02:00.0: reg 0x10: [mem 0x85800000-0x85803fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
mar 17 20:10:52 usu kernel: pci 0000:00:01.1:   bridge window [mem 0x85800000-0x858fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0: PCI bridge to [bus 03]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0:   bridge window [io  0x5000-0x5fff]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x84a00000-0x853fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x6000a00000-0x60013fffff 64bit pref]
mar 17 20:10:52 usu kernel: pci 0000:00:1b.0: PCI bridge to [bus 04]
mar 17 20:10:52 usu kernel: pci 0000:05:00.0: [8086:2725] type 00 class 0x028000
mar 17 20:10:52 usu kernel: pci 0000:05:00.0: reg 0x10: [mem 0x85700000-0x85703fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0: PCI bridge to [bus 05]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0:   bridge window [mem 0x85700000-0x857fffff]
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: [1b21:0612] type 00 class 0x010601
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: reg 0x10: [io  0x4050-0x4057]
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: reg 0x14: [io  0x4040-0x4043]
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: reg 0x18: [io  0x4030-0x4037]
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: reg 0x1c: [io  0x4020-0x4023]
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: reg 0x20: [io  0x4000-0x401f]
mar 17 20:10:52 usu kernel: pci 0000:06:00.0: reg 0x24: [mem 0x85600000-0x856001ff]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1: PCI bridge to [bus 06]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1:   bridge window [mem 0x85600000-0x856fffff]
mar 17 20:10:52 usu kernel: pci 0000:07:00.0: [8086:15f3] type 00 class 0x020000
mar 17 20:10:52 usu kernel: pci 0000:07:00.0: reg 0x10: [mem 0x85400000-0x854fffff]
mar 17 20:10:52 usu kernel: pci 0000:07:00.0: reg 0x1c: [mem 0x85500000-0x85503fff]
mar 17 20:10:52 usu kernel: pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2: PCI bridge to [bus 07]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2:   bridge window [mem 0x85400000-0x855fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0: PCI bridge to [bus 08]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x84000000-0x849fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x6000000000-0x60009fffff 64bit pref]
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 1
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
mar 17 20:10:52 usu kernel: ACPI: EC: interrupt unblocked
mar 17 20:10:52 usu kernel: ACPI: EC: event unblocked
mar 17 20:10:52 usu kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 17 20:10:52 usu kernel: ACPI: EC: GPE=0x7
mar 17 20:10:52 usu kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
mar 17 20:10:52 usu kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
mar 17 20:10:52 usu kernel: iommu: Default domain type: Translated 
mar 17 20:10:52 usu kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: vgaarb: bridge control possible
mar 17 20:10:52 usu kernel: vgaarb: loaded
mar 17 20:10:52 usu kernel: SCSI subsystem initialized
mar 17 20:10:52 usu kernel: libata version 3.00 loaded.
mar 17 20:10:52 usu kernel: ACPI: bus type USB registered
mar 17 20:10:52 usu kernel: usbcore: registered new interface driver usbfs
mar 17 20:10:52 usu kernel: usbcore: registered new interface driver hub
mar 17 20:10:52 usu kernel: usbcore: registered new device driver usb
mar 17 20:10:52 usu kernel: pps_core: LinuxPPS API ver. 1 registered
mar 17 20:10:52 usu kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
mar 17 20:10:52 usu kernel: PTP clock support registered
mar 17 20:10:52 usu kernel: EDAC MC: Ver: 3.0.0
mar 17 20:10:52 usu kernel: Registered efivars operations
mar 17 20:10:52 usu kernel: NetLabel: Initializing
mar 17 20:10:52 usu kernel: NetLabel:  domain hash size = 128
mar 17 20:10:52 usu kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
mar 17 20:10:52 usu kernel: NetLabel:  unlabeled traffic allowed by default
mar 17 20:10:52 usu kernel: PCI: Using ACPI for IRQ routing
mar 17 20:10:52 usu kernel: PCI: pci_cache_line_size set to 64 bytes
mar 17 20:10:52 usu kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x63831000-0x63ffffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x6589c000-0x67ffffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x6a176000-0x6bffffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x6b73f000-0x6bffffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x703fc000-0x73ffffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x76000000-0x77ffffff]
mar 17 20:10:52 usu kernel: e820: reserve RAM buffer [mem 0x107f800000-0x107fffffff]
mar 17 20:10:52 usu kernel: clocksource: Switched to clocksource tsc-early
mar 17 20:10:52 usu kernel: VFS: Disk quotas dquot_6.6.0
mar 17 20:10:52 usu kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
mar 17 20:10:52 usu kernel: AppArmor: AppArmor Filesystem Enabled
mar 17 20:10:52 usu kernel: pnp: PnP ACPI init
mar 17 20:10:52 usu kernel: system 00:00: [io  0x0290-0x029f] has been reserved
mar 17 20:10:52 usu kernel: system 00:01: [io  0x0680-0x069f] has been reserved
mar 17 20:10:52 usu kernel: system 00:01: [io  0x164e-0x164f] has been reserved
mar 17 20:10:52 usu kernel: system 00:02: [io  0x1854-0x1857] has been reserved
mar 17 20:10:52 usu kernel: pnp 00:03: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfedc0000-0xfedc7fff] has been reserved
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfeda0000-0xfeda0fff] has been reserved
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfeda1000-0xfeda1fff] has been reserved
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfed20000-0xfed7ffff] could not be reserved
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfed45000-0xfed8ffff] could not be reserved
mar 17 20:10:52 usu kernel: system 00:03: [mem 0xfee00000-0xfeefffff] could not be reserved
mar 17 20:10:52 usu kernel: system 00:04: [io  0x2000-0x20fe] has been reserved
mar 17 20:10:52 usu kernel: pnp: PnP ACPI: found 6 devices
mar 17 20:10:52 usu kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
mar 17 20:10:52 usu kernel: NET: Registered PF_INET protocol family
mar 17 20:10:52 usu kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
mar 17 20:10:52 usu kernel: tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
mar 17 20:10:52 usu kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
mar 17 20:10:52 usu kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
mar 17 20:10:52 usu kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
mar 17 20:10:52 usu kernel: TCP: Hash tables configured (established 524288 bind 65536)
mar 17 20:10:52 usu kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
mar 17 20:10:52 usu kernel: UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
mar 17 20:10:52 usu kernel: UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
mar 17 20:10:52 usu kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
mar 17 20:10:52 usu kernel: NET: Registered PF_XDP protocol family
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
mar 17 20:10:52 usu kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:15.2: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
mar 17 20:10:52 usu kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x80800000-0x80800fff]
mar 17 20:10:52 usu kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
mar 17 20:10:52 usu kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
mar 17 20:10:52 usu kernel: pci 0000:00:01.1:   bridge window [mem 0x85800000-0x858fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0: PCI bridge to [bus 03]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0:   bridge window [io  0x5000-0x5fff]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x84a00000-0x853fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1a.0:   bridge window [mem 0x6000a00000-0x60013fffff 64bit pref]
mar 17 20:10:52 usu kernel: pci 0000:00:1b.0: PCI bridge to [bus 04]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0: PCI bridge to [bus 05]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.0:   bridge window [mem 0x85700000-0x857fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1: PCI bridge to [bus 06]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.1:   bridge window [mem 0x85600000-0x856fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2: PCI bridge to [bus 07]
mar 17 20:10:52 usu kernel: pci 0000:00:1c.2:   bridge window [mem 0x85400000-0x855fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0: PCI bridge to [bus 08]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x84000000-0x849fffff]
mar 17 20:10:52 usu kernel: pci 0000:00:1d.0:   bridge window [mem 0x6000000000-0x60009fffff 64bit pref]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000e3fff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 8 [mem 0x000e4000-0x000e7fff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 9 [mem 0x000e8000-0x000ebfff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 10 [mem 0x000ec000-0x000effff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 11 [mem 0x80800000-0xbfffffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:00: resource 12 [mem 0x4000000000-0x7fffffffff window]
mar 17 20:10:52 usu kernel: pci_bus 0000:02: resource 1 [mem 0x85800000-0x858fffff]
mar 17 20:10:52 usu kernel: pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
mar 17 20:10:52 usu kernel: pci_bus 0000:03: resource 1 [mem 0x84a00000-0x853fffff]
mar 17 20:10:52 usu kernel: pci_bus 0000:03: resource 2 [mem 0x6000a00000-0x60013fffff 64bit pref]
mar 17 20:10:52 usu kernel: pci_bus 0000:05: resource 1 [mem 0x85700000-0x857fffff]
mar 17 20:10:52 usu kernel: pci_bus 0000:06: resource 0 [io  0x4000-0x4fff]
mar 17 20:10:52 usu kernel: pci_bus 0000:06: resource 1 [mem 0x85600000-0x856fffff]
mar 17 20:10:52 usu kernel: pci_bus 0000:07: resource 1 [mem 0x85400000-0x855fffff]
mar 17 20:10:52 usu kernel: pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
mar 17 20:10:52 usu kernel: pci_bus 0000:08: resource 1 [mem 0x84000000-0x849fffff]
mar 17 20:10:52 usu kernel: pci_bus 0000:08: resource 2 [mem 0x6000000000-0x60009fffff 64bit pref]
mar 17 20:10:52 usu kernel: PCI: CLS 64 bytes, default 64
mar 17 20:10:52 usu kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
mar 17 20:10:52 usu kernel: software IO TLB: mapped [mem 0x000000005f831000-0x0000000063831000] (64MB)
mar 17 20:10:52 usu kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3143404a908, max_idle_ns: 440795209397 ns
mar 17 20:10:52 usu kernel: clocksource: Switched to clocksource tsc
mar 17 20:10:52 usu kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
mar 17 20:10:52 usu kernel: Trying to unpack rootfs image as initramfs...
mar 17 20:10:52 usu kernel: Initialise system trusted keyrings
mar 17 20:10:52 usu kernel: Key type blacklist registered
mar 17 20:10:52 usu kernel: workingset: timestamp_bits=41 max_order=24 bucket_order=0
mar 17 20:10:52 usu kernel: zbud: loaded
mar 17 20:10:52 usu kernel: Key type asymmetric registered
mar 17 20:10:52 usu kernel: Asymmetric key parser 'x509' registered
mar 17 20:10:52 usu kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
mar 17 20:10:52 usu kernel: io scheduler mq-deadline registered
mar 17 20:10:52 usu kernel: io scheduler kyber registered
mar 17 20:10:52 usu kernel: io scheduler bfq registered
mar 17 20:10:52 usu kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 122
mar 17 20:10:52 usu kernel: pcieport 0000:00:01.0: AER: enabled with IRQ 122
mar 17 20:10:52 usu kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 123
mar 17 20:10:52 usu kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 123
mar 17 20:10:52 usu kernel: pcieport 0000:00:1a.0: PME: Signaling with IRQ 124
mar 17 20:10:52 usu kernel: pcieport 0000:00:1a.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
mar 17 20:10:52 usu kernel: pcieport 0000:00:1b.0: PME: Signaling with IRQ 125
mar 17 20:10:52 usu kernel: Freeing initrd memory: 18720K
mar 17 20:10:52 usu kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 126
mar 17 20:10:52 usu kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 126
mar 17 20:10:52 usu kernel: pcieport 0000:00:1c.1: PME: Signaling with IRQ 127
mar 17 20:10:52 usu kernel: pcieport 0000:00:1c.1: AER: enabled with IRQ 127
mar 17 20:10:52 usu kernel: pcieport 0000:00:1c.2: PME: Signaling with IRQ 128
mar 17 20:10:52 usu kernel: pcieport 0000:00:1c.2: AER: enabled with IRQ 128
mar 17 20:10:52 usu kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 129
mar 17 20:10:52 usu kernel: pcieport 0000:00:1d.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
mar 17 20:10:52 usu kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
mar 17 20:10:52 usu kernel: Monitor-Mwait will be used to enter C-1 state
mar 17 20:10:52 usu kernel: Monitor-Mwait will be used to enter C-2 state
mar 17 20:10:52 usu kernel: Monitor-Mwait will be used to enter C-3 state
mar 17 20:10:52 usu kernel: ACPI: \_SB_.PR00: Found 3 idle states
mar 17 20:10:52 usu kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
mar 17 20:10:52 usu kernel: ACPI: button: Sleep Button [SLPB]
mar 17 20:10:52 usu kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
mar 17 20:10:52 usu kernel: ACPI: button: Power Button [PWRB]
mar 17 20:10:52 usu kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
mar 17 20:10:52 usu kernel: ACPI: button: Power Button [PWRF]
mar 17 20:10:52 usu kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1656
mar 17 20:10:52 usu kernel: thermal LNXTHERM:00: registered as thermal_zone0
mar 17 20:10:52 usu kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
mar 17 20:10:52 usu kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
mar 17 20:10:52 usu kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
mar 17 20:10:52 usu kernel: hpet_acpi_add: no address or irqs in _CRS
mar 17 20:10:52 usu kernel: Non-volatile memory driver v1.3
mar 17 20:10:52 usu kernel: Linux agpgart interface v0.103
mar 17 20:10:52 usu kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
mar 17 20:10:52 usu kernel: nvme 0000:02:00.0: platform quirk: setting simple suspend
mar 17 20:10:52 usu kernel: nvme nvme0: pci function 0000:02:00.0
mar 17 20:10:52 usu kernel: ahci 0000:00:17.0: version 3.0
mar 17 20:10:52 usu kernel: nvme nvme0: Shutdown timeout set to 10 seconds
mar 17 20:10:52 usu kernel: nvme nvme0: 16/0/0 default/read/poll queues
mar 17 20:10:52 usu kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf0 impl SATA mode
mar 17 20:10:52 usu kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds 
mar 17 20:10:52 usu kernel:  nvme0n1: p1 p2 p3 p4 p5 p6 p7
mar 17 20:10:52 usu kernel: scsi host0: ahci
mar 17 20:10:52 usu kernel: scsi host1: ahci
mar 17 20:10:52 usu kernel: scsi host2: ahci
mar 17 20:10:52 usu kernel: scsi host3: ahci
mar 17 20:10:52 usu kernel: scsi host4: ahci
mar 17 20:10:52 usu kernel: scsi host5: ahci
mar 17 20:10:52 usu kernel: scsi host6: ahci
mar 17 20:10:52 usu kernel: scsi host7: ahci
mar 17 20:10:52 usu kernel: ata1: DUMMY
mar 17 20:10:52 usu kernel: ata2: DUMMY
mar 17 20:10:52 usu kernel: ata3: DUMMY
mar 17 20:10:52 usu kernel: ata4: DUMMY
mar 17 20:10:52 usu kernel: ata5: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902300 irq 131
mar 17 20:10:52 usu kernel: ata6: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902380 irq 131
mar 17 20:10:52 usu kernel: ata7: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902400 irq 131
mar 17 20:10:52 usu kernel: ata8: SATA max UDMA/133 abar m2048@0x85902000 port 0x85902480 irq 131
mar 17 20:10:52 usu kernel: ahci 0000:06:00.0: SSS flag set, parallel bus scan disabled
mar 17 20:10:52 usu kernel: ahci 0000:06:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
mar 17 20:10:52 usu kernel: ahci 0000:06:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc 
mar 17 20:10:52 usu kernel: scsi host8: ahci
mar 17 20:10:52 usu kernel: scsi host9: ahci
mar 17 20:10:52 usu kernel: ata9: SATA max UDMA/133 abar m512@0x85600000 port 0x85600100 irq 148
mar 17 20:10:52 usu kernel: ata10: SATA max UDMA/133 abar m512@0x85600000 port 0x85600180 irq 148
mar 17 20:10:52 usu kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
mar 17 20:10:52 usu kernel: ehci-pci: EHCI PCI platform driver
mar 17 20:10:52 usu kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
mar 17 20:10:52 usu kernel: ohci-pci: OHCI PCI platform driver
mar 17 20:10:52 usu kernel: uhci_hcd: USB Universal Host Controller Interface driver
mar 17 20:10:52 usu kernel: usbcore: registered new interface driver usbserial_generic
mar 17 20:10:52 usu kernel: usbserial: USB Serial support registered for generic
mar 17 20:10:52 usu kernel: rtc_cmos rtc_cmos: RTC can wake from S4
mar 17 20:10:52 usu kernel: rtc_cmos rtc_cmos: registered as rtc0
mar 17 20:10:52 usu kernel: rtc_cmos rtc_cmos: setting system clock to 2025-03-17T19:10:50 UTC (1742238650)
mar 17 20:10:52 usu kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
mar 17 20:10:52 usu kernel: intel_pstate: Intel P-state driver initializing
mar 17 20:10:52 usu kernel: intel_pstate: HWP enabled
mar 17 20:10:52 usu kernel: ledtrig-cpu: registered to indicate activity on CPUs
mar 17 20:10:52 usu kernel: efifb: probing for efifb
mar 17 20:10:52 usu kernel: efifb: showing boot graphics
mar 17 20:10:52 usu kernel: efifb: framebuffer at 0x4000000000, using 32448k, total 32448k
mar 17 20:10:52 usu kernel: efifb: mode is 3840x2160x32, linelength=15360, pages=1
mar 17 20:10:52 usu kernel: efifb: scrolling: redraw
mar 17 20:10:52 usu kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
mar 17 20:10:52 usu kernel: fbcon: Deferring console take-over
mar 17 20:10:52 usu kernel: fb0: EFI VGA frame buffer device
mar 17 20:10:52 usu kernel: hid: raw HID events driver (C) Jiri Kosina
mar 17 20:10:52 usu kernel: ashmem: initialized
mar 17 20:10:52 usu kernel: drop_monitor: Initializing network drop monitor service
mar 17 20:10:52 usu kernel: Initializing XFRM netlink socket
mar 17 20:10:52 usu kernel: NET: Registered PF_INET6 protocol family
mar 17 20:10:52 usu kernel: Segment Routing with IPv6
mar 17 20:10:52 usu kernel: RPL Segment Routing with IPv6
mar 17 20:10:52 usu kernel: In-situ OAM (IOAM) with IPv6
mar 17 20:10:52 usu kernel: NET: Registered PF_PACKET protocol family
mar 17 20:10:52 usu kernel: microcode: sig=0xb0671, pf=0x2, revision=0x12b
mar 17 20:10:52 usu kernel: microcode: Microcode Update Driver: v2.2.
mar 17 20:10:52 usu kernel: IPI shorthand broadcast: enabled
mar 17 20:10:52 usu kernel: sched_clock: Marking stable (520001297, 6426765)->(555940687, -29512625)
mar 17 20:10:52 usu kernel: registered taskstats version 1
mar 17 20:10:52 usu kernel: Loading compiled-in X.509 certificates
mar 17 20:10:52 usu kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 4857a2823bb06de9d59a44939f16ca1130b9c293'
mar 17 20:10:52 usu kernel: zswap: loaded using pool zstd/z3fold
mar 17 20:10:52 usu kernel: Key type .fscrypt registered
mar 17 20:10:52 usu kernel: Key type fscrypt-provisioning registered
mar 17 20:10:52 usu kernel: AppArmor: AppArmor sha1 policy hashing enabled
mar 17 20:10:52 usu kernel: PM:   Magic number: 1:890:192
mar 17 20:10:52 usu kernel: acpi device:1e: hash matches
mar 17 20:10:52 usu kernel: RAS: Correctable Errors collector initialized.
mar 17 20:10:52 usu kernel: clk: Disabling unused clocks
mar 17 20:10:52 usu kernel: ata8: SATA link down (SStatus 4 SControl 300)
mar 17 20:10:52 usu kernel: ata9: SATA link down (SStatus 0 SControl 300)
mar 17 20:10:52 usu kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
mar 17 20:10:52 usu kernel: ata7: SATA link down (SStatus 4 SControl 300)
mar 17 20:10:52 usu kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
mar 17 20:10:52 usu kernel: ata5.00: ATA-10: TOSHIBA MG07ACA14TE, 0103, max UDMA/133
mar 17 20:10:52 usu kernel: ata6.00: ATA-10: TOSHIBA HDWT380, 0603, max UDMA/133
mar 17 20:10:52 usu kernel: ata6.00: 15628053168 sectors, multi 16: LBA48 NCQ (depth 32), AA
mar 17 20:10:52 usu kernel: ata6.00: configured for UDMA/133
mar 17 20:10:52 usu kernel: ata5.00: 27344764928 sectors, multi 16: LBA48 NCQ (depth 32), AA
mar 17 20:10:52 usu kernel: ata5.00: Features: NCQ-prio
mar 17 20:10:52 usu kernel: ata5.00: configured for UDMA/133
mar 17 20:10:52 usu kernel: scsi 4:0:0:0: Direct-Access     ATA      TOSHIBA MG07ACA1 0103 PQ: 0 ANSI: 5
mar 17 20:10:52 usu kernel: sd 4:0:0:0: [sda] 27344764928 512-byte logical blocks: (14.0 TB/12.7 TiB)
mar 17 20:10:52 usu kernel: sd 4:0:0:0: [sda] 4096-byte physical blocks
mar 17 20:10:52 usu kernel: sd 4:0:0:0: [sda] Write Protect is off
mar 17 20:10:52 usu kernel: sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
mar 17 20:10:52 usu kernel: sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
mar 17 20:10:52 usu kernel: scsi 5:0:0:0: Direct-Access     ATA      TOSHIBA HDWT380  0603 PQ: 0 ANSI: 5
mar 17 20:10:52 usu kernel: sd 5:0:0:0: [sdb] 15628053168 512-byte logical blocks: (8.00 TB/7.28 TiB)
mar 17 20:10:52 usu kernel: sd 5:0:0:0: [sdb] 4096-byte physical blocks
mar 17 20:10:52 usu kernel: sd 5:0:0:0: [sdb] Write Protect is off
mar 17 20:10:52 usu kernel: sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
mar 17 20:10:52 usu kernel: sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
mar 17 20:10:52 usu kernel:  sda: sda1
mar 17 20:10:52 usu kernel: sd 4:0:0:0: [sda] Attached SCSI disk
mar 17 20:10:52 usu kernel:  sdb: sdb1 sdb2
mar 17 20:10:52 usu kernel: sd 5:0:0:0: [sdb] Attached SCSI disk
mar 17 20:10:52 usu kernel: ata10: SATA link down (SStatus 0 SControl 300)
mar 17 20:10:52 usu kernel: Freeing unused decrypted memory: 2036K
mar 17 20:10:52 usu kernel: Freeing unused kernel image (initmem) memory: 2040K
mar 17 20:10:52 usu kernel: Write protecting the kernel read-only data: 30720k
mar 17 20:10:52 usu kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
mar 17 20:10:52 usu kernel: Freeing unused kernel image (rodata/data gap) memory: 1288K
mar 17 20:10:52 usu kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
mar 17 20:10:52 usu kernel: rodata_test: all tests were successful
mar 17 20:10:52 usu kernel: Run /init as init process
mar 17 20:10:52 usu kernel:   with arguments:
mar 17 20:10:52 usu kernel:     /init
mar 17 20:10:52 usu kernel:   with environment:
mar 17 20:10:52 usu kernel:     HOME=/
mar 17 20:10:52 usu kernel:     TERM=linux
mar 17 20:10:52 usu kernel:     BOOT_IMAGE=/boot/vmlinuz-5.15-x86_64
mar 17 20:10:52 usu kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
mar 17 20:10:52 usu kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
mar 17 20:10:52 usu kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
mar 17 20:10:52 usu kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
mar 17 20:10:52 usu kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
mar 17 20:10:52 usu kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
mar 17 20:10:55 usu kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
mar 17 20:10:55 usu kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 17 20:10:55 usu kernel: usb usb1: Product: xHCI Host Controller
mar 17 20:10:55 usu kernel: usb usb1: Manufacturer: Linux 5.15.173-1-MANJARO xhci-hcd
mar 17 20:10:55 usu kernel: usb usb1: SerialNumber: 0000:00:14.0
mar 17 20:10:55 usu kernel: hub 1-0:1.0: USB hub found
mar 17 20:10:55 usu kernel: hub 1-0:1.0: 16 ports detected
mar 17 20:10:55 usu kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
mar 17 20:10:55 usu kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 17 20:10:55 usu kernel: usb usb2: Product: xHCI Host Controller
mar 17 20:10:55 usu kernel: usb usb2: Manufacturer: Linux 5.15.173-1-MANJARO xhci-hcd
mar 17 20:10:55 usu kernel: usb usb2: SerialNumber: 0000:00:14.0
mar 17 20:10:55 usu kernel: hub 2-0:1.0: USB hub found
mar 17 20:10:55 usu kernel: hub 2-0:1.0: 8 ports detected
mar 17 20:10:55 usu kernel: usb 1-1: new full-speed USB device number 2 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-1: New USB device found, idVendor=1ea7, idProduct=2002, bcdDevice= 1.03
mar 17 20:10:55 usu kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-1: Product: Gaming Keyboard
mar 17 20:10:55 usu kernel: usb 1-1: Manufacturer: WFDZ
mar 17 20:10:55 usu kernel: input: WFDZ Gaming Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1EA7:2002.0001/input/input3
mar 17 20:10:55 usu kernel: usb 2-4: new SuperSpeed USB device number 2 using xhci_hcd
mar 17 20:10:55 usu kernel: hid-generic 0003:1EA7:2002.0001: input,hidraw0: USB HID v1.10 Keyboard [WFDZ Gaming Keyboard] on usb-0000:00:14.0-1/input0
mar 17 20:10:55 usu kernel: input: WFDZ Gaming Keyboard Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1EA7:2002.0002/input/input4
mar 17 20:10:55 usu kernel: input: WFDZ Gaming Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1EA7:2002.0002/input/input5
mar 17 20:10:55 usu kernel: usb 2-4: New USB device found, idVendor=174c, idProduct=3074, bcdDevice= 0.01
mar 17 20:10:55 usu kernel: usb 2-4: New USB device strings: Mfr=2, Product=3, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 2-4: Product: ASM107x
mar 17 20:10:55 usu kernel: usb 2-4: Manufacturer: ASUS TEK.
mar 17 20:10:55 usu kernel: hub 2-4:1.0: USB hub found
mar 17 20:10:55 usu kernel: hub 2-4:1.0: 4 ports detected
mar 17 20:10:55 usu kernel: input: WFDZ Gaming Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1EA7:2002.0002/input/input6
mar 17 20:10:55 usu kernel: hid-generic 0003:1EA7:2002.0002: input,hiddev96,hidraw1: USB HID v1.10 Mouse [WFDZ Gaming Keyboard] on usb-0000:00:14.0-1/input1
mar 17 20:10:55 usu kernel: usbcore: registered new interface driver usbhid
mar 17 20:10:55 usu kernel: usbhid: USB HID core driver
mar 17 20:10:55 usu kernel: usb 1-2: new high-speed USB device number 3 using xhci_hcd
mar 17 20:10:55 usu kernel: fbcon: Taking over console
mar 17 20:10:55 usu kernel: Console: switching to colour frame buffer device 240x67
mar 17 20:10:55 usu kernel: EXT4-fs (nvme0n1p6): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
mar 17 20:10:55 usu kernel: usb 1-2: New USB device found, idVendor=346d, idProduct=5678, bcdDevice= 2.00
mar 17 20:10:55 usu kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 17 20:10:55 usu kernel: usb 1-2: Product: Disk 2.0
mar 17 20:10:55 usu kernel: usb 1-2: Manufacturer: USB
mar 17 20:10:55 usu kernel: usb 1-2: SerialNumber: 5554371134980044879
mar 17 20:10:55 usu systemd[1]: systemd 256.8-2-manjaro running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
mar 17 20:10:55 usu systemd[1]: Detected architecture x86-64.
mar 17 20:10:55 usu systemd[1]: Hostname set to <usu>.
mar 17 20:10:55 usu systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
mar 17 20:10:55 usu kernel: usb 1-4: new high-speed USB device number 4 using xhci_hcd
mar 17 20:10:55 usu systemd-ssh-generator[596]: Binding SSH to AF_UNIX socket /run/ssh-unix-local/socket.
mar 17 20:10:55 usu systemd-ssh-generator[596]: → connect via 'ssh .host' locally
mar 17 20:10:55 usu systemd[1]: Queued start job for default target Graphical Interface.
mar 17 20:10:55 usu systemd[1]: Created slice CUPS Slice.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/dirmngr.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/getty.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/gpg-agent.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/gpg-agent-browser.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/gpg-agent-extra.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/gpg-agent-ssh.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/keyboxd.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/modprobe.
mar 17 20:10:55 usu systemd[1]: Created slice Slice /system/systemd-fsck.
mar 17 20:10:55 usu systemd[1]: Created slice User and Session Slice.
mar 17 20:10:55 usu systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
mar 17 20:10:55 usu systemd[1]: Started Forward Password Requests to Wall Directory Watch.
mar 17 20:10:55 usu systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
mar 17 20:10:55 usu systemd[1]: Expecting device /dev/disk/by-diskseq/1-part5...
mar 17 20:10:55 usu systemd[1]: Expecting device /dev/disk/by-uuid/F8F0-41CC...
mar 17 20:10:55 usu systemd[1]: Expecting device /dev/tpmrm0...
mar 17 20:10:55 usu systemd[1]: Reached target Local Encrypted Volumes.
mar 17 20:10:55 usu systemd[1]: Reached target Login Prompts.
mar 17 20:10:55 usu systemd[1]: Reached target Local Integrity Protected Volumes.
mar 17 20:10:55 usu systemd[1]: Reached target Remote File Systems.
mar 17 20:10:55 usu systemd[1]: Reached target Slice Units.
mar 17 20:10:55 usu systemd[1]: Reached target Mounting snaps.
mar 17 20:10:55 usu systemd[1]: Reached target Local Verity Protected Volumes.
mar 17 20:10:55 usu systemd[1]: Listening on Device-mapper event daemon FIFOs.
mar 17 20:10:55 usu systemd[1]: Listening on LVM2 poll daemon socket.
mar 17 20:10:55 usu systemd[1]: Listening on Process Core Dump Socket.
mar 17 20:10:55 usu systemd[1]: Listening on Credential Encryption/Decryption.
mar 17 20:10:55 usu systemd[1]: Listening on Journal Socket (/dev/log).
mar 17 20:10:55 usu systemd[1]: Listening on Journal Sockets.
mar 17 20:10:55 usu systemd[1]: Listening on udev Control Socket.
mar 17 20:10:55 usu systemd[1]: Listening on udev Kernel Socket.
mar 17 20:10:55 usu systemd[1]: Mounting Huge Pages File System...
mar 17 20:10:55 usu systemd[1]: Mounting POSIX Message Queue File System...
mar 17 20:10:55 usu systemd[1]: Mounting Kernel Debug File System...
mar 17 20:10:55 usu systemd[1]: Mounting Kernel Trace File System...
mar 17 20:10:55 usu systemd[1]: Starting Load AppArmor profiles...
mar 17 20:10:55 usu systemd[1]: Starting Create List of Static Device Nodes...
mar 17 20:10:55 usu systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module configfs...
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module dm_mod...
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module drm...
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module fuse...
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module loop...
mar 17 20:10:55 usu systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
mar 17 20:10:55 usu systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Modules...
mar 17 20:10:55 usu systemd[1]: Starting Remount Root and Kernel File Systems...
mar 17 20:10:55 usu systemd[1]: Starting Load udev Rules from Credentials...
mar 17 20:10:55 usu systemd[1]: Starting Coldplug All udev Devices...
mar 17 20:10:55 usu systemd[1]: Mounted Huge Pages File System.
mar 17 20:10:55 usu systemd[1]: Mounted POSIX Message Queue File System.
mar 17 20:10:55 usu systemd[1]: Mounted Kernel Debug File System.
mar 17 20:10:55 usu systemd[1]: Mounted Kernel Trace File System.
mar 17 20:10:55 usu systemd[1]: Finished Create List of Static Device Nodes.
mar 17 20:10:55 usu systemd[1]: modprobe@configfs.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module configfs.
mar 17 20:10:55 usu systemd[1]: modprobe@drm.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module drm.
mar 17 20:10:55 usu systemd[1]: Mounting Kernel Configuration File System...
mar 17 20:10:55 usu systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
mar 17 20:10:55 usu kernel: EXT4-fs (nvme0n1p6): re-mounted. Opts: (null). Quota mode: none.
mar 17 20:10:55 usu systemd[1]: Finished Remount Root and Kernel File Systems.
mar 17 20:10:55 usu kernel: random: lvm: uninitialized urandom read (4 bytes read)
mar 17 20:10:55 usu systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
mar 17 20:10:55 usu kernel: device-mapper: uevent: version 1.0.3
mar 17 20:10:55 usu kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
mar 17 20:10:55 usu systemd[1]: Starting Load/Save OS Random Seed...
mar 17 20:10:55 usu systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module dm_mod.
mar 17 20:10:55 usu systemd[1]: Finished Load udev Rules from Credentials.
mar 17 20:10:55 usu systemd[1]: Mounted Kernel Configuration File System.
mar 17 20:10:55 usu kernel: loop: module loaded
mar 17 20:10:55 usu systemd[1]: modprobe@loop.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module loop.
mar 17 20:10:55 usu kernel: fuse: init (API version 7.34)
mar 17 20:10:55 usu systemd[1]: modprobe@fuse.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module fuse.
mar 17 20:10:55 usu systemd[1]: Mounting FUSE Control File System...
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.283:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="foliate" pid=652 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.283:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=638 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.283:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="evolution" pid=649 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.283:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=634 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.283:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="flatpak" pid=651 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: sd 4:0:0:0: Attached scsi generic sg0 type 0
mar 17 20:10:55 usu kernel: sd 5:0:0:0: Attached scsi generic sg1 type 0
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.286:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=630 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.286:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="kchmviewer" pid=657 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.286:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=644 comm="apparmor_parser"
mar 17 20:10:55 usu kernel: audit: type=1400 audit(1742238652.286:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=631 comm="apparmor_parser"
mar 17 20:10:55 usu systemd[1]: Mounted FUSE Control File System.
mar 17 20:10:55 usu kernel: i2c_dev: i2c /dev entries driver
mar 17 20:10:55 usu systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
mar 17 20:10:55 usu systemd[1]: Create System Users was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: Starting Create Static Device Nodes in /dev...
mar 17 20:10:55 usu kernel: vboxdrv: loading out-of-tree module taints kernel.
mar 17 20:10:55 usu kernel: vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
mar 17 20:10:55 usu kernel: vboxdrv: Found 28 processor cores/threads
mar 17 20:10:55 usu systemd[1]: Finished Create Static Device Nodes in /dev.
mar 17 20:10:55 usu systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
mar 17 20:10:55 usu systemd[1]: Starting Journal Service...
mar 17 20:10:55 usu systemd[1]: Starting Rule-based Manager for Device Events and Files...
mar 17 20:10:55 usu kernel: vboxdrv: TSC mode is Invariant, tentative frequency 3417588055 Hz
mar 17 20:10:55 usu kernel: vboxdrv: Successfully loaded version 7.1.4 r165100 (interface 0x00340001)
mar 17 20:10:55 usu systemd-journald[760]: Collecting audit messages is disabled.
mar 17 20:10:55 usu kernel: VBoxNetAdp: Successfully started.
mar 17 20:10:55 usu kernel: VBoxNetFlt: Successfully started.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Modules.
mar 17 20:10:55 usu systemd[1]: Starting Apply Kernel Variables...
mar 17 20:10:55 usu systemd[1]: Finished Apply Kernel Variables.
mar 17 20:10:55 usu systemd[1]: Starting CLI Netfilter Manager...
mar 17 20:10:55 usu systemd[1]: Started Rule-based Manager for Device Events and Files.
mar 17 20:10:55 usu systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
mar 17 20:10:55 usu systemd[1]: Reached target Preparation for Local File Systems.
mar 17 20:10:55 usu systemd[1]: Finished Coldplug All udev Devices.
mar 17 20:10:55 usu systemd[1]: Found device Samsung SSD 990 PRO 2TB EFI\x20system\x20partition.
mar 17 20:10:55 usu systemd[1]: Finished Load AppArmor profiles.
mar 17 20:10:55 usu systemd[1]: Found device Samsung SSD 990 PRO 2TB 5.
mar 17 20:10:55 usu kernel: acpi PNP0C14:06: duplicate WMI GUID 97845ED0-4E6D-11DE-8A39-0800200C9A66 (first instance was on PNP0C14:02)
mar 17 20:10:55 usu systemd[1]: Activating swap Swap Partition...
mar 17 20:10:55 usu systemd[1]: Starting File System Check on /dev/disk/by-uuid/F8F0-41CC...
mar 17 20:10:55 usu systemd[1]: Starting Virtual Console Setup...
mar 17 20:10:55 usu kernel: Adding 8342524k swap on /dev/nvme0n1p5.  Priority:-2 extents:1 across:8342524k SSFS
mar 17 20:10:55 usu kernel: Intel(R) 2.5G Ethernet Linux Driver
mar 17 20:10:55 usu kernel: Copyright(c) 2018 Intel Corporation.
mar 17 20:10:55 usu kernel: cryptd: max_cpu_qlen set to 1000
mar 17 20:10:55 usu kernel: igc 0000:07:00.0: PTM enabled, 4ns granularity
mar 17 20:10:55 usu systemd[1]: Activated swap Swap Partition.
mar 17 20:10:55 usu kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
mar 17 20:10:55 usu systemd[1]: Finished CLI Netfilter Manager.
mar 17 20:10:55 usu systemd[1]: Finished Virtual Console Setup.
mar 17 20:10:55 usu systemd[1]: Reached target Swaps.
mar 17 20:10:55 usu systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
mar 17 20:10:55 usu systemd[1]: Finished File System Check on /dev/disk/by-uuid/F8F0-41CC.
mar 17 20:10:55 usu kernel: AVX2 version of gcm_enc/dec engaged.
mar 17 20:10:55 usu kernel: AES CTR mode by8 optimization enabled
mar 17 20:10:55 usu kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
mar 17 20:10:55 usu kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
mar 17 20:10:55 usu kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
mar 17 20:10:55 usu systemd[1]: Found device /dev/tpmrm0.
mar 17 20:10:55 usu systemd[1]: Reached target Trusted Platform Module.
mar 17 20:10:55 usu systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu kernel: i2c i2c-0: 2/4 memory slots populated (from DMI)
mar 17 20:10:55 usu kernel: i2c i2c-0: Memory type 0x22 not supported yet, not instantiating SPD
mar 17 20:10:55 usu kernel: i8042: PNP: No PS/2 controller found.
mar 17 20:10:55 usu kernel: iTCO_vendor_support: vendor-support=0
mar 17 20:10:55 usu kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
mar 17 20:10:55 usu kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
mar 17 20:10:55 usu kernel: pps pps0: new PPS source ptp0
mar 17 20:10:55 usu kernel: igc 0000:07:00.0 (unnamed net_device) (uninitialized): PHC added
mar 17 20:10:55 usu kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
mar 17 20:10:55 usu kernel: asus_wmi: ASUS WMI generic driver loaded
mar 17 20:10:55 usu kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
mar 17 20:10:55 usu kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
mar 17 20:10:55 usu kernel: cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
mar 17 20:10:55 usu kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
mar 17 20:10:55 usu kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
mar 17 20:10:55 usu kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
mar 17 20:10:55 usu kernel: intel-spi 0000:00:1f.5: mx25l25635e (32768 Kbytes)
mar 17 20:10:55 usu kernel: igc 0000:07:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
mar 17 20:10:55 usu kernel: igc 0000:07:00.0 eth0: MAC: 50:eb:f6:79:c3:98
mar 17 20:10:55 usu kernel: Creating 1 MTD partitions on "0000:00:1f.5":
mar 17 20:10:55 usu kernel: 0x000000000000-0x000002000000 : "BIOS"
mar 17 20:10:55 usu kernel: intel-lpss 0000:00:15.2: enabling device (0004 -> 0006)
mar 17 20:10:55 usu kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
mar 17 20:10:55 usu kernel: asus_wmi: SFUN value: 0x1
mar 17 20:10:55 usu kernel: eeepc-wmi eeepc-wmi: Detected ATK, not ASUSWMI, use DSTS
mar 17 20:10:55 usu kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input9
mar 17 20:10:55 usu kernel: asus_wmi: SFUN value: 0x1
mar 17 20:10:55 usu kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
mar 17 20:10:55 usu kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
mar 17 20:10:55 usu kernel: asus_wmi: Failed to get WMI notify code: AE_NOT_FOUND
mar 17 20:10:55 usu kernel: asus_wmi: Failed to get event during flush: -5
mar 17 20:10:55 usu kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input10
mar 17 20:10:55 usu kernel: Intel(R) Wireless WiFi driver for Linux
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: enabling device (0000 -> 0002)
mar 17 20:10:55 usu kernel: igc 0000:07:00.0 enp7s0: renamed from eth0
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: api flags index 2 larger than supported by driver
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.63.2.2
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: loaded firmware version 66.f1c864e0.0 ty-a0-gf-a0-66.ucode op_mode iwlmvm
mar 17 20:10:55 usu kernel: kvm: unknown parameter 'enable_virt_at_load' ignored
mar 17 20:10:55 usu kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
mar 17 20:10:55 usu kernel: thermal thermal_zone2: failed to read out thermal zone (-61)
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: loaded PNVM version 0x16611aa6
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: Detected RF GF, rfid=0x10d000
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0: base HW address: 44:e5:17:06:dd:5d
mar 17 20:10:55 usu systemd[1]: Starting Load/Save RF Kill Switch Status...
mar 17 20:10:55 usu kernel: iwlwifi 0000:05:00.0 wlp5s0: renamed from wlan0
mar 17 20:10:55 usu systemd[1]: Started Load/Save RF Kill Switch Status.
mar 17 20:10:55 usu kernel: random: crng init done
mar 17 20:10:55 usu systemd[1]: Finished Load/Save OS Random Seed.
mar 17 20:10:55 usu systemd[1]: Mounting /boot/efi...
mar 17 20:10:55 usu systemd[1]: Mounting /tmp...
mar 17 20:10:55 usu systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for core, revision 17200...
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for core20, revision 2434...
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for core20, revision 2496...
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for electrum, revision 2...
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for riseup-vpn, revision 179...
mar 17 20:10:55 usu kernel: loop0: detected capacity change from 0 to 213384
mar 17 20:10:55 usu kernel: loop1: detected capacity change from 0 to 130448
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for riseup-vpn, revision 184...
mar 17 20:10:55 usu kernel: loop2: detected capacity change from 0 to 130552
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for snapd, revision 23545...
mar 17 20:10:55 usu kernel: loop3: detected capacity change from 0 to 216800
mar 17 20:10:55 usu kernel: loop4: detected capacity change from 0 to 471968
mar 17 20:10:55 usu systemd[1]: Mounting Mount unit for snapd, revision 23771...
mar 17 20:10:55 usu kernel: loop5: detected capacity change from 0 to 474984
mar 17 20:10:55 usu systemd[1]: Mounted /tmp.
mar 17 20:10:55 usu kernel: loop6: detected capacity change from 0 to 91008
mar 17 20:10:55 usu kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
mar 17 20:10:55 usu kernel: loop7: detected capacity change from 0 to 91024
mar 17 20:10:55 usu systemd[1]: Mounted /boot/efi.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for core, revision 17200.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for core20, revision 2434.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for core20, revision 2496.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for electrum, revision 2.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for riseup-vpn, revision 184.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for snapd, revision 23545.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for snapd, revision 23771.
mar 17 20:10:55 usu systemd[1]: Mounted Mount unit for riseup-vpn, revision 179.
mar 17 20:10:55 usu systemd[1]: Reached target Mounted snaps.
mar 17 20:10:55 usu systemd[1]: Reached target Local File Systems.
mar 17 20:10:55 usu systemd[1]: Listening on Boot Entries Service Socket.
mar 17 20:10:55 usu systemd[1]: Listening on System Extension Image Management.
mar 17 20:10:55 usu systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: Starting Load AppArmor profiles managed internally by snapd...
mar 17 20:10:55 usu systemd[1]: Starting Set Up Additional Binary Formats...
mar 17 20:10:55 usu systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1068 (systemd-binfmt)
mar 17 20:10:55 usu kernel: usb 1-4: New USB device found, idVendor=0b05, idProduct=1996, bcdDevice= 0.13
mar 17 20:10:55 usu kernel: usb 1-4: New USB device strings: Mfr=3, Product=1, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-4: Product: USB Audio
mar 17 20:10:55 usu kernel: usb 1-4: Manufacturer: Generic
mar 17 20:10:55 usu kernel: hid-generic 0003:0B05:1996.0003: hiddev97,hidraw2: USB HID v1.11 Device [Generic USB Audio] on usb-0000:00:14.0-4/input7
mar 17 20:10:55 usu kernel: usb 1-5: new high-speed USB device number 5 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-5: New USB device found, idVendor=174c, idProduct=2074, bcdDevice= 0.01
mar 17 20:10:55 usu kernel: usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-5: Product: ASM107x
mar 17 20:10:55 usu kernel: usb 1-5: Manufacturer: ASUS TEK.
mar 17 20:10:55 usu kernel: hub 1-5:1.0: USB hub found
mar 17 20:10:55 usu kernel: hub 1-5:1.0: 4 ports detected
mar 17 20:10:55 usu systemd[1]: Mounting Arbitrary Executable File Formats File System...
mar 17 20:10:55 usu systemd[1]: Mounted Arbitrary Executable File Formats File System.
mar 17 20:10:55 usu systemd[1]: Finished Set Up Additional Binary Formats.
mar 17 20:10:55 usu systemd[1]: Finished Load AppArmor profiles managed internally by snapd.
mar 17 20:10:55 usu kernel: usb 1-10: new high-speed USB device number 6 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-10: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
mar 17 20:10:55 usu kernel: usb 1-10: New USB device strings: Mfr=0, Product=1, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-10: Product: USB2.0 Hub
mar 17 20:10:55 usu kernel: hub 1-10:1.0: USB hub found
mar 17 20:10:55 usu kernel: hub 1-10:1.0: 4 ports detected
mar 17 20:10:55 usu kernel: usb 1-5.2: new full-speed USB device number 7 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-5.2: New USB device found, idVendor=25a7, idProduct=fa23, bcdDevice= 2.41
mar 17 20:10:55 usu kernel: usb 1-5.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-5.2: Product: 2.4G Receiver
mar 17 20:10:55 usu kernel: usb 1-5.2: Manufacturer: Compx
mar 17 20:10:55 usu kernel: input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.0/0003:25A7:FA23.0004/input/input11
mar 17 20:10:55 usu kernel: usb 1-11: new high-speed USB device number 8 using xhci_hcd
mar 17 20:10:55 usu kernel: hid-generic 0003:25A7:FA23.0004: input,hidraw3: USB HID v1.10 Keyboard [Compx 2.4G Receiver] on usb-0000:00:14.0-5.2/input0
mar 17 20:10:55 usu kernel: input: Compx 2.4G Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input12
mar 17 20:10:55 usu kernel: input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input13
mar 17 20:10:55 usu kernel: input: Compx 2.4G Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1/0003:25A7:FA23.0005/input/input14
mar 17 20:10:55 usu kernel: input: Compx 2.4G Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2/1-5.2:1.1

continues here…

/0003:25A7:FA23.0005/input/input15
mar 17 20:10:55 usu kernel: hid-generic 0003:25A7:FA23.0005: input,hiddev98,hidraw4: USB HID v1.10 Mouse [Compx 2.4G Receiver] on usb-0000:00:14.0-5.2/input1
mar 17 20:10:55 usu kernel: usb 1-11: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
mar 17 20:10:55 usu kernel: usb 1-11: New USB device strings: Mfr=0, Product=1, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-11: Product: USB2.0 Hub
mar 17 20:10:55 usu kernel: hub 1-11:1.0: USB hub found
mar 17 20:10:55 usu kernel: hub 1-11:1.0: 3 ports detected
mar 17 20:10:55 usu kernel: usb 1-10.2: new high-speed USB device number 9 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-10.2: New USB device found, idVendor=0402, idProduct=3922, bcdDevice= 0.01
mar 17 20:10:55 usu kernel: usb 1-10.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
mar 17 20:10:55 usu kernel: usb 1-10.2: Product: USBLCD
mar 17 20:10:55 usu kernel: usb 1-13: new full-speed USB device number 10 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-13: config 1 has an invalid interface number: 2 but max is 1
mar 17 20:10:55 usu kernel: usb 1-13: config 1 has no interface number 1
mar 17 20:10:55 usu kernel: usb 1-13: New USB device found, idVendor=0b05, idProduct=19af, bcdDevice= 1.00
mar 17 20:10:55 usu kernel: usb 1-13: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 17 20:10:55 usu kernel: usb 1-13: Product: AURA LED Controller
mar 17 20:10:55 usu kernel: usb 1-13: Manufacturer: AsusTek Computer Inc.
mar 17 20:10:55 usu kernel: usb 1-13: SerialNumber: 9876543210
mar 17 20:10:55 usu kernel: hid-generic 0003:0B05:19AF.0006: hiddev99,hidraw5: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:00:14.0-13/input2
mar 17 20:10:55 usu kernel: usb 1-10.3: new full-speed USB device number 11 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-10.3: New USB device found, idVendor=1b1c, idProduct=1d04, bcdDevice= 0.0a
mar 17 20:10:55 usu kernel: usb 1-10.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 17 20:10:55 usu kernel: usb 1-10.3: Product: SPEC-OMEGA
mar 17 20:10:55 usu kernel: usb 1-10.3: Manufacturer: Corsair
mar 17 20:10:55 usu kernel: usb 1-10.3: SerialNumber: 3BC00311E9947BAFD3927D5F051C00F5
mar 17 20:10:55 usu kernel: hid-generic 0003:1B1C:1D04.0007: hiddev100,hidraw6: USB HID v1.11 Device [Corsair SPEC-OMEGA] on usb-0000:00:14.0-10.3/input0
mar 17 20:10:55 usu kernel: usb 1-14: new full-speed USB device number 12 using xhci_hcd
mar 17 20:10:55 usu kernel: usb 1-14: New USB device found, idVendor=8087, idProduct=0032, bcdDevice= 0.00
mar 17 20:10:55 usu kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
mar 17 20:10:55 usu systemd-journald[760]: Journal started
mar 17 20:10:55 usu systemd-journald[760]: Runtime Journal (/run/log/journal/32f41b3e23284159aa63efbddd62001f) is 8M, max 3.1G, 3.1G free.
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'crypto_user'
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'sg'
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'i2c_dev'
mar 17 20:10:52 usu systemd-random-seed[629]: Kernel entropy pool is not initialized yet, waiting until it is.
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'vboxdrv'
mar 17 20:10:55 usu apparmor.systemd[606]: Restarting AppArmor
mar 17 20:10:55 usu apparmor.systemd[606]: Reloading AppArmor profiles
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'vboxnetadp'
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'vboxnetflt'
mar 17 20:10:52 usu systemd-modules-load[615]: Inserted module 'uinput'
mar 17 20:10:52 usu (udev-worker)[876]: event8: Failed to call EVIOCSKEYCODE with scan code 0x7c, and key code 190: Invalid argument
mar 17 20:10:55 usu systemd-fsck[968]: fsck.fat 4.2 (2021-01-31)
mar 17 20:10:55 usu systemd-fsck[968]: /dev/nvme0n1p2: 520 files, 82011/98304 clusters
mar 17 20:10:55 usu snapd-apparmor[1067]: main.go:146: Loading profiles [/var/lib/snapd/apparmor/profiles/snap-confine.core.17200 /var/lib/snapd/apparmor/profiles/snap-confine.snapd.23545 /var/lib/snapd/apparmor/profiles/snap-confine.snapd.23771 /var/lib/snapd/apparmor/profiles/snap-update-ns.core /var/lib/snapd/apparmor/profiles/snap-update-ns.electrum /var/lib/snapd/apparmor/profiles/snap-update-ns.riseup-vpn /var/lib/snapd/apparmor/profiles/snap.core.hook.configure /var/lib/snapd/apparmor/profiles/snap.electrum.electrum /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.bitmask-root /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.hook.install /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.hook.remove /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.launcher /var/lib/snapd/apparmor/profiles/snap.riseup-vpn.openvpn]
mar 17 20:10:55 usu mtp-probe[1113]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4"
mar 17 20:10:55 usu mtp-probe[1112]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-13"
mar 17 20:10:55 usu mtp-probe[1107]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2"
mar 17 20:10:55 usu mtp-probe[1096]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
mar 17 20:10:55 usu mtp-probe[1112]: bus: 1, device: 10 was not an MTP device
mar 17 20:10:55 usu mtp-probe[1107]: bus: 1, device: 3 was not an MTP device
mar 17 20:10:55 usu mtp-probe[1113]: bus: 1, device: 4 was not an MTP device
mar 17 20:10:55 usu mtp-probe[1096]: bus: 1, device: 2 was not an MTP device
mar 17 20:10:55 usu systemd[1]: Started Journal Service.
mar 17 20:10:55 usu mtp-probe[1163]: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2"
mar 17 20:10:55 usu mtp-probe[1163]: bus: 1, device: 7 was not an MTP device
mar 17 20:10:55 usu systemd[1]: Starting Flush Journal to Persistent Storage...
mar 17 20:10:55 usu mtp-probe[1207]: checking bus 1, device 11: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3"
mar 17 20:10:55 usu mtp-probe[1207]: bus: 1, device: 11 was not an MTP device
mar 17 20:10:55 usu mtp-probe[1212]: checking bus 1, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2"
mar 17 20:10:55 usu mtp-probe[1212]: bus: 1, device: 9 was not an MTP device
mar 17 20:10:55 usu systemd-journald[760]: Time spent on flushing to /var/log/journal/32f41b3e23284159aa63efbddd62001f is 37.197ms for 1193 entries.
mar 17 20:10:55 usu systemd-journald[760]: System Journal (/var/log/journal/32f41b3e23284159aa63efbddd62001f) is 32M, max 4G, 3.9G free.
mar 17 20:10:55 usu systemd-journald[760]: Received client request to flush runtime journal.
mar 17 20:10:55 usu kernel: mc: Linux media interface: v0.10
mar 17 20:10:55 usu kernel: usb-storage 1-2:1.0: USB Mass Storage device detected
mar 17 20:10:55 usu kernel: scsi host10: usb-storage 1-2:1.0
mar 17 20:10:55 usu kernel: mousedev: PS/2 mouse device common for all mice
mar 17 20:10:55 usu kernel: usb-storage 1-10.2:1.0: USB Mass Storage device detected
mar 17 20:10:55 usu kernel: scsi host11: usb-storage 1-10.2:1.0
mar 17 20:10:55 usu kernel: usbcore: registered new interface driver usb-storage
mar 17 20:10:55 usu kernel: usbcore: registered new interface driver uas
mar 17 20:10:55 usu kernel: Bluetooth: Core ver 2.22
mar 17 20:10:55 usu kernel: NET: Registered PF_BLUETOOTH protocol family
mar 17 20:10:55 usu kernel: Bluetooth: HCI device and connection manager initialized
mar 17 20:10:55 usu kernel: Bluetooth: HCI socket layer initialized
mar 17 20:10:55 usu kernel: Bluetooth: L2CAP socket layer initialized
mar 17 20:10:55 usu kernel: Bluetooth: SCO socket layer initialized
mar 17 20:10:55 usu kernel: usbcore: registered new interface driver btusb
mar 17 20:10:55 usu kernel: Bluetooth: hci0: Firmware timestamp 2024.33 buildtype 1 build 81755
mar 17 20:10:55 usu kernel: Bluetooth: hci0: Found device firmware: intel/ibt-0041-0041.sfi
mar 17 20:10:55 usu kernel: Bluetooth: hci0: Boot Address: 0x100800
mar 17 20:10:55 usu kernel: Bluetooth: hci0: Firmware Version: 91-33.24
mar 17 20:10:55 usu kernel: Bluetooth: hci0: Firmware already loaded
mar 17 20:10:55 usu mtp-probe[1262]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-13"
mar 17 20:10:55 usu systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
mar 17 20:10:55 usu mtp-probe[1262]: bus: 1, device: 10 was not an MTP device
mar 17 20:10:55 usu systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu mtp-probe[1265]: checking bus 1, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2"
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module dm_mod...
mar 17 20:10:55 usu mtp-probe[1265]: bus: 1, device: 9 was not an MTP device
mar 17 20:10:55 usu systemd[1]: Starting Load Kernel Module loop...
mar 17 20:10:55 usu mtp-probe[1266]: checking bus 1, device 11: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3"
mar 17 20:10:55 usu systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu mtp-probe[1266]: bus: 1, device: 11 was not an MTP device
mar 17 20:10:55 usu systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
mar 17 20:10:55 usu systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
mar 17 20:10:55 usu systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: Create System Users was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module dm_mod.
mar 17 20:10:55 usu systemd[1]: modprobe@loop.service: Deactivated successfully.
mar 17 20:10:55 usu systemd[1]: Finished Load Kernel Module loop.
mar 17 20:10:55 usu systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: Finished Flush Journal to Persistent Storage.
mar 17 20:10:55 usu systemd[1]: Starting Create System Files and Directories...
mar 17 20:10:55 usu systemd[1]: Finished Create System Files and Directories.
mar 17 20:10:55 usu systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
mar 17 20:10:55 usu systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
mar 17 20:10:55 usu systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
mar 17 20:10:55 usu systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
mar 17 20:10:55 usu systemd[1]: Starting Network Time Synchronization...
mar 17 20:10:55 usu systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
mar 17 20:10:55 usu systemd[1]: Starting Record System Boot/Shutdown in UTMP...
mar 17 20:10:55 usu systemd[1]: Finished Record System Boot/Shutdown in UTMP.
mar 17 20:10:55 usu mtp-probe[1289]: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5.2"
mar 17 20:10:55 usu mtp-probe[1289]: bus: 1, device: 7 was not an MTP device
mar 17 20:10:55 usu systemd[1]: Started Network Time Synchronization.
mar 17 20:10:55 usu systemd[1]: Reached target System Initialization.
mar 17 20:10:55 usu systemd[1]: Started CUPS Scheduler.
mar 17 20:10:55 usu systemd[1]: Started Daily Cleanup of Temporary Directories.
mar 17 20:10:55 usu systemd[1]: Reached target Path Units.
mar 17 20:10:55 usu systemd[1]: Reached target System Time Set.
mar 17 20:10:55 usu systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
mar 17 20:10:55 usu systemd[1]: Started Daily rotation of log files.
mar 17 20:10:55 usu systemd[1]: Started Daily man-db regeneration.
mar 17 20:10:55 usu systemd[1]: Started Monthly clean packages cache.
mar 17 20:10:55 usu systemd[1]: Started Generate mirrorlist weekly.
mar 17 20:10:55 usu systemd[1]: Started pkgfile database update timer.
mar 17 20:10:55 usu systemd[1]: Started Daily verification of password and group files.
mar 17 20:10:55 usu systemd[1]: Reached target Timer Units.
mar 17 20:10:55 usu systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
mar 17 20:10:55 usu systemd[1]: Listening on CUPS Scheduler.
mar 17 20:10:55 usu systemd[1]: Listening on D-Bus System Message Bus Socket.
mar 17 20:10:55 usu systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
mar 17 20:10:55 usu systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
mar 17 20:10:55 usu systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
mar 17 20:10:55 usu systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
mar 17 20:10:55 usu systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
mar 17 20:10:55 usu systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
mar 17 20:10:55 usu systemd[1]: Starting Socket activation for snappy daemon...
mar 17 20:10:55 usu systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
mar 17 20:10:55 usu systemd[1]: Listening on Hostname Service Socket.
mar 17 20:10:55 usu systemd[1]: Starting D-Bus System Message Bus...
mar 17 20:10:55 usu systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: Listening on Socket activation for snappy daemon.
mar 17 20:10:55 usu systemd[1]: Reached target Socket Units.
mar 17 20:10:55 usu dbus-broker-launch[1293]: Looking up NSS user entry for 'pulse'...
mar 17 20:10:55 usu dbus-broker-launch[1293]: NSS returned no entry for 'pulse'
mar 17 20:10:55 usu dbus-broker-launch[1293]: Invalid user-name in /usr/share/dbus-1/system.d/pulseaudio-system.conf +27: user="pulse"
mar 17 20:10:55 usu systemd[1]: Started D-Bus System Message Bus.
mar 17 20:10:55 usu systemd[1]: Reached target Basic System.
mar 17 20:10:55 usu systemd[1]: Starting Network Manager...
mar 17 20:10:55 usu systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
mar 17 20:10:55 usu systemd[1]: Starting Bluetooth service...
mar 17 20:10:55 usu systemd[1]: Starting Authorization Manager...
mar 17 20:10:55 usu systemd[1]: Starting Snap Daemon...
mar 17 20:10:55 usu (uetoothd)[1297]: bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
mar 17 20:10:55 usu systemd[1]: Starting User Login Management...
mar 17 20:10:55 usu systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
mar 17 20:10:55 usu systemd[1]: Started Verify integrity of password and group files.
mar 17 20:10:55 usu avahi-daemon[1296]: Found user 'avahi' (UID 971) and group 'avahi' (GID 971).
mar 17 20:10:55 usu avahi-daemon[1296]: Successfully dropped root privileges.
mar 17 20:10:55 usu avahi-daemon[1296]: avahi-daemon 0.8 starting up.
mar 17 20:10:55 usu dbus-broker-launch[1293]: Ready
mar 17 20:10:55 usu systemd[1]: Started Avahi mDNS/DNS-SD Stack.
mar 17 20:10:55 usu avahi-daemon[1296]: Successfully called chroot().
mar 17 20:10:55 usu avahi-daemon[1296]: Successfully dropped remaining capabilities.
mar 17 20:10:55 usu avahi-daemon[1296]: No service file found in /etc/avahi/services.
mar 17 20:10:55 usu avahi-daemon[1296]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
mar 17 20:10:55 usu avahi-daemon[1296]: New relevant interface lo.IPv6 for mDNS.
mar 17 20:10:55 usu avahi-daemon[1296]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
mar 17 20:10:55 usu avahi-daemon[1296]: New relevant interface lo.IPv4 for mDNS.
mar 17 20:10:55 usu avahi-daemon[1296]: Network interface enumeration completed.
mar 17 20:10:55 usu avahi-daemon[1296]: Registering new address record for ::1 on lo.*.
mar 17 20:10:55 usu avahi-daemon[1296]: Registering new address record for 127.0.0.1 on lo.IPv4.
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9402] NetworkManager (version 1.50.0-1) is starting... (boot:dba0c785-26b9-4bdb-96ac-3f80bd4516bd)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9402] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
mar 17 20:10:55 usu bluetoothd[1297]: Bluetooth daemon 5.79
mar 17 20:10:55 usu systemd[1]: Started Bluetooth service.
mar 17 20:10:55 usu systemd[1]: Reached target Bluetooth Support.
mar 17 20:10:55 usu bluetoothd[1297]: Starting SDP server
mar 17 20:10:55 usu systemd[1]: Starting Hostname Service...
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9430] manager[0x559f794a5930]: monitoring kernel firmware directory '/lib/firmware'.
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support bap plugin
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support bass plugin
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support mcp plugin
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support vcp plugin
mar 17 20:10:55 usu bluetoothd[1297]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support micp plugin
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support ccp plugin
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support csip plugin
mar 17 20:10:55 usu bluetoothd[1297]: src/plugin.c:init_plugin() System does not support asha plugin
mar 17 20:10:55 usu bluetoothd[1297]: Bluetooth management interface 1.21 initialized
mar 17 20:10:55 usu bluetoothd[1297]: Battery Provider Manager created
mar 17 20:10:55 usu kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
mar 17 20:10:55 usu kernel: Bluetooth: BNEP filters: protocol multicast
mar 17 20:10:55 usu kernel: Bluetooth: BNEP socket layer initialized
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event2 (Power Button)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event1 (Power Button)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event0 (Sleep Button)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event3 (WFDZ Gaming Keyboard)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event5 (WFDZ Gaming Keyboard Consumer Control)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event6 (WFDZ Gaming Keyboard System Control)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event10 (Compx 2.4G Receiver)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event13 (Compx 2.4G Receiver Consumer Control)
mar 17 20:10:55 usu systemd-logind[1301]: Watching system buttons on /dev/input/event14 (Compx 2.4G Receiver System Control)
mar 17 20:10:55 usu systemd[1]: shadow.service: Deactivated successfully.
mar 17 20:10:55 usu systemd-logind[1301]: New seat seat0.
mar 17 20:10:55 usu systemd[1]: Started User Login Management.
mar 17 20:10:55 usu kernel: NET: Registered PF_ALG protocol family
mar 17 20:10:55 usu polkitd[1298]: Started polkitd version 125
mar 17 20:10:55 usu systemd[1]: Started Authorization Manager.
mar 17 20:10:55 usu systemd[1]: Starting Modem Manager...
mar 17 20:10:55 usu systemd[1]: Started Hostname Service.
mar 17 20:10:55 usu ModemManager[1359]: <msg> ModemManager (version 1.22.0-1) starting in system bus...
mar 17 20:10:55 usu systemd[1]: Started Modem Manager.
mar 17 20:10:55 usu snapd[1299]: overlord.go:274: Acquiring state lock file
mar 17 20:10:55 usu snapd[1299]: overlord.go:279: Acquired state lock file
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9781] hostname: hostname: using hostnamed
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9782] hostname: static hostname changed from (none) to "usu"
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9784] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9789] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.0/0000:05:00.0/ieee80211/phy0/rfkill0) (driver iwlwifi)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9790] manager[0x559f794a5930]: rfkill: Wi-Fi hardware radio set enabled
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9790] manager[0x559f794a5930]: rfkill: WWAN hardware radio set disabled
mar 17 20:10:55 usu kernel: NET: Registered PF_QIPCRTR protocol family
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9835] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-ovs.so)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9851] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-bluetooth.so)
mar 17 20:10:55 usu snapd[1299]: daemon.go:250: started snapd/2.66.1-1 (series 16; classic; devmode) manjaro/rolling (amd64) linux/5.15.173-1-MANJARO.
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9928] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-team.so)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9933] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-adsl.so)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9935] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-wwan.so)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9940] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.50.0-1/libnm-device-plugin-wifi.so)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9941] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9941] manager: rfkill: WWAN enabled by radio killswitch; disabled by state file
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9941] manager: Networking is enabled by state file
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9944] settings: Loaded settings plugin: keyfile (internal)
mar 17 20:10:55 usu kernel: loop8: detected capacity change from 0 to 8
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9965] dhcp: init: Using DHCP client 'internal'
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9966] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
mar 17 20:10:55 usu systemd[1]: tmp-syscheck\x2dmountpoint\x2d3377902191.mount: Deactivated successfully.
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9970] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9973] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9975] device (lo): Activation: starting connection 'lo' (48092d2d-2148-46a6-9cc4-50a4070f7699)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9978] manager: (enp7s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9982] settings: (enp7s0): created default wired connection 'Wired connection 1'
mar 17 20:10:55 usu NetworkManager[1295]: <info>  [1742238655.9982] device (enp7s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 17 20:10:55 usu systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 17 20:10:56 usu systemd[1]: Started Network Manager Script Dispatcher Service.
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.0290] device (wlp5s0): driver supports Access Point (AP) mode
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.0292] manager: (wlp5s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.0293] device (wlp5s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 17 20:10:56 usu snapd[1299]: daemon.go:353: adjusting startup timeout by 55s (pessimistic estimate of 30s plus 5s per snap)
mar 17 20:10:56 usu snapd[1299]: backends.go:58: AppArmor status: apparmor is enabled but some kernel features are missing: dbus, network
mar 17 20:10:56 usu kernel: kauditd_printk_skb: 173 callbacks suppressed
mar 17 20:10:56 usu kernel: audit: type=1400 audit(1742238656.073:184): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1411 comm="apparmor_parser"
mar 17 20:10:56 usu kernel: audit: type=1400 audit(1742238656.116:185): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1411 comm="apparmor_parser"
mar 17 20:10:56 usu systemd[1]: Started Snap Daemon.
mar 17 20:10:56 usu systemd[1]: Starting Time & Date Service...
mar 17 20:10:56 usu systemd[1]: Started Time & Date Service.
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.2999] device (wlp5s0): set-hw-addr: set MAC address to 6A:C1:9D:60:25:FF (scanning)
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5638] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5660] ovsdb: disconnected from ovsdb
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5662] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5667] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5671] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
mar 17 20:10:56 usu systemd[1]: Started Network Manager.
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5683] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
mar 17 20:10:56 usu systemd[1]: Starting Network Manager Wait Online...
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5707] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5710] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.5718] device (lo): Activation: successful, device activated.
mar 17 20:10:56 usu systemd[1]: Starting WPA supplicant...
mar 17 20:10:56 usu systemd[1]: Started WPA supplicant.
mar 17 20:10:56 usu wpa_supplicant[1425]: Successfully initialized wpa_supplicant
mar 17 20:10:56 usu systemd[1]: Reached target Network.
mar 17 20:10:56 usu systemd[1]: Starting CUPS Scheduler...
mar 17 20:10:56 usu systemd[1]: Starting Permit User Sessions...
mar 17 20:10:56 usu systemd[1]: Finished Permit User Sessions.
mar 17 20:10:56 usu systemd[1]: Started Command Scheduler.
mar 17 20:10:56 usu systemd[1]: Started Simple Desktop Display Manager.
mar 17 20:10:56 usu crond[1433]: (CRON) STARTUP (1.7.2)
mar 17 20:10:56 usu crond[1433]: (CRON) INFO (Syslog will be used instead of sendmail.)
mar 17 20:10:56 usu crond[1433]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 11% if used.)
mar 17 20:10:56 usu crond[1433]: (CRON) INFO (running with inotify support)
mar 17 20:10:56 usu systemd[1]: Started CUPS Scheduler.
mar 17 20:10:56 usu systemd[1]: Reached target Multi-User System.
mar 17 20:10:56 usu systemd[1]: Reached target Graphical Interface.
mar 17 20:10:56 usu sddm[1434]: Initializing...
mar 17 20:10:56 usu sddm[1434]: Starting...
mar 17 20:10:56 usu sddm[1434]: Logind interface found
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.6520] device (wlp5s0): supplicant interface state: internal-starting -> disconnected
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.6521] Wi-Fi P2P device controlled by interface wlp5s0 created
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.6525] manager: (p2p-dev-wlp5s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.6527] device (p2p-dev-wlp5s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.6533] device (wlp5s0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
mar 17 20:10:56 usu NetworkManager[1295]: <info>  [1742238656.6539] device (p2p-dev-wlp5s0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
mar 17 20:10:56 usu kernel: scsi 10:0:0:0: Direct-Access     VendorCo ProductCode      2.00 PQ: 0 ANSI: 4
mar 17 20:10:56 usu kernel: sd 10:0:0:0: Attached scsi generic sg2 type 0
mar 17 20:10:56 usu kernel: sd 10:0:0:0: [sdc] 61440000 512-byte logical blocks: (31.5 GB/29.3 GiB)
mar 17 20:10:56 usu kernel: sd 10:0:0:0: [sdc] Write Protect is off
mar 17 20:10:56 usu kernel: sd 10:0:0:0: [sdc] Mode Sense: 03 00 00 00
mar 17 20:10:56 usu kernel: sd 10:0:0:0: [sdc] No Caching mode page found
mar 17 20:10:56 usu kernel: sd 10:0:0:0: [sdc] Assuming drive cache: write through
mar 17 20:10:56 usu kernel:  sdc: sdc1
mar 17 20:10:56 usu kernel: sd 10:0:0:0: [sdc] Attached SCSI removable disk
mar 17 20:10:56 usu kernel: scsi 11:0:0:0: Direct-Access     USBLCD   USB PRC System        PQ: 0 ANSI: 0 CCS
mar 17 20:10:56 usu kernel: sd 11:0:0:0: Attached scsi generic sg3 type 0
mar 17 20:10:56 usu kernel: sd 11:0:0:0: [sdd] Media removed, stopped polling
mar 17 20:10:56 usu kernel: sd 11:0:0:0: [sdd] Attached SCSI removable disk
mar 17 20:10:56 usu avahi-daemon[1296]: Server startup complete. Host name is usu.local. Local service cookie is 793728952.
mar 17 20:10:59 usu wpa_supplicant[1425]: wlp5s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=IT
mar 17 20:10:59 usu wpa_supplicant[1425]: p2p-dev-wlp5s0: Channel list changed: 6 GHz was enabled
mar 17 20:10:59 usu wpa_supplicant[1425]: wlp5s0: Channel list changed: 6 GHz was enabled
mar 17 20:10:59 usu wpa_supplicant[1425]: wlp5s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=IT
mar 17 20:11:00 usu NetworkManager[1295]: <info>  [1742238660.0356] modem-manager: ModemManager available
mar 17 20:11:00 usu kernel: usbcore: registered new interface driver snd-usb-audio
mar 17 20:11:00 usu mtp-probe[1440]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4"
mar 17 20:11:00 usu mtp-probe[1440]: bus: 1, device: 4 was not an MTP device
mar 17 20:11:00 usu systemd[1]: Starting Save/Restore Sound Card State...
mar 17 20:11:00 usu systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
mar 17 20:11:00 usu systemd[1]: Finished Save/Restore Sound Card State.
mar 17 20:11:00 usu systemd[1]: Reached target Sound Card.
mar 17 20:11:00 usu systemd[1]: systemd-rfkill.service: Deactivated successfully.
mar 17 20:11:02 usu NetworkManager[1295]: <info>  [1742238662.0294] manager: startup complete
mar 17 20:11:02 usu systemd[1]: Finished Network Manager Wait Online.
mar 17 20:11:02 usu systemd[1]: Reached target Network is Online.
mar 17 20:11:02 usu systemd[1]: Starting pkgfile database update...
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://southfront.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: southfront.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://southfront.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: southfront.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://southfront.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: southfront.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://southfront.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: southfront.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.zetup.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.zetup.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.zetup.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.zetup.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.cicku.me/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.cicku.me
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.zetup.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.zetup.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.cicku.me/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.cicku.me
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ipng.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: ipng.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ipng.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ipng.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ct.mirror.garr.it/mirrors/manjaro/stable/core/x86_64/core.files: Could not resolve host: ct.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.zetup.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.zetup.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ct.mirror.garr.it/mirrors/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ct.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.cicku.me/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.cicku.me
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.aarnet.edu.au/pub/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.aarnet.edu.au
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.cicku.me/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.cicku.me
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.aarnet.edu.au/pub/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.aarnet.edu.au
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ipng.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ipng.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.archlinux.tw/Manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.archlinux.tw
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ipng.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: ipng.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.archlinux.tw/Manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.archlinux.tw
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ct.mirror.garr.it/mirrors/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ct.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.23m.com/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.23m.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ct.mirror.garr.it/mirrors/manjaro/stable/community/x86_64/community.files: Could not resolve host: ct.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.23m.com/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.23m.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.aarnet.edu.au/pub/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.aarnet.edu.au
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ba.mirror.garr.it/mirrors/manjaro/stable/core/x86_64/core.files: Could not resolve host: ba.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.aarnet.edu.au/pub/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.aarnet.edu.au
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ba.mirror.garr.it/mirrors/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ba.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.archlinux.tw/Manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.archlinux.tw
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://irltoolkit.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: irltoolkit.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.archlinux.tw/Manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.archlinux.tw
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://irltoolkit.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: irltoolkit.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.23m.com/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.23m.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://linorg.usp.br/manjaro/stable/core/x86_64/core.files: Could not resolve host: linorg.usp.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.23m.com/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.23m.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://linorg.usp.br/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: linorg.usp.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ba.mirror.garr.it/mirrors/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ba.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.dotsrc.org/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.dotsrc.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ba.mirror.garr.it/mirrors/manjaro/stable/community/x86_64/community.files: Could not resolve host: ba.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.dotsrc.org/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.dotsrc.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://irltoolkit.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: irltoolkit.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.jlu.edu.cn/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.jlu.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://irltoolkit.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: irltoolkit.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.jlu.edu.cn/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.jlu.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://linorg.usp.br/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: linorg.usp.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.up.pt/pub/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.up.pt
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://linorg.usp.br/manjaro/stable/community/x86_64/community.files: Could not resolve host: linorg.usp.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.up.pt/pub/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.up.pt
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.dotsrc.org/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.dotsrc.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.repo.cure.edu.uy/stable/core/x86_64/core.files: Could not resolve host: manjaro.repo.cure.edu.uy
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.dotsrc.org/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.dotsrc.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.repo.cure.edu.uy/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.repo.cure.edu.uy
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.jlu.edu.cn/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.jlu.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.raiolanetworks.com/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.raiolanetworks.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.jlu.edu.cn/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.jlu.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.raiolanetworks.com/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.raiolanetworks.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.up.pt/pub/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.up.pt
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.init7.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.init7.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.up.pt/pub/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.up.pt
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.init7.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.init7.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.repo.cure.edu.uy/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.repo.cure.edu.uy
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirrors.lavatech.top/stable/core/x86_64/core.files: Could not resolve host: manjaro.mirrors.lavatech.top
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.repo.cure.edu.uy/stable/community/x86_64/community.files: Could not resolve host: manjaro.repo.cure.edu.uy
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirrors.lavatech.top/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.mirrors.lavatech.top
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.raiolanetworks.com/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.raiolanetworks.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirrors.uk2.net/stable/core/x86_64/core.files: Could not resolve host: manjaro.mirrors.uk2.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.raiolanetworks.com/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.raiolanetworks.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirrors.uk2.net/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.mirrors.uk2.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.init7.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.init7.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.psnc.pl/linux/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.psnc.pl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.init7.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.init7.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.psnc.pl/linux/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.psnc.pl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirrors.lavatech.top/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.mirrors.lavatech.top
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ucr.ac.cr/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.ucr.ac.cr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirrors.lavatech.top/stable/community/x86_64/community.files: Could not resolve host: manjaro.mirrors.lavatech.top
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ucr.ac.cr/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.ucr.ac.cr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirrors.uk2.net/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.mirrors.uk2.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.tsukuba.wide.ad.jp/Linux/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.tsukuba.wide.ad.jp
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirrors.uk2.net/stable/community/x86_64/community.files: Could not resolve host: manjaro.mirrors.uk2.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.tsukuba.wide.ad.jp/Linux/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.tsukuba.wide.ad.jp
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.psnc.pl/linux/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.psnc.pl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.futureweb.be/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.futureweb.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.psnc.pl/linux/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.psnc.pl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.futureweb.be/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.futureweb.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ucr.ac.cr/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.ucr.ac.cr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.netcologne.de/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.netcologne.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ucr.ac.cr/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.ucr.ac.cr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.netcologne.de/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.netcologne.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.tsukuba.wide.ad.jp/Linux/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.tsukuba.wide.ad.jp
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mnvoip.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mnvoip.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.tsukuba.wide.ad.jp/Linux/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.tsukuba.wide.ad.jp
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mnvoip.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mnvoip.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.futureweb.be/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.futureweb.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.gwdg.de/pub/linux/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.gwdg.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.futureweb.be/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.futureweb.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.gwdg.de/pub/linux/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.gwdg.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.netcologne.de/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.netcologne.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.leitecastro.com/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.leitecastro.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.netcologne.de/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.netcologne.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.leitecastro.com/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.leitecastro.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mnvoip.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mnvoip.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ustc.edu.cn/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.ustc.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mnvoip.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mnvoip.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ustc.edu.cn/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.ustc.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.gwdg.de/pub/linux/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.gwdg.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://gsl-syd.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: gsl-syd.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.gwdg.de/pub/linux/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.gwdg.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://gsl-syd.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: gsl-syd.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.leitecastro.com/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.leitecastro.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ipacct.com/manjaro/stable/core/x86_64/core.files: Could not resolve host: manjaro.ipacct.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.leitecastro.com/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.leitecastro.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ipacct.com/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.ipacct.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ustc.edu.cn/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.ustc.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.phoepsilonix.love/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.phoepsilonix.love
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ustc.edu.cn/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.ustc.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.phoepsilonix.love/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.phoepsilonix.love
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://gsl-syd.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: gsl-syd.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://codingflyboy.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: codingflyboy.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://gsl-syd.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: gsl-syd.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://codingflyboy.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: codingflyboy.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ipacct.com/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.ipacct.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ask4.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: ask4.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ipacct.com/manjaro/stable/community/x86_64/community.files: Could not resolve host: manjaro.ipacct.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ask4.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ask4.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.phoepsilonix.love/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.phoepsilonix.love
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.uni-kl.de/pub/linux/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.uni-kl.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.phoepsilonix.love/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.phoepsilonix.love
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.uni-kl.de/pub/linux/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.uni-kl.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://codingflyboy.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: codingflyboy.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.halifax.rwth-aachen.de/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.halifax.rwth-aachen.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://codingflyboy.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: codingflyboy.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.halifax.rwth-aachen.de/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.halifax.rwth-aachen.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ask4.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ask4.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ynh.ovh/stable/core/x86_64/core.files: Could not resolve host: manjaro.ynh.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ask4.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: ask4.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ynh.ovh/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.ynh.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.uni-kl.de/pub/linux/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.uni-kl.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.gigenet.com/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.gigenet.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.uni-kl.de/pub/linux/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.uni-kl.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.gigenet.com/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.gigenet.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.halifax.rwth-aachen.de/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.halifax.rwth-aachen.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirror.ac.za/stable/core/x86_64/core.files: Could not resolve host: manjaro.mirror.ac.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.halifax.rwth-aachen.de/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.halifax.rwth-aachen.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirror.ac.za/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.mirror.ac.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ynh.ovh/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.ynh.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.caliu.cat/pub/distribucions/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.caliu.cat
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.ynh.ovh/stable/community/x86_64/community.files: Could not resolve host: manjaro.ynh.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.caliu.cat/pub/distribucions/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.caliu.cat
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.gigenet.com/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.gigenet.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.eric.ovh/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.eric.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.gigenet.com/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.gigenet.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.eric.ovh/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.eric.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirror.ac.za/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.mirror.ac.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://volico.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: volico.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.mirror.ac.za/stable/community/x86_64/community.files: Could not resolve host: manjaro.mirror.ac.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://volico.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: volico.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.caliu.cat/pub/distribucions/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.caliu.cat
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://www.mirrorservice.org/sites/repo.manjaro.org/repos/stable/core/x86_64/core.files: Could not resolve host: www.mirrorservice.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.caliu.cat/pub/distribucions/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.caliu.cat
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://www.mirrorservice.org/sites/repo.manjaro.org/repos/stable/extra/x86_64/extra.files: Could not resolve host: www.mirrorservice.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.eric.ovh/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.eric.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://bd.mirror.vanehost.com/Manjaro/stable/core/x86_64/core.files: Could not resolve host: bd.mirror.vanehost.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.eric.ovh/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.eric.ovh
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://bd.mirror.vanehost.com/Manjaro/stable/extra/x86_64/extra.files: Could not resolve host: bd.mirror.vanehost.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://volico.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: volico.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.c3sl.ufpr.br/stable/core/x86_64/core.files: Could not resolve host: manjaro.c3sl.ufpr.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://volico.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: volico.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.c3sl.ufpr.br/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.c3sl.ufpr.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://www.mirrorservice.org/sites/repo.manjaro.org/repos/stable/multilib/x86_64/multilib.files: Could not resolve host: www.mirrorservice.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nocix.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: nocix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://www.mirrorservice.org/sites/repo.manjaro.org/repos/stable/community/x86_64/community.files: Could not resolve host: www.mirrorservice.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nocix.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: nocix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://bd.mirror.vanehost.com/Manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: bd.mirror.vanehost.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.nic.cz/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.nic.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://bd.mirror.vanehost.com/Manjaro/stable/community/x86_64/community.files: Could not resolve host: bd.mirror.vanehost.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.nic.cz/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.nic.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.c3sl.ufpr.br/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.c3sl.ufpr.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.garr.it/manjaro/stable/core/x86_64/core.files: Could not resolve host: manjaro.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.c3sl.ufpr.br/stable/community/x86_64/community.files: Could not resolve host: manjaro.c3sl.ufpr.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.garr.it/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nocix.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: nocix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.csclub.uwaterloo.ca/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.csclub.uwaterloo.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nocix.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: nocix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.csclub.uwaterloo.ca/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.csclub.uwaterloo.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.nic.cz/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.nic.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.xenyth.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.xenyth.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.nic.cz/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.nic.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.xenyth.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.xenyth.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.garr.it/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.easyname.at/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.easyname.at
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.garr.it/manjaro/stable/community/x86_64/community.files: Could not resolve host: manjaro.mirror.garr.it
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.easyname.at/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.easyname.at
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.csclub.uwaterloo.ca/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.csclub.uwaterloo.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ohioix.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: ohioix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.csclub.uwaterloo.ca/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.csclub.uwaterloo.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ohioix.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ohioix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.xenyth.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.xenyth.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.truenetwork.ru/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.truenetwork.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.xenyth.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.xenyth.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.truenetwork.ru/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.truenetwork.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.easyname.at/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.easyname.at
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.sonic.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.sonic.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.easyname.at/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.easyname.at
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.sonic.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.sonic.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ohioix.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ohioix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors2.manjaro.org/stable/core/x86_64/core.files: Could not resolve host: mirrors2.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ohioix.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: ohioix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors2.manjaro.org/stable/extra/x86_64/extra.files: Could not resolve host: mirrors2.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.truenetwork.ru/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.truenetwork.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://cofractal-ewr.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: cofractal-ewr.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.truenetwork.ru/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.truenetwork.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://cofractal-ewr.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: cofractal-ewr.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.sonic.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.sonic.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.math.princeton.edu/pub/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.math.princeton.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.sonic.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.sonic.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.math.princeton.edu/pub/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.math.princeton.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors2.manjaro.org/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors2.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://kartolo.sby.datautama.net.id/manjaro/stable/core/x86_64/core.files: Could not resolve host: kartolo.sby.datautama.net.id
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors2.manjaro.org/stable/community/x86_64/community.files: Could not resolve host: mirrors2.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://kartolo.sby.datautama.net.id/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: kartolo.sby.datautama.net.id
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://cofractal-ewr.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: cofractal-ewr.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.freedif.org/Manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.freedif.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://cofractal-ewr.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: cofractal-ewr.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.freedif.org/Manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.freedif.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.math.princeton.edu/pub/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.math.princeton.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufro.cl/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.ufro.cl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.math.princeton.edu/pub/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.math.princeton.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufro.cl/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.ufro.cl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://kartolo.sby.datautama.net.id/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: kartolo.sby.datautama.net.id
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.grena.ge/stable/core/x86_64/core.files: Could not resolve host: manjaro.grena.ge
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://kartolo.sby.datautama.net.id/manjaro/stable/community/x86_64/community.files: Could not resolve host: kartolo.sby.datautama.net.id
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.grena.ge/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.grena.ge
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.freedif.org/Manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.freedif.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://edgeuno-bog2.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: edgeuno-bog2.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.freedif.org/Manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.freedif.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://edgeuno-bog2.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: edgeuno-bog2.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufro.cl/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.ufro.cl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.is.co.za/mirrors/manjaro.org/stable/core/x86_64/core.files: Could not resolve host: mirror.is.co.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufro.cl/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.ufro.cl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.is.co.za/mirrors/manjaro.org/stable/extra/x86_64/extra.files: Could not resolve host: mirror.is.co.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.grena.ge/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.grena.ge
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.tuna.tsinghua.edu.cn/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.tuna.tsinghua.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://manjaro.grena.ge/stable/community/x86_64/community.files: Could not resolve host: manjaro.grena.ge
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.tuna.tsinghua.edu.cn/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.tuna.tsinghua.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://edgeuno-bog2.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: edgeuno-bog2.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.liquidtelecom.com/stable/core/x86_64/core.files: Could not resolve host: manjaro.mirror.liquidtelecom.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://edgeuno-bog2.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: edgeuno-bog2.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.liquidtelecom.com/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.mirror.liquidtelecom.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.is.co.za/mirrors/manjaro.org/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.is.co.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://forksystems.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: forksystems.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.is.co.za/mirrors/manjaro.org/stable/community/x86_64/community.files: Could not resolve host: mirror.is.co.za
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://forksystems.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: forksystems.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.tuna.tsinghua.edu.cn/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.tuna.tsinghua.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjarolinux-mirror.cloud.mu/stable/core/x86_64/core.files: Could not resolve host: manjarolinux-mirror.cloud.mu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.tuna.tsinghua.edu.cn/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.tuna.tsinghua.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjarolinux-mirror.cloud.mu/stable/extra/x86_64/extra.files: Could not resolve host: manjarolinux-mirror.cloud.mu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.liquidtelecom.com/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.mirror.liquidtelecom.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alpix.eu/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.alpix.eu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.liquidtelecom.com/stable/community/x86_64/community.files: Could not resolve host: manjaro.mirror.liquidtelecom.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alpix.eu/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.alpix.eu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://forksystems.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: forksystems.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.kurdy.org/stable/core/x86_64/core.files: Could not resolve host: manjaro.kurdy.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://forksystems.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: forksystems.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.kurdy.org/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.kurdy.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjarolinux-mirror.cloud.mu/stable/multilib/x86_64/multilib.files: Could not resolve host: manjarolinux-mirror.cloud.mu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.lysator.liu.se/pub/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.lysator.liu.se
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjarolinux-mirror.cloud.mu/stable/community/x86_64/community.files: Could not resolve host: manjarolinux-mirror.cloud.mu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.lysator.liu.se/pub/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.lysator.liu.se
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alpix.eu/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.alpix.eu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.yandex.ru/mirrors/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.yandex.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alpix.eu/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.alpix.eu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.yandex.ru/mirrors/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.yandex.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.kurdy.org/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.kurdy.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ziply.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: ziply.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.kurdy.org/stable/community/x86_64/community.files: Could not resolve host: manjaro.kurdy.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ziply.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ziply.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.lysator.liu.se/pub/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.lysator.liu.se
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.lysator.liu.se/pub/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.lysator.liu.se
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.yandex.ru/mirrors/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.yandex.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.koddos.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.koddos.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.yandex.ru/mirrors/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.yandex.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.koddos.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.koddos.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ziply.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ziply.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.bouwhuis.network/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.bouwhuis.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ziply.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: ziply.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.bouwhuis.network/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.bouwhuis.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ocf.berkeley.edu/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirrors.ocf.berkeley.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ocf.berkeley.edu/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.ocf.berkeley.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.koddos.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.koddos.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.xeonbd.com/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.xeonbd.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.koddos.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.koddos.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.xeonbd.com/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.xeonbd.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.bouwhuis.network/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.bouwhuis.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/core/x86_64/core.files: Could not resolve host: ftp.rz.tu-bs.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.bouwhuis.network/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.bouwhuis.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/extra/x86_64/extra.files: Could not resolve host: ftp.rz.tu-bs.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ocf.berkeley.edu/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.ocf.berkeley.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://coresite.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: coresite.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.ocf.berkeley.edu/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirrors.ocf.berkeley.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://coresite.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: coresite.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.xeonbd.com/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.xeonbd.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.belnet.be/mirrors/manjaro/repos/stable/core/x86_64/core.files: Could not resolve host: ftp.belnet.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://mirror.xeonbd.com/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.xeonbd.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.belnet.be/mirrors/manjaro/repos/stable/extra/x86_64/extra.files: Could not resolve host: ftp.belnet.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.rz.tu-bs.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.dkm.cz/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.dkm.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/community/x86_64/community.files: Could not resolve host: ftp.rz.tu-bs.de
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.dkm.cz/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.dkm.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://coresite.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: coresite.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nnenix.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: nnenix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://coresite.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: coresite.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nnenix.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: nnenix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.belnet.be/mirrors/manjaro/repos/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.belnet.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.hostiko.network/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.hostiko.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.belnet.be/mirrors/manjaro/repos/stable/community/x86_64/community.files: Could not resolve host: ftp.belnet.be
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.hostiko.network/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.hostiko.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.dkm.cz/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.dkm.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.snt.utwente.nl/pub/linux/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.snt.utwente.nl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.dkm.cz/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.dkm.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.snt.utwente.nl/pub/linux/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.snt.utwente.nl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nnenix.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: nnenix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftpmirror1.infania.net/mirror/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftpmirror1.infania.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://nnenix.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: nnenix.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftpmirror1.infania.net/mirror/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftpmirror1.infania.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.hostiko.network/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.hostiko.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.wearetriple.com/stable/core/x86_64/core.files: Could not resolve host: manjaro.mirror.wearetriple.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.hostiko.network/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.hostiko.network
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.wearetriple.com/stable/extra/x86_64/extra.files: Could not resolve host: manjaro.mirror.wearetriple.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.snt.utwente.nl/pub/linux/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.snt.utwente.nl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.kamtv.ru/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.kamtv.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.snt.utwente.nl/pub/linux/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.snt.utwente.nl
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.kamtv.ru/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.kamtv.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftpmirror1.infania.net/mirror/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftpmirror1.infania.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://quantum-mirror.hu/mirrors/pub/manjaro/stable/core/x86_64/core.files: Could not resolve host: quantum-mirror.hu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftpmirror1.infania.net/mirror/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftpmirror1.infania.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://quantum-mirror.hu/mirrors/pub/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: quantum-mirror.hu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.wearetriple.com/stable/multilib/x86_64/multilib.files: Could not resolve host: manjaro.mirror.wearetriple.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://repo.ialab.dsu.edu/manjaro/stable/core/x86_64/core.files: Could not resolve host: repo.ialab.dsu.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://manjaro.mirror.wearetriple.com/stable/community/x86_64/community.files: Could not resolve host: manjaro.mirror.wearetriple.com
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://repo.ialab.dsu.edu/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: repo.ialab.dsu.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.kamtv.ru/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.kamtv.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.nju.edu.cn/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.nju.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.kamtv.ru/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.kamtv.ru
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.nju.edu.cn/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.nju.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://quantum-mirror.hu/mirrors/pub/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: quantum-mirror.hu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufam.edu.br/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.ufam.edu.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://quantum-mirror.hu/mirrors/pub/manjaro/stable/community/x86_64/community.files: Could not resolve host: quantum-mirror.hu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufam.edu.br/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.ufam.edu.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://repo.ialab.dsu.edu/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: repo.ialab.dsu.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://opencolo.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: opencolo.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://repo.ialab.dsu.edu/manjaro/stable/community/x86_64/community.files: Could not resolve host: repo.ialab.dsu.edu
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://opencolo.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: opencolo.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.nju.edu.cn/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.nju.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.free.org/mirrors/repo.manjaro.org/repos/stable/core/x86_64/core.files: Could not resolve host: ftp.free.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.nju.edu.cn/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.nju.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.free.org/mirrors/repo.manjaro.org/repos/stable/extra/x86_64/extra.files: Could not resolve host: ftp.free.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufam.edu.br/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.ufam.edu.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.it4i.cz/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.it4i.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.ufam.edu.br/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.ufam.edu.br
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.it4i.cz/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.it4i.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://opencolo.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: opencolo.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.manjaro.org/repo/stable/core/x86_64/core.files: Could not resolve host: mirrors.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://opencolo.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: opencolo.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.manjaro.org/repo/stable/extra/x86_64/extra.files: Could not resolve host: mirrors.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.free.org/mirrors/repo.manjaro.org/repos/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.free.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.linux.org.tr/manjaro/stable/core/x86_64/core.files: Could not resolve host: ftp.linux.org.tr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: http://ftp.free.org/mirrors/repo.manjaro.org/repos/stable/community/x86_64/community.files: Could not resolve host: ftp.free.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.linux.org.tr/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ftp.linux.org.tr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.it4i.cz/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.it4i.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alwyzon.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.alwyzon.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.it4i.cz/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.it4i.cz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alwyzon.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.alwyzon.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.manjaro.org/repo/stable/multilib/x86_64/multilib.files: Could not resolve host: mirrors.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ridgewireless.mm.fcix.net/manjaro/stable/core/x86_64/core.files: Could not resolve host: ridgewireless.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirrors.manjaro.org/repo/stable/community/x86_64/community.files: Could not resolve host: mirrors.manjaro.org
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ridgewireless.mm.fcix.net/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: ridgewireless.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.linux.org.tr/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ftp.linux.org.tr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://muug.ca/mirror/manjaro/stable/core/x86_64/core.files: Could not resolve host: muug.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ftp.linux.org.tr/manjaro/stable/community/x86_64/community.files: Could not resolve host: ftp.linux.org.tr
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://muug.ca/mirror/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: muug.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alwyzon.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.alwyzon.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.2degrees.nz/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.2degrees.nz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.alwyzon.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.alwyzon.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.2degrees.nz/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.2degrees.nz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ridgewireless.mm.fcix.net/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: ridgewireless.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.telepoint.bg/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.telepoint.bg
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://ridgewireless.mm.fcix.net/manjaro/stable/community/x86_64/community.files: Could not resolve host: ridgewireless.mm.fcix.net
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.telepoint.bg/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.telepoint.bg
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://muug.ca/mirror/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: muug.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.nyist.edu.cn/manjaro/stable/core/x86_64/core.files: Could not resolve host: mirror.nyist.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: error: failed to update repo: core
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://muug.ca/mirror/manjaro/stable/community/x86_64/community.files: Could not resolve host: muug.ca
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.nyist.edu.cn/manjaro/stable/extra/x86_64/extra.files: Could not resolve host: mirror.nyist.edu.cn
mar 17 20:11:02 usu pkgfile[1446]: error: failed to update repo: extra
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.2degrees.nz/manjaro/stable/multilib/x86_64/multilib.files: Could not resolve host: mirror.2degrees.nz
mar 17 20:11:02 usu pkgfile[1446]: warning: download failed: https://mirror.2degrees.nz/manjaro/stable/community/x86_64/community.files: Could not resolve host: mirror.2degrees.nz
mar 17 20:11:02 usu systemd[1]: pkgfile-update.service: Main process exited, code=exited, status=1/FAILURE
mar 17 20:11:02 usu systemd[1]: pkgfile-update.service: Failed with result 'exit-code'.
mar 17 20:11:02 usu systemd[1]: Failed to start pkgfile database update.
mar 17 20:11:02 usu systemd[1]: Startup finished in 30.890s (firmware) + 1.680s (loader) + 2.042s (kernel) + 10.072s (userspace) = 44.687s.
mar 17 20:11:06 usu systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 17 20:11:26 usu systemd[1]: systemd-hostnamed.service: Deactivated successfully.
mar 17 20:11:26 usu systemd[1]: systemd-timedated.service: Deactivated successfully.
mar 17 20:11:28 usu snapd[1299]: stateengine.go:161: state ensure error: persistent network error: Get "https://api.snapcraft.io/api/v1/snaps/sections": dial tcp: lookup api.snapcraft.io: Temporary failure in name resolution
mar 17 20:11:28 usu systemd[1]: Starting Time & Date Service...
mar 17 20:11:28 usu systemd[1]: Started Time & Date Service.
mar 17 20:11:52 usu kernel: snd_hda_intel 0000:00:1f.3: couldn't bind with audio component
mar 17 20:11:53 usu kernel: snd_hda_intel 0000:00:1f.3: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000
mar 17 20:11:54 usu kernel: snd_hda_intel 0000:00:1f.3: No response from codec, disabling MSI: last cmd=0x000f0000
mar 17 20:11:55 usu kernel: snd_hda_intel 0000:00:1f.3: Codec #0 probe error; disabling it...
mar 17 20:11:56 usu kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
mar 17 20:11:56 usu snapd[1299]: udevmon.go:149: udev event error: Unable to parse uevent, err: cannot parse libudev event: invalid env data
mar 17 20:11:58 usu systemd[1]: systemd-timedated.service: Deactivated successfully.
mar 17 20:12:31 usu systemd[1]: Started Getty on tty2.
mar 17 20:12:36 usu dbus-broker-launch[1293]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
mar 17 20:12:39 usu login[1878]: pam_unix(login:session): session opened for user usu(uid=1000) by usu(uid=0)
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1767] policy: auto-activating connection 'Tenda_lav' (d1977352-80fc-4cf1-abe5-7c8e8e2f9a80)
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1779] device (wlp5s0): Activation: starting connection 'Tenda_lav' (d1977352-80fc-4cf1-abe5-7c8e8e2f9a80)
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1781] device (wlp5s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1787] manager: NetworkManager state is now CONNECTING
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1823] device (wlp5s0): set-hw-addr: reset MAC address to 44:E5:17:06:DD:5D (preserve)
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1845] device (wlp5s0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1849] device (wlp5s0): Activation: (wifi) access point 'Tenda_lav' has security, but secrets are required.
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1850] device (wlp5s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
mar 17 20:12:39 usu NetworkManager[1295]: <warn>  [1742238759.1854] device (wlp5s0): no secrets: No agents were available for this request.
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1854] device (wlp5s0): state change: need-auth -> failed (reason 'no-secrets', managed-type: 'full')
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1858] manager: NetworkManager state is now DISCONNECTED
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1886] device (wlp5s0): set-hw-addr: set MAC address to 16:77:EF:9B:9C:8A (scanning)
mar 17 20:12:39 usu NetworkManager[1295]: <warn>  [1742238759.1905] device (wlp5s0): Activation: failed for connection 'Tenda_lav'
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.1913] device (wlp5s0): state change: failed -> disconnected (reason 'none', managed-type: 'full')
mar 17 20:12:39 usu systemd-logind[1301]: New session 1 of user usu.
mar 17 20:12:39 usu systemd[1]: Created slice User Slice of UID 1000.
mar 17 20:12:39 usu systemd[1]: Starting User Runtime Directory /run/user/1000...
mar 17 20:12:39 usu systemd[1]: Finished User Runtime Directory /run/user/1000.
mar 17 20:12:39 usu systemd[1]: Starting User Manager for UID 1000...
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.2761] device (wlp5s0): supplicant interface state: disconnected -> inactive
mar 17 20:12:39 usu NetworkManager[1295]: <info>  [1742238759.2762] device (p2p-dev-wlp5s0): supplicant management interface state: disconnected -> inactive
mar 17 20:12:39 usu (systemd)[1886]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[usu] ruser=[<unknown>] rhost=[<unknown>]
mar 17 20:12:39 usu (systemd)[1886]: pam_unix(systemd-user:session): session opened for user usu(uid=1000) by usu(uid=0)
mar 17 20:12:39 usu systemd-logind[1301]: New session 2 of user usu.
mar 17 20:12:39 usu 30-systemd-environment-d-generator[1890]: /usr/lib/environment.d/99-environment.conf:7: invalid variable name "export CHROMIUM_FLAGS", ignoring.
mar 17 20:12:39 usu systemd-xdg-autostart-generator[1893]: Exec binary 'cairo-dock' does not exist: No such file or directory
mar 17 20:12:39 usu systemd-xdg-autostart-generator[1893]: /home/usu/.config/autostart/cairo-dock.desktop: not generating unit, executable specified in Exec= does not exist.
mar 17 20:12:39 usu systemd[1886]: Queued start job for default target Main User Target.
mar 17 20:12:39 usu systemd[1886]: Created slice User Application Slice.
mar 17 20:12:39 usu systemd[1886]: Reached target Paths.
mar 17 20:12:39 usu systemd[1886]: Reached target Timers.
mar 17 20:12:39 usu systemd[1886]: Starting D-Bus User Message Bus Socket...
mar 17 20:12:39 usu systemd[1886]: Listening on GnuPG network certificate management daemon.
mar 17 20:12:39 usu systemd[1886]: Starting GCR ssh-agent wrapper...
mar 17 20:12:39 usu systemd[1886]: Listening on GNOME Keyring daemon.
mar 17 20:12:39 usu systemd[1886]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 17 20:12:39 usu systemd[1886]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
mar 17 20:12:39 usu systemd[1886]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
mar 17 20:12:39 usu systemd[1886]: Listening on GnuPG cryptographic agent and passphrase cache.
mar 17 20:12:39 usu systemd[1886]: Listening on GnuPG public key management service.
mar 17 20:12:39 usu systemd[1886]: Listening on p11-kit server.
mar 17 20:12:39 usu systemd[1886]: Listening on PipeWire Multimedia System Sockets.
mar 17 20:12:39 usu systemd[1886]: Listening on Sound System.
mar 17 20:12:39 usu systemd[1886]: Listening on D-Bus User Message Bus Socket.
mar 17 20:12:39 usu systemd[1886]: Listening on GCR ssh-agent wrapper.
mar 17 20:12:39 usu systemd[1886]: Reached target Sockets.
mar 17 20:12:39 usu systemd[1886]: Reached target Basic System.
mar 17 20:12:39 usu systemd[1]: Started User Manager for UID 1000.
mar 17 20:12:39 usu systemd[1886]: Started AppImageLauncher daemon.
mar 17 20:12:39 usu systemd[1]: Started Session 1 of User usu.
mar 17 20:12:39 usu systemd[1886]: Starting Update XDG user dir configuration...
mar 17 20:12:39 usu login[1878]: LOGIN ON tty2 BY usu
mar 17 20:12:39 usu systemd[1886]: Finished Update XDG user dir configuration.
mar 17 20:12:39 usu systemd[1886]: Reached target Main User Target.
mar 17 20:12:39 usu systemd[1886]: Startup finished in 177ms.
mar 17 20:12:39 usu appimagelauncherd[1899]: Searching for existing AppImages
mar 17 20:12:39 usu appimagelauncherd[1899]: Searching directory: /home/usu
mar 17 20:12:39 usu appimagelauncherd[1899]: Searching directory: /home/usu/Applications
mar 17 20:12:39 usu appimagelauncherd[1899]: Found AppImage: /home/usu/Applications/electrum-4.5.8-x86_64_7eee3fee6d0dd944747aea530ac99bd9.AppImage
mar 17 20:12:39 usu appimagelauncherd[1899]: AppImage integrated already, skipping
mar 17 20:12:39 usu appimagelauncherd[1899]: Watching directories: /home/usu /home/usu/Applications
mar 17 20:12:57 usu sudo[1920]:      usu : TTY=tty2 ; PWD=/home/usu ; USER=root ; COMMAND=/usr/bin/pacman -Syu
mar 17 20:12:57 usu sudo[1920]: pam_unix(sudo:session): session opened for user root(uid=0) by usu(uid=1000)
mar 17 20:12:58 usu sudo[1920]: pam_unix(sudo:session): session closed for user root
mar 17 20:13:10 usu appimagelauncherd[1899]: Directories to watch disappeared, unintegrating AppImages formerly found in there
mar 17 20:14:05 usu sudo[2039]:      usu : TTY=tty2 ; PWD=/home/usu ; USER=root ; COMMAND=/usr/bin/mount /dev/sda1 /mnt/mydrive
mar 17 20:14:05 usu sudo[2039]: pam_unix(sudo:session): session opened for user root(uid=0) by usu(uid=1000)
mar 17 20:14:06 usu ntfs-3g[2044]: Version 2022.10.3 external FUSE 29
mar 17 20:14:06 usu ntfs-3g[2044]: Mounted /dev/sda1 (Read-Write, label "14T", NTFS 3.1)
mar 17 20:14:06 usu ntfs-3g[2044]: Cmdline options: rw
mar 17 20:14:06 usu ntfs-3g[2044]: Mount options: allow_other,nonempty,relatime,rw,fsname=/dev/sda1,blkdev,blksize=4096
mar 17 20:14:06 usu ntfs-3g[2044]: Ownership and permissions disabled, configuration type 7
mar 17 20:14:06 usu sudo[2039]: pam_unix(sudo:session): session closed for user root
mar 17 20:14:33 usu sudo[2047]:      usu : TTY=tty2 ; PWD=/home/usu ; USER=root ; COMMAND=/usr/bin/journalctl
mar 17 20:14:33 usu sudo[2047]: pam_unix(sudo:session): session opened for user root(uid=0) by usu(uid=1000)

pkgfile is not terribly useful for a Manjaro stable environment - but can still be a reference

A lot of mirrors are queried and all of them are failing - is what I see.

I’d uninstall that - for the time being, at least.

And refesh the list of mirrors.
sudo pacman-mirrors -f (for instance)

It is a KDE/Plasma system, yes?

Is the display manager starting?
Are you in a KDE session - or just TTY?
Did you disable the display manager?

Can you try starting it from the TTY you are logged in to?

(this won’t work from chroot - only when you use the “real” system)
systemctl status sddm

if it is disabled/not running:

systemctl start sddm

You mean pkgfile ?

Not sure, sorry…

Nope, I have been operating this whole time only in what I believe is TTY (terminal Ctrl+Alt+F2 at boot). I do not think display manager has ever started yet.

I’ll try now. On a Ubuntu forum I read to start DM (from TTY) I have to press Ctrl+Alt+F7 or run the command startx, is it the same with Arch?

What do you mean by “real”?