You are not logged in.

#1 2020-05-22 16:32:56

stefan
Member
Registered: 2013-03-22
Posts: 104

[Solved] Ethernet only during install, not on fresh system. RTL810xE

Hi,

I consistently have a working Ethernet connection when booting from a USB pendrive with the `archlinux-2019.07.01-x86_64.iso` image on it, but there is consistently no ethernet when booting the installed system afterwards.  Even the PCI device is missing.

This is on a quite old Toshiba Satellite C660-10E.

I have logged the outputs of `journalctl -b`, `lsmod`, and `lspci` for my various attempts to fix that, but they are 500kB uncompressed and 40k compressed.  I have not found an option to attach a compressed file.  Shall I post them as plain text in the forum?

It looks like the device is not even found on the installed system, but was present previously.  The first file is `lspci` output from the installation system booted of the `archiso` image, the second file was created on the newly installed system:

$ comm -3 <(sort archiso/lspci.log) <(sort normalboot/lspci.log)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller (rev 05)

The difference in kernel modules loaded is as follows:

$ comm -3 <(cut -d\  -f1 archiso/lsmod.log | sort) <(cut -d\  -f1 normalboot/lsmod.log | sort)
ahci
        blake2b_generic
        cec
isofs
libahci
libata
libphy
loop
overlay
pkcs8_key_parser
r8169
        rc_core
realtek
scsi_mod
sd_mod
        snd_intel_dspcfg
squashfs
wl

So the modules `r8169` and `realtek` are loaded when booting from the ArchLinux install ISO, but not on the installed system.  I have no idea whether the other differencs are relevant.  I've tried to enforce loading `r8169` by

echo r8169 >/etc/modules-load.d/realtek.conf

and got a system booting with `r8169` and `realtek` loaded, but still
no ethernet device.  Comparing `lsmod` as before:

$ comm -3 <(cut -d\  -f1 archiso/lsmod.log | sort) <(cut -d\  -f1 force_r8169/lsmod.log | sort)
ahci
        blake2b_generic
        cec
isofs
libahci
libata
loop
overlay
pkcs8_key_parser
        rc_core
scsi_mod
sd_mod
        snd_intel_dspcfg
squashfs
wl

And the same for `lspci` output:

$ comm -3 <(sort archiso/lspci.log) <(sort force_r8169/lspci.log)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller (rev 05)

Again, the device is not there.

Searching for `r8169` in the jpournal after booting `archiso`, the “normal” installed system, and the system with enforced loading of `r8169`, I've found:

$ grep r8169 archiso/journal.log 
May 22 14:40:30 archiso kernel: r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
May 22 14:40:30 archiso kernel: libphy: r8169: probed
May 22 14:40:30 archiso kernel: r8169 0000:01:00.0 eth0: RTL8105e, 88:ae:1d:ed:88:e9, XID 409, IRQ 26
May 22 14:40:31 archiso kernel: r8169 0000:01:00.0 enp1s0: renamed from eth0
May 22 14:40:35 archiso kernel: Generic PHY r8169-100:00: attached PHY driver [Generic PHY] (mii_bus:phy_addr=r8169-100:00, irq=IGNORE)
May 22 14:40:36 archiso kernel: r8169 0000:01:00.0 enp1s0: Link is Down
May 22 14:40:37 archiso kernel: r8169 0000:01:00.0 enp1s0: Link is Up - 100Mbps/Full - flow control rx/tx

$ grep r8169 normalboot/journal.log # yes, no output

$ grep r8169 force_r8169/journal.log 
May 22 15:38:19 toshiba systemd-modules-load[293]: Inserted module 'r8169'

So just loading `r8169` did not do the trick.

I have also tried to load module `r8168` instead of `r8169`, and blacklisted the latter (as was suggested somewhere on the internet, but I cannot find it again), but anyways, the `r8168` module is not available:

$ grep r8168 try_r8168/journal.log
May 22 15:07:47 toshiba systemd-modules-load[291]: Failed to find module 'r8168'

$ comm -3 <(sort archiso/lspci.log) <(sort try_r8168/lspci.log)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller (rev 05)

Any help would be apreciated.  Thank you very much!

Stefan

Last edited by stefan (2020-05-28 19:59:57)

Offline

#2 2020-05-23 13:00:21

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,679
Website

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Have you installed the linux-firmware package?

Offline

#3 2020-05-23 15:29:24

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Yes, `linux-firmware-20200421.78c0348-1` is installed.

Offline

#4 2020-05-24 10:16:45

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,679
Website

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Does the most recent Arch ISO image also offer a working connection? Perhaps there has been a kernel regression affecting your ethernet device since July last year.

EDIT: you should probably post the full output of 'journalctl -b' here, I'm not downloading that log (but somebody else might if you prefer to wait).

Last edited by Head_on_a_Stick (2020-05-24 10:18:01)

Offline

#5 2020-05-24 14:40:18

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Interesting.  I've just tried this with booting from a pendrive with `archlinux-2020.05.01-x86_64.iso`, and here the ethernet device is *not* present.

So you're right, something whith "being newer" triggers this problem.  But I can't tell if it's a “kernel regression”, or the configuration of the system used when booting the archiso image has changed.  Anything I could look at?

I'll post the output of `journalctl -b` of the system booted from `archlinux-2020.05.01-x86_64.iso` below.  Out of curiosity: What stops you from downloading?  Don't work?  Security considerations?

