You are not logged in.

#1 2019-04-14 23:37:00

Portal
Member
Registered: 2019-03-11
Posts: 48

cannot start dwm xsession

I installed dwm from suckless.org. Then I edited the X11INC and X11LIB entries in config.mk. My config.mk looks like this:

# dwm version
VERSION = 6.2
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/include/X11
X11LIB = /usr/lib/X11
# Xinerama, comment if you don't want it
XINERAMALIBS  = -lXinerama
XINERAMAFLAGS = -DXINERAMA
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
#CFLAGS   = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
CFLAGS   = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
LDFLAGS  = ${LIBS}
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
CC = cc

I ran "make clean install" with no errors and edited /usr/share/xsessions/user-session.desktop to be:

[Desktop Entry]
Encoding=UTF-8
Name=DWM
Comment=A DWM
Exec=/etc/X11/xinit
Type=Application`

so that DWM shows up as an option in my display/login manager. I created .xinitrc in my home directory and added the lines:

#!/bin/bash
exec dwm

Am I doing something wrong or missing a step? I cannot start a DWM session from my display manager.

Last edited by Portal (2019-04-14 23:38:19)

Offline

#2 2019-04-15 06:21:40

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

Re: cannot start dwm xsession

Debian's dwm package uses this file at /usr/share/xsessions/dwm.desktop:

[Desktop Entry]
Encoding=UTF-8
Name=Dwm
Comment=Dynamic window manager
Exec=dwm
Icon=dwm
Type=XSession

No need for ~/.xinitrc at all.

EDIT: they also include an icon in the package so either steal that as well or drop that line.

Last edited by Head_on_a_Stick (2019-04-15 06:22:25)

Offline

#3 2019-04-15 14:17:27

Portal
Member
Registered: 2019-03-11
Posts: 48

Re: cannot start dwm xsession

That almost worked. The dwm bar showed up at the top. But then my login screen just froze and became non-responsive.

Offline

#4 2019-04-15 18:35:14

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

Re: cannot start dwm xsession

What does the Xorg log & systemd journal have to say about the freeze?

Off topic: do you really need a display manager? I don't think suckless would approve.

Offline

#5 2019-04-15 22:04:46

Portal
Member
Registered: 2019-03-11
Posts: 48

Re: cannot start dwm xsession

For systemd journal, I failed to find any error messages. Here are all the messages I grepped with sddm, my display manager:

Apr 15 17:36:55 Arch sddm[441]: Session "/usr/share/xsessions/user-session.desktop" selected, command: "dwm"
Apr 15 17:36:56 Arch sddm-helper[500]: Starting: "/usr/share/sddm/scripts/Xsession \"dwm\""

I see 2 Xorg log files in my /var/log dir, Xorg.0.log and Xorg.1.log. I don't have any experience with Xorg logs...so I am not sure what to do with them...
For Xorg.0.log, here are the lines with "failed" in them. The last one has to do with sddm.

[    14.224] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    14.406] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    14.406] (EE) Failed to load module "vesa" (module does not exist, 0)
[    16.925] (EE) Failed to open authorization file "/var/run/sddm/{8a19ca20-6b23-4099-b61a-c108bf18f324}": No such file or directory

Same for Xorg.1.log:

[ 27650.863] _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
[ 27650.868] (EE) /dev/dri/card0: failed to set DRM interface version 1.4: Permission denied
[ 27650.872] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 27650.878] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 27650.878] (EE) Failed to load module "vesa" (module does not exist, 0)
[ 27652.044] (EE) /dev/dri/card0: failed to set DRM interface version 1.4: Permission denied
[ 27652.624] (EE) Failed to open authorization file "/var/run/sddm/{a641fc66-ec6c-4ffa-a0e1-d0ff2edc0967}": No such file or directory

I don't specifically need a display manager. I tried to disable it, but then I just booted into a default shell.

Offline

#6 2019-04-16 18:32:26

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

Re: cannot start dwm xsession

It's better to post full log files rather than excerpts[1], provide a link to a pastebin site if the file is very long.

Portal wrote:

I don't specifically need a display manager. I tried to disable it, but then I just booted into a default shell.

Yes, that is the desired result.

So does this work from a console login:

startx $(which dwm)

If it does then you can follow the ArchWiki to run without a display manager (if you prefer):

https://wiki.archlinux.org/index.php/Xinit

In respect of SDDM, can you start any other sessions?

Offline

#7 2019-04-17 15:25:44

Portal
Member
Registered: 2019-03-11
Posts: 48

Re: cannot start dwm xsession

It still doesn't work... it is just a non-responsive black screen with a dwm bar at the top.
I don't think sddm is the problem. I am able to start kde plasma from sddm.

Offline

#8 2019-04-17 15:38:07

Portal
Member
Registered: 2019-03-11
Posts: 48

Re: cannot start dwm xsession

Here is the full journalctl -b:

-- Logs begin at Mon 2019-02-18 14:41:50 EST, end at Wed 2019-04-17 11:28:01 EDT. --
Apr 17 11:27:09 archlinux kernel: Linux version 4.19.29-1-lts (builduser@andyrtr) (gcc version 8.2.1 20181127 (GCC)) #1 SMP Thu Mar 14 15:39:08 CET 2019
Apr 17 11:27:09 archlinux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=3116253c-2640-48f9-bd48-0dd4a529f04b rw quiet
Apr 17 11:27:09 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Apr 17 11:27:09 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Apr 17 11:27:09 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Apr 17 11:27:09 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Apr 17 11:27:09 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Apr 17 11:27:09 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Apr 17 11:27:09 archlinux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Apr 17 11:27:09 archlinux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Apr 17 11:27:09 archlinux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Apr 17 11:27:09 archlinux kernel: BIOS-provided physical RAM map:
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x00000000000907ff] usable
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x0000000000090800-0x000000000009ffff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000ba645fff] usable
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000ba646000-0x00000000ba646fff] ACPI NVS
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000ba647000-0x00000000ca6b0fff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000ca6b1000-0x00000000ca708fff] ACPI data
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000ca709000-0x00000000caff3fff] ACPI NVS
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000caff4000-0x00000000cb5fffff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Apr 17 11:27:09 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000052e7fffff] usable
Apr 17 11:27:09 archlinux kernel: NX (Execute Disable) protection: active
Apr 17 11:27:09 archlinux kernel: SMBIOS 3.0.0 present.
Apr 17 11:27:09 archlinux kernel: DMI: Dell Inc. Precision 3520/0C7J6P, BIOS 1.1.1 01/17/2017
Apr 17 11:27:09 archlinux kernel: tsc: Detected 2800.000 MHz processor
Apr 17 11:27:09 archlinux kernel: tsc: Detected 2808.000 MHz TSC
Apr 17 11:27:09 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Apr 17 11:27:09 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Apr 17 11:27:09 archlinux kernel: last_pfn = 0x52e800 max_arch_pfn = 0x400000000
Apr 17 11:27:09 archlinux kernel: MTRR default type: write-back
Apr 17 11:27:09 archlinux kernel: MTRR fixed ranges enabled:
Apr 17 11:27:09 archlinux kernel:   00000-9FFFF write-back
Apr 17 11:27:09 archlinux kernel:   A0000-BFFFF uncachable
Apr 17 11:27:09 archlinux kernel:   C0000-FFFFF write-protect
Apr 17 11:27:09 archlinux kernel: MTRR variable ranges enabled:
Apr 17 11:27:09 archlinux kernel:   0 base 00E0000000 mask 7FE0000000 uncachable
Apr 17 11:27:09 archlinux kernel:   1 base 00D0000000 mask 7FF0000000 uncachable
Apr 17 11:27:09 archlinux kernel:   2 base 00CE000000 mask 7FFE000000 uncachable
Apr 17 11:27:09 archlinux kernel:   3 base 00CD000000 mask 7FFF000000 uncachable
Apr 17 11:27:09 archlinux kernel:   4 disabled
Apr 17 11:27:09 archlinux kernel:   5 disabled
Apr 17 11:27:09 archlinux kernel:   6 disabled
Apr 17 11:27:09 archlinux kernel:   7 disabled
Apr 17 11:27:09 archlinux kernel:   8 disabled
Apr 17 11:27:09 archlinux kernel:   9 disabled
Apr 17 11:27:09 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Apr 17 11:27:09 archlinux kernel: last_pfn = 0xba646 max_arch_pfn = 0x400000000
Apr 17 11:27:09 archlinux kernel: found SMP MP-table at [mem 0x000fce00-0x000fce0f] mapped at [(____ptrval____)]
Apr 17 11:27:09 archlinux kernel: Scanning 1 areas for low memory corruption
Apr 17 11:27:09 archlinux kernel: Base memory trampoline at [(____ptrval____)] 8a000 size 24576
Apr 17 11:27:09 archlinux kernel: Using GB pages for direct mapping
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac01000, 0x2dac01fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac02000, 0x2dac02fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac03000, 0x2dac03fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac04000, 0x2dac04fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac05000, 0x2dac05fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac06000, 0x2dac06fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: BRK [0x2dac07000, 0x2dac07fff] PGTABLE
Apr 17 11:27:09 archlinux kernel: RAMDISK: [mem 0x35f1b000-0x36f84fff]
Apr 17 11:27:09 archlinux kernel: ACPI: Early table checksum verification disabled
Apr 17 11:27:09 archlinux kernel: ACPI: RSDP 0x00000000000EC630 000024 (v02 DELL  )
Apr 17 11:27:09 archlinux kernel: ACPI: XSDT 0x00000000CA6D40B0 0000E4 (v01 DELL   CBX3     01072009 AMI  00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: FACP 0x00000000CA6F9358 00010C (v05 DELL   CBX3     01072009 AMI  00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: DSDT 0x00000000CA6D4228 02512F (v02 DELL   CBX3     01072009 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: FACS 0x00000000CAFECF80 000040
Apr 17 11:27:09 archlinux kernel: ACPI: APIC 0x00000000CA6F9468 000084 (v03 DELL   CBX3     01072009 AMI  00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: FPDT 0x00000000CA6F94F0 000044 (v01 DELL   CBX3     01072009 AMI  00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: FIDT 0x00000000CA6F9538 00009C (v01 DELL   CBX3     01072009 AMI  00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: MCFG 0x00000000CA6F95D8 00003C (v01 DELL   CBX3     01072009 MSFT 00000097)
Apr 17 11:27:09 archlinux kernel: ACPI: HPET 0x00000000CA6F9618 000038 (v01 DELL   CBX3     01072009 AMI. 0005000B)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6F9650 000572 (v01 SataRe SataTabl 00001000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6F9BC8 0012DC (v02 SaSsdt SaSsdt   00003000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6FAEA8 002A66 (v02 PegSsd PegSsdt  00001000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: HPET 0x00000000CA6FD910 000038 (v01 INTEL  KBL      00000001 MSFT 0000005F)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6FD948 000CE8 (v02 INTEL  xh_rvp11 00000000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: UEFI 0x00000000CA6FE630 000042 (v01                 00000000      00000000)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6FE678 000EDE (v02 CpuRef CpuSsdt  00003000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: LPIT 0x00000000CA6FF558 000094 (v01 INTEL  KBL      00000000 MSFT 0000005F)
Apr 17 11:27:09 archlinux kernel: ACPI: WSMT 0x00000000CA6FF5F0 000028 (v01 INTEL  KBL      00000000 MSFT 0000005F)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6FF618 00029F (v02 INTEL  sensrhub 00000000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA6FF8B8 003002 (v02 INTEL  PtidDevc 00001000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: DBGP 0x00000000CA7028C0 000034 (v01 INTEL           00000002 MSFT 0000005F)
Apr 17 11:27:09 archlinux kernel: ACPI: DBG2 0x00000000CA7028F8 000054 (v00 INTEL           00000002 MSFT 0000005F)
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0x00000000CA702950 005265 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: MSDM 0x00000000CA707BB8 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: SLIC 0x00000000CA707C10 000176 (v03 DELL   CBX3     01072009 MSFT 00010013)
Apr 17 11:27:09 archlinux kernel: ACPI: DMAR 0x00000000CA707D88 0000F0 (v01 INTEL  KBL      00000001 INTL 00000001)
Apr 17 11:27:09 archlinux kernel: ACPI: ASF! 0x00000000CA707E78 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
Apr 17 11:27:09 archlinux kernel: ACPI: DMI detected: DELL Precision 3520 (force ACPI _REV to 5)
Apr 17 11:27:09 archlinux kernel: ACPI: Local APIC address 0xfee00000
Apr 17 11:27:09 archlinux kernel: No NUMA configuration found
Apr 17 11:27:09 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000052e7fffff]
Apr 17 11:27:09 archlinux kernel: NODE_DATA(0) allocated [mem 0x52e7fc000-0x52e7fffff]
Apr 17 11:27:09 archlinux kernel: Zone ranges:
Apr 17 11:27:09 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Apr 17 11:27:09 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Apr 17 11:27:09 archlinux kernel:   Normal   [mem 0x0000000100000000-0x000000052e7fffff]
Apr 17 11:27:09 archlinux kernel:   Device   empty
Apr 17 11:27:09 archlinux kernel: Movable zone start for each node
Apr 17 11:27:09 archlinux kernel: Early memory node ranges
Apr 17 11:27:09 archlinux kernel:   node   0: [mem 0x0000000000001000-0x000000000008ffff]
Apr 17 11:27:09 archlinux kernel:   node   0: [mem 0x0000000000100000-0x00000000ba645fff]
Apr 17 11:27:09 archlinux kernel:   node   0: [mem 0x0000000100000000-0x000000052e7fffff]
Apr 17 11:27:09 archlinux kernel: Reserved but unavailable: 113 pages
Apr 17 11:27:09 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000052e7fffff]
Apr 17 11:27:09 archlinux kernel: On node 0 totalpages: 5148117
Apr 17 11:27:09 archlinux kernel:   DMA zone: 64 pages used for memmap
Apr 17 11:27:09 archlinux kernel:   DMA zone: 21 pages reserved
Apr 17 11:27:09 archlinux kernel:   DMA zone: 3983 pages, LIFO batch:0
Apr 17 11:27:09 archlinux kernel:   DMA32 zone: 11866 pages used for memmap
Apr 17 11:27:09 archlinux kernel:   DMA32 zone: 759366 pages, LIFO batch:63
Apr 17 11:27:09 archlinux kernel:   Normal zone: 68512 pages used for memmap
Apr 17 11:27:09 archlinux kernel:   Normal zone: 4384768 pages, LIFO batch:63
Apr 17 11:27:09 archlinux kernel: Reserving Intel graphics memory at [mem 0xcd800000-0xcf7fffff]
Apr 17 11:27:09 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
Apr 17 11:27:09 archlinux kernel: ACPI: Local APIC address 0xfee00000
Apr 17 11:27:09 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Apr 17 11:27:09 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Apr 17 11:27:09 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Apr 17 11:27:09 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Apr 17 11:27:09 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Apr 17 11:27:09 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Apr 17 11:27:09 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Apr 17 11:27:09 archlinux kernel: ACPI: IRQ0 used by override.
Apr 17 11:27:09 archlinux kernel: ACPI: IRQ9 used by override.
Apr 17 11:27:09 archlinux kernel: Using ACPI (MADT) for SMP configuration information
Apr 17 11:27:09 archlinux kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Apr 17 11:27:09 archlinux kernel: [Firmware Bug]: TSC_DEADLINE disabled due to Errata; please update microcode to version: 0x52 (or later)
Apr 17 11:27:09 archlinux kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0x00090000-0x00090fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0x00091000-0x0009ffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xba646000-0xba646fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xba647000-0xca6b0fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xca6b1000-0xca708fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xca709000-0xcaff3fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xcaff4000-0xcb5fffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xcb600000-0xcd7fffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xcd800000-0xcf7fffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xcf800000-0xefffffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfdffffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Apr 17 11:27:09 archlinux kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Apr 17 11:27:09 archlinux kernel: [mem 0xcf800000-0xefffffff] available for PCI devices
Apr 17 11:27:09 archlinux kernel: Booting paravirtualized kernel on bare hardware
Apr 17 11:27:09 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Apr 17 11:27:09 archlinux kernel: random: get_random_bytes called from start_kernel+0x95/0x530 with crng_init=0
Apr 17 11:27:09 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:4 nr_node_ids:1
Apr 17 11:27:09 archlinux kernel: percpu: Embedded 45 pages/cpu @(____ptrval____) s147456 r8192 d28672 u524288
Apr 17 11:27:09 archlinux kernel: pcpu-alloc: s147456 r8192 d28672 u524288 alloc=1*2097152
Apr 17 11:27:09 archlinux kernel: pcpu-alloc: [0] 0 1 2 3 
Apr 17 11:27:09 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 5067654
Apr 17 11:27:09 archlinux kernel: Policy zone: Normal
Apr 17 11:27:09 archlinux kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=3116253c-2640-48f9-bd48-0dd4a529f04b rw quiet
Apr 17 11:27:09 archlinux kernel: Calgary: detecting Calgary via BIOS EBDA area
Apr 17 11:27:09 archlinux kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Apr 17 11:27:09 archlinux kernel: Memory: 20156480K/20592468K available (12300K kernel code, 1363K rwdata, 3640K rodata, 1580K init, 3868K bss, 435988K reserved, 0K cma-reserved)
Apr 17 11:27:09 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Apr 17 11:27:09 archlinux kernel: Kernel/User page tables isolation: enabled
Apr 17 11:27:09 archlinux kernel: ftrace: allocating 35465 entries in 139 pages
Apr 17 11:27:09 archlinux kernel: rcu: Hierarchical RCU implementation.
Apr 17 11:27:09 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Apr 17 11:27:09 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Apr 17 11:27:09 archlinux kernel: NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
Apr 17 11:27:09 archlinux kernel: spurious 8259A interrupt: IRQ7.
Apr 17 11:27:09 archlinux kernel: Console: colour dummy device 80x25
Apr 17 11:27:09 archlinux kernel: console [tty0] enabled
Apr 17 11:27:09 archlinux kernel: ACPI: Core revision 20180810
Apr 17 11:27:09 archlinux kernel: ACPI: Overriding _REV return value to 5
Apr 17 11:27:09 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Apr 17 11:27:09 archlinux kernel: hpet clockevent registered
Apr 17 11:27:09 archlinux kernel: APIC: Switch to symmetric I/O mode setup
Apr 17 11:27:09 archlinux kernel: DMAR: Host address width 39
Apr 17 11:27:09 archlinux kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Apr 17 11:27:09 archlinux kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
Apr 17 11:27:09 archlinux kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Apr 17 11:27:09 archlinux kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Apr 17 11:27:09 archlinux kernel: DMAR: RMRR base: 0x000000ca402000 end: 0x000000ca421fff
Apr 17 11:27:09 archlinux kernel: DMAR: RMRR base: 0x000000cd000000 end: 0x000000cf7fffff
Apr 17 11:27:09 archlinux kernel: DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
Apr 17 11:27:09 archlinux kernel: DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
Apr 17 11:27:09 archlinux kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Apr 17 11:27:09 archlinux kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Apr 17 11:27:09 archlinux kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Apr 17 11:27:09 archlinux kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Apr 17 11:27:09 archlinux kernel: x2apic enabled
Apr 17 11:27:09 archlinux kernel: Switched APIC routing to cluster x2apic.
Apr 17 11:27:09 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Apr 17 11:27:09 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2879c5f06f2, max_idle_ns: 440795220049 ns
Apr 17 11:27:09 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5616.00 BogoMIPS (lpj=28080000)
Apr 17 11:27:09 archlinux kernel: pid_max: default: 32768 minimum: 301
Apr 17 11:27:09 archlinux kernel: Security Framework initialized
Apr 17 11:27:09 archlinux kernel: Yama: becoming mindful.
Apr 17 11:27:09 archlinux kernel: AppArmor: AppArmor disabled by boot time parameter
Apr 17 11:27:09 archlinux kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
Apr 17 11:27:09 archlinux kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Apr 17 11:27:09 archlinux kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
Apr 17 11:27:09 archlinux kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
Apr 17 11:27:09 archlinux kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Apr 17 11:27:09 archlinux kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Apr 17 11:27:09 archlinux kernel: mce: CPU supports 10 MCE banks
Apr 17 11:27:09 archlinux kernel: CPU0: Thermal monitoring enabled (TM1)
Apr 17 11:27:09 archlinux kernel: process: using mwait in idle threads
Apr 17 11:27:09 archlinux kernel: Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
Apr 17 11:27:09 archlinux kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Apr 17 11:27:09 archlinux kernel: Spectre V2 : Mitigation: Full generic retpoline
Apr 17 11:27:09 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Apr 17 11:27:09 archlinux kernel: Speculative Store Bypass: Vulnerable
Apr 17 11:27:09 archlinux kernel: Freeing SMP alternatives memory: 32K
Apr 17 11:27:09 archlinux kernel: smpboot: CPU0: Intel(R) Core(TM) i5-7440HQ CPU @ 2.80GHz (family: 0x6, model: 0x9e, stepping: 0x9)
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: Machine check events logged
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 6: ee0000000040110a
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: TSC 0 ADDR fef1cf00 MISC 3880008086 
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: PROCESSOR 0:906e9 TIME 1555514827 SOCKET 0 APIC 0 microcode 48
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: Machine check events logged
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 7: ee0000000040110a
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: TSC 0 ADDR fef200c0 MISC 3880008086 
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: PROCESSOR 0:906e9 TIME 1555514827 SOCKET 0 APIC 0 microcode 48
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 8: ee0000000040110a
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: TSC 0 ADDR fef1ff40 MISC 7880008086 
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: PROCESSOR 0:906e9 TIME 1555514827 SOCKET 0 APIC 0 microcode 48
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: CPU 0: Machine Check: 0 Bank 9: ee0000000040110a
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: TSC 0 ADDR fef1cec0 MISC 43880008086 
Apr 17 11:27:09 archlinux kernel: mce: [Hardware Error]: PROCESSOR 0:906e9 TIME 1555514827 SOCKET 0 APIC 0 microcode 48
Apr 17 11:27:09 archlinux kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Apr 17 11:27:09 archlinux kernel: ... version:                4
Apr 17 11:27:09 archlinux kernel: ... bit width:              48
Apr 17 11:27:09 archlinux kernel: ... generic registers:      8
Apr 17 11:27:09 archlinux kernel: ... value mask:             0000ffffffffffff
Apr 17 11:27:09 archlinux kernel: ... max period:             00007fffffffffff
Apr 17 11:27:09 archlinux kernel: ... fixed-purpose events:   3
Apr 17 11:27:09 archlinux kernel: ... event mask:             00000007000000ff
Apr 17 11:27:09 archlinux kernel: rcu: Hierarchical SRCU implementation.
Apr 17 11:27:09 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Apr 17 11:27:09 archlinux kernel: smp: Bringing up secondary CPUs ...
Apr 17 11:27:09 archlinux kernel: x86: Booting SMP configuration:
Apr 17 11:27:09 archlinux kernel: .... node  #0, CPUs:      #1 #2 #3
Apr 17 11:27:09 archlinux kernel: smp: Brought up 1 node, 4 CPUs
Apr 17 11:27:09 archlinux kernel: smpboot: Max logical packages: 1
Apr 17 11:27:09 archlinux kernel: smpboot: Total of 4 processors activated (22464.00 BogoMIPS)
Apr 17 11:27:09 archlinux kernel: devtmpfs: initialized
Apr 17 11:27:09 archlinux kernel: x86/mm: Memory block size: 128MB
Apr 17 11:27:09 archlinux kernel: PM: Registering ACPI NVS region [mem 0xba646000-0xba646fff] (4096 bytes)
Apr 17 11:27:09 archlinux kernel: PM: Registering ACPI NVS region [mem 0xca709000-0xcaff3fff] (9351168 bytes)
Apr 17 11:27:09 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Apr 17 11:27:09 archlinux kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
Apr 17 11:27:09 archlinux kernel: pinctrl core: initialized pinctrl subsystem
Apr 17 11:27:09 archlinux kernel: RTC time: 15:27:07, date: 04/17/19
Apr 17 11:27:09 archlinux kernel: NET: Registered protocol family 16
Apr 17 11:27:09 archlinux kernel: audit: initializing netlink subsys (disabled)
Apr 17 11:27:09 archlinux kernel: audit: type=2000 audit(1555514827.070:1): state=initialized audit_enabled=0 res=1
Apr 17 11:27:09 archlinux kernel: cpuidle: using governor ladder
Apr 17 11:27:09 archlinux kernel: cpuidle: using governor menu
Apr 17 11:27:09 archlinux kernel: KVM setup pv remote TLB flush
Apr 17 11:27:09 archlinux kernel: ACPI: bus type PCI registered
Apr 17 11:27:09 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Apr 17 11:27:09 archlinux kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
Apr 17 11:27:09 archlinux kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
Apr 17 11:27:09 archlinux kernel: PCI: Using configuration type 1 for base access
Apr 17 11:27:09 archlinux kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Apr 17 11:27:09 archlinux kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Apr 17 11:27:09 archlinux kernel: fbcon: Taking over console
Apr 17 11:27:09 archlinux kernel: ACPI: Added _OSI(Module Device)
Apr 17 11:27:09 archlinux kernel: ACPI: Added _OSI(Processor Device)
Apr 17 11:27:09 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Apr 17 11:27:09 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
Apr 17 11:27:09 archlinux kernel: ACPI: Added _OSI(Linux-Dell-Video)
Apr 17 11:27:09 archlinux kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Apr 17 11:27:09 archlinux kernel: ACPI: 9 ACPI AML tables successfully acquired and loaded
Apr 17 11:27:09 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Apr 17 11:27:09 archlinux kernel: ACPI: Dynamic OEM Table Load:
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0xFFFF9CAC5654E800 000651 (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
Apr 17 11:27:09 archlinux kernel: ACPI: Dynamic OEM Table Load:
Apr 17 11:27:09 archlinux kernel: ACPI: SSDT 0xFFFF9CAC56AC5800 00065C (v02 PmRef  ApIst    00003000 INTL 20160422)
Apr 17 11:27:09 archlinux kernel: ACPI: EC: EC started
Apr 17 11:27:09 archlinux kernel: ACPI: EC: interrupt blocked
Apr 17 11:27:09 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Used as first EC
Apr 17 11:27:09 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: GPE=0x6e, EC_CMD/EC_SC=0x934, EC_DATA=0x930
Apr 17 11:27:09 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Used as boot DSDT EC to handle transactions
Apr 17 11:27:09 archlinux kernel: ACPI: Interpreter enabled
Apr 17 11:27:09 archlinux kernel: ACPI: (supports S0 S3 S4 S5)
Apr 17 11:27:09 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
Apr 17 11:27:09 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Apr 17 11:27:09 archlinux kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [PG00] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [PG01] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [PG02] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: Power Resource [WRST] (on)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
Apr 17 11:27:09 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Apr 17 11:27:09 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
Apr 17 11:27:09 archlinux kernel: PCI host bridge to bus 0000:00
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xcf800000-0xefffffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:00.0: [8086:5910] type 00 class 0x060000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: [8086:591b] type 00 class 0x030000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: reg 0x10: [mem 0xee000000-0xeeffffff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:04.0: reg 0x10: [mem 0xef240000-0xef247fff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
Apr 17 11:27:09 archlinux kernel: pci 0000:00:14.0: reg 0x10: [mem 0xef230000-0xef23ffff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:14.2: reg 0x10: [mem 0xef258000-0xef258fff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:15.0: [8086:a160] type 00 class 0x118000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:15.0: reg 0x10: [mem 0xef257000-0xef257fff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:15.1: [8086:a161] type 00 class 0x118000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:15.1: reg 0x10: [mem 0xef256000-0xef256fff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:16.0: reg 0x10: [mem 0xef255000-0xef255fff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: [8086:2822] type 00 class 0x010400
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: reg 0x10: [mem 0xef250000-0xef251fff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: reg 0x14: [mem 0xef254000-0xef2540ff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: reg 0x18: [io  0xf090-0xf097]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: reg 0x1c: [io  0xf080-0xf083]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: reg 0x20: [io  0xf060-0xf07f]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: reg 0x24: [mem 0xef253000-0xef2537ff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:17.0: PME# supported from D3hot
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.0: [8086:a111] type 01 class 0x060400
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: [8086:a114] type 01 class 0x060400
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.0: [8086:a154] type 00 class 0x060100
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xef24c000-0xef24ffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.3: [8086:a171] type 00 class 0x040300
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xef248000-0xef24bfff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xef220000-0xef22ffff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xef252000-0xef2520ff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.6: [8086:15e3] type 00 class 0x020000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xef200000-0xef21ffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:01:00.0: [8086:24fd] type 00 class 0x028000
Apr 17 11:27:09 archlinux kernel: pci 0000:01:00.0: reg 0x10: [mem 0xef100000-0xef101fff 64bit]
Apr 17 11:27:09 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xef100000-0xef1fffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:02:00.0: [10ec:525a] type 00 class 0xff0000
Apr 17 11:27:09 archlinux kernel: pci 0000:02:00.0: reg 0x14: [mem 0xef000000-0xef000fff]
Apr 17 11:27:09 archlinux kernel: pci 0000:02:00.0: supports D1 D2
Apr 17 11:27:09 archlinux kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.2: PCI bridge to [bus 02]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.2:   bridge window [mem 0xef000000-0xef0fffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 17 11:27:09 archlinux kernel: ACPI: EC: interrupt unblocked
Apr 17 11:27:09 archlinux kernel: ACPI: EC: event unblocked
Apr 17 11:27:09 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: GPE=0x6e, EC_CMD/EC_SC=0x934, EC_DATA=0x930
Apr 17 11:27:09 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Used as boot DSDT EC to handle transactions and events
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Apr 17 11:27:09 archlinux kernel: vgaarb: loaded
Apr 17 11:27:09 archlinux kernel: ACPI: bus type USB registered
Apr 17 11:27:09 archlinux kernel: usbcore: registered new interface driver usbfs
Apr 17 11:27:09 archlinux kernel: usbcore: registered new interface driver hub
Apr 17 11:27:09 archlinux kernel: usbcore: registered new device driver usb
Apr 17 11:27:09 archlinux kernel: pps_core: LinuxPPS API ver. 1 registered
Apr 17 11:27:09 archlinux kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Apr 17 11:27:09 archlinux kernel: PTP clock support registered
Apr 17 11:27:09 archlinux kernel: EDAC MC: Ver: 3.0.0
Apr 17 11:27:09 archlinux kernel: PCI: Using ACPI for IRQ routing
Apr 17 11:27:09 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
Apr 17 11:27:09 archlinux kernel: e820: reserve RAM buffer [mem 0x00090800-0x0009ffff]
Apr 17 11:27:09 archlinux kernel: e820: reserve RAM buffer [mem 0xba646000-0xbbffffff]
Apr 17 11:27:09 archlinux kernel: e820: reserve RAM buffer [mem 0x52e800000-0x52fffffff]
Apr 17 11:27:09 archlinux kernel: NetLabel: Initializing
Apr 17 11:27:09 archlinux kernel: NetLabel:  domain hash size = 128
Apr 17 11:27:09 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Apr 17 11:27:09 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
Apr 17 11:27:09 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Apr 17 11:27:09 archlinux kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Apr 17 11:27:09 archlinux kernel: clocksource: Switched to clocksource tsc-early
Apr 17 11:27:09 archlinux kernel: VFS: Disk quotas dquot_6.6.0
Apr 17 11:27:09 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Apr 17 11:27:09 archlinux kernel: pnp: PnP ACPI init
Apr 17 11:27:09 archlinux kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:00: [io  0xffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:00: [io  0xffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:00: [io  0xffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:00: [io  0x1800-0x18fe] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Apr 17 11:27:09 archlinux kernel: system 00:03: [io  0x1854-0x1857] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0303 (active)
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xf0000000-0xf7ffffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: [mem 0xeffe0000-0xefffffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: system 00:07: [io  0xff00-0xfffe] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: system 00:08: [mem 0xfdaf0000-0xfdafffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:08: [mem 0xfdae0000-0xfdaeffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:08: [mem 0xfdac0000-0xfdacffff] has been reserved
Apr 17 11:27:09 archlinux kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 17 11:27:09 archlinux kernel: pnp: PnP ACPI: found 9 devices
Apr 17 11:27:09 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: BAR 14: assigned [mem 0xcf800000-0xcf9fffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: BAR 15: assigned [mem 0xcfa00000-0xcfbfffff 64bit pref]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: BAR 13: assigned [io  0x2000-0x2fff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xef100000-0xef1fffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.2: PCI bridge to [bus 02]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.2:   bridge window [mem 0xef000000-0xef0fffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4:   bridge window [io  0x2000-0x2fff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4:   bridge window [mem 0xcf800000-0xcf9fffff]
Apr 17 11:27:09 archlinux kernel: pci 0000:00:1c.4:   bridge window [mem 0xcfa00000-0xcfbfffff 64bit pref]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0xcf800000-0xefffffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xef100000-0xef1fffff]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xef000000-0xef0fffff]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0xcf800000-0xcf9fffff]
Apr 17 11:27:09 archlinux kernel: pci_bus 0000:03: resource 2 [mem 0xcfa00000-0xcfbfffff 64bit pref]
Apr 17 11:27:09 archlinux kernel: NET: Registered protocol family 2
Apr 17 11:27:09 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes)
Apr 17 11:27:09 archlinux kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
Apr 17 11:27:09 archlinux kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Apr 17 11:27:09 archlinux kernel: TCP: Hash tables configured (established 262144 bind 65536)
Apr 17 11:27:09 archlinux kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes)
Apr 17 11:27:09 archlinux kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
Apr 17 11:27:09 archlinux kernel: NET: Registered protocol family 1
Apr 17 11:27:09 archlinux kernel: NET: Registered protocol family 44
Apr 17 11:27:09 archlinux kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Apr 17 11:27:09 archlinux kernel: PCI: CLS 0 bytes, default 64
Apr 17 11:27:09 archlinux kernel: Unpacking initramfs...
Apr 17 11:27:09 archlinux kernel: Freeing initrd memory: 16808K
Apr 17 11:27:09 archlinux kernel: DMAR: ACPI device "device:71" under DMAR at fed91000 as 00:15.0
Apr 17 11:27:09 archlinux kernel: DMAR: ACPI device "device:72" under DMAR at fed91000 as 00:15.1
Apr 17 11:27:09 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Apr 17 11:27:09 archlinux kernel: software IO TLB: mapped [mem 0xb6646000-0xba646000] (64MB)
Apr 17 11:27:09 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2879c5f06f2, max_idle_ns: 440795220049 ns
Apr 17 11:27:09 archlinux kernel: clocksource: Switched to clocksource tsc
Apr 17 11:27:09 archlinux kernel: Scanning for low memory corruption every 60 seconds
Apr 17 11:27:09 archlinux kernel: Initialise system trusted keyrings
Apr 17 11:27:09 archlinux kernel: Key type blacklist registered
Apr 17 11:27:09 archlinux kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
Apr 17 11:27:09 archlinux kernel: zbud: loaded
Apr 17 11:27:09 archlinux kernel: pstore: using zstd compression
Apr 17 11:27:09 archlinux kernel: Key type asymmetric registered
Apr 17 11:27:09 archlinux kernel: Asymmetric key parser 'x509' registered
Apr 17 11:27:09 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
Apr 17 11:27:09 archlinux kernel: io scheduler noop registered
Apr 17 11:27:09 archlinux kernel: io scheduler deadline registered (default)
Apr 17 11:27:09 archlinux kernel: io scheduler cfq registered
Apr 17 11:27:09 archlinux kernel: io scheduler mq-deadline registered (default)
Apr 17 11:27:09 archlinux kernel: io scheduler kyber registered
Apr 17 11:27:09 archlinux kernel: io scheduler bfq registered
Apr 17 11:27:09 archlinux kernel: pcieport 0000:00:1c.0: AER enabled with IRQ 122
Apr 17 11:27:09 archlinux kernel: pcieport 0000:00:1c.2: AER enabled with IRQ 123
Apr 17 11:27:09 archlinux kernel: pcieport 0000:00:1c.4: AER enabled with IRQ 124
Apr 17 11:27:09 archlinux kernel: pcieport 0000:00:1c.0: Signaling PME with IRQ 122
Apr 17 11:27:09 archlinux kernel: pcieport 0000:00:1c.2: Signaling PME with IRQ 123
Apr 17 11:27:09 archlinux kernel: pcieport 0000:00:1c.4: Signaling PME with IRQ 124
Apr 17 11:27:09 archlinux kernel: pciehp 0000:00:1c.4:pcie004: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
Apr 17 11:27:09 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Apr 17 11:27:09 archlinux kernel: vesafb: mode is 1920x1080x32, linelength=7680, pages=0
Apr 17 11:27:09 archlinux kernel: vesafb: scrolling: redraw
Apr 17 11:27:09 archlinux kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Apr 17 11:27:09 archlinux kernel: vesafb: framebuffer at 0xd0000000, mapped to 0x000000002f905bda, using 8128k, total 8128k
Apr 17 11:27:09 archlinux kernel: Console: switching to colour frame buffer device 240x67
Apr 17 11:27:09 archlinux kernel: fb0: VESA VGA frame buffer device
Apr 17 11:27:09 archlinux kernel: intel_idle: MWAIT substates: 0x11142120
Apr 17 11:27:09 archlinux kernel: intel_idle: v0.4.1 model 0x9E
Apr 17 11:27:09 archlinux kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Apr 17 11:27:09 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Apr 17 11:27:09 archlinux kernel: ACPI: Lid Switch [LID0]
Apr 17 11:27:09 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Apr 17 11:27:09 archlinux kernel: ACPI: Power Button [PBTN]
Apr 17 11:27:09 archlinux kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Apr 17 11:27:09 archlinux kernel: ACPI: Sleep Button [SBTN]
Apr 17 11:27:09 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Apr 17 11:27:09 archlinux kernel: ACPI: Power Button [PWRF]
Apr 17 11:27:09 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
Apr 17 11:27:09 archlinux kernel: ACPI: Thermal Zone [THM] (25 C)
Apr 17 11:27:09 archlinux kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Apr 17 11:27:09 archlinux kernel: usbcore: registered new interface driver usbserial_generic
Apr 17 11:27:09 archlinux kernel: usbserial: USB Serial support registered for generic
Apr 17 11:27:09 archlinux kernel: rtc_cmos 00:02: RTC can wake from S4
Apr 17 11:27:09 archlinux kernel: rtc_cmos 00:02: registered as rtc0
Apr 17 11:27:09 archlinux kernel: rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Apr 17 11:27:09 archlinux kernel: intel_pstate: Intel P-state driver initializing
Apr 17 11:27:09 archlinux kernel: intel_pstate: Disabling energy efficiency optimization
Apr 17 11:27:09 archlinux kernel: intel_pstate: HWP enabled
Apr 17 11:27:09 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
Apr 17 11:27:09 archlinux kernel: resource sanity check: requesting [mem 0xfdffe800-0xfe0007ff], which spans more than pnp 00:06 [mem 0xfdb00000-0xfdffffff]
Apr 17 11:27:09 archlinux kernel: caller pmc_core_probe+0x88/0x260 mapping multiple BARs
Apr 17 11:27:09 archlinux kernel: intel_pmc_core:  initialized
Apr 17 11:27:09 archlinux kernel: NET: Registered protocol family 10
Apr 17 11:27:09 archlinux kernel: Segment Routing with IPv6
Apr 17 11:27:09 archlinux kernel: NET: Registered protocol family 17
Apr 17 11:27:09 archlinux kernel: RAS: Correctable Errors collector initialized.
Apr 17 11:27:09 archlinux kernel: microcode: sig=0x906e9, pf=0x20, revision=0x48
Apr 17 11:27:09 archlinux kernel: microcode: Microcode Update Driver: v2.2.
Apr 17 11:27:09 archlinux kernel: sched_clock: Marking stable (1140884179, -9501633)->(1256509267, -125126721)
Apr 17 11:27:09 archlinux kernel: registered taskstats version 1
Apr 17 11:27:09 archlinux kernel: Loading compiled-in X.509 certificates
Apr 17 11:27:09 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: a7a5b03461a2dce2343a4d0633619ef7fd165aaf'
Apr 17 11:27:09 archlinux kernel: zswap: loaded using pool lzo/zbud
Apr 17 11:27:09 archlinux kernel: Key type big_key registered
Apr 17 11:27:09 archlinux kernel:   Magic number: 15:780:487
Apr 17 11:27:09 archlinux kernel: rtc_cmos 00:02: setting system clock to 2019-04-17 15:27:08 UTC (1555514828)
Apr 17 11:27:09 archlinux kernel: Freeing unused decrypted memory: 2040K
Apr 17 11:27:09 archlinux kernel: Freeing unused kernel image memory: 1580K
Apr 17 11:27:09 archlinux kernel: Write protecting the kernel read-only data: 18432k
Apr 17 11:27:09 archlinux kernel: Freeing unused kernel image memory: 2008K
Apr 17 11:27:09 archlinux kernel: Freeing unused kernel image memory: 456K
Apr 17 11:27:09 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Apr 17 11:27:09 archlinux kernel: x86/mm: Checking user space page tables
Apr 17 11:27:09 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Apr 17 11:27:09 archlinux kernel: Run /init as init process
Apr 17 11:27:09 archlinux systemd[1]: systemd 241.67-1-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)
Apr 17 11:27:09 archlinux systemd[1]: Detected architecture x86-64.
Apr 17 11:27:09 archlinux systemd[1]: Running in initial RAM disk.
Apr 17 11:27:09 archlinux systemd[1]: No hostname configured.
Apr 17 11:27:09 archlinux systemd[1]: Set hostname to <archlinux>.
Apr 17 11:27:09 archlinux systemd[1]: Initializing machine ID from random generator.
Apr 17 11:27:09 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
Apr 17 11:27:09 archlinux systemd[1]: Listening on udev Kernel Socket.
Apr 17 11:27:09 archlinux systemd[1]: Reached target Swap.
Apr 17 11:27:09 archlinux systemd[1]: Listening on udev Control Socket.
Apr 17 11:27:09 archlinux kernel: audit: type=1130 audit(1555514829.049:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:09 archlinux systemd-journald[130]: Journal started
Apr 17 11:27:09 archlinux systemd-journald[130]: Runtime journal (/run/log/journal/e1edc2e024054728a4acc51fa073e1d3) is 8.0M, max 985.3M, 977.3M free.
Apr 17 11:27:09 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:09 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:09 archlinux kernel: audit: type=1130 audit(1555514829.059:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:09 archlinux kernel: audit: type=1130 audit(1555514829.079:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:09 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Apr 17 11:27:09 archlinux kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Apr 17 11:27:09 archlinux kernel: i8042: Warning: Keylock active
Apr 17 11:27:09 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Apr 17 11:27:09 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:09 archlinux systemd[1]: Started udev Coldplug all Devices.
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Apr 17 11:27:09 archlinux kernel: SCSI subsystem initialized
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000001109810
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Apr 17 11:27:09 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
Apr 17 11:27:09 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 17 11:27:09 archlinux kernel: usb usb1: Product: xHCI Host Controller
Apr 17 11:27:09 archlinux kernel: usb usb1: Manufacturer: Linux 4.19.29-1-lts xhci-hcd
Apr 17 11:27:09 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
Apr 17 11:27:09 archlinux kernel: hub 1-0:1.0: USB hub found
Apr 17 11:27:09 archlinux kernel: hub 1-0:1.0: 16 ports detected
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Apr 17 11:27:09 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0  SuperSpeed
Apr 17 11:27:09 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.19
Apr 17 11:27:09 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 17 11:27:09 archlinux kernel: usb usb2: Product: xHCI Host Controller
Apr 17 11:27:09 archlinux kernel: usb usb2: Manufacturer: Linux 4.19.29-1-lts xhci-hcd
Apr 17 11:27:09 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
Apr 17 11:27:09 archlinux kernel: hub 2-0:1.0: USB hub found
Apr 17 11:27:09 archlinux kernel: hub 2-0:1.0: 10 ports detected
Apr 17 11:27:09 archlinux kernel: usb: port power management may be unreliable
Apr 17 11:27:09 archlinux kernel: libata version 3.00 loaded.
Apr 17 11:27:09 archlinux kernel: ahci 0000:00:17.0: version 3.0
Apr 17 11:27:09 archlinux kernel: ahci 0000:00:17.0: controller can't do SNTF, turning off CAP_SNTF
Apr 17 11:27:09 archlinux kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x4 impl RAID mode
Apr 17 11:27:09 archlinux kernel: ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part ems deso sadm sds apst 
Apr 17 11:27:09 archlinux kernel: scsi host0: ahci
Apr 17 11:27:09 archlinux kernel: scsi host1: ahci
Apr 17 11:27:09 archlinux kernel: scsi host2: ahci
Apr 17 11:27:09 archlinux kernel: ata1: DUMMY
Apr 17 11:27:09 archlinux kernel: ata2: DUMMY
Apr 17 11:27:09 archlinux kernel: ata3: SATA max UDMA/133 abar m2048@0xef253000 port 0xef253200 irq 127
Apr 17 11:27:09 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
Apr 17 11:27:09 archlinux kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
Apr 17 11:27:09 archlinux kernel: usb 1-3: new full-speed USB device number 2 using xhci_hcd
Apr 17 11:27:09 archlinux kernel: ata3.00: ATA-8: TOSHIBA MQ01ACF050, AV002D, max UDMA/100
Apr 17 11:27:09 archlinux kernel: ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
Apr 17 11:27:09 archlinux kernel: ata3.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
Apr 17 11:27:09 archlinux kernel: ata3.00: configured for UDMA/100
Apr 17 11:27:09 archlinux kernel: scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA MQ01ACF0 2D   PQ: 0 ANSI: 5
Apr 17 11:27:09 archlinux kernel: sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Apr 17 11:27:09 archlinux kernel: sd 2:0:0:0: [sda] 4096-byte physical blocks
Apr 17 11:27:09 archlinux kernel: sd 2:0:0:0: [sda] Write Protect is off
Apr 17 11:27:09 archlinux kernel: sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
Apr 17 11:27:09 archlinux kernel: sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Apr 17 11:27:09 archlinux kernel:  sda: sda3 sda4
Apr 17 11:27:09 archlinux kernel: sd 2:0:0:0: [sda] Attached SCSI disk
Apr 17 11:27:09 archlinux kernel: usb 1-3: New USB device found, idVendor=2717, idProduct=5001, bcdDevice= 1.00
Apr 17 11:27:09 archlinux kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Apr 17 11:27:09 archlinux kernel: usb 1-3: Product: MI wireless mouse
Apr 17 11:27:09 archlinux kernel: usb 1-3: Manufacturer: GTech
Apr 17 11:27:09 archlinux kernel: hidraw: raw HID events driver (C) Jiri Kosina
Apr 17 11:27:09 archlinux kernel: usbcore: registered new interface driver usbhid
Apr 17 11:27:09 archlinux kernel: usbhid: USB HID core driver
Apr 17 11:27:09 archlinux kernel: input: GTech MI wireless mouse Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input5
Apr 17 11:27:09 archlinux kernel: input: GTech MI wireless mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input6
Apr 17 11:27:09 archlinux kernel: input: GTech MI wireless mouse Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input7
Apr 17 11:27:09 archlinux kernel: input: GTech MI wireless mouse System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input8
Apr 17 11:27:09 archlinux kernel: hid-generic 0003:2717:5001.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [GTech MI wireless mouse] on usb-0000:00:14.0-3/input0
Apr 17 11:27:09 archlinux kernel: usb 1-6: new full-speed USB device number 3 using xhci_hcd
Apr 17 11:27:10 archlinux kernel: usb 1-6: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
Apr 17 11:27:10 archlinux kernel: usb 1-6: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Apr 17 11:27:10 archlinux systemd[1]: Found device TOSHIBA_MQ01ACF050 SYSTEM.
Apr 17 11:27:10 archlinux systemd[1]: Reached target Initrd Root Device.
Apr 17 11:27:10 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/3116253c-2640-48f9-bd48-0dd4a529f04b...
Apr 17 11:27:10 archlinux systemd-fsck[191]: SYSTEM: clean, 404237/6099296 files, 4979405/24419328 blocks
Apr 17 11:27:10 archlinux systemd[1]: Started File System Check on /dev/disk/by-uuid/3116253c-2640-48f9-bd48-0dd4a529f04b.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: Mounting /sysroot...
Apr 17 11:27:10 archlinux kernel: audit: type=1130 audit(1555514830.129:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux kernel: random: fast init done
Apr 17 11:27:10 archlinux kernel: usb 1-11: new high-speed USB device number 4 using xhci_hcd
Apr 17 11:27:10 archlinux systemd[1]: Mounted /sysroot.
Apr 17 11:27:10 archlinux systemd[1]: Reached target Initrd Root File System.
Apr 17 11:27:10 archlinux systemd[1]: Starting Reload Configuration from the Real Root...
Apr 17 11:27:10 archlinux systemd[1]: Reached target Local File Systems.
Apr 17 11:27:10 archlinux systemd[1]: Reached target System Initialization.
Apr 17 11:27:10 archlinux systemd[1]: Reached target Basic System.
Apr 17 11:27:10 archlinux kernel: EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
Apr 17 11:27:10 archlinux systemd[1]: Reloading.
Apr 17 11:27:10 archlinux systemd[1]: initrd-parse-etc.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Started Reload Configuration from the Real Root.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: Reached target Initrd File Systems.
Apr 17 11:27:10 archlinux systemd[1]: Reached target Initrd Default Target.
Apr 17 11:27:10 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Apr 17 11:27:10 archlinux kernel: audit: type=1130 audit(1555514830.309:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux kernel: audit: type=1131 audit(1555514830.309:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-parse-etc comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Initrd Default Target.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Initrd Root Device.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Timers.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Basic System.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Slices.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Sockets.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target System Initialization.
Apr 17 11:27:10 archlinux systemd[1]: systemd-udev-trigger.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Stopped udev Coldplug all Devices.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: systemd-modules-load.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Stopped Load Kernel Modules.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Swap.
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Local File Systems.
Apr 17 11:27:10 archlinux systemd[1]: Stopping udev Kernel Device Manager...
Apr 17 11:27:10 archlinux systemd[1]: Stopped target Paths.
Apr 17 11:27:10 archlinux systemd[1]: initrd-cleanup.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Started Cleaning Up and Shutting Down Daemons.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux kernel: audit: type=1131 audit(1555514830.319:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux kernel: audit: type=1131 audit(1555514830.319:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux kernel: audit: type=1130 audit(1555514830.319:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-cleanup comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux kernel: usb 1-11: New USB device found, idVendor=1bcf, idProduct=2b96, bcdDevice=68.25
Apr 17 11:27:10 archlinux kernel: usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Apr 17 11:27:10 archlinux kernel: usb 1-11: Product: Integrated_Webcam_HD
Apr 17 11:27:10 archlinux kernel: usb 1-11: Manufacturer: CNFGH19N0420178A3082
Apr 17 11:27:10 archlinux systemd[1]: systemd-udevd.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Stopped udev Kernel Device Manager.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: kmod-static-nodes.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Stopped Create list of required static device nodes for the current kernel.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: systemd-udevd-kernel.socket: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Closed udev Kernel Socket.
Apr 17 11:27:10 archlinux systemd[1]: systemd-udevd-control.socket: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Closed udev Control Socket.
Apr 17 11:27:10 archlinux systemd[1]: Starting Cleanup udevd DB...
Apr 17 11:27:10 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Succeeded.
Apr 17 11:27:10 archlinux systemd[1]: Started Cleanup udevd DB.
Apr 17 11:27:10 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/init" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:10 archlinux systemd[1]: Reached target Switch Root.
Apr 17 11:27:10 archlinux systemd[1]: Starting Switch Root...
Apr 17 11:27:10 archlinux systemd[1]: Switching root.
Apr 17 11:27:10 archlinux systemd-journald[130]: Journal stopped
Apr 17 11:27:12 Arch systemd-journald[130]: Received SIGTERM from PID 1 (systemd).
Apr 17 11:27:12 Arch kernel: systemd: 17 output lines suppressed due to ratelimiting
Apr 17 11:27:12 Arch systemd[1]: systemd 241.67-1-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)
Apr 17 11:27:12 Arch systemd[1]: Detected architecture x86-64.
Apr 17 11:27:12 Arch systemd[1]: Set hostname to <btwIuseArch>.
Apr 17 11:27:12 Arch kernel: kauditd_printk_skb: 6 callbacks suppressed
Apr 17 11:27:12 Arch kernel: audit: type=1131 audit(1555514832.789:17): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch systemd[1]: initrd-switch-root.service: Succeeded.
Apr 17 11:27:12 Arch systemd[1]: Stopped Switch Root.
Apr 17 11:27:12 Arch kernel: audit: type=1130 audit(1555514832.789:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch kernel: audit: type=1131 audit(1555514832.789:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
Apr 17 11:27:12 Arch systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Apr 17 11:27:12 Arch systemd[1]: Stopped Journal Service.
Apr 17 11:27:12 Arch kernel: audit: type=1130 audit(1555514832.789:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch kernel: audit: type=1131 audit(1555514832.789:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch systemd[1]: Starting Journal Service...
Apr 17 11:27:12 Arch systemd[1]: Mounting Huge Pages File System...
Apr 17 11:27:12 Arch kernel: audit: type=1130 audit(1555514832.909:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch kernel: audit: type=1305 audit(1555514832.929:23): audit_enabled=1 old=1 auid=4294967295 ses=4294967295 res=1
Apr 17 11:27:12 Arch systemd-journald[232]: Journal started
Apr 17 11:27:12 Arch systemd-journald[232]: Runtime journal (/run/log/journal/07608845bacf44909471570155d0a92e) is 8.0M, max 985.3M, 977.3M free.
Apr 17 11:27:12 Arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch 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'
Apr 17 11:27:12 Arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:12 Arch audit: CONFIG_CHANGE audit_enabled=1 old=1 auid=4294967295 ses=4294967295 res=1
Apr 17 11:27:12 Arch 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'
Apr 17 11:27:12 Arch systemd[1]: systemd-journald.service: Succeeded.
Apr 17 11:27:12 Arch kernel: audit: type=1130 audit(1555514832.929:24): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch systemd-modules-load[241]: Inserted module 'crypto_user'
Apr 17 11:27:13 Arch systemd[1]: Mounted Huge Pages File System.
Apr 17 11:27:13 Arch systemd[1]: Started Remount Root and Kernel File Systems.
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch systemd[1]: Mounted Kernel Debug File System.
Apr 17 11:27:13 Arch systemd[1]: Mounted Arbitrary Executable File Formats File System.
Apr 17 11:27:13 Arch systemd[1]: Starting Flush Journal to Persistent Storage...
Apr 17 11:27:13 Arch systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Apr 17 11:27:13 Arch systemd[1]: Starting Load/Save Random Seed...
Apr 17 11:27:13 Arch systemd[1]: Condition check resulted in Create System Users being skipped.
Apr 17 11:27:13 Arch systemd[1]: Starting Create Static Device Nodes in /dev...
Apr 17 11:27:13 Arch kernel: EXT4-fs (sda4): re-mounted. Opts: stripe=8191
Apr 17 11:27:13 Arch kernel: audit: type=1130 audit(1555514833.019:25): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch kernel: random: systemd-random-: uninitialized urandom read (512 bytes read)
Apr 17 11:27:13 Arch systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Apr 17 11:27:13 Arch systemd[1]: Mounted POSIX Message Queue File System.
Apr 17 11:27:13 Arch systemd[1]: Mounted Temporary Directory (/tmp).
Apr 17 11:27:13 Arch systemd[1]: Started Set Up Additional Binary Formats.
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch systemd[1]: Started Load/Save Random Seed.
Apr 17 11:27:13 Arch kernel: audit: type=1130 audit(1555514833.099:26): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch systemd[1]: Started udev Coldplug all Devices.
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch systemd-journald[232]: Time spent on flushing to /var is 3.743577s for 817 entries.
Apr 17 11:27:13 Arch systemd-journald[232]: System journal (/var/log/journal/07608845bacf44909471570155d0a92e) is 1.0G, max 4.0G, 2.9G free.
Apr 17 11:27:19 Arch kernel: random: lvm: uninitialized urandom read (4 bytes read)
Apr 17 11:27:19 Arch kernel: vboxdrv: loading out-of-tree module taints kernel.
Apr 17 11:27:19 Arch kernel: vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
Apr 17 11:27:19 Arch kernel: vboxdrv: Found 4 processor cores
Apr 17 11:27:19 Arch kernel: vboxdrv: TSC mode is Invariant, tentative frequency 2807999975 Hz
Apr 17 11:27:19 Arch kernel: vboxdrv: Successfully loaded version 6.0.4 (interface 0x00290008)
Apr 17 11:27:19 Arch kernel: VBoxPciLinuxInit
Apr 17 11:27:19 Arch kernel: vboxpci: IOMMU not found (not registered)
Apr 17 11:27:19 Arch kernel: VBoxNetAdp: Successfully started.
Apr 17 11:27:19 Arch kernel: VBoxNetFlt: Successfully started.
Apr 17 11:27:19 Arch kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
Apr 17 11:27:19 Arch kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Apr 17 11:27:19 Arch kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Apr 17 11:27:19 Arch kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Apr 17 11:27:19 Arch kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Apr 17 11:27:19 Arch kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Apr 17 11:27:19 Arch kernel: cryptd: max_cpu_qlen set to 1000
Apr 17 11:27:19 Arch kernel: wmi_bus wmi_bus-PNP0C14:01: WQBC data block query control method not found
Apr 17 11:27:19 Arch kernel: e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
Apr 17 11:27:19 Arch kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Apr 17 11:27:19 Arch kernel: e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Apr 17 11:27:19 Arch kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Apr 17 11:27:19 Arch kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Apr 17 11:27:19 Arch kernel: AVX2 version of gcm_enc/dec engaged.
Apr 17 11:27:19 Arch kernel: AES CTR mode by8 optimization enabled
Apr 17 11:27:19 Arch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input10
Apr 17 11:27:19 Arch kernel: input: Intel HID events as /devices/platform/INT33D5:00/input/input11
Apr 17 11:27:19 Arch kernel: intel-hid INT33D5:00: platform supports 5 button array
Apr 17 11:27:19 Arch kernel: input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input12
Apr 17 11:27:19 Arch kernel: ACPI: AC Adapter [AC] (off-line)
Apr 17 11:27:19 Arch kernel: int3403 thermal: probe of INT3403:03 failed with error -22
Apr 17 11:27:19 Arch kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Apr 17 11:27:19 Arch kernel: proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
Apr 17 11:27:19 Arch kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Apr 17 11:27:19 Arch kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Apr 17 11:27:19 Arch kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Apr 17 11:27:19 Arch kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
Apr 17 11:27:19 Arch kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Apr 17 11:27:19 Arch kernel: i2c_hid i2c-DLL07A9:01: i2c-DLL07A9:01 supply vdd not found, using dummy regulator
Apr 17 11:27:19 Arch kernel: i2c_hid i2c-DLL07A9:01: Linked as a consumer to regulator.0
Apr 17 11:27:19 Arch kernel: i2c_hid i2c-DLL07A9:01: i2c-DLL07A9:01 supply vddl not found, using dummy regulator
Apr 17 11:27:19 Arch kernel: Linux agpgart interface v0.103
Apr 17 11:27:19 Arch kernel: iTCO_vendor_support: vendor-support=0
Apr 17 11:27:19 Arch kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Apr 17 11:27:19 Arch kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Apr 17 11:27:19 Arch kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Apr 17 11:27:19 Arch kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
Apr 17 11:27:19 Arch kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input13
Apr 17 11:27:19 Arch kernel: input: DualPoint Stick as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL07A9:01/0018:044E:120B.0002/input/input15
Apr 17 11:27:19 Arch kernel: input: DLL07A9:01 044E:120B as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL07A9:01/0018:044E:120B.0002/input/input14
Apr 17 11:27:19 Arch kernel: hid-alps 0018:044E:120B.0002: input,hidraw1: I2C HID v1.00 Mouse [DLL07A9:01 044E:120B] on i2c-DLL07A9:01
Apr 17 11:27:19 Arch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Apr 17 11:27:19 Arch kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Apr 17 11:27:19 Arch kernel: mousedev: PS/2 mouse device common for all mice
Apr 17 11:27:19 Arch kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Apr 17 11:27:19 Arch kernel: cfg80211: failed to load regulatory.db
Apr 17 11:27:19 Arch kernel: e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
Apr 17 11:27:19 Arch kernel: VFIO - User Level meta-driver version: 0.3
Apr 17 11:27:19 Arch kernel: e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) d4:81:d7:b5:5b:e8
Apr 17 11:27:19 Arch kernel: e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
Apr 17 11:27:19 Arch kernel: e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
Apr 17 11:27:19 Arch kernel: dell_laptop: Using i8042 filter function for receiving events
Apr 17 11:27:19 Arch kernel: e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
Apr 17 11:27:19 Arch kernel: Intel(R) Wireless WiFi driver for Linux
Apr 17 11:27:19 Arch kernel: Copyright(c) 2003- 2015 Intel Corporation
Apr 17 11:27:19 Arch kernel: iwlwifi 0000:01:00.0: loaded firmware version 36.9f0a2d68.0 op_mode iwlmvm
Apr 17 11:27:19 Arch kernel: intel_rapl: Found RAPL domain package
Apr 17 11:27:19 Arch kernel: intel_rapl: Found RAPL domain core
Apr 17 11:27:19 Arch kernel: intel_rapl: Found RAPL domain uncore
Apr 17 11:27:19 Arch kernel: intel_rapl: Found RAPL domain dram
Apr 17 11:27:19 Arch kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
Apr 17 11:27:19 Arch kernel: Bluetooth: Core ver 2.22
Apr 17 11:27:19 Arch kernel: NET: Registered protocol family 31
Apr 17 11:27:19 Arch kernel: Bluetooth: HCI device and connection manager initialized
Apr 17 11:27:19 Arch kernel: Bluetooth: HCI socket layer initialized
Apr 17 11:27:19 Arch kernel: Bluetooth: L2CAP socket layer initialized
Apr 17 11:27:19 Arch kernel: Bluetooth: SCO socket layer initialized
Apr 17 11:27:19 Arch kernel: iwlwifi 0000:01:00.0: base HW address: 00:28:f8:b9:89:8f
Apr 17 11:27:19 Arch kernel: media: Linux media interface: v0.10
Apr 17 11:27:19 Arch kernel: videodev: Linux video capture interface: v2.00
Apr 17 11:27:19 Arch kernel: checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
Apr 17 11:27:19 Arch kernel: fb: switching to inteldrmfb from VESA VGA
Apr 17 11:27:19 Arch kernel: Console: switching to colour dummy device 80x25
Apr 17 11:27:19 Arch kernel: [drm] Replacing VGA console driver
Apr 17 11:27:19 Arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Apr 17 11:27:19 Arch kernel: [drm] Driver supports precise vblank timestamp query.
Apr 17 11:27:19 Arch kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Apr 17 11:27:19 Arch kernel: usbcore: registered new interface driver btusb
Apr 17 11:27:19 Arch kernel: Bluetooth: hci0: Firmware revision 0.1 build 43 week 1 2019
Apr 17 11:27:19 Arch kernel: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
Apr 17 11:27:19 Arch kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Apr 17 11:27:19 Arch kernel: thermal thermal_zone7: failed to read out thermal zone (-61)
Apr 17 11:27:19 Arch kernel: uvcvideo: Found UVC 1.00 device Integrated_Webcam_HD (1bcf:2b96)
Apr 17 11:27:19 Arch kernel: uvcvideo 1-11:1.0: Entity type for entity Extension 4 was not initialized!
Apr 17 11:27:19 Arch kernel: uvcvideo 1-11:1.0: Entity type for entity Extension 3 was not initialized!
Apr 17 11:27:19 Arch kernel: uvcvideo 1-11:1.0: Entity type for entity Processing 2 was not initialized!
Apr 17 11:27:19 Arch kernel: uvcvideo 1-11:1.0: Entity type for entity Camera 1 was not initialized!
Apr 17 11:27:19 Arch kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input16
Apr 17 11:27:19 Arch kernel: usbcore: registered new interface driver uvcvideo
Apr 17 11:27:19 Arch kernel: USB Video Class driver (1.1.1)
Apr 17 11:27:19 Arch kernel: iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
Apr 17 11:27:19 Arch kernel: [drm] Initialized i915 1.6.0 20180719 for 0000:00:02.0 on minor 0
Apr 17 11:27:19 Arch kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Apr 17 11:27:19 Arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input17
Apr 17 11:27:19 Arch kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Apr 17 11:27:19 Arch kernel: fbcon: inteldrmfb (fb0) is primary device
Apr 17 11:27:19 Arch kernel: random: crng init done
Apr 17 11:27:19 Arch kernel: Console: switching to colour frame buffer device 240x67
Apr 17 11:27:19 Arch kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Apr 17 11:27:19 Arch kernel: kauditd_printk_skb: 10 callbacks suppressed
Apr 17 11:27:19 Arch kernel: audit: type=1130 audit(1555514838.339:37): 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'
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3246: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1a
Apr 17 11:27:19 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Apr 17 11:27:19 Arch kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
Apr 17 11:27:19 Arch kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
Apr 17 11:27:19 Arch kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
Apr 17 11:27:19 Arch kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
Apr 17 11:27:19 Arch kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input22
Apr 17 11:27:19 Arch kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input23
Apr 17 11:27:19 Arch kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input24
Apr 17 11:27:19 Arch kernel: audit: type=1130 audit(1555514839.129:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-4fd56903\x2d8293\x2d426a\x2db7ae\x2da37a90a37886 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:19 Arch kernel: audit: type=1130 audit(1555514839.559:39): 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'
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-lvmetad comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:19 Arch kernel: EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: stripe=8191
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:13 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:14 Arch 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'
Apr 17 11:27:15 Arch 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'
Apr 17 11:27:15 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:dell::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:17 Arch 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'
Apr 17 11:27:18 Arch 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'
Apr 17 11:27:19 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-4fd56903\x2d8293\x2d426a\x2db7ae\x2da37a90a37886 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:19 Arch 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'
Apr 17 11:27:15 Arch mtp-probe[367]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11"
Apr 17 11:27:13 Arch systemd[1]: Started LVM2 metadata daemon.
Apr 17 11:27:15 Arch mtp-probe[376]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3"
Apr 17 11:27:13 Arch systemd-modules-load[241]: Inserted module 'vboxdrv'
Apr 17 11:27:15 Arch mtp-probe[376]: bus: 1, device: 2 was not an MTP device
Apr 17 11:27:13 Arch systemd-modules-load[241]: Inserted module 'vboxpci'
Apr 17 11:27:15 Arch mtp-probe[367]: bus: 1, device: 4 was not an MTP device
Apr 17 11:27:13 Arch systemd-modules-load[241]: Inserted module 'vboxnetadp'
Apr 17 11:27:13 Arch systemd-modules-load[241]: Inserted module 'vboxnetflt'
Apr 17 11:27:13 Arch systemd[1]: Started Load Kernel Modules.
Apr 17 11:27:13 Arch systemd[1]: Starting Apply Kernel Variables...
Apr 17 11:27:13 Arch systemd[1]: Mounting Kernel Configuration File System...
Apr 17 11:27:19 Arch systemd-fsck[430]: FILES: clean, 350626/12214272 files, 29854329/48831766 blocks
Apr 17 11:27:13 Arch systemd[1]: Condition check resulted in FUSE Control File System being skipped.
Apr 17 11:27:13 Arch systemd[1]: Mounted Kernel Configuration File System.
Apr 17 11:27:13 Arch systemd[1]: Started Apply Kernel Variables.
Apr 17 11:27:13 Arch systemd[1]: Started Create Static Device Nodes in /dev.
Apr 17 11:27:13 Arch systemd[1]: Starting udev Kernel Device Manager...
Apr 17 11:27:14 Arch systemd[1]: Started udev Kernel Device Manager.
Apr 17 11:27:14 Arch systemd-udevd[289]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Apr 17 11:27:15 Arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Apr 17 11:27:15 Arch systemd[1]: Starting Load/Save RF Kill Switch Status...
Apr 17 11:27:15 Arch systemd-udevd[263]: Using default interface naming scheme 'v240'.
Apr 17 11:27:15 Arch systemd-udevd[263]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Apr 17 11:27:15 Arch systemd-udevd[260]: Using default interface naming scheme 'v240'.
Apr 17 11:27:15 Arch systemd[1]: Started Load/Save RF Kill Switch Status.
Apr 17 11:27:15 Arch systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Apr 17 11:27:15 Arch systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:dell::kbd_backlight...
Apr 17 11:27:15 Arch systemd[1]: Started Load/Save Screen Backlight Brightness of leds:dell::kbd_backlight.
Apr 17 11:27:16 Arch systemd[1]: Reached target Bluetooth.
Apr 17 11:27:16 Arch systemd-udevd[265]: Using default interface naming scheme 'v240'.
Apr 17 11:27:16 Arch systemd-udevd[265]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Apr 17 11:27:16 Arch systemd-udevd[262]: Using default interface naming scheme 'v240'.
Apr 17 11:27:17 Arch systemd[1]: Found device TOSHIBA_MQ01ACF050 FILES.
Apr 17 11:27:17 Arch systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Apr 17 11:27:17 Arch systemd[1]: Reached target Local File Systems (Pre).
Apr 17 11:27:17 Arch systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Apr 17 11:27:17 Arch systemd[1]: Starting File System Check on /dev/disk/by-uuid/4fd56903-8293-426a-b7ae-a37a90a37886...
Apr 17 11:27:18 Arch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Apr 17 11:27:18 Arch systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Apr 17 11:27:18 Arch systemd[1]: Reached target Sound Card.
Apr 17 11:27:19 Arch systemd[1]: Started File System Check on /dev/disk/by-uuid/4fd56903-8293-426a-b7ae-a37a90a37886.
Apr 17 11:27:19 Arch systemd[1]: Mounting /home...
Apr 17 11:27:19 Arch systemd[1]: Started Flush Journal to Persistent Storage.
Apr 17 11:27:19 Arch systemd[1]: Mounted /home.
Apr 17 11:27:19 Arch systemd[1]: Reached target Local File Systems.
Apr 17 11:27:19 Arch systemd[1]: Starting Create Volatile Files and Directories...
Apr 17 11:27:19 Arch systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Apr 17 11:27:19 Arch systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
Apr 17 11:27:19 Arch systemd[1]: Started Create Volatile Files and Directories.
Apr 17 11:27:19 Arch 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'
Apr 17 11:27:19 Arch systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Apr 17 11:27:19 Arch systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Apr 17 11:27:19 Arch systemd[1]: Condition check resulted in Update is Completed being skipped.
Apr 17 11:27:19 Arch kernel: audit: type=1130 audit(1555514839.959:40): 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'
Apr 17 11:27:19 Arch audit[447]: SYSTEM_BOOT pid=447 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:19 Arch kernel: audit: type=1127 audit(1555514839.969:41): pid=447 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:19 Arch systemd[1]: Started Update UTMP about System Boot/Shutdown.
Apr 17 11:27:19 Arch 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'
Apr 17 11:27:19 Arch systemd[1]: Reached target System Initialization.
Apr 17 11:27:19 Arch systemd[1]: Started Daily Cleanup of Temporary Directories.
Apr 17 11:27:19 Arch systemd[1]: Started Daily verification of password and group files.
Apr 17 11:27:19 Arch systemd[1]: Listening on D-Bus System Message Bus Socket.
Apr 17 11:27:19 Arch systemd[1]: Reached target Sockets.
Apr 17 11:27:19 Arch systemd[1]: Reached target Basic System.
Apr 17 11:27:20 Arch kernel: audit: type=1130 audit(1555514839.989:42): 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'
Apr 17 11:27:20 Arch systemd[1]: Condition check resulted in SSH Key Generation being skipped.
Apr 17 11:27:20 Arch systemd[1]: Started D-Bus System Message Bus.
Apr 17 11:27:19 Arch 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'
Apr 17 11:27:20 Arch systemd[1]: Started Daily man-db regeneration.
Apr 17 11:27:20 Arch kernel: audit: type=1130 audit(1555514839.999:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:20 Arch systemd[1]: Starting Login Service...
Apr 17 11:27:20 Arch systemd[1]: Started Daily rotation of log files.
Apr 17 11:27:20 Arch systemd[1]: Reached target Timers.
Apr 17 11:27:20 Arch systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Apr 17 11:27:20 Arch systemd[1]: Starting Network Manager...
Apr 17 11:27:20 Arch systemd-logind[449]: New seat seat0.
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event3 (Power Button)
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event1 (Power Button)
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event0 (Lid Switch)
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event2 (Sleep Button)
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event7 (GTech MI wireless mouse Consumer Control)
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event8 (GTech MI wireless mouse System Control)
Apr 17 11:27:20 Arch smartd[450]: smartd 7.0 2018-12-30 r4883 [x86_64-linux-4.19.29-1-lts] (local build)
Apr 17 11:27:20 Arch smartd[450]: Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
Apr 17 11:27:20 Arch smartd[450]: Opened configuration file /etc/smartd.conf
Apr 17 11:27:20 Arch smartd[450]: Configuration file /etc/smartd.conf parsed.
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda, type changed from 'scsi' to 'sat'
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], opened
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], TOSHIBA MQ01ACF050, S/N:17NLTLB9T, WWN:5-000039-781a091ba, FW:AV002D, 500 GB
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], not found in smartd database.
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], enabled SMART Attribute Autosave.
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event10 (Intel HID events)
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event11 (Intel HID 5 button array)
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], can't monitor Current_Pending_Sector count - no Attribute 197
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], can't monitor Offline_Uncorrectable count - no Attribute 198
Apr 17 11:27:20 Arch smartd[450]: Device: /dev/sda [SAT], enabled SMART Automatic Offline Testing.
Apr 17 11:27:20 Arch systemd-logind[449]: Watching system buttons on /dev/input/event4 (AT Translated Set 2 keyboard)
Apr 17 11:27:21 Arch smartd[450]: Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list.
Apr 17 11:27:21 Arch smartd[450]: Monitoring 1 ATA/SATA, 0 SCSI/SAS and 0 NVMe devices
Apr 17 11:27:21 Arch smartd[450]: Executing test of <mail> to lkong@bu.edu ...
Apr 17 11:27:21 Arch NetworkManager[451]: <info>  [1555514841.6237] NetworkManager (version 1.14.7dev+3+g353743b99-1) is starting... (for the first time)
Apr 17 11:27:21 Arch NetworkManager[451]: <info>  [1555514841.6241] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Apr 17 11:27:21 Arch NetworkManager[451]: <info>  [1555514841.7112] wifi-nl80211: (wlp1s0): using nl80211 for WiFi device control
Apr 17 11:27:21 Arch smartd[450]: Test of <mail> to lkong@bu.edu: failed (32-bit/8-bit exit status: 1024/4)
Apr 17 11:27:22 Arch systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Apr 17 11:27:22 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=smartd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch systemd[1]: systemd-rfkill.service: Succeeded.
Apr 17 11:27:22 Arch 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'
Apr 17 11:27:22 Arch systemd[1]: Started Login Service.
Apr 17 11:27:22 Arch 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'
Apr 17 11:27:22 Arch systemd[1]: Started Network Manager.
Apr 17 11:27:22 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch systemd[1]: Reached target Network.
Apr 17 11:27:22 Arch systemd[1]: Started OpenSSH Daemon.
Apr 17 11:27:22 Arch kernel: audit: type=1130 audit(1555514842.349:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=smartd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch kernel: audit: type=1131 audit(1555514842.349:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch kernel: audit: type=1130 audit(1555514842.349:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch systemd[1]: Starting Permit User Sessions...
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.3670] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Apr 17 11:27:22 Arch systemd[1]: Started Permit User Sessions.
Apr 17 11:27:22 Arch 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'
Apr 17 11:27:22 Arch systemd[1]: Started Getty on tty1.
Apr 17 11:27:22 Arch 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'
Apr 17 11:27:22 Arch dbus-daemon[448]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.2' (uid=0 pid=451 comm="/usr/bin/NetworkManager --no-daemon ")
Apr 17 11:27:22 Arch systemd[1]: Reached target Login Prompts.
Apr 17 11:27:22 Arch systemd[1]: Reached target Multi-User System.
Apr 17 11:27:22 Arch systemd[1]: Reached target Graphical Interface.
Apr 17 11:27:22 Arch systemd[1]: Startup finished in 1.641s (kernel) + 2.336s (initrd) + 11.056s (userspace) = 15.034s.
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.4020] manager[0x55614a22d0c0]: monitoring kernel firmware directory '/lib/firmware'.
Apr 17 11:27:22 Arch systemd[1]: Starting Hostname Service...
Apr 17 11:27:22 Arch sshd[467]: Server listening on 0.0.0.0 port 22.
Apr 17 11:27:22 Arch sshd[467]: Server listening on :: port 22.
Apr 17 11:27:22 Arch dbus-daemon[448]: [system] Successfully activated service 'org.freedesktop.hostname1'
Apr 17 11:27:22 Arch systemd[1]: Started Hostname Service.
Apr 17 11:27:22 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9071] hostname: hostname: using hostnamed
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9072] hostname: hostname changed from (none) to "btwIuseArch"
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9074] dns-mgr[0x55614a237130]: init: dns=default, rc-manager=symlink
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9087] rfkill3: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/ieee80211/phy0/rfkill3) (driver iwlwifi)
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9088] rfkill0: found WiFi radio killswitch (at /sys/devices/platform/dell-laptop/rfkill/rfkill0) (platform driver dell-laptop)
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9339] manager[0x55614a22d0c0]: rfkill: WiFi hardware radio set enabled
Apr 17 11:27:22 Arch NetworkManager[451]: <info>  [1555514842.9339] manager[0x55614a22d0c0]: rfkill: WWAN hardware radio set enabled
Apr 17 11:27:22 Arch dbus-daemon[448]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=451 comm="/usr/bin/NetworkManager --no-daemon ")
Apr 17 11:27:22 Arch systemd[1]: Starting Network Manager Script Dispatcher Service...
Apr 17 11:27:23 Arch dbus-daemon[448]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Apr 17 11:27:23 Arch systemd[1]: Started Network Manager Script Dispatcher Service.
Apr 17 11:27:23 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.0326] settings: Loaded settings plugin: NMSKeyfilePlugin (internal)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.0602] settings: Loaded settings plugin: NMSIbftPlugin ("/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-settings-plugin-ibft.so")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.0863] keyfile: new connection /etc/NetworkManager/system-connections/42A 3.nmconnection (ed03d704-c54e-4c30-bade-1986f9b47025,"42A 3")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1020] keyfile: new connection /etc/NetworkManager/system-connections/42A 2.nmconnection (eb72eed2-0850-45ac-951c-b8e441255233,"42A 2")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1111] keyfile: new connection /etc/NetworkManager/system-connections/42A 1.nmconnection (205851b0-36b8-401b-b734-da3b1a6dd30c,"42A 1")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1238] keyfile: new connection /etc/NetworkManager/system-connections/dong chi.nmconnection (658b2413-edbe-4d21-b1bc-0d958c3cbc73,"dong chi")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1289] keyfile: new connection /etc/NetworkManager/system-connections/42A-b0d3efce-76b4-40e6-b5db-be0aa40a7bb6.nmconnection (b0d3efce-76b4-40e6-b5db-be0aa40a7bb6,"42A")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1317] keyfile: new connection /etc/NetworkManager/system-connections/BU (802.1x)-412c18bf-5189-4df4-a67d-1a84a0fd05bf.nmconnection (412c18bf-5189-4df4-a67d-1a84a0fd05bf,"BU (802.1x)")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1429] keyfile: new connection /etc/NetworkManager/system-connections/BU (802.1x).nmconnection (65aeaf3e-a61f-451a-8e7f-edde37c302dd,"BU (802.1x)")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1553] keyfile: new connection /etc/NetworkManager/system-connections/42A.nmconnection (3cb0d036-ac04-446d-b26e-53f3601e84c8,"42A")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1859] manager: rfkill: WiFi enabled by radio killswitch; enabled by state file
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1860] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1861] manager: Networking is enabled by state file
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.1862] dhcp-init: Using DHCP client 'internal'
Apr 17 11:27:23 Arch nm-dispatcher[471]: req:1 'hostname': new request (0 scripts)
Apr 17 11:27:23 Arch nm-dispatcher[471]: req:1 'hostname': completed: no scripts
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.2081] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-device-plugin-wifi.so)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.2116] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-device-plugin-adsl.so)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.2330] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-device-plugin-ovs.so)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.2826] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-device-plugin-wwan.so)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3275] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-device-plugin-team.so)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3680] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.14.7dev+3+g353743b99-1/libnm-device-plugin-bluetooth.so)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3788] device (lo): carrier: link connected
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3791] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3802] manager: (enp0s31f6): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3830] keyfile: add connection /var/run/NetworkManager/system-connections/Wired connection 1.nmconnection (20636a57-eb64-3cb5-9976-0b7b61fe49b2,"Wired connection 1")
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3836] settings: (enp0s31f6): created default wired connection 'Wired connection 1'
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.3843] device (enp0s31f6): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Apr 17 11:27:23 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.6181] device (wlp1s0): driver supports Access Point (AP) mode
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.6187] manager: (wlp1s0): new 802.11 WiFi device (/org/freedesktop/NetworkManager/Devices/3)
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.6197] device (wlp1s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Apr 17 11:27:23 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
Apr 17 11:27:23 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:23 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:23 Arch NetworkManager[451]: <info>  [1555514843.8622] device (wlp1s0): set-hw-addr: set MAC address to 4A:9A:61:B2:61:18 (scanning)
Apr 17 11:27:24 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:24 Arch dbus-daemon[448]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.2' (uid=0 pid=451 comm="/usr/bin/NetworkManager --no-daemon ")
Apr 17 11:27:24 Arch NetworkManager[451]: <info>  [1555514844.1268] ovsdb: Could not connect: No such file or directory
Apr 17 11:27:24 Arch dbus-daemon[448]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.2' (uid=0 pid=451 comm="/usr/bin/NetworkManager --no-daemon ")
Apr 17 11:27:24 Arch systemd[1]: Starting WPA supplicant...
Apr 17 11:27:24 Arch systemd[1]: Starting Authorization Manager...
Apr 17 11:27:24 Arch nm-dispatcher[471]: req:2 'connectivity-change': new request (0 scripts)
Apr 17 11:27:24 Arch nm-dispatcher[471]: req:2 'connectivity-change': completed: no scripts
Apr 17 11:27:24 Arch dbus-daemon[448]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Apr 17 11:27:24 Arch wpa_supplicant[479]: Successfully initialized wpa_supplicant
Apr 17 11:27:24 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:24 Arch systemd[1]: Started WPA supplicant.
Apr 17 11:27:24 Arch NetworkManager[451]: <info>  [1555514844.3841] supplicant: wpa_supplicant running
Apr 17 11:27:24 Arch NetworkManager[451]: <info>  [1555514844.3842] device (wlp1s0): supplicant interface state: init -> starting
Apr 17 11:27:24 Arch kernel: kauditd_printk_skb: 6 callbacks suppressed
Apr 17 11:27:24 Arch kernel: audit: type=1130 audit(1555514844.369:53): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:24 Arch polkitd[480]: Started polkitd version 0.116
Apr 17 11:27:24 Arch NetworkManager[451]: <info>  [1555514844.6368] sup-iface[0x55614a22f8d0,wlp1s0]: supports 5 scan SSIDs
Apr 17 11:27:24 Arch NetworkManager[451]: <info>  [1555514844.6375] device (wlp1s0): supplicant interface state: starting -> ready
Apr 17 11:27:24 Arch NetworkManager[451]: <info>  [1555514844.6375] device (wlp1s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Apr 17 11:27:24 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:24 Arch polkitd[480]: Loading rules from directory /etc/polkit-1/rules.d
Apr 17 11:27:24 Arch polkitd[480]: Loading rules from directory /usr/share/polkit-1/rules.d
Apr 17 11:27:24 Arch polkitd[480]: Finished loading, compiling and executing 3 rules
Apr 17 11:27:24 Arch dbus-daemon[448]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Apr 17 11:27:24 Arch systemd[1]: Started Authorization Manager.
Apr 17 11:27:24 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:24 Arch polkitd[480]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Apr 17 11:27:24 Arch kernel: audit: type=1130 audit(1555514844.779:54): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:27 Arch kernel: audit: type=1006 audit(1555514847.449:55): pid=469 uid=0 old-auid=4294967295 auid=1001 tty=tty1 old-ses=4294967295 ses=1 res=1
Apr 17 11:27:27 Arch login[469]: pam_unix(login:session): session opened for user noobuntu by LOGIN(uid=0)
Apr 17 11:27:27 Arch systemd[1]: Created slice User Slice of UID 1001.
Apr 17 11:27:27 Arch systemd[1]: Starting User Runtime Directory /run/user/1001...
Apr 17 11:27:27 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1001 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:27 Arch systemd-logind[449]: New session 1 of user noobuntu.
Apr 17 11:27:27 Arch systemd[1]: Started User Runtime Directory /run/user/1001.
Apr 17 11:27:27 Arch systemd[1]: Starting User Manager for UID 1001...
Apr 17 11:27:27 Arch kernel: audit: type=1130 audit(1555514847.529:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1001 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:27 Arch kernel: audit: type=1006 audit(1555514847.539:57): pid=499 uid=0 old-auid=4294967295 auid=1001 tty=(none) old-ses=4294967295 ses=2 res=1
Apr 17 11:27:27 Arch systemd[499]: pam_unix(systemd-user:session): session opened for user noobuntu by (uid=0)
Apr 17 11:27:27 Arch systemd[499]: Reached target Paths.
Apr 17 11:27:28 Arch kernel: audit: type=1130 audit(1555514847.829:58): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1001 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:28 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:28 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:28 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Apr 17 11:27:27 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1001 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:27 Arch login[469]: LOGIN ON tty1 BY noobuntu
Apr 17 11:27:28 Arch wpa_supplicant[479]: wlp1s0: Reject scan trigger since one is already pending
Apr 17 11:27:27 Arch systemd[499]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Apr 17 11:27:27 Arch systemd[499]: Listening on GnuPG network certificate management daemon.
Apr 17 11:27:27 Arch systemd[499]: Listening on Sound System.
Apr 17 11:27:27 Arch systemd[499]: Starting D-Bus User Message Bus Socket.
Apr 17 11:27:27 Arch systemd[499]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Apr 17 11:27:27 Arch systemd[499]: Reached target Timers.
Apr 17 11:27:27 Arch systemd[499]: Listening on Multimedia System.
Apr 17 11:27:27 Arch systemd[499]: Listening on GnuPG cryptographic agent and passphrase cache.
Apr 17 11:27:27 Arch systemd[499]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Apr 17 11:27:27 Arch systemd[499]: Listening on p11-kit server.
Apr 17 11:27:27 Arch systemd[499]: Listening on D-Bus User Message Bus Socket.
Apr 17 11:27:27 Arch systemd[499]: Reached target Sockets.
Apr 17 11:27:27 Arch systemd[499]: Reached target Basic System.
Apr 17 11:27:27 Arch systemd[1]: Started User Manager for UID 1001.
Apr 17 11:27:27 Arch systemd[499]: Starting Update XDG user dir configuration...
Apr 17 11:27:27 Arch systemd[1]: Started Session 1 of user noobuntu.
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0613] policy: auto-activating connection 'BU (802.1x)' (412c18bf-5189-4df4-a67d-1a84a0fd05bf)
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0619] device (wlp1s0): Activation: starting connection 'BU (802.1x)' (412c18bf-5189-4df4-a67d-1a84a0fd05bf)
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0620] device (wlp1s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0622] manager: NetworkManager state is now CONNECTING
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0642] device (wlp1s0): set-hw-addr: reset MAC address to 00:28:F8:B9:89:8F (preserve)
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0742] device (wlp1s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0744] device (wlp1s0): Activation: (wifi) access point 'BU (802.1x)' has security, but secrets are required.
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0744] device (wlp1s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Apr 17 11:27:28 Arch NetworkManager[451]: <warn>  [1555514848.0750] device (wlp1s0): No agents were available for this request.
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0750] device (wlp1s0): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0752] manager: NetworkManager state is now DISCONNECTED
Apr 17 11:27:28 Arch NetworkManager[451]: <warn>  [1555514848.0754] device (wlp1s0): Activation: failed for connection 'BU (802.1x)'
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0755] device (wlp1s0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.0776] device (wlp1s0): set-hw-addr: set MAC address to 1A:FC:8D:9E:2C:28 (scanning)
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.1671] device (wlp1s0): supplicant interface state: ready -> disconnected
Apr 17 11:27:28 Arch NetworkManager[451]: <info>  [1555514848.1723] device (wlp1s0): supplicant interface state: disconnected -> inactive
Apr 17 11:27:28 Arch systemd[499]: xdg-user-dirs-update.service: Succeeded.
Apr 17 11:27:28 Arch systemd[499]: Started Update XDG user dir configuration.
Apr 17 11:27:28 Arch systemd[499]: Reached target Main User Target.
Apr 17 11:27:28 Arch systemd[499]: Startup finished in 832ms.
Apr 17 11:27:29 Arch NetworkManager[451]: <info>  [1555514849.6180] manager: startup complete
Apr 17 11:27:33 Arch systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Apr 17 11:27:33 Arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:33 Arch kernel: audit: type=1131 audit(1555514853.429:59): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:52 Arch systemd[1]: systemd-hostnamed.service: Succeeded.
Apr 17 11:27:53 Arch kernel: audit: type=1131 audit(1555514872.969:60): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:52 Arch audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:56 Arch systemd[1]: Started Getty on tty5.
Apr 17 11:27:56 Arch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty5 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:27:56 Arch kernel: audit: type=1130 audit(1555514876.929:61): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty5 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Apr 17 11:28:01 Arch login[560]: pam_unix(login:session): session opened for user noobuntu by LOGIN(uid=0)
Apr 17 11:28:01 Arch systemd-logind[449]: New session 3 of user noobuntu.
Apr 17 11:28:01 Arch kernel: audit: type=1006 audit(1555514881.589:62): pid=560 uid=0 old-auid=4294967295 auid=1001 tty=tty5 old-ses=4294967295 ses=3 res=1
Apr 17 11:28:01 Arch systemd[1]: Started Session 3 of user noobuntu.
Apr 17 11:28:01 Arch login[560]: LOGIN ON tty5 BY noobuntu

Here is the full xorg log:

[    72.125] (--) Log file renamed from "/var/log/Xorg.pid-556.log" to "/var/log/Xorg.0.log"
[    72.144] 
X.Org X Server 1.20.4
X Protocol Version 11, Revision 0
[    72.144] Build Operating System: Linux Arch Linux
[    72.144] Current Operating System: Linux btwIuseArch 4.19.29-1-lts #1 SMP Thu Mar 14 15:39:08 CET 2019 x86_64
[    72.144] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=3116253c-2640-48f9-bd48-0dd4a529f04b rw quiet
[    72.144] Build Date: 27 February 2019  04:04:00PM
[    72.144]  
[    72.144] Current version of pixman: 0.38.0
[    72.144]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[    72.144] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    72.144] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 17 11:21:58 2019
[    72.186] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    72.203] (==) No Layout section.  Using the first Screen section.
[    72.203] (==) No screen section available. Using defaults.
[    72.203] (**) |-->Screen "Default Screen Section" (0)
[    72.203] (**) |   |-->Monitor "<default monitor>"
[    72.214] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[    72.214] (==) Automatically adding devices
[    72.214] (==) Automatically enabling devices
[    72.214] (==) Automatically adding GPU devices
[    72.214] (==) Automatically binding GPU devices
[    72.214] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    72.247] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (==) FontPath set to:
        /usr/share/fonts/misc,
        /usr/share/fonts/TTF
[    72.247] (==) ModulePath set to "/usr/lib/xorg/modules"
[    72.247] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[    72.247] (II) Module ABI versions:
[    72.247]    X.Org ANSI C Emulation: 0.4
[    72.247]    X.Org Video Driver: 24.0
[    72.247]    X.Org XInput driver : 24.1
[    72.247]    X.Org Server Extension : 10.0
[    72.248] (++) using VT number 1

[    72.248] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    72.249] (II) xfree86: Adding drm device (/dev/dri/card0)
[    72.268] (--) PCI:*(0@0:2:0) 8086:591b:1028:07a9 rev 4, Mem @ 0xee000000/16777216, 0xd0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[    72.268] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    72.268] (II) LoadModule: "glx"
[    72.269] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    72.361] (II) Module glx: vendor="X.Org Foundation"
[    72.361]    compiled for 1.20.4, module version = 1.0.0
[    72.361]    ABI class: X.Org Server Extension, version 10.0
[    72.361] (==) Matched intel as autoconfigured driver 0
[    72.361] (==) Matched modesetting as autoconfigured driver 1
[    72.361] (==) Matched fbdev as autoconfigured driver 2
[    72.361] (==) Matched vesa as autoconfigured driver 3
[    72.361] (==) Assigned the driver to the xf86ConfigLayout
[    72.361] (II) LoadModule: "intel"
[    72.372] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    72.412] (II) Module intel: vendor="X.Org Foundation"
[    72.412]    compiled for 1.20.4, module version = 2.99.917
[    72.412]    Module class: X.Org Video Driver
[    72.412]    ABI class: X.Org Video Driver, version 24.0
[    72.412] (II) LoadModule: "modesetting"
[    72.413] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    72.439] (II) Module modesetting: vendor="X.Org Foundation"
[    72.439]    compiled for 1.20.4, module version = 1.20.4
[    72.439]    Module class: X.Org Video Driver
[    72.439]    ABI class: X.Org Video Driver, version 24.0
[    72.439] (II) LoadModule: "fbdev"
[    72.439] (WW) Warning, couldn't open module fbdev
[    72.439] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    72.439] (II) LoadModule: "vesa"
[    72.440] (WW) Warning, couldn't open module vesa
[    72.440] (EE) Failed to load module "vesa" (module does not exist, 0)
[    72.440] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
        i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
        915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
        Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
        GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[    72.440] (II) intel: Driver for Intel(R) HD Graphics
[    72.440] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[    72.440] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[    72.440] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    72.445] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20180719
[    72.445] (II) intel(0): SNA compiled from 2.99.917-863-g6afed33b
[    72.473] (WW) Falling back to old probe method for modesetting
[    72.477] (--) intel(0): gen9 engineering sample
[    72.477] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 4 threads
[    72.477] (II) intel(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[    72.477] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    72.477] (==) intel(0): RGB weight 888
[    72.477] (==) intel(0): Default visual is TrueColor
[    72.486] (II) intel(0): Output eDP1 has no monitor section
[    72.486] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
[    72.486] (II) intel(0): Enabled output eDP1
[    72.486] (II) intel(0): Output HDMI1 has no monitor section
[    72.486] (II) intel(0): Enabled output HDMI1
[    72.486] (II) intel(0): Output DP1 has no monitor section
[    72.486] (II) intel(0): Enabled output DP1
[    72.486] (II) intel(0): Output HDMI2 has no monitor section
[    72.486] (II) intel(0): Enabled output HDMI2
[    72.486] (II) intel(0): Output DP2 has no monitor section
[    72.487] (II) intel(0): Enabled output DP2
[    72.487] (II) intel(0): Output HDMI3 has no monitor section
[    72.487] (II) intel(0): Enabled output HDMI3
[    72.487] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[    72.487] (II) intel(0): Output VIRTUAL1 has no monitor section
[    72.487] (II) intel(0): Enabled output VIRTUAL1
[    72.487] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
[    72.487] (==) intel(0): TearFree enabled
[    72.487] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[    72.487] (==) intel(0): DPI set to (96, 96)
[    72.487] (II) Loading sub module "dri3"
[    72.487] (II) LoadModule: "dri3"
[    72.487] (II) Module "dri3" already built-in
[    72.487] (II) Loading sub module "dri2"
[    72.487] (II) LoadModule: "dri2"
[    72.487] (II) Module "dri2" already built-in
[    72.487] (II) Loading sub module "present"
[    72.487] (II) LoadModule: "present"
[    72.488] (II) Module "present" already built-in
[    72.488] (II) UnloadModule: "modesetting"
[    72.488] (II) Unloading modesetting
[    72.502] (II) intel(0): SNA initialized with Kabylake (gen9) backend
[    72.502] (==) intel(0): Backing store enabled
[    72.502] (==) intel(0): Silken mouse disabled
[    72.502] (II) intel(0): HW Cursor enabled
[    72.503] (==) intel(0): DPMS enabled
[    72.503] (==) intel(0): Display hotplug detection enabled
[    72.507] (II) intel(0): [DRI2] Setup complete
[    72.507] (II) intel(0): [DRI2]   DRI driver: i965
[    72.507] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[    72.507] (II) intel(0): direct rendering: DRI2 DRI3 enabled
[    72.507] (II) intel(0): hardware support for Present enabled
[    72.507] (II) Initializing extension Generic Event Extension
[    72.507] (II) Initializing extension SHAPE
[    72.508] (II) Initializing extension MIT-SHM
[    72.508] (II) Initializing extension XInputExtension
[    72.508] (II) Initializing extension XTEST
[    72.508] (II) Initializing extension BIG-REQUESTS
[    72.509] (II) Initializing extension SYNC
[    72.509] (II) Initializing extension XKEYBOARD
[    72.509] (II) Initializing extension XC-MISC
[    72.509] (II) Initializing extension SECURITY
[    72.509] (II) Initializing extension XFIXES
[    72.509] (II) Initializing extension RENDER
[    72.510] (II) Initializing extension RANDR
[    72.510] (II) Initializing extension COMPOSITE
[    72.510] (II) Initializing extension DAMAGE
[    72.510] (II) Initializing extension MIT-SCREEN-SAVER
[    72.510] (II) Initializing extension DOUBLE-BUFFER
[    72.510] (II) Initializing extension RECORD
[    72.511] (II) Initializing extension DPMS
[    72.511] (II) Initializing extension Present
[    72.511] (II) Initializing extension DRI3
[    72.511] (II) Initializing extension X-Resource
[    72.511] (II) Initializing extension XVideo
[    72.511] (II) Initializing extension XVideo-MotionCompensation
[    72.511] (II) Initializing extension GLX
[    72.729] (II) AIGLX: Loaded and initialized i965
[    72.729] (II) GLX: Initialized DRI2 GL provider for screen 0
[    72.729] (II) Initializing extension XFree86-VidModeExtension
[    72.729] (II) Initializing extension XFree86-DGA
[    72.729] (II) Initializing extension XFree86-DRI
[    72.729] (II) Initializing extension DRI2
[    72.739] (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    72.748] (II) intel(0): Setting screen physical size to 508 x 285
[    73.011] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    73.011] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    73.011] (II) LoadModule: "libinput"
[    73.011] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    73.036] (II) Module libinput: vendor="X.Org Foundation"
[    73.036]    compiled for 1.20.3, module version = 0.28.2
[    73.036]    Module class: X.Org XInput Driver
[    73.036]    ABI class: X.Org XInput driver, version 24.1
[    73.036] (II) Using input driver 'libinput' for 'Power Button'
[    73.036] (**) Power Button: always reports core events
[    73.036] (**) Option "Device" "/dev/input/event3"
[    73.036] (**) Option "_source" "server/udev"
[    73.057] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    73.057] (II) event3  - Power Button: device is a keyboard
[    73.057] (II) event3  - Power Button: device removed
[    73.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[    73.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    73.104] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    73.104] (II) event3  - Power Button: device is a keyboard
[    73.105] (II) config/udev: Adding input device Video Bus (/dev/input/event15)
[    73.105] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    73.105] (II) Using input driver 'libinput' for 'Video Bus'
[    73.105] (**) Video Bus: always reports core events
[    73.105] (**) Option "Device" "/dev/input/event15"
[    73.105] (**) Option "_source" "server/udev"
[    73.106] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[    73.106] (II) event15 - Video Bus: device is a keyboard
[    73.106] (II) event15 - Video Bus: device removed
[    73.183] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input16/event15"
[    73.183] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    73.184] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[    73.184] (II) event15 - Video Bus: device is a keyboard
[    73.185] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    73.185] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    73.185] (II) Using input driver 'libinput' for 'Power Button'
[    73.185] (**) Power Button: always reports core events
[    73.185] (**) Option "Device" "/dev/input/event1"
[    73.185] (**) Option "_source" "server/udev"
[    73.186] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    73.186] (II) event1  - Power Button: device is a keyboard
[    73.186] (II) event1  - Power Button: device removed
[    73.223] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    73.223] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    73.224] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    73.224] (II) event1  - Power Button: device is a keyboard
[    73.225] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    73.225] (II) No input driver specified, ignoring this device.
[    73.225] (II) This device may have been added with another device file.
[    73.225] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[    73.225] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    73.225] (II) Using input driver 'libinput' for 'Sleep Button'
[    73.225] (**) Sleep Button: always reports core events
[    73.225] (**) Option "Device" "/dev/input/event2"
[    73.225] (**) Option "_source" "server/udev"
[    73.226] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    73.226] (II) event2  - Sleep Button: device is a keyboard
[    73.226] (II) event2  - Sleep Button: device removed
[    73.263] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[    73.263] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    73.264] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    73.264] (II) event2  - Sleep Button: device is a keyboard
[    73.265] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event16)
[    73.265] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[    73.265] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[    73.265] (**) Integrated_Webcam_HD: Integrate: always reports core events
[    73.265] (**) Option "Device" "/dev/input/event16"
[    73.265] (**) Option "_source" "server/udev"
[    73.267] (II) event16 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    73.267] (II) event16 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    73.267] (II) event16 - Integrated_Webcam_HD: Integrate: device removed
[    73.363] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input17/event16"
[    73.363] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[    73.365] (II) event16 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    73.365] (II) event16 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    73.365] (II) config/udev: Adding input device GTech MI wireless mouse Mouse (/dev/input/event5)
[    73.365] (**) GTech MI wireless mouse Mouse: Applying InputClass "libinput pointer catchall"
[    73.365] (II) Using input driver 'libinput' for 'GTech MI wireless mouse Mouse'
[    73.365] (**) GTech MI wireless mouse Mouse: always reports core events
[    73.365] (**) Option "Device" "/dev/input/event5"
[    73.365] (**) Option "_source" "server/udev"
[    73.367] (II) event5  - GTech MI wireless mouse Mouse: is tagged by udev as: Mouse
[    73.367] (II) event5  - GTech MI wireless mouse Mouse: device is a pointer
[    73.367] (II) event5  - GTech MI wireless mouse Mouse: device removed
[    73.463] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input5/event5"
[    73.463] (II) XINPUT: Adding extended input device "GTech MI wireless mouse Mouse" (type: MOUSE, id 11)
[    73.463] (**) Option "AccelerationScheme" "none"
[    73.463] (**) GTech MI wireless mouse Mouse: (accel) selected scheme none/0
[    73.463] (**) GTech MI wireless mouse Mouse: (accel) acceleration factor: 2.000
[    73.463] (**) GTech MI wireless mouse Mouse: (accel) acceleration threshold: 4
[    73.465] (II) event5  - GTech MI wireless mouse Mouse: is tagged by udev as: Mouse
[    73.465] (II) event5  - GTech MI wireless mouse Mouse: device is a pointer
[    73.466] (II) config/udev: Adding input device GTech MI wireless mouse Mouse (/dev/input/mouse0)
[    73.466] (II) No input driver specified, ignoring this device.
[    73.466] (II) This device may have been added with another device file.
[    73.466] (II) config/udev: Adding input device GTech MI wireless mouse (/dev/input/event6)
[    73.466] (II) No input driver specified, ignoring this device.
[    73.466] (II) This device may have been added with another device file.
[    73.467] (II) config/udev: Adding input device GTech MI wireless mouse Consumer Control (/dev/input/event7)
[    73.467] (**) GTech MI wireless mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    73.467] (II) Using input driver 'libinput' for 'GTech MI wireless mouse Consumer Control'
[    73.467] (**) GTech MI wireless mouse Consumer Control: always reports core events
[    73.467] (**) Option "Device" "/dev/input/event7"
[    73.467] (**) Option "_source" "server/udev"
[    73.469] (II) event7  - GTech MI wireless mouse Consumer Control: is tagged by udev as: Keyboard
[    73.469] (II) event7  - GTech MI wireless mouse Consumer Control: device is a keyboard
[    73.469] (II) event7  - GTech MI wireless mouse Consumer Control: device removed
[    73.503] (II) libinput: GTech MI wireless mouse Consumer Control: needs a virtual subdevice
[    73.503] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input7/event7"
[    73.503] (II) XINPUT: Adding extended input device "GTech MI wireless mouse Consumer Control" (type: MOUSE, id 12)
[    73.503] (**) Option "AccelerationScheme" "none"
[    73.503] (**) GTech MI wireless mouse Consumer Control: (accel) selected scheme none/0
[    73.503] (**) GTech MI wireless mouse Consumer Control: (accel) acceleration factor: 2.000
[    73.503] (**) GTech MI wireless mouse Consumer Control: (accel) acceleration threshold: 4
[    73.505] (II) event7  - GTech MI wireless mouse Consumer Control: is tagged by udev as: Keyboard
[    73.505] (II) event7  - GTech MI wireless mouse Consumer Control: device is a keyboard
[    73.506] (II) config/udev: Adding input device GTech MI wireless mouse System Control (/dev/input/event8)
[    73.506] (**) GTech MI wireless mouse System Control: Applying InputClass "libinput keyboard catchall"
[    73.506] (II) Using input driver 'libinput' for 'GTech MI wireless mouse System Control'
[    73.506] (**) GTech MI wireless mouse System Control: always reports core events
[    73.506] (**) Option "Device" "/dev/input/event8"
[    73.506] (**) Option "_source" "server/udev"
[    73.507] (II) event8  - GTech MI wireless mouse System Control: is tagged by udev as: Keyboard
[    73.507] (II) event8  - GTech MI wireless mouse System Control: device is a keyboard
[    73.508] (II) event8  - GTech MI wireless mouse System Control: device removed
[    73.563] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input8/event8"
[    73.563] (II) XINPUT: Adding extended input device "GTech MI wireless mouse System Control" (type: KEYBOARD, id 13)
[    73.565] (II) event8  - GTech MI wireless mouse System Control: is tagged by udev as: Keyboard
[    73.565] (II) event8  - GTech MI wireless mouse System Control: device is a keyboard
[    73.566] (II) config/udev: Adding input device DLL07A9:01 044E:120B (/dev/input/event14)
[    73.566] (**) DLL07A9:01 044E:120B: Applying InputClass "libinput touchpad catchall"
[    73.566] (II) Using input driver 'libinput' for 'DLL07A9:01 044E:120B'
[    73.566] (**) DLL07A9:01 044E:120B: always reports core events
[    73.566] (**) Option "Device" "/dev/input/event14"
[    73.566] (**) Option "_source" "server/udev"
[    73.685] (II) event14 - DLL07A9:01 044E:120B: is tagged by udev as: Touchpad
[    73.686] (II) event14 - DLL07A9:01 044E:120B: device is a touchpad
[    73.686] (II) event14 - DLL07A9:01 044E:120B: device removed
[    73.773] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL07A9:01/0018:044E:120B.0002/input/input14/event14"
[    73.773] (II) XINPUT: Adding extended input device "DLL07A9:01 044E:120B" (type: TOUCHPAD, id 14)
[    73.774] (**) Option "AccelerationScheme" "none"
[    73.774] (**) DLL07A9:01 044E:120B: (accel) selected scheme none/0
[    73.774] (**) DLL07A9:01 044E:120B: (accel) acceleration factor: 2.000
[    73.774] (**) DLL07A9:01 044E:120B: (accel) acceleration threshold: 4
[    73.776] (II) event14 - DLL07A9:01 044E:120B: is tagged by udev as: Touchpad
[    73.777] (II) event14 - DLL07A9:01 044E:120B: device is a touchpad
[    73.778] (II) config/udev: Adding input device DLL07A9:01 044E:120B (/dev/input/mouse2)
[    73.778] (II) No input driver specified, ignoring this device.
[    73.778] (II) This device may have been added with another device file.
[    73.778] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event13)
[    73.778] (**) DualPoint Stick: Applying InputClass "libinput pointer catchall"
[    73.779] (II) Using input driver 'libinput' for 'DualPoint Stick'
[    73.779] (**) DualPoint Stick: always reports core events
[    73.779] (**) Option "Device" "/dev/input/event13"
[    73.779] (**) Option "_source" "server/udev"
[    73.780] (II) event13 - DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[    73.780] (II) event13 - DualPoint Stick: device is a pointer
[    73.780] (II) event13 - DualPoint Stick: device removed
[    73.853] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL07A9:01/0018:044E:120B.0002/input/input15/event13"
[    73.853] (II) XINPUT: Adding extended input device "DualPoint Stick" (type: MOUSE, id 15)
[    73.853] (**) Option "AccelerationScheme" "none"
[    73.853] (**) DualPoint Stick: (accel) selected scheme none/0
[    73.853] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[    73.853] (**) DualPoint Stick: (accel) acceleration threshold: 4
[    73.855] (II) event13 - DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[    73.855] (II) event13 - DualPoint Stick: device is a pointer
[    73.856] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse1)
[    73.856] (II) No input driver specified, ignoring this device.
[    73.856] (II) This device may have been added with another device file.
[    73.857] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event17)
[    73.857] (II) No input driver specified, ignoring this device.
[    73.857] (II) This device may have been added with another device file.
[    73.857] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event18)
[    73.857] (II) No input driver specified, ignoring this device.
[    73.857] (II) This device may have been added with another device file.
[    73.857] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[    73.857] (II) No input driver specified, ignoring this device.
[    73.858] (II) This device may have been added with another device file.
[    73.858] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[    73.858] (II) No input driver specified, ignoring this device.
[    73.858] (II) This device may have been added with another device file.
[    73.858] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[    73.858] (II) No input driver specified, ignoring this device.
[    73.858] (II) This device may have been added with another device file.
[    73.859] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event22)
[    73.859] (II) No input driver specified, ignoring this device.
[    73.859] (II) This device may have been added with another device file.
[    73.859] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event23)
[    73.859] (II) No input driver specified, ignoring this device.
[    73.859] (II) This device may have been added with another device file.
[    73.860] (II) config/udev: Adding input device Intel HID events (/dev/input/event10)
[    73.860] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[    73.860] (II) Using input driver 'libinput' for 'Intel HID events'
[    73.860] (**) Intel HID events: always reports core events
[    73.860] (**) Option "Device" "/dev/input/event10"
[    73.860] (**) Option "_source" "server/udev"
[    73.860] (II) event10 - Intel HID events: is tagged by udev as: Keyboard
[    73.860] (II) event10 - Intel HID events: device is a keyboard
[    73.861] (II) event10 - Intel HID events: device removed
[    73.893] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input11/event10"
[    73.893] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 16)
[    73.894] (II) event10 - Intel HID events: is tagged by udev as: Keyboard
[    73.894] (II) event10 - Intel HID events: device is a keyboard
[    73.895] (II) config/udev: Adding input device Intel HID 5 button array (/dev/input/event11)
[    73.895] (**) Intel HID 5 button array: Applying InputClass "libinput keyboard catchall"
[    73.895] (II) Using input driver 'libinput' for 'Intel HID 5 button array'
[    73.895] (**) Intel HID 5 button array: always reports core events
[    73.895] (**) Option "Device" "/dev/input/event11"
[    73.895] (**) Option "_source" "server/udev"
[    73.895] (II) event11 - Intel HID 5 button array: is tagged by udev as: Keyboard
[    73.896] (II) event11 - Intel HID 5 button array: device is a keyboard
[    73.896] (II) event11 - Intel HID 5 button array: device removed
[    73.933] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input12/event11"
[    73.933] (II) XINPUT: Adding extended input device "Intel HID 5 button array" (type: KEYBOARD, id 17)
[    73.934] (II) event11 - Intel HID 5 button array: is tagged by udev as: Keyboard
[    73.934] (II) event11 - Intel HID 5 button array: device is a keyboard
[    73.935] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event12)
[    73.935] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    73.935] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[    73.935] (**) Dell WMI hotkeys: always reports core events
[    73.935] (**) Option "Device" "/dev/input/event12"
[    73.935] (**) Option "_source" "server/udev"
[    73.936] (II) event12 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    73.936] (II) event12 - Dell WMI hotkeys: device is a keyboard
[    73.936] (II) event12 - Dell WMI hotkeys: device removed
[    74.013] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input13/event12"
[    74.013] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 18)
[    74.015] (II) event12 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    74.015] (II) event12 - Dell WMI hotkeys: device is a keyboard
[    74.015] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[    74.015] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    74.015] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    74.015] (**) AT Translated Set 2 keyboard: always reports core events
[    74.015] (**) Option "Device" "/dev/input/event4"
[    74.015] (**) Option "_source" "server/udev"
[    74.017] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    74.017] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    74.018] (II) event4  - AT Translated Set 2 keyboard: device removed
[    74.053] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[    74.053] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 19)
[    74.054] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    74.054] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    74.056] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
[    74.056] (II) No input driver specified, ignoring this device.
[    74.056] (II) This device may have been added with another device file.
[    74.081] (**) GTech MI wireless mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    74.081] (II) Using input driver 'libinput' for 'GTech MI wireless mouse Consumer Control'
[    74.081] (**) GTech MI wireless mouse Consumer Control: always reports core events
[    74.081] (**) Option "Device" "/dev/input/event7"
[    74.081] (**) Option "_source" "_driver/libinput"
[    74.081] (II) libinput: GTech MI wireless mouse Consumer Control: is a virtual subdevice
[    74.081] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input7/event7"
[    74.081] (II) XINPUT: Adding extended input device "GTech MI wireless mouse Consumer Control" (type: KEYBOARD, id 20)
[    74.122] (EE) Failed to open authorization file "/var/run/sddm/{a8f80ea6-93f5-406b-a46b-a70200d189af}": No such file or directory
[    74.504] (II) intel(0): EDID vendor "BOE", prod id 1777
[    74.504] (II) intel(0): Printing DDC gathered Modelines:
[    74.504] (II) intel(0): Modeline "1920x1080"x0.0  152.60  1920 1968 2000 2230  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    74.504] (II) intel(0): Modeline "1920x1080"x0.0  117.73  1920 1968 2000 2190  1080 1083 1089 1120 +hsync -vsync (53.8 kHz e)
[   118.326] (EE) event14 - DLL07A9:01 044E:120B: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.12.6/touchpad-jumping-cursors.html for details
[   268.892] (EE) event14 - DLL07A9:01 044E:120B: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.12.6/touchpad-jumping-cursors.html for details
[   344.498] (II) event3  - Power Button: device removed
[   344.554] (II) event15 - Video Bus: device removed
[   344.673] (II) event1  - Power Button: device removed
[   344.703] (II) event2  - Sleep Button: device removed
[   344.763] (II) event16 - Integrated_Webcam_HD: Integrate: device removed
[   344.873] (II) event5  - GTech MI wireless mouse Mouse: device removed
[   344.953] (II) event8  - GTech MI wireless mouse System Control: device removed
[   345.003] (II) event14 - DLL07A9:01 044E:120B: device removed
[   345.073] (II) event13 - DualPoint Stick: device removed
[   345.163] (II) event10 - Intel HID events: device removed
[   345.203] (II) event11 - Intel HID 5 button array: device removed
[   345.243] (II) event12 - Dell WMI hotkeys: device removed
[   345.343] (II) event4  - AT Translated Set 2 keyboard: device removed
[   345.513] (II) event7  - GTech MI wireless mouse Consumer Control: device removed
[   345.593] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.666] (II) Server terminated successfully (0). Closing log file.
(base) [noobuntu@btwIuseArch ~]$ sed -i 's/btwIuseArch/Arch/' xlog
(base) [noobuntu@btwIuseArch ~]$ cat xlog
[    72.125] (--) Log file renamed from "/var/log/Xorg.pid-556.log" to "/var/log/Xorg.0.log"
[    72.144] 
X.Org X Server 1.20.4
X Protocol Version 11, Revision 0
[    72.144] Build Operating System: Linux Arch Linux
[    72.144] Current Operating System: Linux Arch 4.19.29-1-lts #1 SMP Thu Mar 14 15:39:08 CET 2019 x86_64
[    72.144] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=3116253c-2640-48f9-bd48-0dd4a529f04b rw quiet
[    72.144] Build Date: 27 February 2019  04:04:00PM
[    72.144]  
[    72.144] Current version of pixman: 0.38.0
[    72.144]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[    72.144] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    72.144] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 17 11:21:58 2019
[    72.186] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    72.203] (==) No Layout section.  Using the first Screen section.
[    72.203] (==) No screen section available. Using defaults.
[    72.203] (**) |-->Screen "Default Screen Section" (0)
[    72.203] (**) |   |-->Monitor "<default monitor>"
[    72.214] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[    72.214] (==) Automatically adding devices
[    72.214] (==) Automatically enabling devices
[    72.214] (==) Automatically adding GPU devices
[    72.214] (==) Automatically binding GPU devices
[    72.214] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    72.247] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    72.247]    Entry deleted from font path.
[    72.247] (==) FontPath set to:
        /usr/share/fonts/misc,
        /usr/share/fonts/TTF
[    72.247] (==) ModulePath set to "/usr/lib/xorg/modules"
[    72.247] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[    72.247] (II) Module ABI versions:
[    72.247]    X.Org ANSI C Emulation: 0.4
[    72.247]    X.Org Video Driver: 24.0
[    72.247]    X.Org XInput driver : 24.1
[    72.247]    X.Org Server Extension : 10.0
[    72.248] (++) using VT number 1

[    72.248] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    72.249] (II) xfree86: Adding drm device (/dev/dri/card0)
[    72.268] (--) PCI:*(0@0:2:0) 8086:591b:1028:07a9 rev 4, Mem @ 0xee000000/16777216, 0xd0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[    72.268] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    72.268] (II) LoadModule: "glx"
[    72.269] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    72.361] (II) Module glx: vendor="X.Org Foundation"
[    72.361]    compiled for 1.20.4, module version = 1.0.0
[    72.361]    ABI class: X.Org Server Extension, version 10.0
[    72.361] (==) Matched intel as autoconfigured driver 0
[    72.361] (==) Matched modesetting as autoconfigured driver 1
[    72.361] (==) Matched fbdev as autoconfigured driver 2
[    72.361] (==) Matched vesa as autoconfigured driver 3
[    72.361] (==) Assigned the driver to the xf86ConfigLayout
[    72.361] (II) LoadModule: "intel"
[    72.372] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    72.412] (II) Module intel: vendor="X.Org Foundation"
[    72.412]    compiled for 1.20.4, module version = 2.99.917
[    72.412]    Module class: X.Org Video Driver
[    72.412]    ABI class: X.Org Video Driver, version 24.0
[    72.412] (II) LoadModule: "modesetting"
[    72.413] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    72.439] (II) Module modesetting: vendor="X.Org Foundation"
[    72.439]    compiled for 1.20.4, module version = 1.20.4
[    72.439]    Module class: X.Org Video Driver
[    72.439]    ABI class: X.Org Video Driver, version 24.0
[    72.439] (II) LoadModule: "fbdev"
[    72.439] (WW) Warning, couldn't open module fbdev
[    72.439] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    72.439] (II) LoadModule: "vesa"
[    72.440] (WW) Warning, couldn't open module vesa
[    72.440] (EE) Failed to load module "vesa" (module does not exist, 0)
[    72.440] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
        i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
        915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
        Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
        GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[    72.440] (II) intel: Driver for Intel(R) HD Graphics
[    72.440] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[    72.440] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[    72.440] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    72.445] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20180719
[    72.445] (II) intel(0): SNA compiled from 2.99.917-863-g6afed33b
[    72.473] (WW) Falling back to old probe method for modesetting
[    72.477] (--) intel(0): gen9 engineering sample
[    72.477] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 4 threads
[    72.477] (II) intel(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[    72.477] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    72.477] (==) intel(0): RGB weight 888
[    72.477] (==) intel(0): Default visual is TrueColor
[    72.486] (II) intel(0): Output eDP1 has no monitor section
[    72.486] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
[    72.486] (II) intel(0): Enabled output eDP1
[    72.486] (II) intel(0): Output HDMI1 has no monitor section
[    72.486] (II) intel(0): Enabled output HDMI1
[    72.486] (II) intel(0): Output DP1 has no monitor section
[    72.486] (II) intel(0): Enabled output DP1
[    72.486] (II) intel(0): Output HDMI2 has no monitor section
[    72.486] (II) intel(0): Enabled output HDMI2
[    72.486] (II) intel(0): Output DP2 has no monitor section
[    72.487] (II) intel(0): Enabled output DP2
[    72.487] (II) intel(0): Output HDMI3 has no monitor section
[    72.487] (II) intel(0): Enabled output HDMI3
[    72.487] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[    72.487] (II) intel(0): Output VIRTUAL1 has no monitor section
[    72.487] (II) intel(0): Enabled output VIRTUAL1
[    72.487] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
[    72.487] (==) intel(0): TearFree enabled
[    72.487] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[    72.487] (==) intel(0): DPI set to (96, 96)
[    72.487] (II) Loading sub module "dri3"
[    72.487] (II) LoadModule: "dri3"
[    72.487] (II) Module "dri3" already built-in
[    72.487] (II) Loading sub module "dri2"
[    72.487] (II) LoadModule: "dri2"
[    72.487] (II) Module "dri2" already built-in
[    72.487] (II) Loading sub module "present"
[    72.487] (II) LoadModule: "present"
[    72.488] (II) Module "present" already built-in
[    72.488] (II) UnloadModule: "modesetting"
[    72.488] (II) Unloading modesetting
[    72.502] (II) intel(0): SNA initialized with Kabylake (gen9) backend
[    72.502] (==) intel(0): Backing store enabled
[    72.502] (==) intel(0): Silken mouse disabled
[    72.502] (II) intel(0): HW Cursor enabled
[    72.503] (==) intel(0): DPMS enabled
[    72.503] (==) intel(0): Display hotplug detection enabled
[    72.507] (II) intel(0): [DRI2] Setup complete
[    72.507] (II) intel(0): [DRI2]   DRI driver: i965
[    72.507] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[    72.507] (II) intel(0): direct rendering: DRI2 DRI3 enabled
[    72.507] (II) intel(0): hardware support for Present enabled
[    72.507] (II) Initializing extension Generic Event Extension
[    72.507] (II) Initializing extension SHAPE
[    72.508] (II) Initializing extension MIT-SHM
[    72.508] (II) Initializing extension XInputExtension
[    72.508] (II) Initializing extension XTEST
[    72.508] (II) Initializing extension BIG-REQUESTS
[    72.509] (II) Initializing extension SYNC
[    72.509] (II) Initializing extension XKEYBOARD
[    72.509] (II) Initializing extension XC-MISC
[    72.509] (II) Initializing extension SECURITY
[    72.509] (II) Initializing extension XFIXES
[    72.509] (II) Initializing extension RENDER
[    72.510] (II) Initializing extension RANDR
[    72.510] (II) Initializing extension COMPOSITE
[    72.510] (II) Initializing extension DAMAGE
[    72.510] (II) Initializing extension MIT-SCREEN-SAVER
[    72.510] (II) Initializing extension DOUBLE-BUFFER
[    72.510] (II) Initializing extension RECORD
[    72.511] (II) Initializing extension DPMS
[    72.511] (II) Initializing extension Present
[    72.511] (II) Initializing extension DRI3
[    72.511] (II) Initializing extension X-Resource
[    72.511] (II) Initializing extension XVideo
[    72.511] (II) Initializing extension XVideo-MotionCompensation
[    72.511] (II) Initializing extension GLX
[    72.729] (II) AIGLX: Loaded and initialized i965
[    72.729] (II) GLX: Initialized DRI2 GL provider for screen 0
[    72.729] (II) Initializing extension XFree86-VidModeExtension
[    72.729] (II) Initializing extension XFree86-DGA
[    72.729] (II) Initializing extension XFree86-DRI
[    72.729] (II) Initializing extension DRI2
[    72.739] (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    72.748] (II) intel(0): Setting screen physical size to 508 x 285
[    73.011] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    73.011] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    73.011] (II) LoadModule: "libinput"
[    73.011] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    73.036] (II) Module libinput: vendor="X.Org Foundation"
[    73.036]    compiled for 1.20.3, module version = 0.28.2
[    73.036]    Module class: X.Org XInput Driver
[    73.036]    ABI class: X.Org XInput driver, version 24.1
[    73.036] (II) Using input driver 'libinput' for 'Power Button'
[    73.036] (**) Power Button: always reports core events
[    73.036] (**) Option "Device" "/dev/input/event3"
[    73.036] (**) Option "_source" "server/udev"
[    73.057] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    73.057] (II) event3  - Power Button: device is a keyboard
[    73.057] (II) event3  - Power Button: device removed
[    73.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[    73.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    73.104] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    73.104] (II) event3  - Power Button: device is a keyboard
[    73.105] (II) config/udev: Adding input device Video Bus (/dev/input/event15)
[    73.105] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    73.105] (II) Using input driver 'libinput' for 'Video Bus'
[    73.105] (**) Video Bus: always reports core events
[    73.105] (**) Option "Device" "/dev/input/event15"
[    73.105] (**) Option "_source" "server/udev"
[    73.106] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[    73.106] (II) event15 - Video Bus: device is a keyboard
[    73.106] (II) event15 - Video Bus: device removed
[    73.183] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input16/event15"
[    73.183] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    73.184] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[    73.184] (II) event15 - Video Bus: device is a keyboard
[    73.185] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    73.185] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    73.185] (II) Using input driver 'libinput' for 'Power Button'
[    73.185] (**) Power Button: always reports core events
[    73.185] (**) Option "Device" "/dev/input/event1"
[    73.185] (**) Option "_source" "server/udev"
[    73.186] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    73.186] (II) event1  - Power Button: device is a keyboard
[    73.186] (II) event1  - Power Button: device removed
[    73.223] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    73.223] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    73.224] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    73.224] (II) event1  - Power Button: device is a keyboard
[    73.225] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    73.225] (II) No input driver specified, ignoring this device.
[    73.225] (II) This device may have been added with another device file.
[    73.225] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[    73.225] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    73.225] (II) Using input driver 'libinput' for 'Sleep Button'
[    73.225] (**) Sleep Button: always reports core events
[    73.225] (**) Option "Device" "/dev/input/event2"
[    73.225] (**) Option "_source" "server/udev"
[    73.226] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    73.226] (II) event2  - Sleep Button: device is a keyboard
[    73.226] (II) event2  - Sleep Button: device removed
[    73.263] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[    73.263] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    73.264] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    73.264] (II) event2  - Sleep Button: device is a keyboard
[    73.265] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event16)
[    73.265] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[    73.265] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[    73.265] (**) Integrated_Webcam_HD: Integrate: always reports core events
[    73.265] (**) Option "Device" "/dev/input/event16"
[    73.265] (**) Option "_source" "server/udev"
[    73.267] (II) event16 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    73.267] (II) event16 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    73.267] (II) event16 - Integrated_Webcam_HD: Integrate: device removed
[    73.363] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input17/event16"
[    73.363] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[    73.365] (II) event16 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    73.365] (II) event16 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    73.365] (II) config/udev: Adding input device GTech MI wireless mouse Mouse (/dev/input/event5)
[    73.365] (**) GTech MI wireless mouse Mouse: Applying InputClass "libinput pointer catchall"
[    73.365] (II) Using input driver 'libinput' for 'GTech MI wireless mouse Mouse'
[    73.365] (**) GTech MI wireless mouse Mouse: always reports core events
[    73.365] (**) Option "Device" "/dev/input/event5"
[    73.365] (**) Option "_source" "server/udev"
[    73.367] (II) event5  - GTech MI wireless mouse Mouse: is tagged by udev as: Mouse
[    73.367] (II) event5  - GTech MI wireless mouse Mouse: device is a pointer
[    73.367] (II) event5  - GTech MI wireless mouse Mouse: device removed
[    73.463] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input5/event5"
[    73.463] (II) XINPUT: Adding extended input device "GTech MI wireless mouse Mouse" (type: MOUSE, id 11)
[    73.463] (**) Option "AccelerationScheme" "none"
[    73.463] (**) GTech MI wireless mouse Mouse: (accel) selected scheme none/0
[    73.463] (**) GTech MI wireless mouse Mouse: (accel) acceleration factor: 2.000
[    73.463] (**) GTech MI wireless mouse Mouse: (accel) acceleration threshold: 4
[    73.465] (II) event5  - GTech MI wireless mouse Mouse: is tagged by udev as: Mouse
[    73.465] (II) event5  - GTech MI wireless mouse Mouse: device is a pointer
[    73.466] (II) config/udev: Adding input device GTech MI wireless mouse Mouse (/dev/input/mouse0)
[    73.466] (II) No input driver specified, ignoring this device.
[    73.466] (II) This device may have been added with another device file.
[    73.466] (II) config/udev: Adding input device GTech MI wireless mouse (/dev/input/event6)
[    73.466] (II) No input driver specified, ignoring this device.
[    73.466] (II) This device may have been added with another device file.
[    73.467] (II) config/udev: Adding input device GTech MI wireless mouse Consumer Control (/dev/input/event7)
[    73.467] (**) GTech MI wireless mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    73.467] (II) Using input driver 'libinput' for 'GTech MI wireless mouse Consumer Control'
[    73.467] (**) GTech MI wireless mouse Consumer Control: always reports core events
[    73.467] (**) Option "Device" "/dev/input/event7"
[    73.467] (**) Option "_source" "server/udev"
[    73.469] (II) event7  - GTech MI wireless mouse Consumer Control: is tagged by udev as: Keyboard
[    73.469] (II) event7  - GTech MI wireless mouse Consumer Control: device is a keyboard
[    73.469] (II) event7  - GTech MI wireless mouse Consumer Control: device removed
[    73.503] (II) libinput: GTech MI wireless mouse Consumer Control: needs a virtual subdevice
[    73.503] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input7/event7"
[    73.503] (II) XINPUT: Adding extended input device "GTech MI wireless mouse Consumer Control" (type: MOUSE, id 12)
[    73.503] (**) Option "AccelerationScheme" "none"
[    73.503] (**) GTech MI wireless mouse Consumer Control: (accel) selected scheme none/0
[    73.503] (**) GTech MI wireless mouse Consumer Control: (accel) acceleration factor: 2.000
[    73.503] (**) GTech MI wireless mouse Consumer Control: (accel) acceleration threshold: 4
[    73.505] (II) event7  - GTech MI wireless mouse Consumer Control: is tagged by udev as: Keyboard
[    73.505] (II) event7  - GTech MI wireless mouse Consumer Control: device is a keyboard
[    73.506] (II) config/udev: Adding input device GTech MI wireless mouse System Control (/dev/input/event8)
[    73.506] (**) GTech MI wireless mouse System Control: Applying InputClass "libinput keyboard catchall"
[    73.506] (II) Using input driver 'libinput' for 'GTech MI wireless mouse System Control'
[    73.506] (**) GTech MI wireless mouse System Control: always reports core events
[    73.506] (**) Option "Device" "/dev/input/event8"
[    73.506] (**) Option "_source" "server/udev"
[    73.507] (II) event8  - GTech MI wireless mouse System Control: is tagged by udev as: Keyboard
[    73.507] (II) event8  - GTech MI wireless mouse System Control: device is a keyboard
[    73.508] (II) event8  - GTech MI wireless mouse System Control: device removed
[    73.563] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input8/event8"
[    73.563] (II) XINPUT: Adding extended input device "GTech MI wireless mouse System Control" (type: KEYBOARD, id 13)
[    73.565] (II) event8  - GTech MI wireless mouse System Control: is tagged by udev as: Keyboard
[    73.565] (II) event8  - GTech MI wireless mouse System Control: device is a keyboard
[    73.566] (II) config/udev: Adding input device DLL07A9:01 044E:120B (/dev/input/event14)
[    73.566] (**) DLL07A9:01 044E:120B: Applying InputClass "libinput touchpad catchall"
[    73.566] (II) Using input driver 'libinput' for 'DLL07A9:01 044E:120B'
[    73.566] (**) DLL07A9:01 044E:120B: always reports core events
[    73.566] (**) Option "Device" "/dev/input/event14"
[    73.566] (**) Option "_source" "server/udev"
[    73.685] (II) event14 - DLL07A9:01 044E:120B: is tagged by udev as: Touchpad
[    73.686] (II) event14 - DLL07A9:01 044E:120B: device is a touchpad
[    73.686] (II) event14 - DLL07A9:01 044E:120B: device removed
[    73.773] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL07A9:01/0018:044E:120B.0002/input/input14/event14"
[    73.773] (II) XINPUT: Adding extended input device "DLL07A9:01 044E:120B" (type: TOUCHPAD, id 14)
[    73.774] (**) Option "AccelerationScheme" "none"
[    73.774] (**) DLL07A9:01 044E:120B: (accel) selected scheme none/0
[    73.774] (**) DLL07A9:01 044E:120B: (accel) acceleration factor: 2.000
[    73.774] (**) DLL07A9:01 044E:120B: (accel) acceleration threshold: 4
[    73.776] (II) event14 - DLL07A9:01 044E:120B: is tagged by udev as: Touchpad
[    73.777] (II) event14 - DLL07A9:01 044E:120B: device is a touchpad
[    73.778] (II) config/udev: Adding input device DLL07A9:01 044E:120B (/dev/input/mouse2)
[    73.778] (II) No input driver specified, ignoring this device.
[    73.778] (II) This device may have been added with another device file.
[    73.778] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event13)
[    73.778] (**) DualPoint Stick: Applying InputClass "libinput pointer catchall"
[    73.779] (II) Using input driver 'libinput' for 'DualPoint Stick'
[    73.779] (**) DualPoint Stick: always reports core events
[    73.779] (**) Option "Device" "/dev/input/event13"
[    73.779] (**) Option "_source" "server/udev"
[    73.780] (II) event13 - DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[    73.780] (II) event13 - DualPoint Stick: device is a pointer
[    73.780] (II) event13 - DualPoint Stick: device removed
[    73.853] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL07A9:01/0018:044E:120B.0002/input/input15/event13"
[    73.853] (II) XINPUT: Adding extended input device "DualPoint Stick" (type: MOUSE, id 15)
[    73.853] (**) Option "AccelerationScheme" "none"
[    73.853] (**) DualPoint Stick: (accel) selected scheme none/0
[    73.853] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[    73.853] (**) DualPoint Stick: (accel) acceleration threshold: 4
[    73.855] (II) event13 - DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[    73.855] (II) event13 - DualPoint Stick: device is a pointer
[    73.856] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse1)
[    73.856] (II) No input driver specified, ignoring this device.
[    73.856] (II) This device may have been added with another device file.
[    73.857] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event17)
[    73.857] (II) No input driver specified, ignoring this device.
[    73.857] (II) This device may have been added with another device file.
[    73.857] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event18)
[    73.857] (II) No input driver specified, ignoring this device.
[    73.857] (II) This device may have been added with another device file.
[    73.857] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[    73.857] (II) No input driver specified, ignoring this device.
[    73.858] (II) This device may have been added with another device file.
[    73.858] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[    73.858] (II) No input driver specified, ignoring this device.
[    73.858] (II) This device may have been added with another device file.
[    73.858] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[    73.858] (II) No input driver specified, ignoring this device.
[    73.858] (II) This device may have been added with another device file.
[    73.859] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event22)
[    73.859] (II) No input driver specified, ignoring this device.
[    73.859] (II) This device may have been added with another device file.
[    73.859] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event23)
[    73.859] (II) No input driver specified, ignoring this device.
[    73.859] (II) This device may have been added with another device file.
[    73.860] (II) config/udev: Adding input device Intel HID events (/dev/input/event10)
[    73.860] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[    73.860] (II) Using input driver 'libinput' for 'Intel HID events'
[    73.860] (**) Intel HID events: always reports core events
[    73.860] (**) Option "Device" "/dev/input/event10"
[    73.860] (**) Option "_source" "server/udev"
[    73.860] (II) event10 - Intel HID events: is tagged by udev as: Keyboard
[    73.860] (II) event10 - Intel HID events: device is a keyboard
[    73.861] (II) event10 - Intel HID events: device removed
[    73.893] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input11/event10"
[    73.893] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 16)
[    73.894] (II) event10 - Intel HID events: is tagged by udev as: Keyboard
[    73.894] (II) event10 - Intel HID events: device is a keyboard
[    73.895] (II) config/udev: Adding input device Intel HID 5 button array (/dev/input/event11)
[    73.895] (**) Intel HID 5 button array: Applying InputClass "libinput keyboard catchall"
[    73.895] (II) Using input driver 'libinput' for 'Intel HID 5 button array'
[    73.895] (**) Intel HID 5 button array: always reports core events
[    73.895] (**) Option "Device" "/dev/input/event11"
[    73.895] (**) Option "_source" "server/udev"
[    73.895] (II) event11 - Intel HID 5 button array: is tagged by udev as: Keyboard
[    73.896] (II) event11 - Intel HID 5 button array: device is a keyboard
[    73.896] (II) event11 - Intel HID 5 button array: device removed
[    73.933] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input12/event11"
[    73.933] (II) XINPUT: Adding extended input device "Intel HID 5 button array" (type: KEYBOARD, id 17)
[    73.934] (II) event11 - Intel HID 5 button array: is tagged by udev as: Keyboard
[    73.934] (II) event11 - Intel HID 5 button array: device is a keyboard
[    73.935] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event12)
[    73.935] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    73.935] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[    73.935] (**) Dell WMI hotkeys: always reports core events
[    73.935] (**) Option "Device" "/dev/input/event12"
[    73.935] (**) Option "_source" "server/udev"
[    73.936] (II) event12 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    73.936] (II) event12 - Dell WMI hotkeys: device is a keyboard
[    73.936] (II) event12 - Dell WMI hotkeys: device removed
[    74.013] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input13/event12"
[    74.013] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 18)
[    74.015] (II) event12 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    74.015] (II) event12 - Dell WMI hotkeys: device is a keyboard
[    74.015] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[    74.015] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    74.015] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    74.015] (**) AT Translated Set 2 keyboard: always reports core events
[    74.015] (**) Option "Device" "/dev/input/event4"
[    74.015] (**) Option "_source" "server/udev"
[    74.017] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    74.017] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    74.018] (II) event4  - AT Translated Set 2 keyboard: device removed
[    74.053] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[    74.053] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 19)
[    74.054] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    74.054] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    74.056] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
[    74.056] (II) No input driver specified, ignoring this device.
[    74.056] (II) This device may have been added with another device file.
[    74.081] (**) GTech MI wireless mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    74.081] (II) Using input driver 'libinput' for 'GTech MI wireless mouse Consumer Control'
[    74.081] (**) GTech MI wireless mouse Consumer Control: always reports core events
[    74.081] (**) Option "Device" "/dev/input/event7"
[    74.081] (**) Option "_source" "_driver/libinput"
[    74.081] (II) libinput: GTech MI wireless mouse Consumer Control: is a virtual subdevice
[    74.081] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:2717:5001.0001/input/input7/eve
[    74.081] (II) XINPUT: Adding extended input device "GTech MI wireless mouse Consumer Control" (type: KEYBOARD, id 20)
[    74.122] (EE) Failed to open authorization file "/var/run/sddm/{a8f80ea6-93f5-406b-a46b-a70200d189af}": No such file or directory
[    74.504] (II) intel(0): EDID vendor "BOE", prod id 1777
[    74.504] (II) intel(0): Printing DDC gathered Modelines:
[    74.504] (II) intel(0): Modeline "1920x1080"x0.0  152.60  1920 1968 2000 2230  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    74.504] (II) intel(0): Modeline "1920x1080"x0.0  117.73  1920 1968 2000 2190  1080 1083 1089 1120 +hsync -vsync (53.8 kHz e)
[   118.326] (EE) event14 - DLL07A9:01 044E:120B: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.12.6/touchpad-jumping-cursors.html for details
[   268.892] (EE) event14 - DLL07A9:01 044E:120B: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.12.6/touchpad-jumping-cursors.html for details
[   344.498] (II) event3  - Power Button: device removed
[   344.554] (II) event15 - Video Bus: device removed
[   344.673] (II) event1  - Power Button: device removed
[   344.703] (II) event2  - Sleep Button: device removed
[   344.763] (II) event16 - Integrated_Webcam_HD: Integrate: device removed
[   344.873] (II) event5  - GTech MI wireless mouse Mouse: device removed
[   344.953] (II) event8  - GTech MI wireless mouse System Control: device removed
[   345.003] (II) event14 - DLL07A9:01 044E:120B: device removed
[   345.073] (II) event13 - DualPoint Stick: device removed
[   345.163] (II) event10 - Intel HID events: device removed
[   345.203] (II) event11 - Intel HID 5 button array: device removed
[   345.243] (II) event12 - Dell WMI hotkeys: device removed
[   345.343] (II) event4  - AT Translated Set 2 keyboard: device removed
[   345.513] (II) event7  - GTech MI wireless mouse Consumer Control: device removed
[   345.593] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.594] (II) UnloadModule: "libinput"
[   345.666] (II) Server terminated successfully (0). Closing log file.

Offline

#9 2019-04-17 16:06:59

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

Re: cannot start dwm xsession

Portal wrote:

it is just a non-responsive black screen with a dwm bar at the top

Ah yes, that sounds like the dwm desktop I l know and love smile

Have you installed st and dmenu? You're not going to be able to do much otherwise.

That Xorg log shows a normal session btw.

Offline

#10 2019-04-18 14:37:32

Portal
Member
Registered: 2019-03-11
Posts: 48

Re: cannot start dwm xsession

No, how do I set them up?
Is "make clean install" from source code enough?

Offline

#11 2019-04-18 14:55:33

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

Re: cannot start dwm xsession

Offline

#12 2019-04-18 15:25:54

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

Re: cannot start dwm xsession

You can copy config.def.h to config.h and edit the termcmd to whichever terminal emulator you prefer then recompile dwm.

dmenu is available as a binary package, the stock config.def.h will match the colours and font with the status bar.

Offline

Board footer

Powered by FluxBB