-- Logs begin at Sun 2020-05-24 14:22:18 UTC, end at Sun 2020-05-24 14:26:08 UTC. --
May 24 14:22:18 archiso kernel: microcode: microcode updated early to revision 0x7, date = 2018-04-23
May 24 14:22:18 archiso kernel: Linux version 5.6.8-arch1-1 (linux@archlinux) (gcc version 9.3.0 (Arch Linux 9.3.0-1)) #1 SMP PREEMPT Wed, 29 Apr 2020 16:22:56 +0000
May 24 14:22:18 archiso kernel: Command line: BOOT_IMAGE=boot/x86_64/vmlinuz archisobasedir=arch archisolabel=ARCH_202005 initrd=boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/archiso.img
May 24 14:22:18 archiso kernel: KERNEL supported cpus:
May 24 14:22:18 archiso kernel:   Intel GenuineIntel
May 24 14:22:18 archiso kernel:   AMD AuthenticAMD
May 24 14:22:18 archiso kernel:   Hygon HygonGenuine
May 24 14:22:18 archiso kernel:   Centaur CentaurHauls
May 24 14:22:18 archiso kernel:   zhaoxin   Shanghai  
May 24 14:22:18 archiso kernel: Disabled fast string operations
May 24 14:22:18 archiso kernel: x86/fpu: x87 FPU will use FXSAVE
May 24 14:22:18 archiso kernel: BIOS-provided physical RAM map:
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bb30efff] usable
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb30f000-0x00000000bb66dfff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb66e000-0x00000000bb67bfff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb67c000-0x00000000bb67efff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb67f000-0x00000000bb681fff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb682000-0x00000000bb6acfff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb6ad000-0x00000000bb6ccfff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb6cd000-0x00000000bb70efff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb70f000-0x00000000bb70ffff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb710000-0x00000000bb714fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb715000-0x00000000bb718fff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb719000-0x00000000bb719fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb71a000-0x00000000bb71afff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb71b000-0x00000000bb71efff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb71f000-0x00000000bb79efff] ACPI NVS
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb79f000-0x00000000bb7fefff] ACPI data
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb7ff000-0x00000000bb7fffff] usable
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bb800000-0x00000000bbffffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000bde00000-0x00000000bfffffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000fed16000-0x00000000fed16fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000fed19000-0x00000000fed19fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
May 24 14:22:18 archiso kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable
May 24 14:22:18 archiso kernel: NX (Execute Disable) protection: active
May 24 14:22:18 archiso kernel: SMBIOS 2.6 present.
May 24 14:22:18 archiso kernel: DMI: TOSHIBA Satellite C660/PWWAA, BIOS 2.00 05/09/12
May 24 14:22:18 archiso kernel: tsc: Fast TSC calibration using PIT
May 24 14:22:18 archiso kernel: tsc: Detected 1995.409 MHz processor
May 24 14:22:18 archiso kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 24 14:22:18 archiso kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 24 14:22:18 archiso kernel: last_pfn = 0x138000 max_arch_pfn = 0x400000000
May 24 14:22:18 archiso kernel: MTRR default type: uncachable
May 24 14:22:18 archiso kernel: MTRR fixed ranges enabled:
May 24 14:22:18 archiso kernel:   00000-9FFFF write-back
May 24 14:22:18 archiso kernel:   A0000-BFFFF uncachable
May 24 14:22:18 archiso kernel:   C0000-FFFFF write-protect
May 24 14:22:18 archiso kernel: MTRR variable ranges enabled:
May 24 14:22:18 archiso kernel:   0 base 0FFE00000 mask FFFE00000 write-protect
May 24 14:22:18 archiso kernel:   1 base 000000000 mask F80000000 write-back
May 24 14:22:18 archiso kernel:   2 base 080000000 mask FC0000000 write-back
May 24 14:22:18 archiso kernel:   3 base 0BC000000 mask FFC000000 uncachable
May 24 14:22:18 archiso kernel:   4 base 0BB800000 mask FFF800000 uncachable
May 24 14:22:18 archiso kernel:   5 base 100000000 mask FC0000000 write-back
May 24 14:22:18 archiso kernel:   6 disabled
May 24 14:22:18 archiso kernel:   7 disabled
May 24 14:22:18 archiso kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 24 14:22:18 archiso kernel: last_pfn = 0xbb800 max_arch_pfn = 0x400000000
May 24 14:22:18 archiso kernel: check: Scanning 1 areas for low memory corruption
May 24 14:22:18 archiso kernel: BRK [0x12c601000, 0x12c601fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c602000, 0x12c602fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c603000, 0x12c603fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c604000, 0x12c604fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c605000, 0x12c605fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c606000, 0x12c606fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c607000, 0x12c607fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c608000, 0x12c608fff] PGTABLE
May 24 14:22:18 archiso kernel: BRK [0x12c609000, 0x12c609fff] PGTABLE
May 24 14:22:18 archiso kernel: RAMDISK: [mem 0x7d66e000-0x7fffffff]
May 24 14:22:18 archiso kernel: ACPI: Early table checksum verification disabled
May 24 14:22:18 archiso kernel: ACPI: RSDP 0x00000000000F00E0 000024 (v02 TOSCPL)
May 24 14:22:18 archiso kernel: ACPI: XSDT 0x00000000BB7FE120 000074 (v01 TOSCPL TOSCPL00 00000074      01000013)
May 24 14:22:18 archiso kernel: ACPI: FACP 0x00000000BB7FC000 0000F4 (v03 TOSCPL TOSCPL00 00000074 LOHR 0000005F)
May 24 14:22:18 archiso kernel: ACPI: DSDT 0x00000000BB7E7000 010F89 (v02 TOSCPL CALPELLA 00000001 INTL 20050624)
May 24 14:22:18 archiso kernel: ACPI: FACS 0x00000000BB71A000 000040
May 24 14:22:18 archiso kernel: ACPI: FACS 0x00000000BB71A000 000040
May 24 14:22:18 archiso kernel: ACPI: HPET 0x00000000BB7FB000 000038 (v01 TOSCPL TOSCPL00 00000001 LOHR 0000005F)
May 24 14:22:18 archiso kernel: ACPI: APIC 0x00000000BB7FA000 000098 (v01 TOSCPL TOSCPL00 00000001 LOHR 0000005F)
May 24 14:22:18 archiso kernel: ACPI: MCFG 0x00000000BB7F9000 00003C (v01 TOSCPL TOSCPL00 00000001 LOHR 0000005F)
May 24 14:22:18 archiso kernel: ACPI: ASF! 0x00000000BB7F8000 0000A5 (v32 TOSCPL TOSCPL00 00000001 LOHR 0000005F)
May 24 14:22:18 archiso kernel: ACPI: SLIC 0x00000000BB7E4000 000176 (v01 TOSCPL TOSCPL00 00000001 PTL  00000001)
May 24 14:22:18 archiso kernel: ACPI: SSDT 0x00000000BB7E3000 0009F1 (v01 PmRef  CpuPm    00003000 INTL 20050624)
May 24 14:22:18 archiso kernel: ACPI: UEFI 0x00000000BB7E2000 00003E (v01 PTL    PTLBUF8? 00000001 PTL  00000001)
May 24 14:22:18 archiso kernel: ACPI: UEFI 0x00000000BB7E1000 000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
May 24 14:22:18 archiso kernel: ACPI: UEFI 0x00000000BB7E0000 0000DA (v01  PTL   PTLSWI   00000001 PTL  00000001)
May 24 14:22:18 archiso kernel: ACPI: Local APIC address 0xfee00000
May 24 14:22:18 archiso kernel: No NUMA configuration found
May 24 14:22:18 archiso kernel: Faking a node at [mem 0x0000000000000000-0x0000000137ffffff]
May 24 14:22:18 archiso kernel: NODE_DATA(0) allocated [mem 0x137ffc000-0x137ffffff]
May 24 14:22:18 archiso kernel: Zone ranges:
May 24 14:22:18 archiso kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 24 14:22:18 archiso kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 24 14:22:18 archiso kernel:   Normal   [mem 0x0000000100000000-0x0000000137ffffff]
May 24 14:22:18 archiso kernel:   Device   empty
May 24 14:22:18 archiso kernel: Movable zone start for each node
May 24 14:22:18 archiso kernel: Early memory node ranges
May 24 14:22:18 archiso kernel:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
May 24 14:22:18 archiso kernel:   node   0: [mem 0x0000000000100000-0x00000000bb30efff]
May 24 14:22:18 archiso kernel:   node   0: [mem 0x00000000bb7ff000-0x00000000bb7fffff]
May 24 14:22:18 archiso kernel:   node   0: [mem 0x0000000100000000-0x0000000137ffffff]
May 24 14:22:18 archiso kernel: Zeroed struct page in unavailable ranges: 19796 pages
May 24 14:22:18 archiso kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000137ffffff]
May 24 14:22:18 archiso kernel: On node 0 totalpages: 996012
May 24 14:22:18 archiso kernel:   DMA zone: 64 pages used for memmap
May 24 14:22:18 archiso kernel:   DMA zone: 21 pages reserved
May 24 14:22:18 archiso kernel:   DMA zone: 3996 pages, LIFO batch:0
May 24 14:22:18 archiso kernel:   DMA32 zone: 11917 pages used for memmap
May 24 14:22:18 archiso kernel:   DMA32 zone: 762640 pages, LIFO batch:63
May 24 14:22:18 archiso kernel:   Normal zone: 3584 pages used for memmap
May 24 14:22:18 archiso kernel:   Normal zone: 229376 pages, LIFO batch:63
May 24 14:22:18 archiso kernel: Reserving Intel graphics memory at [mem 0xbe000000-0xbfffffff]
May 24 14:22:18 archiso kernel: ACPI: PM-Timer IO Port: 0x408
May 24 14:22:18 archiso kernel: ACPI: Local APIC address 0xfee00000
May 24 14:22:18 archiso kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
May 24 14:22:18 archiso kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 24 14:22:18 archiso kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
May 24 14:22:18 archiso kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 24 14:22:18 archiso kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 24 14:22:18 archiso kernel: ACPI: IRQ0 used by override.
May 24 14:22:18 archiso kernel: ACPI: IRQ9 used by override.
May 24 14:22:18 archiso kernel: Using ACPI (MADT) for SMP configuration information
May 24 14:22:18 archiso kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
May 24 14:22:18 archiso kernel: smpboot: Allowing 8 CPUs, 6 hotplug CPUs
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb30f000-0xbb66dfff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb66e000-0xbb67bfff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb67c000-0xbb67efff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb67f000-0xbb681fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb682000-0xbb6acfff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb6ad000-0xbb6ccfff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb6cd000-0xbb70efff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb70f000-0xbb70ffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb710000-0xbb714fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb715000-0xbb718fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb719000-0xbb719fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb71a000-0xbb71afff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb71b000-0xbb71efff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb71f000-0xbb79efff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb79f000-0xbb7fefff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbb800000-0xbbffffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbc000000-0xbddfffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xbde00000-0xbfffffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed14000-0xfed15fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed16000-0xfed16fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed17000-0xfed18fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed19000-0xfed19fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
May 24 14:22:18 archiso kernel: PM: hibernation: Registered nosave memory: [mem 0xffe00000-0xffffffff]
May 24 14:22:18 archiso kernel: [mem 0xc0000000-0xdfffffff] available for PCI devices
May 24 14:22:18 archiso kernel: Booting paravirtualized kernel on bare hardware
May 24 14:22:18 archiso kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 24 14:22:18 archiso kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
May 24 14:22:18 archiso kernel: percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u262144
May 24 14:22:18 archiso kernel: pcpu-alloc: s196608 r8192 d28672 u262144 alloc=1*2097152
May 24 14:22:18 archiso kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
May 24 14:22:18 archiso kernel: Built 1 zonelists, mobility grouping on.  Total pages: 980426
May 24 14:22:18 archiso kernel: Policy zone: Normal
May 24 14:22:18 archiso kernel: Kernel command line: BOOT_IMAGE=boot/x86_64/vmlinuz archisobasedir=arch archisolabel=ARCH_202005 initrd=boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/archiso.img
May 24 14:22:18 archiso kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 24 14:22:18 archiso kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 24 14:22:18 archiso kernel: mem auto-init: stack:byref_all, heap alloc:on, heap free:off
May 24 14:22:18 archiso kernel: Memory: 3773180K/3984048K available (12291K kernel code, 1463K rwdata, 4504K rodata, 1620K init, 3220K bss, 210868K reserved, 0K cma-reserved)
May 24 14:22:18 archiso kernel: random: get_random_u64 called from __kmem_cache_create+0x3e/0x520 with crng_init=0
May 24 14:22:18 archiso kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
May 24 14:22:18 archiso kernel: Kernel/User page tables isolation: enabled
May 24 14:22:18 archiso kernel: ftrace: allocating 40157 entries in 157 pages
May 24 14:22:18 archiso kernel: ftrace: allocated 157 pages with 5 groups
May 24 14:22:18 archiso kernel: rcu: Preemptible hierarchical RCU implementation.
May 24 14:22:18 archiso kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
May 24 14:22:18 archiso kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
May 24 14:22:18 archiso kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 24 14:22:18 archiso kernel:         Tasks RCU enabled.
May 24 14:22:18 archiso kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 24 14:22:18 archiso kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
May 24 14:22:18 archiso kernel: NR_IRQS: 20736, nr_irqs: 488, preallocated irqs: 16
May 24 14:22:18 archiso kernel: Console: colour VGA+ 80x25
May 24 14:22:18 archiso kernel: printk: console [tty0] enabled
May 24 14:22:18 archiso kernel: ACPI: Core revision 20200110
May 24 14:22:18 archiso kernel: TOSHIBA Satellite detected - force copy of DSDT to local memory
May 24 14:22:18 archiso kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
May 24 14:22:18 archiso kernel: APIC: Switch to symmetric I/O mode setup
May 24 14:22:18 archiso kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 24 14:22:18 archiso kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x39867b46247, max_idle_ns: 881590803327 ns
May 24 14:22:18 archiso kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.10 BogoMIPS (lpj=6651363)
May 24 14:22:18 archiso kernel: pid_max: default: 32768 minimum: 301
May 24 14:22:18 archiso kernel: LSM: Security Framework initializing
May 24 14:22:18 archiso kernel: Yama: becoming mindful.
May 24 14:22:18 archiso kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 24 14:22:18 archiso kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
May 24 14:22:18 archiso kernel: *** VALIDATE tmpfs ***
May 24 14:22:18 archiso kernel: *** VALIDATE proc ***
May 24 14:22:18 archiso kernel: *** VALIDATE cgroup ***
May 24 14:22:18 archiso kernel: *** VALIDATE cgroup2 ***
May 24 14:22:18 archiso kernel: Disabled fast string operations
May 24 14:22:18 archiso kernel: process: using mwait in idle threads
May 24 14:22:18 archiso kernel: Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
May 24 14:22:18 archiso kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
May 24 14:22:18 archiso kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 24 14:22:18 archiso kernel: Spectre V2 : Mitigation: Full generic retpoline
May 24 14:22:18 archiso kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 24 14:22:18 archiso kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
May 24 14:22:18 archiso kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 24 14:22:18 archiso kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
May 24 14:22:18 archiso kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
May 24 14:22:18 archiso kernel: Freeing SMP alternatives memory: 32K
May 24 14:22:18 archiso kernel: smpboot: CPU0: Intel(R) Pentium(R) CPU        P6100  @ 2.00GHz (family: 0x6, model: 0x25, stepping: 0x5)
May 24 14:22:18 archiso kernel: Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
May 24 14:22:18 archiso kernel: core: CPUID marked event: 'bus cycles' unavailable
May 24 14:22:18 archiso kernel: ... version:                3
May 24 14:22:18 archiso kernel: ... bit width:              48
May 24 14:22:18 archiso kernel: ... generic registers:      4
May 24 14:22:18 archiso kernel: ... value mask:             0000ffffffffffff
May 24 14:22:18 archiso kernel: ... max period:             000000007fffffff
May 24 14:22:18 archiso kernel: ... fixed-purpose events:   3
May 24 14:22:18 archiso kernel: ... event mask:             000000070000000f
May 24 14:22:18 archiso kernel: rcu: Hierarchical SRCU implementation.
May 24 14:22:18 archiso kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 24 14:22:18 archiso kernel: smp: Bringing up secondary CPUs ...
May 24 14:22:18 archiso kernel: x86: Booting SMP configuration:
May 24 14:22:18 archiso kernel: .... node  #0, CPUs:      #1
May 24 14:22:18 archiso kernel: Disabled fast string operations
May 24 14:22:18 archiso kernel: smp: Brought up 1 node, 2 CPUs
May 24 14:22:18 archiso kernel: smpboot: Max logical packages: 4
May 24 14:22:18 archiso kernel: smpboot: Total of 2 processors activated (7984.20 BogoMIPS)
May 24 14:22:18 archiso kernel: devtmpfs: initialized
May 24 14:22:18 archiso kernel: x86/mm: Memory block size: 128MB
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb66e000-0xbb67bfff] (57344 bytes)
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb67f000-0xbb681fff] (12288 bytes)
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb6ad000-0xbb6ccfff] (131072 bytes)
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb70f000-0xbb70ffff] (4096 bytes)
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb715000-0xbb718fff] (16384 bytes)
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb71a000-0xbb71afff] (4096 bytes)
May 24 14:22:18 archiso kernel: PM: Registering ACPI NVS region [mem 0xbb71f000-0xbb79efff] (524288 bytes)
May 24 14:22:18 archiso kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 24 14:22:18 archiso kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
May 24 14:22:18 archiso kernel: pinctrl core: initialized pinctrl subsystem
May 24 14:22:18 archiso kernel: PM: RTC time: 14:22:03, date: 2020-05-24
May 24 14:22:18 archiso kernel: thermal_sys: Registered thermal governor 'fair_share'
May 24 14:22:18 archiso kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 24 14:22:18 archiso kernel: thermal_sys: Registered thermal governor 'step_wise'
May 24 14:22:18 archiso kernel: thermal_sys: Registered thermal governor 'user_space'
May 24 14:22:18 archiso kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 24 14:22:18 archiso kernel: NET: Registered protocol family 16
May 24 14:22:18 archiso kernel: audit: initializing netlink subsys (disabled)
May 24 14:22:18 archiso kernel: audit: type=2000 audit(1590330123.229:1): state=initialized audit_enabled=0 res=1
May 24 14:22:18 archiso kernel: cpuidle: using governor ladder
May 24 14:22:18 archiso kernel: cpuidle: using governor menu
May 24 14:22:18 archiso kernel: ACPI: bus type PCI registered
May 24 14:22:18 archiso kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 24 14:22:18 archiso kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
May 24 14:22:18 archiso kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
May 24 14:22:18 archiso kernel: PCI: Using configuration type 1 for base access
May 24 14:22:18 archiso kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(Module Device)
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(Processor Device)
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(Linux-Dell-Video)
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
May 24 14:22:18 archiso kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
May 24 14:22:18 archiso kernel: ACPI: Forced DSDT copy: length 0x10F89 copied locally, original unmapped
May 24 14:22:18 archiso kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
May 24 14:22:18 archiso kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
May 24 14:22:18 archiso kernel: ACPI: Dynamic OEM Table Load:
May 24 14:22:18 archiso kernel: ACPI: SSDT 0xFFFF9BE9B2DA2800 00036C (v01 PmRef  Cpu0Ist  00003000 INTL 20050624)
May 24 14:22:18 archiso kernel: ACPI: Dynamic OEM Table Load:
May 24 14:22:18 archiso kernel: ACPI: SSDT 0xFFFF9BE9B345C000 000891 (v01 PmRef  Cpu0Cst  00003001 INTL 20050624)
May 24 14:22:18 archiso kernel: ACPI: Dynamic OEM Table Load:
May 24 14:22:18 archiso kernel: ACPI: SSDT 0xFFFF9BE9B2C4E400 000303 (v01 PmRef  ApIst    00003000 INTL 20050624)
May 24 14:22:18 archiso kernel: ACPI: Dynamic OEM Table Load:
May 24 14:22:18 archiso kernel: ACPI: SSDT 0xFFFF9BE9B2C33200 000119 (v01 PmRef  ApCst    00003000 INTL 20050624)
May 24 14:22:18 archiso kernel: ACPI: EC: EC started
May 24 14:22:18 archiso kernel: ACPI: EC: interrupt blocked
May 24 14:22:18 archiso kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 24 14:22:18 archiso kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
May 24 14:22:18 archiso kernel: ACPI: Interpreter enabled
May 24 14:22:18 archiso kernel: ACPI: (supports S0 S3 S4 S5)
May 24 14:22:18 archiso kernel: ACPI: Using IOAPIC for interrupt routing
May 24 14:22:18 archiso kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 24 14:22:18 archiso kernel: ACPI: Enabled 17 GPEs in block 00 to 3F
May 24 14:22:18 archiso kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
May 24 14:22:18 archiso kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
May 24 14:22:18 archiso kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
May 24 14:22:18 archiso kernel: PCI host bridge to bus 0000:00
May 24 14:22:18 archiso kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xfdff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: root bus resource [io  0xff28-0xff2b window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: root bus resource [mem 0xbb800000-0xfeafffff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
May 24 14:22:18 archiso kernel: pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
May 24 14:22:18 archiso kernel: pci 0000:00:00.0: DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff 64bit]
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: reg 0x20: [io  0x5050-0x5057]
May 24 14:22:18 archiso kernel: pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
May 24 14:22:18 archiso kernel: pci 0000:00:16.0: reg 0x10: [mem 0xd2505000-0xd250500f 64bit]
May 24 14:22:18 archiso kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
May 24 14:22:18 archiso kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xd2508000-0xd25083ff]
May 24 14:22:18 archiso kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
May 24 14:22:18 archiso kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xd2500000-0xd2503fff 64bit]
May 24 14:22:18 archiso kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
May 24 14:22:18 archiso kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xd2507000-0xd25073ff]
May 24 14:22:18 archiso kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
May 24 14:22:18 archiso kernel: pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: reg 0x10: [io  0x5048-0x504f]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: reg 0x14: [io  0x505c-0x505f]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: reg 0x18: [io  0x5040-0x5047]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x5058-0x505b]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: reg 0x20: [io  0x5020-0x503f]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xd2508800-0xd2508fff]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.2: PME# supported from D3hot
May 24 14:22:18 archiso kernel: pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
May 24 14:22:18 archiso kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xd2504000-0xd25040ff 64bit]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
May 24 14:22:18 archiso kernel: pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
May 24 14:22:18 archiso kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xd2506000-0xd2506fff 64bit]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-05]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0:   bridge window [mem 0xd1d00000-0xd24fffff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd0bfffff 64bit pref]
May 24 14:22:18 archiso kernel: pci 0000:06:00.0: [10ec:8176] type 00 class 0x028000
May 24 14:22:18 archiso kernel: pci 0000:06:00.0: reg 0x10: [io  0x2000-0x20ff]
May 24 14:22:18 archiso kernel: pci 0000:06:00.0: reg 0x18: [mem 0xd1400000-0xd1403fff 64bit]
May 24 14:22:18 archiso kernel: pci 0000:06:00.0: supports D1 D2
May 24 14:22:18 archiso kernel: pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1: PCI bridge to [bus 06-0a]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1:   bridge window [io  0x2000-0x3fff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd1cfffff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1:   bridge window [mem 0xd0c00000-0xd13fffff 64bit pref]
May 24 14:22:18 archiso kernel: pci_bus 0000:0b: extended config space not accessible
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xfdff window] (subtractive decode)
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0:   bridge window [io  0xff28-0xff2b window] (subtractive decode)
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0:   bridge window [mem 0xbb800000-0xfeafffff window] (subtractive decode)
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 *5 6 7 10 12 14 15)
May 24 14:22:18 archiso kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
May 24 14:22:18 archiso kernel: ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
May 24 14:22:18 archiso kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
May 24 14:22:18 archiso kernel: PCI host bridge to bus 0000:ff
May 24 14:22:18 archiso kernel: pci_bus 0000:ff: root bus resource [bus ff]
May 24 14:22:18 archiso kernel: pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
May 24 14:22:18 archiso kernel: pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
May 24 14:22:18 archiso kernel: pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
May 24 14:22:18 archiso kernel: pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
May 24 14:22:18 archiso kernel: pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
May 24 14:22:18 archiso kernel: pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
May 24 14:22:18 archiso kernel: ACPI: EC: interrupt unblocked
May 24 14:22:18 archiso kernel: ACPI: EC: event unblocked
May 24 14:22:18 archiso kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 24 14:22:18 archiso kernel: ACPI: EC: GPE=0x17
May 24 14:22:18 archiso kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions and events
May 24 14:22:18 archiso kernel: iommu: Default domain type: Translated 
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 24 14:22:18 archiso kernel: vgaarb: loaded
May 24 14:22:18 archiso kernel: SCSI subsystem initialized
May 24 14:22:18 archiso kernel: libata version 3.00 loaded.
May 24 14:22:18 archiso kernel: ACPI: bus type USB registered
May 24 14:22:18 archiso kernel: usbcore: registered new interface driver usbfs
May 24 14:22:18 archiso kernel: usbcore: registered new interface driver hub
May 24 14:22:18 archiso kernel: usbcore: registered new device driver usb
May 24 14:22:18 archiso kernel: pps_core: LinuxPPS API ver. 1 registered
May 24 14:22:18 archiso kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
May 24 14:22:18 archiso kernel: PTP clock support registered
May 24 14:22:18 archiso kernel: EDAC MC: Ver: 3.0.0
May 24 14:22:18 archiso kernel: PCI: Using ACPI for IRQ routing
May 24 14:22:18 archiso kernel: PCI: pci_cache_line_size set to 64 bytes
May 24 14:22:18 archiso kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
May 24 14:22:18 archiso kernel: e820: reserve RAM buffer [mem 0xbb30f000-0xbbffffff]
May 24 14:22:18 archiso kernel: e820: reserve RAM buffer [mem 0xbb800000-0xbbffffff]
May 24 14:22:18 archiso kernel: NetLabel: Initializing
May 24 14:22:18 archiso kernel: NetLabel:  domain hash size = 128
May 24 14:22:18 archiso kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 24 14:22:18 archiso kernel: NetLabel:  unlabeled traffic allowed by default
May 24 14:22:18 archiso kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
May 24 14:22:18 archiso kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
May 24 14:22:18 archiso kernel: clocksource: Switched to clocksource tsc-early
May 24 14:22:18 archiso kernel: *** VALIDATE bpf ***
May 24 14:22:18 archiso kernel: VFS: Disk quotas dquot_6.6.0
May 24 14:22:18 archiso kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 24 14:22:18 archiso kernel: *** VALIDATE ramfs ***
May 24 14:22:18 archiso kernel: *** VALIDATE hugetlbfs ***
May 24 14:22:18 archiso kernel: pnp: PnP ACPI init
May 24 14:22:18 archiso kernel: system 00:00: [io  0x1000-0x1003] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: [io  0x1004-0x1013] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: [io  0xffff] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: [io  0x0400-0x047f] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: [io  0x0500-0x057f] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: [io  0xfe00] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: [io  0xff2c-0xff7f] has been reserved
May 24 14:22:18 archiso kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
May 24 14:22:18 archiso kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
May 24 14:22:18 archiso kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
May 24 14:22:18 archiso kernel: pnp 00:03: Plug and Play ACPI device, IDs TOS0100 SYN0700 SYN0002 PNP0f13 (active)
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfed16000-0xfed16fff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0x00000000-0x00000fff] could not be reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xd2600000-0xd2600fff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
May 24 14:22:18 archiso kernel: system 00:04: [mem 0x00000000-0x00000fff] could not be reserved
May 24 14:22:18 archiso kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
May 24 14:22:18 archiso kernel: pnp: PnP ACPI: found 5 devices
May 24 14:22:18 archiso kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-05]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0:   bridge window [mem 0xd1d00000-0xd24fffff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd0bfffff 64bit pref]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1: PCI bridge to [bus 06-0a]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1:   bridge window [io  0x2000-0x3fff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd1cfffff]
May 24 14:22:18 archiso kernel: pci 0000:00:1c.1:   bridge window [mem 0xd0c00000-0xd13fffff 64bit pref]
May 24 14:22:18 archiso kernel: pci 0000:00:1e.0: PCI bridge to [bus 0b]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xfdff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: resource 6 [io  0xff28-0xff2b window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:00: resource 8 [mem 0xbb800000-0xfeafffff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
May 24 14:22:18 archiso kernel: pci_bus 0000:01: resource 1 [mem 0xd1d00000-0xd24fffff]
May 24 14:22:18 archiso kernel: pci_bus 0000:01: resource 2 [mem 0xd0400000-0xd0bfffff 64bit pref]
May 24 14:22:18 archiso kernel: pci_bus 0000:06: resource 0 [io  0x2000-0x3fff]
May 24 14:22:18 archiso kernel: pci_bus 0000:06: resource 1 [mem 0xd1400000-0xd1cfffff]
May 24 14:22:18 archiso kernel: pci_bus 0000:06: resource 2 [mem 0xd0c00000-0xd13fffff 64bit pref]
May 24 14:22:18 archiso kernel: pci_bus 0000:0b: resource 4 [io  0x0000-0x0cf7 window]
May 24 14:22:18 archiso kernel: pci_bus 0000:0b: resource 5 [io  0x0d00-0xfdff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:0b: resource 6 [io  0xff28-0xff2b window]
May 24 14:22:18 archiso kernel: pci_bus 0000:0b: resource 7 [mem 0x000a0000-0x000bffff window]
May 24 14:22:18 archiso kernel: pci_bus 0000:0b: resource 8 [mem 0xbb800000-0xfeafffff window]
May 24 14:22:18 archiso kernel: NET: Registered protocol family 2
May 24 14:22:18 archiso kernel: tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
May 24 14:22:18 archiso kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
May 24 14:22:18 archiso kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
May 24 14:22:18 archiso kernel: TCP: Hash tables configured (established 32768 bind 32768)
May 24 14:22:18 archiso kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 24 14:22:18 archiso kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
May 24 14:22:18 archiso kernel: NET: Registered protocol family 1
May 24 14:22:18 archiso kernel: NET: Registered protocol family 44
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: BIOS left Intel GPU interrupts enabled; disabling
May 24 14:22:18 archiso kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 24 14:22:18 archiso kernel: pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x654 took 17692 usecs
May 24 14:22:18 archiso kernel: pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x654 took 16249 usecs
May 24 14:22:18 archiso kernel: PCI: CLS 0 bytes, default 64
May 24 14:22:18 archiso kernel: Trying to unpack rootfs image as initramfs...
May 24 14:22:18 archiso kernel: Freeing initrd memory: 42568K
May 24 14:22:18 archiso kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 24 14:22:18 archiso kernel: software IO TLB: mapped [mem 0xb730f000-0xbb30f000] (64MB)
May 24 14:22:18 archiso kernel: check: Scanning for low memory corruption every 60 seconds
May 24 14:22:18 archiso kernel: Initialise system trusted keyrings
May 24 14:22:18 archiso kernel: Key type blacklist registered
May 24 14:22:18 archiso kernel: workingset: timestamp_bits=41 max_order=20 bucket_order=0
May 24 14:22:18 archiso kernel: zbud: loaded
May 24 14:22:18 archiso kernel: Key type asymmetric registered
May 24 14:22:18 archiso kernel: Asymmetric key parser 'x509' registered
May 24 14:22:18 archiso kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
May 24 14:22:18 archiso kernel: io scheduler mq-deadline registered
May 24 14:22:18 archiso kernel: io scheduler kyber registered
May 24 14:22:18 archiso kernel: io scheduler bfq registered
May 24 14:22:18 archiso kernel: pcieport 0000:00:1c.0: enabling device (0000 -> 0003)
May 24 14:22:18 archiso kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 24 14:22:18 archiso kernel: intel_idle: MWAIT substates: 0x120
May 24 14:22:18 archiso kernel: intel_idle: v0.4.1 model 0x25
May 24 14:22:18 archiso kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
May 24 14:22:18 archiso kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
May 24 14:22:18 archiso kernel: ACPI: Lid Switch [LID0]
May 24 14:22:18 archiso kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
May 24 14:22:18 archiso kernel: ACPI: Power Button [PWRB]
May 24 14:22:18 archiso kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
May 24 14:22:18 archiso kernel: ACPI: Power Button [PWRF]
May 24 14:22:18 archiso kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
May 24 14:22:18 archiso kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
May 24 14:22:18 archiso kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
May 24 14:22:18 archiso kernel: ahci 0000:00:1f.2: version 3.0
May 24 14:22:18 archiso kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
May 24 14:22:18 archiso kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x32 impl SATA mode
May 24 14:22:18 archiso kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
May 24 14:22:18 archiso kernel: scsi host0: ahci
May 24 14:22:18 archiso kernel: scsi host1: ahci
May 24 14:22:18 archiso kernel: scsi host2: ahci
May 24 14:22:18 archiso kernel: scsi host3: ahci
May 24 14:22:18 archiso kernel: scsi host4: ahci
May 24 14:22:18 archiso kernel: scsi host5: ahci
May 24 14:22:18 archiso kernel: ata1: DUMMY
May 24 14:22:18 archiso kernel: ata2: SATA max UDMA/133 abar m2048@0xd2508800 port 0xd2508980 irq 26
May 24 14:22:18 archiso kernel: ata3: DUMMY
May 24 14:22:18 archiso kernel: ata4: DUMMY
May 24 14:22:18 archiso kernel: ata5: SATA max UDMA/133 abar m2048@0xd2508800 port 0xd2508b00 irq 26
May 24 14:22:18 archiso kernel: ata6: SATA max UDMA/133 abar m2048@0xd2508800 port 0xd2508b80 irq 26
May 24 14:22:18 archiso kernel: usbcore: registered new interface driver usbserial_generic
May 24 14:22:18 archiso kernel: usbserial: USB Serial support registered for generic
May 24 14:22:18 archiso kernel: rtc_cmos 00:01: RTC can wake from S4
May 24 14:22:18 archiso kernel: rtc_cmos 00:01: registered as rtc0
May 24 14:22:18 archiso kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
May 24 14:22:18 archiso kernel: intel_pstate: CPU model not supported
May 24 14:22:18 archiso kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 24 14:22:18 archiso kernel: drop_monitor: Initializing network drop monitor service
May 24 14:22:18 archiso kernel: NET: Registered protocol family 10
May 24 14:22:18 archiso kernel: Segment Routing with IPv6
May 24 14:22:18 archiso kernel: NET: Registered protocol family 17
May 24 14:22:18 archiso kernel: RAS: Correctable Errors collector initialized.
May 24 14:22:18 archiso kernel: microcode: sig=0x20655, pf=0x10, revision=0x7
May 24 14:22:18 archiso kernel: microcode: Microcode Update Driver: v2.2.
May 24 14:22:18 archiso kernel: IPI shorthand broadcast: enabled
May 24 14:22:18 archiso kernel: sched_clock: Marking stable (6735126358, 2570841)->(6739451790, -1754591)
May 24 14:22:18 archiso kernel: registered taskstats version 1
May 24 14:22:18 archiso kernel: Loading compiled-in X.509 certificates
May 24 14:22:18 archiso kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 3173f57ffc4f79528759736b0e979de68a36535c'
May 24 14:22:18 archiso kernel: zswap: loaded using pool lzo/zbud
May 24 14:22:18 archiso kernel: Key type ._fscrypt registered
May 24 14:22:18 archiso kernel: Key type .fscrypt registered
May 24 14:22:18 archiso kernel: Key type fscrypt-provisioning registered
May 24 14:22:18 archiso kernel: Key type big_key registered
May 24 14:22:18 archiso kernel: PM:   Magic number: 4:106:385
May 24 14:22:18 archiso kernel: thermal cooling_device0: hash matches
May 24 14:22:18 archiso kernel: rtc_cmos 00:01: setting system clock to 2020-05-24T14:22:10 UTC (1590330130)
May 24 14:22:18 archiso kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
May 24 14:22:18 archiso kernel: ata2.00: ATA-8: TOSHIBA MK3265GSXN, GH101M, max UDMA/100
May 24 14:22:18 archiso kernel: ata2.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 32), AA
May 24 14:22:18 archiso kernel: ata2.00: configured for UDMA/100
May 24 14:22:18 archiso kernel: scsi 1:0:0:0: Direct-Access     ATA      TOSHIBA MK3265GS 1M   PQ: 0 ANSI: 5
May 24 14:22:18 archiso kernel: sd 1:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
May 24 14:22:18 archiso kernel: sd 1:0:0:0: [sda] Write Protect is off
May 24 14:22:18 archiso kernel: sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
May 24 14:22:18 archiso kernel: sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 24 14:22:18 archiso kernel:  sda: sda1 sda2 sda3
May 24 14:22:18 archiso kernel: sd 1:0:0:0: [sda] Attached SCSI disk
May 24 14:22:18 archiso kernel: ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
May 24 14:22:18 archiso kernel: ata5.00: ATAPI: TSSTcorp CDDVDW TS-L633C, TF20, max UDMA/100
May 24 14:22:18 archiso kernel: ata5.00: configured for UDMA/100
May 24 14:22:18 archiso kernel: scsi 4:0:0:0: CD-ROM            TSSTcorp CDDVDW TS-L633C  TF20 PQ: 0 ANSI: 5
May 24 14:22:18 archiso kernel: tsc: Refined TSC clocksource calibration: 1995.345 MHz
May 24 14:22:18 archiso kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x39860217be5, max_idle_ns: 881590739634 ns
May 24 14:22:18 archiso kernel: clocksource: Switched to clocksource tsc
May 24 14:22:18 archiso kernel: ata6: SATA link down (SStatus 0 SControl 300)
May 24 14:22:18 archiso kernel: Freeing unused decrypted memory: 2040K
May 24 14:22:18 archiso kernel: Freeing unused kernel image (initmem) memory: 1620K
May 24 14:22:18 archiso kernel: Write protecting the kernel read-only data: 20480k
May 24 14:22:18 archiso kernel: Freeing unused kernel image (text/rodata gap) memory: 2044K
May 24 14:22:18 archiso kernel: Freeing unused kernel image (rodata/data gap) memory: 1640K
May 24 14:22:18 archiso kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 24 14:22:18 archiso kernel: x86/mm: Checking user space page tables
May 24 14:22:18 archiso kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 24 14:22:18 archiso kernel: Run /init as init process
May 24 14:22:18 archiso kernel:   with arguments:
May 24 14:22:18 archiso kernel:     /init
May 24 14:22:18 archiso kernel:   with environment:
May 24 14:22:18 archiso kernel:     HOME=/
May 24 14:22:18 archiso kernel:     TERM=linux
May 24 14:22:18 archiso kernel:     BOOT_IMAGE=boot/x86_64/vmlinuz
May 24 14:22:18 archiso kernel:     archisobasedir=arch
May 24 14:22:18 archiso kernel:     archisolabel=ARCH_202005
May 24 14:22:18 archiso kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
May 24 14:22:18 archiso kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 24 14:22:18 archiso kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
May 24 14:22:18 archiso kernel: Linux agpgart interface v0.103
May 24 14:22:18 archiso kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
May 24 14:22:18 archiso kernel: ehci-pci: EHCI PCI platform driver
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1a.0: debug port 2
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xd2508000
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
May 24 14:22:18 archiso kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.06
May 24 14:22:18 archiso kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 24 14:22:18 archiso kernel: usb usb1: Product: EHCI Host Controller
May 24 14:22:18 archiso kernel: usb usb1: Manufacturer: Linux 5.6.8-arch1-1 ehci_hcd
May 24 14:22:18 archiso kernel: usb usb1: SerialNumber: 0000:00:1a.0
May 24 14:22:18 archiso kernel: hub 1-0:1.0: USB hub found
May 24 14:22:18 archiso kernel: hub 1-0:1.0: 2 ports detected
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1d.0: debug port 2
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xd2507000
May 24 14:22:18 archiso kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
May 24 14:22:18 archiso kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.06
May 24 14:22:18 archiso kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 24 14:22:18 archiso kernel: usb usb2: Product: EHCI Host Controller
May 24 14:22:18 archiso kernel: usb usb2: Manufacturer: Linux 5.6.8-arch1-1 ehci_hcd
May 24 14:22:18 archiso kernel: usb usb2: SerialNumber: 0000:00:1d.0
May 24 14:22:18 archiso kernel: hub 2-0:1.0: USB hub found
May 24 14:22:18 archiso kernel: hub 2-0:1.0: 2 ports detected
May 24 14:22:18 archiso kernel: sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
May 24 14:22:18 archiso kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
May 24 14:22:18 archiso kernel: sr 4:0:0:0: Attached scsi CD-ROM sr0
May 24 14:22:18 archiso kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
May 24 14:22:18 archiso kernel: pci 0000:00:00.0: Intel HD Graphics Chipset
May 24 14:22:18 archiso kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
May 24 14:22:18 archiso kernel: pci 0000:00:00.0: detected 32768K stolen memory
May 24 14:22:18 archiso kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 24 14:22:18 archiso kernel: Console: switching to colour dummy device 80x25
May 24 14:22:18 archiso kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
May 24 14:22:18 archiso kernel: [drm] Driver supports precise vblank timestamp query.
May 24 14:22:18 archiso kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
May 24 14:22:18 archiso kernel: battery: [Firmware Bug]: battery: (dis)charge rate invalid.
May 24 14:22:18 archiso kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
May 24 14:22:18 archiso kernel: [drm] Initialized i915 1.6.0 20200114 for 0000:00:02.0 on minor 0
May 24 14:22:18 archiso kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
May 24 14:22:18 archiso kernel: acpi device:0d: registered as cooling_device2
May 24 14:22:18 archiso kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:02/input/input5
May 24 14:22:18 archiso kernel: fbcon: i915drmfb (fb0) is primary device
May 24 14:22:18 archiso kernel: random: fast init done
May 24 14:22:18 archiso kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
May 24 14:22:18 archiso kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
May 24 14:22:18 archiso kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
May 24 14:22:18 archiso kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 24 14:22:18 archiso kernel: hub 1-1:1.0: USB hub found
May 24 14:22:18 archiso kernel: hub 1-1:1.0: 6 ports detected
May 24 14:22:18 archiso kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
May 24 14:22:18 archiso kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 24 14:22:18 archiso kernel: hub 2-1:1.0: USB hub found
May 24 14:22:18 archiso kernel: hub 2-1:1.0: 8 ports detected
May 24 14:22:18 archiso kernel: raid6: sse2x4   gen()  3616 MB/s
May 24 14:22:18 archiso kernel: raid6: sse2x4   xor()  2194 MB/s
May 24 14:22:18 archiso kernel: usb 1-1.3: new high-speed USB device number 3 using ehci-pci
May 24 14:22:18 archiso kernel: usb 2-1.1: new high-speed USB device number 3 using ehci-pci
May 24 14:22:18 archiso kernel: raid6: sse2x2   gen()  3629 MB/s
May 24 14:22:18 archiso kernel: raid6: sse2x2   xor()  2353 MB/s
May 24 14:22:18 archiso kernel: raid6: sse2x1   gen()  6165 MB/s
May 24 14:22:18 archiso kernel: usb 2-1.1: New USB device found, idVendor=090c, idProduct=1000, bcdDevice=11.00
May 24 14:22:18 archiso kernel: usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 24 14:22:18 archiso kernel: usb 2-1.1: Product: USB DISK
May 24 14:22:18 archiso kernel: usb 2-1.1: Manufacturer: SMI Corporation
May 24 14:22:18 archiso kernel: usb 2-1.1: SerialNumber: AA04012700007459
May 24 14:22:18 archiso kernel: usb 1-1.3: New USB device found, idVendor=0bda, idProduct=0138, bcdDevice=38.82
May 24 14:22:18 archiso kernel: usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 24 14:22:18 archiso kernel: usb 1-1.3: Product: USB2.0-CRW
May 24 14:22:18 archiso kernel: usb 1-1.3: Manufacturer: Generic
May 24 14:22:18 archiso kernel: usb 1-1.3: SerialNumber: 20090516388200000
May 24 14:22:18 archiso kernel: usb-storage 2-1.1:1.0: USB Mass Storage device detected
May 24 14:22:18 archiso kernel: usb-storage 2-1.1:1.0: Quirks match for vid 090c pid 1000: 400
May 24 14:22:18 archiso kernel: scsi host6: usb-storage 2-1.1:1.0
May 24 14:22:18 archiso kernel: usbcore: registered new interface driver usb-storage
May 24 14:22:18 archiso kernel: usbcore: registered new interface driver uas
May 24 14:22:18 archiso kernel: ums-realtek 1-1.3:1.0: USB Mass Storage device detected
May 24 14:22:18 archiso kernel: scsi host7: usb-storage 1-1.3:1.0
May 24 14:22:18 archiso kernel: usbcore: registered new interface driver ums-realtek
May 24 14:22:18 archiso kernel: raid6: sse2x1   xor()  2646 MB/s
May 24 14:22:18 archiso kernel: raid6: using algorithm sse2x1 gen() 6165 MB/s
May 24 14:22:18 archiso kernel: raid6: .... xor() 2646 MB/s, rmw enabled
May 24 14:22:18 archiso kernel: raid6: using ssse3x2 recovery algorithm
May 24 14:22:18 archiso kernel: xor: measuring software checksum speed
May 24 14:22:18 archiso kernel: Console: switching to colour frame buffer device 170x48
May 24 14:22:18 archiso kernel: i915 0000:00:02.0: fb0: i915drmfb frame buffer device
May 24 14:22:18 archiso kernel:    prefetch64-sse:  9942.000 MB/sec
May 24 14:22:18 archiso kernel: usb 1-1.4: new high-speed USB device number 4 using ehci-pci
May 24 14:22:18 archiso kernel:    generic_sse:  3993.600 MB/sec
May 24 14:22:18 archiso kernel: xor: using function: prefetch64-sse (9942.000 MB/sec)
May 24 14:22:18 archiso kernel: Btrfs loaded, crc32c=crc32c-generic
May 24 14:22:18 archiso kernel: BTRFS: device fsid 70da1d1e-93d0-44e2-8e00-337fede957c1 devid 1 transid 52 /dev/sda3 scanned by systemd-udevd (216)
May 24 14:22:18 archiso kernel: usb 1-1.4: New USB device found, idVendor=04f2, idProduct=b1d6, bcdDevice=26.13
May 24 14:22:18 archiso kernel: usb 1-1.4: New USB device strings: Mfr=2, Product=1, SerialNumber=0
May 24 14:22:18 archiso kernel: usb 1-1.4: Product: CNF9055
May 24 14:22:18 archiso kernel: usb 1-1.4: Manufacturer: Sonix Technology Co., Ltd.
May 24 14:22:18 archiso kernel: scsi 6:0:0:0: Direct-Access     USB      Stick 2.0 ME     1100 PQ: 0 ANSI: 0 CCS
May 24 14:22:18 archiso kernel: sd 6:0:0:0: [sdb] 7928832 512-byte logical blocks: (4.06 GB/3.78 GiB)
May 24 14:22:18 archiso kernel: sd 6:0:0:0: [sdb] Write Protect is off
May 24 14:22:18 archiso kernel: sd 6:0:0:0: [sdb] Mode Sense: 43 00 00 00
May 24 14:22:18 archiso kernel: sd 6:0:0:0: [sdb] No Caching mode page found
May 24 14:22:18 archiso kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
May 24 14:22:18 archiso kernel:  sdb: sdb1 sdb2
May 24 14:22:18 archiso kernel: scsi 7:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
May 24 14:22:18 archiso kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
May 24 14:22:18 archiso kernel: sd 7:0:0:0: [sdc] Attached SCSI removable disk
May 24 14:22:18 archiso kernel: ISO 9660 Extensions: RRIP_1991A
May 24 14:22:18 archiso kernel: loop: module loaded
May 24 14:22:18 archiso kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
May 24 14:22:18 archiso kernel: random: crng init done
May 24 14:22:18 archiso systemd[1]: systemd 245.5-2-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
May 24 14:22:18 archiso systemd[1]: Detected architecture x86-64.
May 24 14:22:18 archiso systemd[1]: Set hostname to <archiso>.
May 24 14:22:18 archiso systemd[1]: Initializing machine ID from random generator.
May 24 14:22:18 archiso systemd[1]: Created slice system-getty.slice.
May 24 14:22:18 archiso systemd[1]: Created slice system-modprobe.slice.
May 24 14:22:18 archiso systemd[1]: Created slice User and Session Slice.
May 24 14:22:18 archiso systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 24 14:22:18 archiso systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 24 14:22:18 archiso systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 24 14:22:18 archiso systemd[1]: Reached target Local Encrypted Volumes.
May 24 14:22:18 archiso systemd[1]: Reached target Paths.
May 24 14:22:18 archiso systemd[1]: Reached target Remote File Systems.
May 24 14:22:18 archiso systemd[1]: Reached target Slices.
May 24 14:22:18 archiso systemd[1]: Reached target Swap.
May 24 14:22:18 archiso systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 24 14:22:18 archiso systemd[1]: Listening on LVM2 metadata daemon socket.
May 24 14:22:18 archiso systemd[1]: Listening on LVM2 poll daemon socket.
May 24 14:22:18 archiso systemd[1]: Listening on Process Core Dump Socket.
May 24 14:22:18 archiso systemd[1]: Listening on initctl Compatibility Named Pipe.
May 24 14:22:18 archiso systemd[1]: Listening on Journal Audit Socket.
May 24 14:22:18 archiso systemd[1]: Listening on Journal Socket (/dev/log).
May 24 14:22:18 archiso systemd[1]: Listening on Journal Socket.
May 24 14:22:18 archiso systemd[1]: Listening on udev Control Socket.
May 24 14:22:18 archiso systemd[1]: Listening on udev Kernel Socket.
May 24 14:22:18 archiso systemd[1]: Mounting Huge Pages File System...
May 24 14:22:18 archiso systemd[1]: Mounting POSIX Message Queue File System...
May 24 14:22:18 archiso systemd[1]: Mounting Kernel Debug File System...
May 24 14:22:18 archiso systemd[1]: Mounting Kernel Trace File System...
May 24 14:22:18 archiso systemd[1]: Mounting Temporary Directory (/tmp)...
May 24 14:22:18 archiso systemd[1]: Starting Create list of static device nodes for the current kernel...
May 24 14:22:18 archiso systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 24 14:22:18 archiso systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
May 24 14:22:18 archiso systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
May 24 14:22:18 archiso systemd[1]: Starting Load Kernel Modules...
May 24 14:22:18 archiso systemd[1]: Starting Remount Root and Kernel File Systems...
May 24 14:22:18 archiso systemd[1]: Starting udev Coldplug all Devices...
May 24 14:22:18 archiso systemd[1]: Mounted Huge Pages File System.
May 24 14:22:18 archiso systemd[1]: Mounted POSIX Message Queue File System.
May 24 14:22:18 archiso systemd[1]: Mounted Kernel Debug File System.
May 24 14:22:18 archiso systemd[1]: Mounted Kernel Trace File System.
May 24 14:22:18 archiso systemd[1]: Mounted Temporary Directory (/tmp).
May 24 14:22:18 archiso systemd[1]: Finished Create list of static device nodes for the current kernel.
May 24 14:22:18 archiso systemd[1]: Finished Remount Root and Kernel File Systems.
May 24 14:22:18 archiso systemd[1]: Condition check resulted in First Boot Wizard being skipped.
May 24 14:22:18 archiso kernel: Asymmetric key parser 'pkcs8' registered
May 24 14:22:18 archiso systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
May 24 14:22:18 archiso systemd[1]: Starting Load/Save Random Seed...
May 24 14:22:18 archiso systemd[1]: Starting Create System Users...
May 24 14:22:18 archiso systemd[1]: Finished Load Kernel Modules.
May 24 14:22:18 archiso systemd[1]: Condition check resulted in FUSE Control File System being skipped.
May 24 14:22:18 archiso systemd[1]: Mounting Kernel Configuration File System...
May 24 14:22:18 archiso systemd[1]: Starting Apply Kernel Variables...
May 24 14:22:18 archiso systemd[1]: Mounted Kernel Configuration File System.
May 24 14:22:18 archiso systemd[1]: Finished Load/Save Random Seed.
May 24 14:22:18 archiso systemd[1]: Finished Create System Users.
May 24 14:22:18 archiso systemd[1]: Starting Create Static Device Nodes in /dev...
May 24 14:22:18 archiso systemd[1]: Finished Apply Kernel Variables.
May 24 14:22:18 archiso systemd[1]: Finished Create Static Device Nodes in /dev.
May 24 14:22:18 archiso systemd[1]: Started Entropy Daemon based on the HAVEGE algorithm.
May 24 14:22:18 archiso systemd[1]: Starting Journal Service...
May 24 14:22:18 archiso systemd[1]: Starting udev Kernel Device Manager...
May 24 14:22:18 archiso systemd[1]: Started LVM2 metadata daemon.
May 24 14:22:18 archiso systemd[1]: Finished udev Coldplug all Devices.
May 24 14:22:18 archiso systemd-journald[308]: Journal started
May 24 14:22:18 archiso systemd-journald[308]: Runtime Journal (/run/log/journal/345a1df07a4c4106bd69b3f325ff52b9) is 8.0M, max 186.6M, 178.6M free.
May 24 14:22:18 archiso systemd[1]: Started Journal Service.
May 24 14:22:18 archiso kernel: audit: type=1130 audit(1590330138.861:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:18 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:18 archiso systemd-modules-load[298]: Inserted module 'pkcs8_key_parser'
May 24 14:22:18 archiso systemd-sysctl[304]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
May 24 14:22:18 archiso systemd-sysctl[304]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
May 24 14:22:18 archiso systemd-sysctl[304]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
May 24 14:22:18 archiso systemd-sysctl[304]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
May 24 14:22:18 archiso systemd-sysctl[304]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
May 24 14:22:18 archiso systemd-sysctl[304]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
May 24 14:22:18 archiso systemd[1]: Starting Flush Journal to Persistent Storage...
May 24 14:22:18 archiso systemd[1]: Started udev Kernel Device Manager.
May 24 14:22:18 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:18 archiso haveged[307]: haveged: listening socket at 3
May 24 14:22:18 archiso haveged[307]: haveged: ver: 1.9.8; arch: x86; vend: GenuineIntel; build: (gcc 9.1.0 ITV); collect: 128K
May 24 14:22:18 archiso haveged[307]: haveged: cpu: (L4 VC); data: 32K (L2 L4 V); inst: 32K (L2 L4 V); idx: 25/40; sz: 32671/52623
May 24 14:22:18 archiso haveged[307]: haveged: tot tests(BA8): A:1/1 B:1/1 continuous tests(B):  last entropy estimate 8.00043
May 24 14:22:18 archiso haveged[307]: haveged: fills: 0, generated: 0
May 24 14:22:18 archiso kernel: audit: type=1130 audit(1590330138.867:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:18 archiso systemd-journald[308]: Runtime Journal (/run/log/journal/345a1df07a4c4106bd69b3f325ff52b9) is 8.0M, max 186.6M, 178.6M free.
May 24 14:22:18 archiso systemd[1]: Finished Flush Journal to Persistent Storage.
May 24 14:22:18 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:18 archiso kernel: audit: type=1130 audit(1590330138.931:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:19 archiso systemd[1]: Created slice system-systemd\x2dbacklight.slice.
May 24 14:22:19 archiso systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
May 24 14:22:19 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:acpi_video0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:19 archiso systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
May 24 14:22:19 archiso kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20200110/utaddress-204)
May 24 14:22:19 archiso kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 24 14:22:19 archiso kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20200110/utaddress-204)
May 24 14:22:19 archiso kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 24 14:22:19 archiso kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20200110/utaddress-204)
May 24 14:22:19 archiso kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 24 14:22:19 archiso kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20200110/utaddress-204)
May 24 14:22:19 archiso kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 24 14:22:19 archiso kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
May 24 14:22:19 archiso kernel: audit: type=1130 audit(1590330139.234:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:acpi_video0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:19 archiso systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
May 24 14:22:19 archiso systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
May 24 14:22:19 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:19 archiso kernel: audit: type=1130 audit(1590330139.391:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:19 archiso kernel: intel ips 0000:00:1f.6: No CPUID match found.
May 24 14:22:19 archiso kernel: intel ips 0000:00:1f.6: IPS not supported on this CPU
May 24 14:22:19 archiso kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
May 24 14:22:19 archiso kernel: ACPI: AC Adapter [ACAD] (on-line)
May 24 14:22:19 archiso systemd-udevd[317]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
May 24 14:22:19 archiso kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
May 24 14:22:19 archiso kernel: toshiba_acpi: Toshiba Laptop ACPI Extras version 0.24
May 24 14:22:19 archiso kernel: input: Toshiba input device as /devices/virtual/input/input8
May 24 14:22:19 archiso systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 24 14:22:19 archiso kernel: iTCO_vendor_support: vendor-support=0
May 24 14:22:19 archiso kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
May 24 14:22:19 archiso kernel: iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
May 24 14:22:19 archiso kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
May 24 14:22:19 archiso kernel: mc: Linux media interface: v0.10
May 24 14:22:19 archiso kernel: toshiba_acpi: Supported laptop features: hotkeys touchpad cooling-method
May 24 14:22:19 archiso kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 24 14:22:19 archiso kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 24 14:22:19 archiso kernel: videodev: Linux video capture interface: v2.00
May 24 14:22:19 archiso kernel: snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
May 24 14:22:20 archiso systemd-udevd[331]: cfg80211: Process '/usr/bin/set-wireless-regdom' failed with exit code 1.
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC259: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
May 24 14:22:20 archiso kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
May 24 14:22:20 archiso kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
May 24 14:22:20 archiso kernel: input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
May 24 14:22:20 archiso kernel: input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
May 24 14:22:20 archiso systemd[1]: Reached target Sound Card.
May 24 14:22:20 archiso kernel: uvcvideo: Found UVC 1.00 device CNF9055 (04f2:b1d6)
May 24 14:22:20 archiso kernel: uvcvideo 1-1.4:1.0: Entity type for entity Extension 4 was not initialized!
May 24 14:22:20 archiso kernel: uvcvideo 1-1.4:1.0: Entity type for entity Processing 3 was not initialized!
May 24 14:22:20 archiso kernel: uvcvideo 1-1.4:1.0: Entity type for entity Camera 1 was not initialized!
May 24 14:22:20 archiso kernel: input: CNF9055: Chicony USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input12
May 24 14:22:20 archiso kernel: usbcore: registered new interface driver uvcvideo
May 24 14:22:20 archiso kernel: USB Video Class driver (1.1.1)
May 24 14:22:20 archiso kernel: rtl8192ce: Chip Version ID: B_CHIP_88C
May 24 14:22:20 archiso kernel: rtl8192ce: Using firmware rtlwifi/rtl8192cfw.bin
May 24 14:22:20 archiso kernel: ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
May 24 14:22:20 archiso systemd[1]: Starting Load/Save RF Kill Switch Status...
May 24 14:22:20 archiso kernel: rtlwifi: rtlwifi: wireless switch is on
May 24 14:22:20 archiso systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 24 14:22:20 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso systemd[1]: Reached target Local File Systems (Pre).
May 24 14:22:20 archiso kernel: audit: type=1130 audit(1590330140.594:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso systemd[1]: Mounting Temporary /etc/pacman.d/gnupg directory...
May 24 14:22:20 archiso systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
May 24 14:22:20 archiso kernel: psmouse serio1: synaptics: queried max coordinates: x [..5692], y [..4680]
May 24 14:22:20 archiso systemd[1]: Mounted Temporary /etc/pacman.d/gnupg directory.
May 24 14:22:20 archiso systemd[1]: Reached target Local File Systems.
May 24 14:22:20 archiso systemd[1]: Starting Rebuild Dynamic Linker Cache...
May 24 14:22:20 archiso systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
May 24 14:22:20 archiso systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
May 24 14:22:20 archiso systemd[1]: Starting Create Volatile Files and Directories...
May 24 14:22:20 archiso systemd[1]: Finished Create Volatile Files and Directories.
May 24 14:22:20 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso systemd[1]: Starting Rebuild Journal Catalog...
May 24 14:22:20 archiso kernel: audit: type=1130 audit(1590330140.681:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso systemd[1]: Starting Update UTMP about System Boot/Shutdown...
May 24 14:22:20 archiso audit[359]: SYSTEM_BOOT pid=359 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso kernel: audit: type=1127 audit(1590330140.714:9): pid=359 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000/0x0, board id: 0, fw id: 582762
May 24 14:22:20 archiso kernel: psmouse serio1: synaptics: Toshiba Satellite C660 detected, limiting rate to 40pps.
May 24 14:22:20 archiso systemd[1]: Finished Update UTMP about System Boot/Shutdown.
May 24 14:22:20 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso kernel: audit: type=1130 audit(1590330140.724:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso systemd[1]: Finished Rebuild Journal Catalog.
May 24 14:22:20 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-catalog-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso kernel: audit: type=1130 audit(1590330140.761:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-catalog-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
May 24 14:22:20 archiso kernel: wl: loading out-of-tree module taints kernel.
May 24 14:22:20 archiso kernel: wl: module license 'MIXED/Proprietary' taints kernel.
May 24 14:22:20 archiso kernel: Disabling lock debugging due to kernel taint
May 24 14:22:20 archiso kernel: mousedev: PS/2 mouse device common for all mice
May 24 14:22:20 archiso kernel: wl: module verification failed: signature and/or required key missing - tainting kernel
May 24 14:22:20 archiso systemd-udevd[314]: Using default interface naming scheme 'v245'.
May 24 14:22:20 archiso systemd[1]: Started Load/Save RF Kill Switch Status.
May 24 14:22:20 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:20 archiso systemd-udevd[314]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
May 24 14:22:24 archiso systemd[1]: Finished Rebuild Dynamic Linker Cache.
May 24 14:22:24 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso kernel: kauditd_printk_skb: 1 callbacks suppressed
May 24 14:22:24 archiso kernel: audit: type=1130 audit(1590330144.027:13): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso systemd[1]: Starting Update is Completed...
May 24 14:22:24 archiso systemd[1]: Finished Update is Completed.
May 24 14:22:24 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-done comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso systemd[1]: Reached target System Initialization.
May 24 14:22:24 archiso kernel: audit: type=1130 audit(1590330144.051:14): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-done comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso systemd[1]: Started Daily man-db regeneration.
May 24 14:22:24 archiso systemd[1]: Started Daily verification of password and group files.
May 24 14:22:24 archiso systemd[1]: Started Daily Cleanup of Temporary Directories.
May 24 14:22:24 archiso systemd[1]: Reached target Timers.
May 24 14:22:24 archiso systemd[1]: Listening on D-Bus System Message Bus Socket.
May 24 14:22:24 archiso systemd[1]: Reached target Sockets.
May 24 14:22:24 archiso systemd[1]: Reached target Basic System.
May 24 14:22:24 archiso systemd[1]: Condition check resulted in Choose mirror from the kernel command line being skipped.
May 24 14:22:24 archiso systemd[1]: Started D-Bus System Message Bus.
May 24 14:22:24 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso systemd[1]: Starting Initializes Pacman keyring...
May 24 14:22:24 archiso kernel: audit: type=1130 audit(1590330144.084:15): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso audit: AUDIT1334 prog-id=7 op=LOAD
May 24 14:22:24 archiso audit: AUDIT1334 prog-id=8 op=LOAD
May 24 14:22:24 archiso kernel: audit: type=1334 audit(1590330144.091:16): prog-id=7 op=LOAD
May 24 14:22:24 archiso kernel: audit: type=1334 audit(1590330144.091:17): prog-id=8 op=LOAD
May 24 14:22:24 archiso systemd[1]: Starting Login Service...
May 24 14:22:24 archiso systemd[1]: Starting Permit User Sessions...
May 24 14:22:24 archiso systemd[1]: Finished Permit User Sessions.
May 24 14:22:24 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso kernel: audit: type=1130 audit(1590330144.127:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso systemd[1]: Started Getty on tty1.
May 24 14:22:24 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso systemd[1]: Reached target Login Prompts.
May 24 14:22:24 archiso kernel: audit: type=1130 audit(1590330144.134:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso pacman-key[370]: gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
May 24 14:22:24 archiso pacman-key[370]: gpg: no ultimately trusted keys found
May 24 14:22:24 archiso pacman-key[389]: gpg: starting migration from earlier GnuPG versions
May 24 14:22:24 archiso systemd-logind[364]: New seat seat0.
May 24 14:22:24 archiso systemd-logind[364]: Watching system buttons on /dev/input/event2 (Power Button)
May 24 14:22:24 archiso pacman-key[389]: gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
May 24 14:22:24 archiso pacman-key[389]: gpg: migration succeeded
May 24 14:22:24 archiso pacman-key[395]: gpg: Generating pacman keyring master key...
May 24 14:22:24 archiso systemd-logind[364]: Watching system buttons on /dev/input/event1 (Power Button)
May 24 14:22:24 archiso systemd-logind[364]: Watching system buttons on /dev/input/event0 (Lid Switch)
May 24 14:22:24 archiso systemd-logind[364]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
May 24 14:22:24 archiso systemd-logind[364]: Watching system buttons on /dev/input/event6 (Toshiba input device)
May 24 14:22:24 archiso systemd[1]: Started Login Service.
May 24 14:22:24 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:24 archiso kernel: audit: type=1130 audit(1590330144.787:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:25 archiso pacman-key[395]: gpg: key A449999F59D9AA18 marked as ultimately trusted
May 24 14:22:25 archiso pacman-key[395]: gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created
May 24 14:22:25 archiso pacman-key[395]: gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/4CAC66D9293EEE1C220988FFA449999F59D9AA18.rev'
May 24 14:22:25 archiso pacman-key[395]: gpg: Done
May 24 14:22:25 archiso pacman-key[363]: ==> Updating trust database...
May 24 14:22:25 archiso pacman-key[398]: gpg: marginals needed: 3  completes needed: 1  trust model: pgp
May 24 14:22:25 archiso pacman-key[398]: gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
May 24 14:22:25 archiso pacman-key[399]: ==> Appending keys from archlinux.gpg...
May 24 14:22:25 archiso audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:25 archiso systemd[1]: systemd-rfkill.service: Succeeded.
May 24 14:22:25 archiso kernel: audit: type=1131 audit(1590330145.827:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso audit[366]: USER_ACCT pid=366 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/login" hostname=archiso addr=? terminal=tty1 res=success'
May 24 14:22:29 archiso kernel: audit: type=1101 audit(1590330149.271:22): pid=366 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/login" hostname=archiso addr=? terminal=tty1 res=success'
May 24 14:22:29 archiso audit[366]: CRED_ACQ pid=366 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_tally2,pam_shells,pam_unix,pam_permit,pam_env acct="root" exe="/usr/bin/login" hostname=archiso addr=? terminal=tty1 res=success'
May 24 14:22:29 archiso login[366]: pam_unix(login:session): session opened for user root by LOGIN(uid=0)
May 24 14:22:29 archiso kernel: audit: type=1103 audit(1590330149.277:23): pid=366 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_tally2,pam_shells,pam_unix,pam_permit,pam_env acct="root" exe="/usr/bin/login" hostname=archiso addr=? terminal=tty1 res=success'
May 24 14:22:29 archiso kernel: audit: type=1006 audit(1590330149.277:24): pid=366 uid=0 old-auid=4294967295 auid=0 tty=tty1 old-ses=4294967295 ses=1 res=1
May 24 14:22:29 archiso systemd-logind[364]: New session 1 of user root.
May 24 14:22:29 archiso systemd[1]: Created slice User Slice of UID 0.
May 24 14:22:29 archiso systemd[1]: Starting User Runtime Directory /run/user/0...
May 24 14:22:29 archiso systemd[1]: Finished User Runtime Directory /run/user/0.
May 24 14:22:29 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso kernel: audit: type=1130 audit(1590330149.341:25): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso systemd[1]: Starting User Manager for UID 0...
May 24 14:22:29 archiso audit[405]: USER_ACCT pid=405 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso systemd[405]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[root] ruser=[<unknown>] rhost=[<unknown>]
May 24 14:22:29 archiso audit[405]: CRED_ACQ pid=405 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
May 24 14:22:29 archiso systemd[405]: pam_unix(systemd-user:session): session opened for user root by (uid=0)
May 24 14:22:29 archiso kernel: audit: type=1101 audit(1590330149.357:26): pid=405 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso kernel: audit: type=1103 audit(1590330149.357:27): pid=405 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
May 24 14:22:29 archiso kernel: audit: type=1006 audit(1590330149.357:28): pid=405 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=2 res=1
May 24 14:22:29 archiso audit[405]: USER_START pid=405 uid=0 auid=0 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso kernel: audit: type=1105 audit(1590330149.361:29): pid=405 uid=0 auid=0 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso audit: AUDIT1334 prog-id=9 op=LOAD
May 24 14:22:29 archiso audit: AUDIT1334 prog-id=9 op=UNLOAD
May 24 14:22:29 archiso audit: AUDIT1334 prog-id=10 op=LOAD
May 24 14:22:29 archiso audit: AUDIT1334 prog-id=10 op=UNLOAD
May 24 14:22:29 archiso kernel: audit: type=1334 audit(1590330149.377:30): prog-id=9 op=LOAD
May 24 14:22:29 archiso kernel: audit: type=1334 audit(1590330149.377:31): prog-id=9 op=UNLOAD
May 24 14:22:29 archiso systemd[405]: Reached target Paths.
May 24 14:22:29 archiso systemd[405]: Reached target Timers.
May 24 14:22:29 archiso systemd[405]: Starting D-Bus User Message Bus Socket.
May 24 14:22:29 archiso systemd[405]: Listening on GnuPG network certificate management daemon.
May 24 14:22:29 archiso systemd[405]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 24 14:22:29 archiso systemd[405]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 24 14:22:29 archiso systemd[405]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 24 14:22:29 archiso systemd[405]: Listening on GnuPG cryptographic agent and passphrase cache.
May 24 14:22:29 archiso systemd[405]: Listening on p11-kit server.
May 24 14:22:29 archiso systemd[405]: Listening on D-Bus User Message Bus Socket.
May 24 14:22:29 archiso systemd[405]: Reached target Sockets.
May 24 14:22:29 archiso systemd[405]: Reached target Basic System.
May 24 14:22:29 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:29 archiso systemd[1]: Started User Manager for UID 0.
May 24 14:22:29 archiso systemd[1]: Started Session 1 of user root.
May 24 14:22:29 archiso systemd[405]: Reached target Main User Target.
May 24 14:22:29 archiso systemd[405]: Startup finished in 188ms.
May 24 14:22:29 archiso audit[366]: USER_START pid=366 uid=0 auid=0 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/bin/login" hostname=archiso addr=? terminal=tty1 res=success'
May 24 14:22:29 archiso audit[366]: CRED_REFR pid=366 uid=0 auid=0 ses=1 msg='op=PAM:setcred grantors=pam_securetty,pam_tally2,pam_shells,pam_unix,pam_permit,pam_env acct="root" exe="/usr/bin/login" hostname=archiso addr=? terminal=tty1 res=success'
May 24 14:22:29 archiso login[366]: ROOT LOGIN ON tty1
May 24 14:22:30 archiso pacman-key[399]: ==> Locally signing trusted keys in keyring...
May 24 14:22:30 archiso pacman-key[399]:   -> Locally signing key D8AFDDA07A5B6EDFA7D8CCDAD6D055F927843F1C...
May 24 14:22:31 archiso pacman-key[399]:   -> Locally signing key DDB867B92AA789C165EEFA799B729B06A680C281...
May 24 14:22:31 archiso pacman-key[399]:   -> Locally signing key 91FFE0700E80619CEB73235CA88E23E377514E00...
May 24 14:22:31 archiso pacman-key[399]:   -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
May 24 14:22:31 archiso pacman-key[399]:   -> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
May 24 14:22:32 archiso pacman-key[399]: ==> Importing owner trust values...
May 24 14:22:32 archiso pacman-key[473]: gpg: inserting ownertrust of 4
May 24 14:22:32 archiso pacman-key[473]: gpg: setting ownertrust to 4
May 24 14:22:32 archiso pacman-key[473]: gpg: setting ownertrust to 4
May 24 14:22:32 archiso pacman-key[473]: gpg: setting ownertrust to 4
May 24 14:22:32 archiso pacman-key[473]: gpg: setting ownertrust to 4
May 24 14:22:32 archiso pacman-key[399]: ==> Disabling revoked keys in keyring...
May 24 14:22:32 archiso pacman-key[399]:   -> Disabling key 8F76BEEA0289F9E1D3E229C05F946DED983D4366...
May 24 14:22:32 archiso pacman-key[399]:   -> Disabling key 63F395DE2D6398BBE458F281F2DBB4931985A992...
May 24 14:22:32 archiso pacman-key[399]:   -> Disabling key 50F33E2E5B0C3D900424ABE89BDCF497A4BBCC7F...
May 24 14:22:32 archiso pacman-key[399]:   -> Disabling key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
May 24 14:22:33 archiso pacman-key[399]:   -> Disabling key 39F880E50E49A4D11341E8F939E4F17F295AFBF4...
May 24 14:22:33 archiso pacman-key[399]:   -> Disabling key 8840BD07FC24CB7CE394A07CCF7037A4F27FB7DA...
May 24 14:22:33 archiso pacman-key[399]:   -> Disabling key 5559BC1A32B8F76B3FCCD9555FA5E5544F010D48...
May 24 14:22:34 archiso pacman-key[399]:   -> Disabling key 0B20CA1931F5DA3A70D0F8D2EA6836E1AB441196...
May 24 14:22:34 archiso pacman-key[399]:   -> Disabling key 07DFD3A0BC213FA12EDC217559B3122E2FA915EC...
May 24 14:22:34 archiso pacman-key[399]:   -> Disabling key 4FCF887689C41B09506BE8D5F3E1D5C5D30DB0AD...
May 24 14:22:34 archiso pacman-key[399]:   -> Disabling key 5A2257D19FF7E1E0E415968CE62F853100F0D0F0...
May 24 14:22:35 archiso pacman-key[399]:   -> Disabling key D921CABED130A5690EF1896E81AF739EC0711BF1...
May 24 14:22:35 archiso pacman-key[399]:   -> Disabling key 7FA647CD89891DEDC060287BB9113D1ED21E1A55...
May 24 14:22:35 archiso pacman-key[399]:   -> Disabling key BC1FBE4D2826A0B51E47ED62E2539214C6C11350...
May 24 14:22:36 archiso pacman-key[399]:   -> Disabling key 4A8B17E20B88ACA61860009B5CED81B7C2E5C0D2...
May 24 14:22:36 archiso pacman-key[399]:   -> Disabling key 5696C003B0854206450C8E5BE613C09CB4440678...
May 24 14:22:36 archiso pacman-key[399]:   -> Disabling key 684148BB25B49E986A4944C55184252D824B18E8...
May 24 14:22:37 archiso pacman-key[399]:   -> Disabling key 8CF934E339CAD8ABF342E822E711306E3C4F88BC...
May 24 14:22:37 archiso pacman-key[399]:   -> Disabling key F5A361A3A13554B85E57DDDAAF7EF7873CFD4BB6...
May 24 14:22:37 archiso pacman-key[399]:   -> Disabling key 5E7585ADFF106BFFBBA319DC654B877A0864983E...
May 24 14:22:37 archiso pacman-key[399]:   -> Disabling key 65EEFE022108E2B708CBFCF7F9E712E59AF5F22A...
May 24 14:22:38 archiso pacman-key[399]:   -> Disabling key 40440DC037C05620984379A6761FAD69BA06C6A9...
May 24 14:22:38 archiso pacman-key[399]:   -> Disabling key 34C5D94FE7E7913E86DC427E7FB1A3800C84C0A5...
May 24 14:22:38 archiso pacman-key[399]:   -> Disabling key 81D7F8241DB38BC759C80FCE3A726C6170E80477...
May 24 14:22:39 archiso pacman-key[399]:   -> Disabling key E7210A59715F6940CF9A4E36A001876699AD6E84...
May 24 14:22:39 archiso pacman-key[399]:   -> Disabling key 5357F3B111688D88C1D88119FCF2CB179205AC90...
May 24 14:22:39 archiso pacman-key[399]:   -> Disabling key 4D913AECD81726D9A6C74F0ADA6426DD215B37AD...
May 24 14:22:40 archiso pacman-key[399]:   -> Disabling key FB871F0131FEA4FB5A9192B4C8880A6406361833...
May 24 14:22:40 archiso pacman-key[399]:   -> Disabling key 66BD74A036D522F51DD70A3C7F2A16726521E06D...
May 24 14:22:40 archiso pacman-key[399]:   -> Disabling key B1F2C889CB2CCB2ADA36D963097D629E437520BD...
May 24 14:22:40 archiso pacman-key[399]:   -> Disabling key 9515D8A8EAB88E49BB65EDBCE6B456CAF15447D5...
May 24 14:22:41 archiso pacman-key[399]:   -> Disabling key 76B4192E902C0A52642C63C273B8ED52F1D357C1...
May 24 14:22:41 archiso pacman-key[399]:   -> Disabling key 40776A5221EF5AD468A4906D42A1DB15EC133BAD...
May 24 14:22:41 archiso pacman-key[399]:   -> Disabling key D4DE5ABDE2A7287644EAC7E36D1A9E70E19DAA50...
May 24 14:22:42 archiso pacman-key[399]:   -> Disabling key 44D4A033AC140143927397D47EFD567D4C7EA887...
May 24 14:22:42 archiso pacman-key[399]: ==> Updating trust database...
May 24 14:22:42 archiso pacman-key[617]: gpg: key 1EB2638FF56C0C53: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 1EB2638FF56C0C53: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: key 786C63F330D7CB92: no user ID for key signature packet of class 10
May 24 14:22:42 archiso pacman-key[617]: gpg: marginals needed: 3  completes needed: 1  trust model: pgp
May 24 14:22:42 archiso pacman-key[617]: gpg: depth: 0  valid:   1  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 1u
May 24 14:22:42 archiso pacman-key[617]: gpg: depth: 1  valid:   5  signed:  78  trust: 0-, 0q, 0n, 5m, 0f, 0u
May 24 14:22:42 archiso pacman-key[617]: gpg: depth: 2  valid:  73  signed:  24  trust: 73-, 0q, 0n, 0m, 0f, 0u
May 24 14:22:42 archiso pacman-key[617]: gpg: next trustdb check due at 2020-05-31
May 24 14:22:42 archiso systemd[1]: Finished Initializes Pacman keyring.
May 24 14:22:42 archiso kernel: kauditd_printk_skb: 5 callbacks suppressed
May 24 14:22:42 archiso kernel: audit: type=1130 audit(1590330162.637:37): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacman-init comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:42 archiso audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacman-init comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
May 24 14:22:42 archiso systemd[1]: Reached target Multi-User System.
May 24 14:22:42 archiso systemd[1]: Startup finished in 12.795s (kernel) + 26.106s (userspace) = 38.902s.
May 24 14:25:32 archiso kernel: usb 2-1.2: new high-speed USB device number 4 using ehci-pci
May 24 14:25:33 archiso kernel: usb 2-1.2: New USB device found, idVendor=0781, idProduct=5151, bcdDevice= 2.00
May 24 14:25:33 archiso kernel: usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 24 14:25:33 archiso kernel: usb 2-1.2: Product: Cruzer Micro
May 24 14:25:33 archiso kernel: usb 2-1.2: Manufacturer: SanDisk
May 24 14:25:33 archiso kernel: usb 2-1.2: SerialNumber: 445672189C812698
May 24 14:25:33 archiso kernel: usb-storage 2-1.2:1.0: USB Mass Storage device detected
May 24 14:25:33 archiso kernel: scsi host8: usb-storage 2-1.2:1.0
May 24 14:25:34 archiso kernel: scsi 8:0:0:0: Direct-Access     SanDisk  Cruzer Micro     8.01 PQ: 0 ANSI: 0 CCS
May 24 14:25:34 archiso kernel: sd 8:0:0:0: [sdd] 7862911 512-byte logical blocks: (4.03 GB/3.75 GiB)
May 24 14:25:34 archiso kernel: sd 8:0:0:0: [sdd] Write Protect is off
May 24 14:25:34 archiso kernel: sd 8:0:0:0: [sdd] Mode Sense: 45 00 00 08
May 24 14:25:34 archiso kernel: sd 8:0:0:0: [sdd] No Caching mode page found
May 24 14:25:34 archiso kernel: sd 8:0:0:0: [sdd] Assuming drive cache: write through
May 24 14:25:34 archiso kernel:  sdd: sdd1
May 24 14:25:34 archiso kernel: sd 8:0:0:0: [sdd] Attached SCSI removable disk
May 24 14:26:08 archiso kernel: EXT4-fs (sdd1): mounting ext3 file system using the ext4 subsystem
May 24 14:26:08 archiso kernel: EXT4-fs (sdd1): mounted filesystem with ordered data mode. Opts: (null)

Offline

#6 2020-05-24 17:51:09

progandy
Member
Registered: 2012-05-17
Posts: 5,184

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

For now you could try to install arch linux with linux-lts as the kernel.


| alias CUTF='LANG=en_XX.UTF-8@POSIX ' |

Offline

#7 2020-05-25 20:37:59

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

linux-lts? I'll try that, but may be not before Thursday.

For the time being, shall I rename the thread into sth. like “archiso regression for Realtek RTL810xE [renamed]”?

If it works with linux-lts, what would be the next steps?

Offline

#8 2020-05-26 04:11:19

Lizzi
Member
Registered: 2016-05-15
Posts: 40

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

stefan wrote:

linux-lts? I'll try that, but may be not before Thursday.

For the time being, shall I rename the thread into sth. like “archiso regression for Realtek RTL810xE [renamed]”?

If it works with linux-lts, what would be the next steps?


if it works use it.  LTS is LTS for a reason...  Newest kernels tend to focus on newest features.  If you have a kernel that is brand new and supporting every device from the past 50 years, imagine the size of that beast!  And who is using the newest kernel with that 50 year old gear?  no one i assure you.  I have run into this problem with an old gigabyte brix with an amd apu that hasnt been supported  with proprietary drivers for like 5 years... Thing still works, not throwing it away.  It has arch linux on it right now but fr how much longer?  Eventually i'll be on LTS kernel as well. I will be sad to see it fall into disuse before it quits functioning but such is often the way of things.  You'll be good with LTS i bet.  Lots of life left in your  Toshiba.


BTW, I also use arch, gentoo, artix & manjaro

Offline

#9 2020-05-26 10:20:06

Mr.Elendig
#archlinux@freenode channel op
From: The intertubes
Registered: 2004-11-07
Posts: 4,092

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

The out of tree driver might work better for the card if it supports it.


Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest

Offline

#10 2020-05-26 10:21:50

progandy
Member
Registered: 2012-05-17
Posts: 5,184

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

stefan wrote:

If it works with linux-lts, what would be the next steps?

Edit: Mr.Elendig has a good point. The r8168 module is in the community repository as r8168 for the linux kernel and r8168-lts for linux-lts.

If you still want to try and fix the upstream driver, go ahead and read the following.

Try e.g. linux 5.5 and 5.6 from the Arch Linux Archive
If 5.5 works, but 5.6 doesn't, then perform a git bisection bitween these two versions.
If 5.4 (lts) works, but 5.5 doesn't, then bisect between kernel 5.4 and 5.5.
That should give you the change in the kernel that broke your ethernet.

Note: you only want to bisect between the initial versions of a series (e.g. 5.5 and 5.6, do not try 5.5.5 and 5.6).
If 5.6 works, then you can bisect between 5.6 and e.g. 5.6.12, though. (you stay in the same 5.6 series)

https://wiki.archlinux.org/index.php/Bi … s_with_Git

Loqs has written some instructions strictly tailored to bisecting kernel versions:
https://bbs.archlinux.org/viewtopic.php … 4#p1857864
https://bbs.archlinux.org/viewtopic.php … 0#p1862200

Last edited by progandy (2020-05-26 10:32:12)


| alias CUTF='LANG=en_XX.UTF-8@POSIX ' |

Offline

#11 2020-05-27 18:40:59

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Nope, LTS won't do.

While I have bisected before, I'd rather avoid the tedious task of doing this with a kernel.  Call me lazy.

I'll first try this r8168 thing.  I have not realised until now that that actually is available as a package.

Offline

#12 2020-05-27 19:38:49

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Et tu, r8168?

In other words, that failed as well.  I'll try different kernel versions as progandy has suggested.  May be some days until I can report.

Offline

#13 2020-05-28 10:59:04

fmc000
Member
Registered: 2020-05-12
Posts: 26

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

stefan wrote:

Nope, LTS won't do.

While I have bisected before, I'd rather avoid the tedious task of doing this with a kernel.  Call me lazy.

I'll first try this r8168 thing.  I have not realised until now that that actually is available as a package.

There are many LTS kernels available in the AUR (you have to compille them with makepkg, though). Which kernel is included in the ISO that works for you? You can try a LTS kernel closer to it.

Online

#14 2020-05-28 13:27:41

loqs
Member
Registered: 2014-03-06
Posts: 17,192

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

archlinux-2019.07.01-x86_64.iso uses kernel 5.3.8-arch1-1
Edit:
If https://archive.archlinux.org/packages/ … pkg.tar.xz works that would allow you to bisect 5.4.Y which should be easier and quicker than 5.3 to 5.4.  With both you will would to use gcc9 for the builds.

Last edited by loqs (2020-05-28 13:36:16)

Offline

#15 2020-05-28 19:59:10

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

I guess the laugh is on me.

Of course, I had noticed that sometimes even the system booted with kernel 5.1.15-arch1-1 from the `archlinux-2019.07.01-x86_64.iso` image did not have ethernet.  But it *mostly* did, and if not, after a reboot it was back again.  I've attributed this to an occasional hiccup, you know, things happen.  It did not happen too often anyways.

I've started a binary search through the 5.x kernels from the Archive.  Luckily I've lost track early, before diving into the sub-minor versions.  So I tried my last step again, and then findings were inconclusive, contradicting my earlier notes.

Turns out, things are so much simpler.

Whether ethernet will eventually become available *seems* (I've become cautious by now, correlation is not causality, I knew that of course) to be linked to whether `lspci` lists

01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL810xE PCI Express Fast Ethernet controller (rev 05)

which *seems* to be the case exactly every second boot.

No matter the kernel.

I've repeated this experiment 14 times now.  On, off, on, off, …

Which, in hindsight, makes it pretty obvious why I “consistently” had ethernet when booting off the pendrive and not when booting off the installed system.

It's a nice lesson about correlation, coincidence and causality.  I'm just surprised that I had to learn it again.

And I'm very sorry to have wasted your time.  Thanks for the input!

Cheers
Stefan

Offline

#16 2021-05-26 14:05:24

gansheim
Member
Registered: 2021-05-26
Posts: 2

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Sorry, I know this is a bit old, but I'm having the same issue with my minis forum PC with the same realtek NIC. Was your resolution just to reboot every time or was there an actual cause for the driver not being loaded the first time?

Offline

#17 2021-05-26 15:52:38

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Hi!

I'm sorry, but I've given up on that machine.  Already then it was only an old laptop, lying around, waiting for a reason to revive it.  That reason appeared and then vanished shortly after.  So, no, I've not improved on the situation.  Sorry to disappoint you.

But in case you'd find out what causes this peculiarity, I'd be happy to hear of it.

Good luck!
Stefan

Last edited by stefan (2021-05-26 15:53:26)

Offline

#18 2021-06-21 12:21:22

gansheim
Member
Registered: 2021-05-26
Posts: 2

Re: [Solved] Ethernet only during install, not on fresh system. RTL810xE

Thanks for the replay Stefan.
I got distracted with work for the past couple weeks, but finally had some time to tinker this weekend. It appears to be a sequencing issue with the hardware. If I increase the grub timeout from 5 to 10 seconds, then it comes up no problem. I'm guessing the NIC just doesn't get power immediately, and if the timeout is to short, the kernel doesn't detect the device and load the driver. Which would makes sense that it comes up on reboot, because power to the board isn't cut off, and then the NIC is detected. Odd that there would be that much latency on power on, but I guess that's what you get for a $120 mini pc...

Offline

Board footer

Powered by FluxBB