You are not logged in.

#1 2019-09-13 16:09:26

jiak
Member
Registered: 2010-10-17
Posts: 14

Connecting to a new wifi network with netctl

So I just moved to a new house and I am trying to connect to a new wifi network. I am using a USB wifi adapter.

This setup used to work in all other wireless networks:

cat /etc/netctl/panagiouda2

Description='wifi connection'
Interface=wlp7s0f3u4
Connection=wireless

Security=wpa
IP=dhcp

ESSID='C-15E060'
# Prepend hexadecimal keys with \"
# If your key starts with ", write it as '""<key>"'
# See also: the section on special quoting rules in netctl.profile(5)
Key='RRDYvefvRNuH4Rxd'
# Uncomment this if your ssid is hidden
#Hidden=yes
# Set a priority for automatic profile selection
#Priority=10

But now it doesn't.

netctl start panagiouda2 returns no errors.


systemctl status netctl@panagiouda2.service

netctl@panagiouda2.service - Networking for netctl profile panagiouda2
   Loaded: loaded (/usr/lib/systemd/system/netctl@.service; static; vendor preset: disabled)
   Active: active (exited) since Fri 2019-09-13 21:03:52 EEST; 23s ago
     Docs: man:netctl.profile(5)
  Process: 1569 ExecStart=/usr/lib/netctl/network start panagiouda2 (code=exited, status=0/SUCCESS)
 Main PID: 1569 (code=exited, status=0/SUCCESS)
   Status: "online"
    Tasks: 2 (limit: 4915)
   Memory: 3.0M
   CGroup: /system.slice/system-netctl.slice/netctl@panagiouda2.service
           ├─1579 wpa_supplicant -q -B -P /run/wpa_supplicant-wlp7s0f3u4.pid -i wlp7s0f3u4 -D nl80211,wext -c/run/netctl/wpa_supplicant-wlp7s0f3u4.conf
           └─1844 dhcpcd -4 -q -t 30 -L wlp7s0f3u4

Sep 13 21:03:52 optimus systemd[1]: Started Networking for netctl profile panagiouda2.
Sep 13 21:03:52 optimus dhcpcd[1648]: DUID 00:01:00:01:22:25:db:45:00:e0:6c:30:a3:3b
Sep 13 21:03:52 optimus dhcpcd[1648]: wlp7s0f3u4: IAID 6c:30:a3:3b
Sep 13 21:03:52 optimus dhcpcd[1648]: wlp7s0f3u4: rebinding lease of 192.168.1.7
Sep 13 21:03:52 optimus dhcpcd[1648]: wlp7s0f3u4: probing address 192.168.1.7/24
Sep 13 21:03:57 optimus dhcpcd[1648]: wlp7s0f3u4: leased 192.168.1.7 for 1814400 seconds
Sep 13 21:03:57 optimus dhcpcd[1648]: wlp7s0f3u4: adding route to 192.168.1.0/24
Sep 13 21:03:57 optimus dhcpcd[1648]: wlp7s0f3u4: adding default route via 192.168.1.1
Sep 13 21:03:57 optimus dhcpcd[1648]: forked to background, child pid 1844
Sep 13 21:03:57 optimus network[1569]: Started network profile 'panagiouda2'

ping 192.168.1.1

PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 192.168.1.7 icmp_seq=1 Destination Host Unreachable

I have also tried this config :

Description='A wireless connection'
Interface=wlp7s0f3u4
Connection=wireless
Security=wpa-configsection
IP=dhcp
WPAConfigSection=(
    'ssid="C-15E060"'
    'psk="RRDYvefvRNuH4Rxd"'
)

But no dice. Any ideas?

Offline

#2 2019-09-13 19:06:52

seth
Member
Registered: 2012-09-03
Posts: 49,967

Re: Connecting to a new wifi network with netctl

You get a lease and a route, so this log doesn't explain the failure.

ip a
ip r
systemctl list-unit-files --state=enabled
sudo journalctl -b

Are there any repeaters (radius or not) involved?
Do you have access to/control over the AP/router?

Offline

#3 2019-09-14 08:03:12

jiak
Member
Registered: 2010-10-17
Posts: 14

Re: Connecting to a new wifi network with netctl

Thank you for replying. No repeaters, just a DSL modem/router that I have no access to.

$ ip a

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
2: enp5s0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether 18:31:bf:af:66:14 brd ff:ff:ff:ff:ff:ff
3: wlp7s0f3u4: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 00:e0:6c:30:a3:3b brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.10/24 brd 192.168.1.255 scope global noprefixroute wlp7s0f3u4
       valid_lft forever preferred_lft forever

$ ip r

default via 192.168.1.1 dev wlp7s0f3u4 proto dhcp src 192.168.1.10 metric 303 
192.168.1.0/24 dev wlp7s0f3u4 proto dhcp scope link src 192.168.1.10 metric 303 

$ systemctl list-unit-files --state=enabled

UNIT FILE                 STATE  
org.cups.cupsd.path       enabled
acestream-engine.service  enabled
autovt@.service           enabled
display-manager.service   enabled
getty@.service            enabled
ntpd.service              enabled
org.cups.cupsd.service    enabled
pacserve.service          enabled
sddm.service              enabled
systemd-timesyncd.service enabled
org.cups.cupsd.socket     enabled
remote-fs.target          enabled
fstrim.timer              enabled

13 unit files listed.

# journalctl -b

-- Logs begin at Wed 2018-08-29 16:37:29 EEST, end at Sat 2019-09-14 13:48:38 EEST. --
Sep 14 13:47:50 optimus kernel: Linux version 5.2.11-arch1-1-ARCH (builduser@heftig-107976) (gcc version 9.1.0 (GCC)) #1 SMP PREEMPT Thu Aug 29 08:09:36 UTC 2019
Sep 14 13:47:50 optimus kernel: Command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda2 rw ipv6.disable_ipv6=1 initrd=../initramfs-linux.img
Sep 14 13:47:50 optimus kernel: KERNEL supported cpus:
Sep 14 13:47:50 optimus kernel:   Intel GenuineIntel
Sep 14 13:47:50 optimus kernel:   AMD AuthenticAMD
Sep 14 13:47:50 optimus kernel:   Hygon HygonGenuine
Sep 14 13:47:50 optimus kernel:   Centaur CentaurHauls
Sep 14 13:47:50 optimus kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Sep 14 13:47:50 optimus kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Sep 14 13:47:50 optimus kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Sep 14 13:47:50 optimus kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Sep 14 13:47:50 optimus kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Sep 14 13:47:50 optimus kernel: BIOS-provided physical RAM map:
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000003ffffff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x0000000004000000-0x0000000004009fff] ACPI NVS
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000000400a000-0x0000000009bfffff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x0000000009c00000-0x0000000009ffffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000affffff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000000b020000-0x0000000094662fff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x0000000094663000-0x000000009467afff] ACPI data
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009467b000-0x000000009a5b7fff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009a5b8000-0x000000009a6a4fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009a6a5000-0x000000009a6affff] ACPI data
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009a6b0000-0x000000009a7b0fff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009a7b1000-0x000000009ab64fff] ACPI NVS
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009ab65000-0x000000009b920fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009b921000-0x000000009dffffff] usable
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x000000009e000000-0x00000000dfffffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fd800000-0x00000000fdffffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem
 0x00000000fedc2000-0x00000000fedcffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 14 13:47:50 optimus kernel: BIOS-e820: [mem 0x0000000100000000-0x000000021f33ffff] usable
Sep 14 13:47:50 optimus kernel: NX (Execute Disable) protection: active
Sep 14 13:47:50 optimus kernel: SMBIOS 3.1.1 present.
Sep 14 13:47:50 optimus kernel: DMI: System manufacturer System Product Name/PRIME A320M-K, BIOS 4023 08/20/2018
Sep 14 13:47:50 optimus kernel: tsc: Fast TSC calibration failed
Sep 14 13:47:50 optimus kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 14 13:47:50 optimus kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 14 13:47:50 optimus kernel: last_pfn = 0x21f340 max_arch_pfn = 0x400000000
Sep 14 13:47:50 optimus kernel: MTRR default type: uncachable
Sep 14 13:47:50 optimus kernel: MTRR fixed ranges enabled:
Sep 14 13:47:50 optimus kernel:   00000-9FFFF write-back
Sep 14 13:47:50 optimus kernel:   A0000-BFFFF write-through
Sep 14 13:47:50 optimus kernel:   C0000-FFFFF write-protect
Sep 14 13:47:50 optimus kernel: MTRR variable ranges enabled:
Sep 14 13:47:50 optimus kernel:   0 base 000000000000 mask FFFF80000000 write-back
Sep 14 13:47:50 optimus kernel:   1 base 000080000000 mask FFFFC0000000 write-back
Sep 14 13:47:50 optimus kernel:   2 base 0000C0000000 mask FFFFE0000000 write-back
Sep 14 13:47:50 optimus kernel:   3 disabled
Sep 14 13:47:50 optimus kernel:   4 disabled
Sep 14 13:47:50 optimus kernel:   5 disabled
Sep 14 13:47:50 optimus kernel:   6 disabled
Sep 14 13:47:50 optimus kernel:   7 disabled
Sep 14 13:47:50 optimus kernel: TOM2: 0000000220000000 aka 8704M
Sep 14 13:47:50 optimus kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Sep 14 13:47:50 optimus kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
Sep 14 13:47:50 optimus kernel: last_pfn = 0x9e000 max_arch_pfn = 0x400000000
Sep 14 13:47:50 optimus kernel: check: Scanning 1 areas for low memory corruption
Sep 14 13:47:50 optimus kernel: Using GB pages for direct mapping
Sep 14 13:47:50 optimus kernel: BRK [0x53e01000, 0x53e01fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e02000, 0x53e02fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e03000, 0x53e03fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e04000, 0x53e04fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e05000, 0x53e05fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e06000, 0x53e06fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e07000, 0x53e07fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e08000, 0x53e08fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e09000, 0x53e09fff] PGTABLE
Sep 14 13:47:50 optimus kernel: BRK [0x53e0a000, 0x53e0afff] PGTABLE
Sep 14 13:47:50 optimus kernel: RAMDISK: [mem 0x7f742000-0x7fffffff]
Sep 14 13:47:50 optimus kernel: ACPI: Early table checksum verification disabled
Sep 14 13:47:50 optimus kernel: ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
Sep 14 13:47:50 optimus kernel: ACPI: XSDT 0x0000000094663098 0000AC (v01 ALASKA A M I    01072009 AMI  00010013)
Sep 14 13:47:50 optimus kernel: ACPI: FACP 0x000000009466D9B8 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
Sep 14 13:47:50 optimus kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20190509/tbfadt-615)
Sep 14 13:47:50 optimus kernel: ACPI: DSDT 0x00000000946631E0 00A7D1 (v02 ALASKA A M I    01072009 INTL 20120913)
Sep 14 13:47:50 optimus kernel: ACPI: FACS 0x000000009AB4EE00 000040
Sep 14 13:47:50 optimus kernel: ACPI: APIC 0x000000009466DAD0 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
Sep 14 13:47:50 optimus kernel: ACPI: FPDT 0x000000009466DBB0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
Sep 14 13:47:50 optimus kernel: ACPI: FIDT 0x000000009466DBF8 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x0000000094678790 001A41 (v01 AMD    AmdTable 00000001 INTL 20120913)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x000000009466DCF0 005367 (v02 AMD    AmdTable 00000002 MSFT 02000002)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x0000000094673058 0007DC (v01 AMD    AMD CPU  00000001 AMD  00000001)
Sep 14 13:47:50 optimus kernel: ACPI: CRAT 0x0000000094673838 000810 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
Sep 14 13:47:50 optimus kernel: ACPI: CDIT 0x0000000094674048 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x0000000094674078 002DA8 (v01 AMD    AMD AOD  00000001 INTL 20120913)
Sep 14 13:47:50 optimus kernel: ACPI: MCFG 0x0000000094676E20 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
Sep 14 13:47:50 optimus kernel: ACPI: HPET 0x0000000094676E60 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
Sep 14 13:47:50 optimus kernel: ACPI: UEFI 0x0000000094676E98 000042 (v01                 00000000      00000000)
Sep 14 13:47:50 optimus kernel: ACPI: IVRS 0x0000000094676EE0 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x0000000094676FB0 0000F8 (v01 AMD    AMD PT   00001000 INTL 20120913)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x00000000946770A8 000E96 (v01 AMD    AmdTable 00000001 INTL 20120913)
Sep 14 13:47:50 optimus kernel: ACPI: SSDT 0x0000000094677F40 000850 (v01 AMD    AmdTable 00000001 INTL 20120913)
Sep 14 13:47:50 optimus kernel: ACPI: Local APIC address 0xfee00000
Sep 14 13:47:50 optimus kernel: No NUMA configuration found
Sep 14 13:47:50 optimus kernel: Faking a node at [mem 0x0000000000000000-0x000000021f33ffff]
Sep 14 13:47:50 optimus kernel: NODE_DATA(0) allocated [mem 0x21f33c000-0x21f33ffff]
Sep 14 13:47:50 optimus kernel: Zone ranges:
Sep 14 13:47:50 optimus kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Sep 14 13:47:50 optimus kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Sep 14 13:47:50 optimus kernel:   Normal   [mem 0x0000000100000000-0x000000021f33ffff]
Sep 14 13:47:50 optimus kernel:   Device   empty
Sep 14 13:47:50 optimus kernel: Movable zone start for each node
Sep 14 13:47:50 optimus kernel: Early memory node ranges
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x0000000000100000-0x0000000003ffffff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x000000000400a000-0x0000000009bfffff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x000000000a000000-0x000000000affffff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x000000000b020000-0x0000000094662fff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x000000009467b000-0x000000009a5b7fff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x000000009a6b0000-0x000000009a7b0fff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x000000009b921000-0x000000009dffffff]
Sep 14 13:47:50 optimus kernel:   node   0: [mem 0x0000000100000000-0x000000021f33ffff]
Sep 14 13:47:50 optimus kernel: Zeroed struct page in unavailable ranges: 14094 pages
Sep 14 13:47:50 optimus kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000021f33ffff]
Sep 14 13:47:50 optimus kernel: On node 0 totalpages: 1817650
Sep 14 13:47:50 optimus kernel:   DMA zone: 64 pages used for memmap
Sep 14 13:47:50 optimus kernel:   DMA zone: 21 pages reserved
Sep 14 13:47:50 optimus kernel:   DMA zone: 3996 pages, LIFO batch:0
Sep 14 13:47:50 optimus kernel:   DMA32 zone: 9958 pages used for memmap
Sep 14 13:47:50 optimus kernel:   DMA32 zone: 637270 pages, LIFO batch:63
Sep 14 13:47:50 optimus kernel:   Normal zone: 18381 pages used for memmap
Sep 14 13:47:50 optimus kernel:   Normal zone: 1176384 pages, LIFO batch:63
Sep 14 13:47:50 optimus kernel: ACPI: PM-Timer IO Port: 0x808
Sep 14 13:47:50 optimus kernel: ACPI: Local APIC address 0xfee00000
Sep 14 13:47:50 optimus kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Sep 14 13:47:50 optimus kernel: IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
Sep 14 13:47:50 optimus kernel: IOAPIC[1]: apic_id 6, version 33, address 0xfec01000, GSI 24-55
Sep 14 13:47:50 optimus kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 14 13:47:50 optimus kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Sep 14 13:47:50 optimus kernel: ACPI: IRQ0 used by override.
Sep 14 13:47:50 optimus kernel: ACPI: IRQ9 used by override.
Sep 14 13:47:50 optimus kernel: Using ACPI (MADT) for SMP configuration information
Sep 14 13:47:50 optimus kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
Sep 14 13:47:50 optimus kernel: smpboot: Allowing 16 CPUs, 12 hotplug CPUs
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x04000000-0x04009fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x09c00000-0x09ffffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x94663000-0x9467afff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x9a5b8000-0x9a6a4fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x9a6a5000-0x9a6affff]
Sep 14 13:47:50 optimus
 kernel: PM: Registered nosave memory: [mem 0x9a7b1000-0x9ab64fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x9ab65000-0x9b920fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0x9e000000-0xdfffffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfd7fffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfd800000-0xfdffffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfe000000-0xfe9fffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
Sep 14 13:47:50 optimus kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Sep 14 13:47:50 optimus kernel: [mem 0xe0000000-0xf7ffffff] available for PCI devices
Sep 14 13:47:50 optimus kernel: Booting paravirtualized kernel on bare hardware
Sep 14 13:47:50 optimus kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Sep 14 13:47:50 optimus kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:16 nr_node_ids:1
Sep 14 13:47:50 optimus kernel: percpu: Embedded 54 pages/cpu s184320 r8192 d28672 u262144
Sep 14 13:47:50 optimus kernel: pcpu-alloc: s184320 r8192 d28672 u262144 alloc=1*2097152
Sep 14 13:47:50 optimus kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Sep 14 13:47:50 optimus kernel: Built 1 zonelists, mobility grouping on.  Total pages: 1789226
Sep 14 13:47:50 optimus kernel: Policy zone: Normal
Sep 14 13:47:50 optimus kernel: Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda2 rw ipv6.disable_ipv6=1 initrd=../initramfs-linux.img
Sep 14 13:47:50 optimus kernel: Calgary: detecting Calgary via BIOS EBDA area
Sep 14 13:47:50 optimus kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Sep 14 13:47:50 optimus kernel: Memory: 7048676K/7270600K available (12291K kernel code, 1319K rwdata, 3904K rodata, 1608K init, 3616K bss, 221924K reserved, 0K cma-reserved)
Sep 14 13:47:50 optimus kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Sep 14 13:47:50 optimus kernel: ftrace: allocating 37395 entries in 147 pages
Sep 14 13:47:50 optimus kernel: rcu: Preemptible hierarchical RCU implementation.
Sep 14 13:47:50 optimus kernel: rcu:         CONFIG_RCU_FANOUT set to non-default value of 32.
Sep 14 13:47:50 optimus kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Sep 14 13:47:50 optimus kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
Sep 14 13:47:50 optimus kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Sep 14 13:47:50 optimus kernel:         Tasks RCU enabled.
Sep 14 13:47:50 optimus kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Sep 14 13:47:50 optimus kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Sep 14 13:47:50 optimus kernel: NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
Sep 14 13:47:50 optimus kernel: rcu:         Offload RCU callbacks from CPUs: (none).
Sep 14 13:47:50 optimus kernel: random: get_random_bytes called from start_kernel+0x37e/0x559 with crng_init=0
Sep 14 13:47:50 optimus kernel: Console: colour VGA+ 80x25
Sep 14 13:47:50 optimus kernel: printk: console [tty0] enabled
Sep 14 13:47:50 optimus kernel: ACPI: Core revision 20190509
Sep 14 13:47:50 optimus kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Sep 14 13:47:50 optimus kernel: hpet clockevent registered
Sep 14 13:47:50 optimus kernel: APIC: Switch to symmetric I/O mode setup
Sep 14 13:47:50 optimus kernel: Switched APIC routing to physical flat.
Sep 14 13:47:50 optimus kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Sep 14 13:47:50 optimus kernel: tsc: PIT calibration matches HPET. 1 loops
Sep 14 13:47:50 optimus kernel: tsc: Detected 3493.445 MHz processor
Sep 14 13:47:50 optimus kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x325b206ecee, max_idle_ns: 440795267162 ns
Sep 14 13:47:50 optimus kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6989.01 BogoMIPS (lpj=11644816)
Sep 14 13:47:50 optimus kernel: pid_max: default: 32768 minimum: 301
Sep 14 13:47:50 optimus kernel: LSM: Security Framework initializing
Sep 14 13:47:50 optimus kernel: Yama: becoming mindful.
Sep 14 13:47:50 optimus kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Sep 14 13:47:50 optimus kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Sep 14 13:47:50 optimus kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Sep 14 13:47:50 optimus kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Sep 14 13:47:50 optimus kernel: *** VALIDATE proc ***
Sep 14 13:47:50 optimus kernel: *** VALIDATE cgroup1 ***
Sep 14 13:47:50 optimus kernel: *** VALIDATE cgroup2 ***
Sep 14 13:47:50 optimus kernel: LVT offset 1 assigned for vector 0xf9
Sep 14 13:47:50 optimus kernel: LVT offset 2 assigned for vector 0xf4
Sep 14 13:47:50 optimus kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Sep 14 13:47:50 optimus kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
Sep 14 13:47:50 optimus kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Sep 14 13:47:50 optimus kernel: Spectre V2 : Mitigation: Full AMD retpoline
Sep 14 13:47:50 optimus kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Sep 14 13:47:50 optimus kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Sep 14 13:47:50 optimus kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Sep 14 13:47:50 optimus kernel: Freeing SMP alternatives memory: 32K
Sep 14 13:47:50 optimus kernel: smpboot: CPU0: AMD Ryzen 3 2200G with Radeon Vega Graphics (family: 0x17, model: 0x11, stepping: 0x0)
Sep 14 13:47:50 optimus kernel: Performance Events: Fam17h core perfctr, AMD PMU driver.
Sep 14 13:47:50 optimus kernel: ... version:                0
Sep 14 13:47:50 optimus kernel: ... bit width:              48
Sep 14 13:47:50 optimus kernel: ... generic registers:      6
Sep 14 13:47:50 optimus kernel: ... value mask:             0000ffffffffffff
Sep 14 13:47:50 optimus kernel: ... max period:             00007fffffffffff
Sep 14 13:47:50 optimus kernel: ... fixed-purpose events:   0
Sep 14 13:47:50 optimus kernel: ... event mask:             000000000000003f
Sep 14 13:47:50 optimus kernel: rcu: Hierarchical SRCU implementation.
Sep 14 13:47:50 optimus kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Sep 14 13:47:50 optimus kernel: smp: Bringing up secondary CPUs ...
Sep 14 13:47:50 optimus kernel: x86: Booting SMP configuration:
Sep 14 13:47:50 optimus kernel: .... node  #0, CPUs:        #1  #2  #3
Sep 14 13:47:50 optimus kernel: smp: Brought up 1 node, 4 CPUs
Sep 14 13:47:50 optimus kernel: smpboot: Max logical packages: 4
Sep 14 13:47:50 optimus kernel: smpboot: Total of 4 processors activated (27958.04 BogoMIPS)
Sep 14 13:47:50 optimus kernel: devtmpfs: initialized
Sep 14 13:47:50 optimus kernel: x86/mm: Memory block size: 128MB
Sep 14 13:47:50 optimus kernel: PM: Registering ACPI NVS region [mem 0x04000000-0x04009fff] (40960 bytes)
Sep 14 13:47:50 optimus kernel: PM: Registering ACPI NVS region [mem 0x9a7b1000-0x9ab64fff] (3883008 bytes)
Sep 14 13:47:50 optimus kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Sep 14 13:47:50 optimus kernel: futex hash table entries: 4096 (order: 6, 262144 bytes)
Sep 14 13:47:50 optimus kernel: pinctrl core: initialized pinctrl subsystem
Sep 14 13:47:50 optimus kernel: PM: RTC time: 10:47:46, date: 2019-09-14
Sep 14 13:47:50 optimus kernel: NET: Registered protocol family 16
Sep 14 13:47:50 optimus kernel: audit: initializing
 netlink subsys (disabled)
Sep 14 13:47:50 optimus kernel: audit: type=2000 audit(1568458066.323:1): state=initialized audit_enabled=0 res=1
Sep 14 13:47:50 optimus kernel: cpuidle: using governor ladder
Sep 14 13:47:50 optimus kernel: cpuidle: using governor menu
Sep 14 13:47:50 optimus kernel: ACPI: bus type PCI registered
Sep 14 13:47:50 optimus kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 14 13:47:50 optimus kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Sep 14 13:47:50 optimus kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Sep 14 13:47:50 optimus kernel: PCI: Using configuration type 1 for base access
Sep 14 13:47:50 optimus kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Sep 14 13:47:50 optimus kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(Module Device)
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(Processor Device)
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(Linux-Dell-Video)
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Sep 14 13:47:50 optimus kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Sep 14 13:47:50 optimus kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.SMIC], AE_ALREADY_EXISTS (20190509/dswload2-323)
Sep 14 13:47:50 optimus kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190509/psobject-220)
Sep 14 13:47:50 optimus kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.SMIB], AE_ALREADY_EXISTS (20190509/dsfield-631)
Sep 14 13:47:50 optimus kernel: ACPI: 8 ACPI AML tables successfully acquired and loaded
Sep 14 13:47:50 optimus kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Sep 14 13:47:50 optimus kernel: ACPI: Interpreter enabled
Sep 14 13:47:50 optimus kernel: ACPI: (supports S0 S3 S4 S5)
Sep 14 13:47:50 optimus kernel: ACPI: Using IOAPIC for interrupt routing
Sep 14 13:47:50 optimus kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 14 13:47:50 optimus kernel: ACPI: Enabled 3 GPEs in block 00 to 1F
Sep 14 13:47:50 optimus kernel: ACPI: Power Resource [P0ST] (on)
Sep 14 13:47:50 optimus kernel: ACPI: Power Resource [P3ST] (on)
Sep 14 13:47:50 optimus kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Sep 14 13:47:50 optimus kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Sep 14 13:47:50 optimus kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR]
Sep 14 13:47:50 optimus kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
Sep 14 13:47:50 optimus kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Sep 14 13:47:50 optimus kernel: PCI host bridge to bus 0000:00
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.2: [1022:15d1] type 00 class 0x080600
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1: [1022:15db] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2: [1022:15dc] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
Sep 14 13:47:50 optimus kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.0: [1022:43bc] type 00 class 0x0c0330
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.0: reg 0x10: [mem 0xfe8a0000-0xfe8a7fff 64bit]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.0: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.1: [1022:43b8] type 00 class 0x010601
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.1: reg 0x24: [mem 0xfe880000-0xfe89ffff]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.1: reg 0x30: [mem 0xfe800000-0xfe87ffff pref]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.1: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2: [1022:43b3] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2: PCI bridge to [bus 01-06]
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2:   bridge window [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2:   bridge window [mem 0xfe700000-0xfe8fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:02:04.0: [1022:43b4] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:02:04.0: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:02:05.0: [1022:43b4] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:02:05.0: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0: [1022:43b4] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:02:07.0: [1022:43b4] type 01 class 0x060400
Sep 14 13:47:50 optimus kernel: pci 0000:02:07.0: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2: PCI bridge to [bus 02-06]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2:   bridge window [mem 0xfe700000-0xfe7fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:02:04.0: PCI bridge to [bus 03]
Sep 14 13:47:50 optimus kernel: pci 0000:02:05.0: PCI bridge to [bus 04]
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: reg 0x10: [io  0xf000-0xf0ff]
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: reg 0x18: [mem 0xfe704000-0xfe704fff 64bit]
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: reg 0x20: [mem 0xfe700000-0xfe703fff 64bit]
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: supports D1 D2
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0: PCI bridge to [bus 05]
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0:   bridge window [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0:   bridge window [mem 0xfe700000-0xfe7fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:02:07.0: PCI bridge to [bus 06]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: [1002:15dd] type 00 class 0x030000
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: reg 0x20: [io  0xe000-0xe0ff]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: reg 0x24: [mem 0xfe600000-0xfe67ffff]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: PME# supported from D1 D2 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.1: [1002:15de] type 00 class 0x040300
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.1: reg 0x10: [mem 0xfe688000-0xfe68bfff]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.1: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.1: PME# supported from D1 D2 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.2: [1022:15df] type 00 class 0x108000
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.2: reg 0x18: [mem 0xfe500000-0xfe5fffff]
Sep 14 13:47:50 optimus kernel:
 pci 0000:07:00.2: reg 0x24: [mem 0xfe68c000-0xfe68dfff]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.2: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.3: [1022:15e0] type 00 class 0x0c0330
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.3: reg 0x10: [mem 0xfe400000-0xfe4fffff 64bit]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.3: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.3: PME# supported from D0 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.4: [1022:15e1] type 00 class 0x0c0330
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.4: reg 0x10: [mem 0xfe300000-0xfe3fffff 64bit]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.4: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.4: PME# supported from D0 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.6: [1022:15e3] type 00 class 0x040300
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.6: reg 0x10: [mem 0xfe680000-0xfe687fff]
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.6: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.6: PME# supported from D0 D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1: PCI bridge to [bus 07]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1:   bridge window [mem 0xfe300000-0xfe6fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
Sep 14 13:47:50 optimus kernel: pci 0000:08:00.0: [1022:7901] type 00 class 0x010601
Sep 14 13:47:50 optimus kernel: pci 0000:08:00.0: reg 0x24: [mem 0xfe900000-0xfe9007ff]
Sep 14 13:47:50 optimus kernel: pci 0000:08:00.0: enabling Extended Tags
Sep 14 13:47:50 optimus kernel: pci 0000:08:00.0: PME# supported from D3hot D3cold
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2: PCI bridge to [bus 08]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2:   bridge window [mem 0xfe900000-0xfe9fffff]
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: vgaarb: setting as boot VGA device
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: vgaarb: bridge control possible
Sep 14 13:47:50 optimus kernel: vgaarb: loaded
Sep 14 13:47:50 optimus kernel: ACPI: bus type USB registered
Sep 14 13:47:50 optimus kernel: usbcore: registered new interface driver usbfs
Sep 14 13:47:50 optimus kernel: usbcore: registered new interface driver hub
Sep 14 13:47:50 optimus kernel: usbcore: registered new device driver usb
Sep 14 13:47:50 optimus kernel: pps_core: LinuxPPS API ver. 1 registered
Sep 14 13:47:50 optimus kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 14 13:47:50 optimus kernel: PTP clock support registered
Sep 14 13:47:50 optimus kernel: EDAC MC: Ver: 3.0.0
Sep 14 13:47:50 optimus kernel: PCI: Using ACPI for IRQ routing
Sep 14 13:47:50 optimus kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x09c00000-0x0bffffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x94663000-0x97ffffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x9a5b8000-0x9bffffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x9a7b1000-0x9bffffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x9e000000-0x9fffffff]
Sep 14 13:47:50 optimus kernel: e820: reserve RAM buffer [mem 0x21f340000-0x21fffffff]
Sep 14 13:47:50 optimus kernel: NetLabel: Initializing
Sep 14 13:47:50 optimus kernel: NetLabel:  domain hash size = 128
Sep 14 13:47:50 optimus kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Sep 14 13:47:50 optimus kernel: NetLabel:  unlabeled traffic allowed by default
Sep 14 13:47:50 optimus kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Sep 14 13:47:50 optimus kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Sep 14 13:47:50 optimus kernel: clocksource: Switched to clocksource tsc-early
Sep 14 13:47:50 optimus kernel: VFS: Disk quotas dquot_6.6.0
Sep 14 13:47:50 optimus kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 14 13:47:50 optimus kernel: *** VALIDATE hugetlbfs ***
Sep 14 13:47:50 optimus kernel: pnp: PnP ACPI init
Sep 14 13:47:50 optimus kernel: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Sep 14 13:47:50 optimus kernel: system 00:01: [mem 0xfeb80000-0xfebfffff] could not be reserved
Sep 14 13:47:50 optimus kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 14 13:47:50 optimus kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Sep 14 13:47:50 optimus kernel: system 00:03: [io  0x0300-0x030f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:03: [io  0x0230-0x023f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:03: [io  0x0290-0x029f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 14 13:47:50 optimus kernel: pnp 00:04: [dma 0 disabled]
Sep 14 13:47:50 optimus kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x040b] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x04d6] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0c00-0x0c01] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0c14] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0c50-0x0c51] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0c52] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0c6c] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0c6f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0cd0-0x0cd1] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0cd2-0x0cd3] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0cd4-0x0cd5] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0cd6-0x0cd7] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0cd8-0x0cdf] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0800-0x089f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0b00-0x0b0f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0b20-0x0b3f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0900-0x090f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [io  0x0910-0x091f] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
Sep 14 13:47:50 optimus kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 14 13:47:50 optimus kernel: pnp: PnP ACPI: found 6 devices
Sep 14 13:47:50 optimus kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 14 13:47:50 optimus kernel: pci 0000:02:04.0: PCI bridge to [bus 03]
Sep 14 13:47:50 optimus kernel: pci 0000:02:05.0: PCI bridge to [bus 04]
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0: PCI bridge to [bus 05]
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0:   bridge window [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0:   bridge window [mem 0xfe700000-0xfe7fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:02:07.0: PCI bridge to [bus 06]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2: PCI bridge to [bus 02-06]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2:   bridge window [mem 0xfe700000-0xfe7fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2: PCI bridge to [bus 01-06]
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2:   bridge window [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2:   bridge window [mem 0xfe700000-0xfe8fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1: PCI bridge to [bus 07]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1:   bridge
 window [mem 0xfe300000-0xfe6fffff]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2: PCI bridge to [bus 08]
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2:   bridge window [mem 0xfe900000-0xfe9fffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:02: resource 1 [mem 0xfe700000-0xfe7fffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:05: resource 0 [io  0xf000-0xffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:05: resource 1 [mem 0xfe700000-0xfe7fffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:07: resource 0 [io  0xe000-0xefff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:07: resource 1 [mem 0xfe300000-0xfe6fffff]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:07: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
Sep 14 13:47:50 optimus kernel: pci_bus 0000:08: resource 1 [mem 0xfe900000-0xfe9fffff]
Sep 14 13:47:50 optimus kernel: NET: Registered protocol family 2
Sep 14 13:47:50 optimus kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)
Sep 14 13:47:50 optimus kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Sep 14 13:47:50 optimus kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Sep 14 13:47:50 optimus kernel: TCP: Hash tables configured (established 65536 bind 65536)
Sep 14 13:47:50 optimus kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
Sep 14 13:47:50 optimus kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Sep 14 13:47:50 optimus kernel: NET: Registered protocol family 1
Sep 14 13:47:50 optimus kernel: NET: Registered protocol family 44
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Sep 14 13:47:50 optimus kernel: PCI: CLS 64 bytes, default 64
Sep 14 13:47:50 optimus kernel: Trying to unpack rootfs image as initramfs...
Sep 14 13:47:50 optimus kernel: Freeing initrd memory: 8952K
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.2: AMD-Vi: Unable to write to IOMMU perf counter.
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.2: can't derive routing for PCI INT A
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.2: PCI INT A: not connected
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.0: Adding to iommu group 0
Sep 14 13:47:50 optimus kernel: pci 0000:00:01.2: Adding to iommu group 1
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.0: Adding to iommu group 2
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.1: Adding to iommu group 3
Sep 14 13:47:50 optimus kernel: pci 0000:00:08.2: Adding to iommu group 2
Sep 14 13:47:50 optimus kernel: pci 0000:00:14.0: Adding to iommu group 4
Sep 14 13:47:50 optimus kernel: pci 0000:00:14.3: Adding to iommu group 4
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.0: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.1: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.2: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.3: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.4: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.5: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.6: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:00:18.7: Adding to iommu group 5
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.0: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.1: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:01:00.2: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:02:04.0: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:02:05.0: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:02:06.0: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:02:07.0: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:05:00.0: Adding to iommu group 6
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: Adding to iommu group 7
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.0: Using iommu direct mapping
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.1: Adding to iommu group 8
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.2: Adding to iommu group 8
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.3: Adding to iommu group 8
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.4: Adding to iommu group 8
Sep 14 13:47:50 optimus kernel: pci 0000:07:00.6: Adding to iommu group 8
Sep 14 13:47:50 optimus kernel: pci 0000:08:00.0: Adding to iommu group 2
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
Sep 14 13:47:50 optimus kernel: pci 0000:00:00.2: AMD-Vi: Extended features (0x4f77ef22294ada):
Sep 14 13:47:50 optimus kernel:  PPR NX GT IA GA PC GA_vAPIC
Sep 14 13:47:50 optimus kernel: AMD-Vi: Interrupt remapping enabled
Sep 14 13:47:50 optimus kernel: AMD-Vi: Virtual APIC enabled
Sep 14 13:47:50 optimus kernel: AMD-Vi: Lazy IO/TLB flushing enabled
Sep 14 13:47:50 optimus kernel: amd_uncore: AMD NB counters detected
Sep 14 13:47:50 optimus kernel: amd_uncore: AMD LLC counters detected
Sep 14 13:47:50 optimus kernel: check: Scanning for low memory corruption every 60 seconds
Sep 14 13:47:50 optimus kernel: Initialise system trusted keyrings
Sep 14 13:47:50 optimus kernel: Key type blacklist registered
Sep 14 13:47:50 optimus kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Sep 14 13:47:50 optimus kernel: zbud: loaded
Sep 14 13:47:50 optimus kernel: Key type asymmetric registered
Sep 14 13:47:50 optimus kernel: Asymmetric key parser 'x509' registered
Sep 14 13:47:50 optimus kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
Sep 14 13:47:50 optimus kernel: io scheduler mq-deadline registered
Sep 14 13:47:50 optimus kernel: io scheduler kyber registered
Sep 14 13:47:50 optimus kernel: io scheduler bfq registered
Sep 14 13:47:50 optimus kernel: pcieport 0000:00:01.2: AER: enabled with IRQ 26
Sep 14 13:47:50 optimus kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 14 13:47:50 optimus kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Sep 14 13:47:50 optimus kernel: ACPI: Power Button [PWRB]
Sep 14 13:47:50 optimus kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Sep 14 13:47:50 optimus kernel: ACPI: Power Button [PWRF]
Sep 14 13:47:50 optimus kernel: Monitor-Mwait will be used to enter C-1 state
Sep 14 13:47:50 optimus kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Sep 14 13:47:50 optimus kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Sep 14 13:47:50 optimus kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Sep 14 13:47:50 optimus kernel: usbcore: registered new interface driver usbserial_generic
Sep 14 13:47:50 optimus kernel: usbserial: USB Serial support registered for generic
Sep 14 13:47:50 optimus kernel: rtc_cmos 00:02: RTC can wake from S4
Sep 14 13:47:50 optimus kernel: rtc_cmos 00:02: registered as rtc0
Sep 14 13:47:50 optimus kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Sep 14 13:47:50 optimus kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 14 13:47:50 optimus kernel: NET: Registered protocol family 10
Sep 14 13:47:50 optimus kernel: Segment Routing with IPv6
Sep 14 13:47:50 optimus kernel: NET: Registered protocol family 17
Sep 14 13:47:50 optimus kernel: mce: Using 23 MCE banks
Sep 14 13:47:50 optimus kernel: RAS: Correctable Errors collector initialized.
Sep 14 13:47:50 optimus kernel: microcode: CPU0: patch_level=0x0810100b
Sep 14 13:47:50 optimus kernel: microcode: CPU1: patch_level=0x0810100b
Sep 14 13:47:50 optimus kernel: microcode: CPU2: patch_level=0x0810100b
Sep 14 13:47:50 optimus kernel: microcode: CPU3: patch_level=0x0810100b
Sep 14 13:47:50 optimus kernel: microcode: Microcode Update Driver: v2.2.
Sep 14 13:47:50 optimus kernel: sched_clock: Marking stable (573200479, -26661516)->(552235027, -5696064)
Sep 14 13:47:50 optimus kernel: registered taskstats version 1
Sep 14 13:47:50 optimus kernel: Loading compiled-in X.509 certificates
Sep 14 13:47:50 optimus kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 12f49d339d879888f73b01bf952385086361e4d8'
Sep 14 13:47:50 optimus kernel: zswap: loaded using pool lzo/zbud
Sep 14 13:47:50 optimus kernel: Key type big_key registered
Sep 14 13:47:50 optimus kernel: PM:   Magic number: 3:366:780
Sep 14 13:47:50 optimus kernel: rtc_cmos 00:02: setting system clock to 2019-09-14T10:47:47 UTC (1568458067)
Sep 14 13:47:50 optimus kernel: Freeing unused decrypted memory: 2040K
Sep 14 13:47:50 optimus kernel: Freeing unused kernel image memory: 1608K
Sep 14 13:47:50 optimus kernel: Write protecting the kernel read-only data: 18432k
Sep 14 13:47:50 optimus kernel: Freeing unused kernel image memory: 2012K
Sep
 14 13:47:50 optimus kernel: Freeing unused kernel image memory: 192K
Sep 14 13:47:50 optimus kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Sep 14 13:47:50 optimus kernel: Run /init as init process
Sep 14 13:47:50 optimus kernel: SCSI subsystem initialized
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:01:00.0: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
Sep 14 13:47:50 optimus kernel: libata version 3.00 loaded.
Sep 14 13:47:50 optimus kernel: ahci 0000:01:00.1: version 3.0
Sep 14 13:47:50 optimus kernel: ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
Sep 14 13:47:50 optimus kernel: ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
Sep 14 13:47:50 optimus kernel: ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
Sep 14 13:47:50 optimus kernel: scsi host0: ahci
Sep 14 13:47:50 optimus kernel: scsi host1: ahci
Sep 14 13:47:50 optimus kernel: scsi host2: ahci
Sep 14 13:47:50 optimus kernel: scsi host3: ahci
Sep 14 13:47:50 optimus kernel: scsi host4: ahci
Sep 14 13:47:50 optimus kernel: scsi host5: ahci
Sep 14 13:47:50 optimus kernel: scsi host6: ahci
Sep 14 13:47:50 optimus kernel: scsi host7: ahci
Sep 14 13:47:50 optimus kernel: ata1: SATA max UDMA/133 abar m131072@0xfe880000 port 0xfe880100 irq 38
Sep 14 13:47:50 optimus kernel: ata2: SATA max UDMA/133 abar m131072@0xfe880000 port 0xfe880180 irq 38
Sep 14 13:47:50 optimus kernel: ata3: DUMMY
Sep 14 13:47:50 optimus kernel: ata4: DUMMY
Sep 14 13:47:50 optimus kernel: ata5: SATA max UDMA/133 abar m131072@0xfe880000 port 0xfe880300 irq 38
Sep 14 13:47:50 optimus kernel: ata6: SATA max UDMA/133 abar m131072@0xfe880000 port 0xfe880380 irq 38
Sep 14 13:47:50 optimus kernel: ata7: DUMMY
Sep 14 13:47:50 optimus kernel: ata8: DUMMY
Sep 14 13:47:50 optimus kernel: ahci 0000:08:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
Sep 14 13:47:50 optimus kernel: ahci 0000:08:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
Sep 14 13:47:50 optimus kernel: scsi host8: ahci
Sep 14 13:47:50 optimus kernel: ata9: SATA max UDMA/133 abar m2048@0xfe900000 port 0xfe900100 irq 40
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000008000410
Sep 14 13:47:50 optimus kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
Sep 14 13:47:50 optimus kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 14 13:47:50 optimus kernel: usb usb1: Product: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: usb usb1: Manufacturer: Linux 5.2.11-arch1-1-ARCH xhci-hcd
Sep 14 13:47:50 optimus kernel: usb usb1: SerialNumber: 0000:01:00.0
Sep 14 13:47:50 optimus kernel: hub 1-0:1.0: USB hub found
Sep 14 13:47:50 optimus kernel: hub 1-0:1.0: 9 ports detected
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:01:00.0: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
Sep 14 13:47:50 optimus kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Sep 14 13:47:50 optimus kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.02
Sep 14 13:47:50 optimus kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 14 13:47:50 optimus kernel: usb usb2: Product: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: usb usb2: Manufacturer: Linux 5.2.11-arch1-1-ARCH xhci-hcd
Sep 14 13:47:50 optimus kernel: usb usb2: SerialNumber: 0000:01:00.0
Sep 14 13:47:50 optimus kernel: hub 2-0:1.0: USB hub found
Sep 14 13:47:50 optimus kernel: hub 2-0:1.0: 3 ports detected
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.3: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 3
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410
Sep 14 13:47:50 optimus kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
Sep 14 13:47:50 optimus kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 14 13:47:50 optimus kernel: usb usb3: Product: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: usb usb3: Manufacturer: Linux 5.2.11-arch1-1-ARCH xhci-hcd
Sep 14 13:47:50 optimus kernel: usb usb3: SerialNumber: 0000:07:00.3
Sep 14 13:47:50 optimus kernel: hub 3-0:1.0: USB hub found
Sep 14 13:47:50 optimus kernel: hub 3-0:1.0: 4 ports detected
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.3: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 4
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Sep 14 13:47:50 optimus kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Sep 14 13:47:50 optimus kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.02
Sep 14 13:47:50 optimus kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 14 13:47:50 optimus kernel: usb usb4: Product: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: usb usb4: Manufacturer: Linux 5.2.11-arch1-1-ARCH xhci-hcd
Sep 14 13:47:50 optimus kernel: usb usb4: SerialNumber: 0000:07:00.3
Sep 14 13:47:50 optimus kernel: hub 4-0:1.0: USB hub found
Sep 14 13:47:50 optimus kernel: hub 4-0:1.0: 4 ports detected
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.4: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.4: new USB bus registered, assigned bus number 5
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410
Sep 14 13:47:50 optimus kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
Sep 14 13:47:50 optimus kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 14 13:47:50 optimus kernel: usb usb5: Product: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: usb usb5: Manufacturer: Linux 5.2.11-arch1-1-ARCH xhci-hcd
Sep 14 13:47:50 optimus kernel: usb usb5: SerialNumber: 0000:07:00.4
Sep 14 13:47:50 optimus kernel: hub 5-0:1.0: USB hub found
Sep 14 13:47:50 optimus kernel: hub 5-0:1.0: 1 port detected
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.4: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.4: new USB bus registered, assigned bus number 6
Sep 14 13:47:50 optimus kernel: xhci_hcd 0000:07:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Sep 14 13:47:50 optimus kernel: usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
Sep 14 13:47:50 optimus kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.02
Sep 14 13:47:50 optimus kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 14 13:47:50 optimus kernel: usb usb6: Product: xHCI Host Controller
Sep 14 13:47:50 optimus kernel: usb usb6: Manufacturer: Linux 5.2.11-arch1-1-ARCH xhci-hcd
Sep 14 13:47:50 optimus kernel: usb usb6: SerialNumber: 0000:07:00.4
Sep 14 13:47:50 optimus kernel: hub 6-0:1.0: USB hub found
Sep 14 13:47:50 optimus kernel: hub 6-0:1.0: 1 port detected
Sep 14 13:47:50 optimus kernel: ata9: SATA link down (SStatus 0 SControl 300)
Sep 14 13:47:50 optimus kernel: usb 1-6: new low-speed USB device number 2 using xhci_hcd
Sep 14 13:47:50 optimus kernel: usb 3-4: new high-speed USB device number 2 using xhci_hcd
Sep 14 13:47:50 optimus kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Sep 14 13:47:50 optimus kernel: ata1.00: ATA-9: TS128GSSD370S, O1225G, max UDMA/133
Sep 14 13:47:50 optimus kernel: ata1.00: 250069680 sectors, multi 2: LBA48 NCQ (depth 32), AA
Sep 14 13:47:50 optimus kernel: ata1.00: configured for UDMA/133
Sep 14 13:47:50 optimus kernel: scsi 0:0:0:0: Direct-Access     ATA      TS128GSSD370S    5G   PQ: 0 ANSI: 5
Sep 14 13:47:50 optimus kernel: usb 3-4: New USB device found, idVendor=148f, idProduct=3070, bcdDevice= 1.01
Sep 14 13:47:50 optimus kernel: usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Sep 14 13:47:50 optimus kernel: usb 3-4: Product: 802.11 n WLAN
Sep 14 13:47:50 optimus kernel: usb 3-4: Manufacturer: Ralink
Sep 14 13:47:50 optimus kernel: usb 3-4: SerialNumber: 1.0
Sep 14 13:47:50 optimus kernel: usb 1-6: New USB device found, idVendor=04ca, idProduct=0022, bcdDevice= 1.09
Sep 14 13:47:50 optimus kernel: usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 14 13:47:50 optimus kernel: usb 1-6: Product: USB Keyboard
Sep 14 13:47:50 optimus kernel: usb 1-6: Manufacturer: LITEON Technology
Sep 14 13:47:50 optimus kernel: hidraw: raw HID events driver (C) Jiri Kosina
Sep 14 13:47:50 optimus kernel: usbcore: registered new interface driver usbhid
Sep 14 13:47:50 optimus kernel: usbhid: USB HID core driver
Sep 14 13:47:50 optimus kernel: input: LITEON Technology USB Keyboard as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-6/1-6:1.0/0003:04CA:0022.0001/input/input2
Sep 14 13:47:50 optimus kernel: hid-generic 0003:04CA:0022.0001: input,hidraw0: USB HID v1.10 Keyboard [LITEON Technology USB Keyboard] on usb-0000:01:00.0-6/input0
Sep 14 13:47:50 optimus kernel: usb 1-9: new low-speed USB device number 3 using xhci_hcd
Sep 14 13:47:50 optimus kernel: tsc: Refined TSC clocksource calibration: 3493.436 MHz
Sep 14 13:47:50 optimus kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x325b186289d, max_idle_ns: 440795326624 ns
Sep 14 13:47:50 optimus kernel: clocksource: Switched to clocksource tsc
Sep 14 13:47:50 optimus
 kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Sep 14 13:47:50 optimus kernel: ata2.00: ATAPI: PIONEER BD-RW   BDR-207M, 1.20, max UDMA/100
Sep 14 13:47:50 optimus kernel: ata2.00: configured for UDMA/100
Sep 14 13:47:50 optimus kernel: scsi 1:0:0:0: CD-ROM            PIONEER  BD-RW   BDR-207M 1.20 PQ: 0 ANSI: 5
Sep 14 13:47:50 optimus kernel: usb 1-9: New USB device found, idVendor=045e, idProduct=0084, bcdDevice= 3.90
Sep 14 13:47:50 optimus kernel: usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 14 13:47:50 optimus kernel: usb 1-9: Product: Microsoft Basic Optical Mouse
Sep 14 13:47:50 optimus kernel: usb 1-9: Manufacturer: Microsoft
Sep 14 13:47:50 optimus kernel: input: Microsoft Microsoft Basic Optical Mouse as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-9/1-9:1.0/0003:045E:0084.0002/input/input3
Sep 14 13:47:50 optimus kernel: hid-generic 0003:045E:0084.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft Basic Optical Mouse] on usb-0000:01:00.0-9/input0
Sep 14 13:47:50 optimus kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Sep 14 13:47:50 optimus kernel: ata5.00: ATA-9: WDC WD10EZRZ-00HTKB0, 01.01A01, max UDMA/133
Sep 14 13:47:50 optimus kernel: ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Sep 14 13:47:50 optimus kernel: ata5.00: configured for UDMA/133
Sep 14 13:47:50 optimus kernel: scsi 4:0:0:0: Direct-Access     ATA      WDC WD10EZRZ-00H 1A01 PQ: 0 ANSI: 5
Sep 14 13:47:50 optimus kernel: ata6: SATA link down (SStatus 0 SControl 300)
Sep 14 13:47:50 optimus kernel: sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: [sdb] 4096-byte physical blocks
Sep 14 13:47:50 optimus kernel: sd 0:0:0:0: [sda] Write Protect is off
Sep 14 13:47:50 optimus kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: [sdb] Write Protect is off
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Sep 14 13:47:50 optimus kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Sep 14 13:47:50 optimus kernel:  sda: sda1 sda2
Sep 14 13:47:50 optimus kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Sep 14 13:47:50 optimus kernel:  sdb: sdb1
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: [sdb] Attached SCSI disk
Sep 14 13:47:50 optimus kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray
Sep 14 13:47:50 optimus kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Sep 14 13:47:50 optimus kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
Sep 14 13:47:50 optimus kernel: random: fast init done
Sep 14 13:47:50 optimus kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Sep 14 13:47:50 optimus systemd[1]: systemd 242.84-2-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Sep 14 13:47:50 optimus systemd[1]: Detected architecture x86-64.
Sep 14 13:47:50 optimus systemd[1]: Set hostname to <optimus>.
Sep 14 13:47:50 optimus systemd[1]: Listening on udev Control Socket.
Sep 14 13:47:50 optimus systemd[1]: Listening on Journal Audit Socket.
Sep 14 13:47:50 optimus systemd[1]: Listening on Device-mapper event daemon FIFOs.
Sep 14 13:47:50 optimus systemd[1]: Listening on LVM2 poll daemon socket.
Sep 14 13:47:50 optimus systemd[1]: Created slice system-getty.slice.
Sep 14 13:47:50 optimus systemd[1]: Created slice User and Session Slice.
Sep 14 13:47:50 optimus systemd[1]: Reached target Slices.
Sep 14 13:47:50 optimus kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Sep 14 13:47:50 optimus kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
Sep 14 13:47:50 optimus kernel: sd 4:0:0:0: Attached scsi generic sg2 type 0
Sep 14 13:47:50 optimus kernel: EXT4-fs (sda2): re-mounted. Opts: (null)
Sep 14 13:47:50 optimus kernel: vboxdrv: loading out-of-tree module taints kernel.
Sep 14 13:47:50 optimus kernel: vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
Sep 14 13:47:50 optimus kernel: random: lvm: uninitialized urandom read (4 bytes read)
Sep 14 13:47:50 optimus kernel: vboxdrv: Found 4 processor cores
Sep 14 13:47:50 optimus kernel: random: systemd-random-: uninitialized urandom read (512 bytes read)
Sep 14 13:47:50 optimus kernel: vboxdrv: TSC mode is Invariant, tentative frequency 3493434170 Hz
Sep 14 13:47:50 optimus kernel: vboxdrv: Successfully loaded version 6.0.12 (interface 0x00290008)
Sep 14 13:47:50 optimus kernel: VBoxPciLinuxInit
Sep 14 13:47:50 optimus kernel: vboxpci: IOMMU found
Sep 14 13:47:50 optimus kernel: VBoxNetAdp: Successfully started.
Sep 14 13:47:50 optimus kernel: VBoxNetFlt: Successfully started.
Sep 14 13:47:50 optimus systemd-journald[308]: Journal started
Sep 14 13:47:50 optimus systemd-journald[308]: Runtime journal (/run/log/journal/c84464f9419745eb81c5d2a3aef973e9) is 8.0M, max 348.1M, 340.1M free.
Sep 14 13:47:50 optimus systemd-modules-load[304]: Inserted module 'crypto_user'
Sep 14 13:47:50 optimus systemd-modules-load[304]: Inserted module 'sg'
Sep 14 13:47:50 optimus systemd-modules-load[304]: Inserted module 'vboxdrv'
Sep 14 13:47:50 optimus systemd-modules-load[304]: Inserted module 'vboxpci'
Sep 14 13:47:50 optimus systemd-modules-load[304]: Inserted module 'vboxnetadp'
Sep 14 13:47:50 optimus systemd-modules-load[304]: Inserted module 'vboxnetflt'
Sep 14 13:47:50 optimus 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'
Sep 14 13:47:50 optimus systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 14 13:47:50 optimus kernel: audit: type=1130 audit(1568458070.388:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:50 optimus systemd-journald[308]: Time spent on flushing to /var is 111.390ms for 821 entries.
Sep 14 13:47:50 optimus systemd-journald[308]: System journal (/var/log/journal/c84464f9419745eb81c5d2a3aef973e9) is 2.4G, max 4.0G, 1.5G free.
Sep 14 13:47:50 optimus kernel: audit: type=1130 audit(1568458070.451:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:50 optimus kernel: acpi_cpufreq: overriding BIOS provided _PSD data
Sep 14 13:47:50 optimus kernel: acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Sep 14 13:47:50 optimus kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Sep 14 13:47:50 optimus kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Sep 14 13:47:50 optimus kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
Sep 14 13:47:50 optimus kernel: sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
Sep 14 13:47:50 optimus kernel: sp5100-tco sp5100-tco: Watchdog hardware is disabled
Sep 14 13:47:50 optimus kernel: input: PC Speaker as /devices/platform/pcspkr/input/input4
Sep 14 13:47:50 optimus kernel: cryptd: max_cpu_qlen set to 1000
Sep 14 13:47:50 optimus kernel: Linux agpgart interface v0.103
Sep 14 13:47:50 optimus 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'
Sep 14 13:47:50 optimus systemd[1]: Started udev Kernel Device Manager.
Sep 14 13:47:50 optimus systemd[1]: Started Flush Journal to Persistent Storage.
Sep 14 13:47:50 optimus kernel: libphy: r8169: probed
Sep 14 13:47:50 optimus kernel: r8169 0000:05:00.0 eth0: RTL8168h/8111h, 18:31:bf:af:66:14, XID 541, IRQ 54
Sep 14 13:47:50 optimus kernel: r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Sep 14 13:47:50 optimus kernel: audit: type=1130 audit(1568458070.608:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:50 optimus 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'
Sep 14 13:47:50 optimus systemd-udevd[334]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Sep 14 13:47:50 optimus kernel: AVX2 version of gcm_enc/dec engaged.
Sep 14 13:47:50 optimus kernel: AES CTR mode by8 optimization enabled
Sep 14 13:47:50 optimus systemd[1]: Found device WDC_WD10EZRZ-00HTKB0 data.
Sep 14 13:47:50 optimus mtp-probe[424]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-6"
Sep 14 13:47:50 optimus mtp-probe[421]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-9"
Sep 14 13:47:50 optimus mtp-probe[424]: bus: 1, device: 2 was not an MTP device
Sep 14 13:47:50 optimus mtp-probe[421]: bus: 1, device: 3 was not an MTP device
Sep 14 13:47:50 optimus systemd-udevd[361]: Using default interface naming scheme 'v240'.
Sep 14 13:47:50 optimus systemd-udevd[361]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Sep 14 13:47:50 optimus kernel: snd_hda_intel 0000:07:00.1: Handle vga_switcheroo audio client
Sep 14 13:47:50 optimus kernel: r8169
 0000:05:00.0 enp5s0: renamed from eth0
Sep 14 13:47:50 optimus mtp-probe[434]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb3/3-4"
Sep 14 13:47:50 optimus mtp-probe[434]: bus: 3, device: 2 was not an MTP device
Sep 14 13:47:50 optimus kernel: asus_wmi: ASUS WMI generic driver loaded
Sep 14 13:47:50 optimus kernel: random: crng init done
Sep 14 13:47:50 optimus systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x11/0x0
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
Sep 14 13:47:50 optimus kernel: snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
Sep 14 13:47:50 optimus systemd-udevd[336]: Using default interface naming scheme 'v240'.
Sep 14 13:47:50 optimus kernel: asus_wmi: Initialization: 0x0
Sep 14 13:47:50 optimus kernel: asus_wmi: BIOS WMI version: 0.9
Sep 14 13:47:50 optimus kernel: asus_wmi: SFUN value: 0x0
Sep 14 13:47:50 optimus kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input5
Sep 14 13:47:50 optimus kernel: asus_wmi: Number of fans: 1
Sep 14 13:47:50 optimus 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'
Sep 14 13:47:50 optimus systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Sep 14 13:47:50 optimus systemd[1]: Reached target Local File Systems (Pre).
Sep 14 13:47:50 optimus systemd[1]: Mounting /mnt/storage...
Sep 14 13:47:50 optimus systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Sep 14 13:47:50 optimus kernel: input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card1/input7
Sep 14 13:47:50 optimus kernel: input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card1/input8
Sep 14 13:47:50 optimus kernel: audit: type=1130 audit(1568458070.731:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:50 optimus kernel: input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card1/input9
Sep 14 13:47:50 optimus kernel: input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card1/input10
Sep 14 13:47:50 optimus kernel: input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:07:00.1/sound/card0/input6
Sep 14 13:47:50 optimus kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card1/input11
Sep 14 13:47:50 optimus systemd[1]: Reached target Sound Card.
Sep 14 13:47:50 optimus kernel: fuse: init (API version 7.31)
Sep 14 13:47:50 optimus kernel: mousedev: PS/2 mouse device common for all mice
Sep 14 13:47:50 optimus systemd[1]: Mounting FUSE Control File System...
Sep 14 13:47:50 optimus systemd[1]: Mounted FUSE Control File System.
Sep 14 13:47:50 optimus kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Sep 14 13:47:50 optimus kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Sep 14 13:47:50 optimus kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Sep 14 13:47:50 optimus kernel: cfg80211: failed to load regulatory.db
Sep 14 13:47:50 optimus kernel: kvm: disabled by bios
Sep 14 13:47:50 optimus kernel: kvm: disabled by bios
Sep 14 13:47:50 optimus kernel: MCE: In-kernel MCE decoding enabled.
Sep 14 13:47:50 optimus kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Sep 14 13:47:50 optimus kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                 (Note that use of the override may cause unknown side effects.)
Sep 14 13:47:50 optimus kernel: kvm: disabled by bios
Sep 14 13:47:50 optimus kernel: [drm] amdgpu kernel modesetting enabled.
Sep 14 13:47:50 optimus kernel: Parsing CRAT table with 1 nodes
Sep 14 13:47:50 optimus kernel: Creating topology SYSFS entries
Sep 14 13:47:50 optimus kernel: Topology: Add APU node [0x0:0x0]
Sep 14 13:47:50 optimus kernel: Finished initializing topology
Sep 14 13:47:50 optimus kernel: amdgpu 0000:07:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xe0000000 -> 0xefffffff
Sep 14 13:47:50 optimus kernel: amdgpu 0000:07:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xf0000000 -> 0xf01fffff
Sep 14 13:47:50 optimus kernel: amdgpu 0000:07:00.0: remove_conflicting_pci_framebuffers: bar 5: 0xfe600000 -> 0xfe67ffff
Sep 14 13:47:50 optimus kernel: amdgpu 0000:07:00.0: vgaarb: deactivate vga console
Sep 14 13:47:50 optimus kernel: Console: switching to colour dummy device 80x25
Sep 14 13:47:50 optimus kernel: [drm] initializing kernel modesetting (RAVEN 0x1002:0x15DD 0x1043:0x876B 0xC8).
Sep 14 13:47:50 optimus kernel: [drm] register mmio base: 0xFE600000
Sep 14 13:47:50 optimus kernel: [drm] register mmio size: 524288
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 0 <soc15_common>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 1 <gmc_v9_0>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 2 <vega10_ih>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 3 <psp>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 4 <gfx_v9_0>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 5 <sdma_v4_0>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 6 <powerplay>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 7 <dm>
Sep 14 13:47:50 optimus kernel: [drm] add ip block number 8 <vcn_v1_0>
Sep 14 13:47:50 optimus systemd-vconsole-setup[506]: KD_FONT_OP_GET failed while trying to get the font metadata: Function not implemented
Sep 14 13:47:50 optimus systemd-vconsole-setup[506]: Fonts will not be copied to remaining consoles
Sep 14 13:47:50 optimus kernel: [drm] VCN decode is enabled in VM mode
Sep 14 13:47:50 optimus kernel: [drm] VCN encode is enabled in VM mode
Sep 14 13:47:50 optimus kernel: [drm] VCN jpeg decode is enabled in VM mode
Sep 14 13:47:51 optimus kernel: [drm] BIOS signature incorrect 20 7
Sep 14 13:47:51 optimus kernel: ATOM BIOS: 113-RAVEN-110
Sep 14 13:47:51 optimus kernel: [drm] RAS INFO: ras initialized successfully, hardware ability[0] ras_mask[0]
Sep 14 13:47:51 optimus kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: VRAM: 1024M 0x000000F400000000 - 0x000000F43FFFFFFF (1024M used)
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
Sep 14 13:47:51 optimus kernel: [drm] Detected VRAM RAM=1024M, BAR=1024M
Sep 14 13:47:51 optimus kernel: [drm] RAM width 128bits DDR4
Sep 14 13:47:51 optimus kernel: [TTM] Zone  kernel: Available graphics memory: 3564716 KiB
Sep 14 13:47:51 optimus kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
Sep 14 13:47:51 optimus kernel: [TTM] Initializing pool allocator
Sep 14 13:47:51 optimus kernel: [TTM] Initializing DMA pool allocator
Sep 14 13:47:51 optimus kernel: [drm] amdgpu: 1024M of VRAM memory ready
Sep 14 13:47:51 optimus kernel: [drm] amdgpu: 3072M of GTT memory ready.
Sep 14 13:47:51 optimus kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Sep 14 13:47:51 optimus kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000).
Sep 14 13:47:51 optimus kernel: [drm] use_doorbell being set to: [true]
Sep 14 13:47:51 optimus kernel: [drm] Found VCN firmware Version ENC: 1.9 DEC: 1 VEP: 0 Revision: 28
Sep 14 13:47:51 optimus kernel: [drm] PSP loading VCN firmware
Sep 14 13:47:51 optimus kernel: [drm] reserve 0x400000 from 0xf400c00000 for PSP TMR SIZE
Sep 14 13:47:51 optimus kernel: kvm: disabled by bios
Sep 14 13:47:51 optimus kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Sep 14 13:47:51 optimus kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                 (Note that use of the override may cause unknown side effects.)
Sep 14 13:47:51 optimus ntfs-3g[522]: Version 2017.3.23 external FUSE 29
Sep 14 13:47:51 optimus ntfs-3g[522]: Mounted /dev/sdb1 (Read-Write, label "data", NTFS 3.1)
Sep 14 13:47:51 optimus ntfs-3g[522]: Cmdline options: rw,utf8,umask=000,uid=1000,gid=1000
Sep 14 13:47:51 optimus ntfs-3g[522]: Mount options: rw,utf8,allow_other,nonempty,relatime,default_permissions,fsname=/dev/sdb1,blkdev,blksize=4096
Sep 14 13:47:51 optimus systemd[1]: Mounted /mnt/storage.
Sep 14 13:47:51 optimus ntfs-3g[522]: Global ownership and permissions enforced, configuration type 7
Sep 14 13:47:51 optimus systemd[1]: Reached target Local File Systems.
Sep 14 13:47:51 optimus systemd[1]: Condition check resulted in Rebuild
 Dynamic Linker Cache being skipped.
Sep 14 13:47:51 optimus systemd[1]: Starting Create Volatile Files and Directories...
Sep 14 13:47:51 optimus systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Sep 14 13:47:51 optimus systemd[1]: Started Create Volatile Files and Directories.
Sep 14 13:47:51 optimus 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'
Sep 14 13:47:51 optimus systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Sep 14 13:47:51 optimus systemd[1]: Condition check resulted in Update is Completed being skipped.
Sep 14 13:47:51 optimus kernel: audit: type=1130 audit(1568458071.135:6): 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'
Sep 14 13:47:51 optimus systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 14 13:47:51 optimus audit[524]: SYSTEM_BOOT pid=524 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Sep 14 13:47:51 optimus kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                 (Note that use of the override may cause unknown side effects.)
Sep 14 13:47:51 optimus kernel: audit: type=1127 audit(1568458071.141:7): pid=524 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 14 13:47:51 optimus 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'
Sep 14 13:47:51 optimus systemd[1]: Reached target System Initialization.
Sep 14 13:47:51 optimus systemd[1]: Started CUPS Scheduler.
Sep 14 13:47:51 optimus systemd[1]: Reached target Paths.
Sep 14 13:47:51 optimus systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 14 13:47:51 optimus systemd[1]: Started Daily verification of password and group files.
Sep 14 13:47:51 optimus kernel: audit: type=1130 audit(1568458071.145:8): 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'
Sep 14 13:47:51 optimus systemd[1]: Started Discard unused blocks once a week.
Sep 14 13:47:51 optimus systemd[1]: Started Daily man-db regeneration.
Sep 14 13:47:51 optimus systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 14 13:47:51 optimus systemd[1]: Listening on CUPS Scheduler.
Sep 14 13:47:51 optimus systemd[1]: Reached target Sockets.
Sep 14 13:47:51 optimus systemd[1]: Reached target Basic System.
Sep 14 13:47:51 optimus systemd[1]: Started AceStream Engine (console).
Sep 14 13:47:51 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=acestream-engine comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus kernel: audit: type=1130 audit(1568458071.148:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=acestream-engine comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus systemd[1]: Starting Network Time Service...
Sep 14 13:47:51 optimus systemd[1]: Starting Permit User Sessions...
Sep 14 13:47:51 optimus systemd[1]: Started D-Bus System Message Bus.
Sep 14 13:47:51 optimus 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'
Sep 14 13:47:51 optimus kernel: audit: type=1130 audit(1568458071.151:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus systemd[1]: Starting Login Service...
Sep 14 13:47:51 optimus systemd[1]: Starting CUPS Scheduler...
Sep 14 13:47:51 optimus systemd[1]: Started Daily rotation of log files.
Sep 14 13:47:51 optimus systemd[1]: Reached target Timers.
Sep 14 13:47:51 optimus systemd[1]: Started Pacserve.
Sep 14 13:47:51 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus 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'
Sep 14 13:47:51 optimus systemd[1]: Started Permit User Sessions.
Sep 14 13:47:51 optimus ntpd[526]: ntpd 4.2.8p13@1.3847-o Wed Mar 13 17:11:29 UTC 2019 (1): Starting
Sep 14 13:47:51 optimus kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Sep 14 13:47:51 optimus kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                 (Note that use of the override may cause unknown side effects.)
Sep 14 13:47:51 optimus ntpd[526]: Command line: /usr/bin/ntpd -g -u ntp:ntp
Sep 14 13:47:51 optimus ntpd[533]: proto: precision = 0.050 usec (-24)
Sep 14 13:47:51 optimus ntpd[533]: basedate set to 2019-03-01
Sep 14 13:47:51 optimus ntpd[533]: gps base set to 2019-03-03 (week 2043)
Sep 14 13:47:51 optimus ntpd[533]: Listen and drop on 0 v6wildcard [::]:123
Sep 14 13:47:51 optimus ntpd[533]: Listen and drop on 1 v4wildcard 0.0.0.0:123
Sep 14 13:47:51 optimus ntpd[533]: Listen normally on 2 lo 127.0.0.1:123
Sep 14 13:47:51 optimus ntpd[533]: Listening on routing socket on fd #19 for interface updates
Sep 14 13:47:51 optimus ntpd[533]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
Sep 14 13:47:51 optimus ntpd[533]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
Sep 14 13:47:51 optimus kernel: usb 3-4: reset high-speed USB device number 2 using xhci_hcd
Sep 14 13:47:51 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ntpd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus systemd[1]: Started Network Time Service.
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB: values for F clock
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         0 in kHz
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         0 in kHz
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         0 in kHz
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         1200000 in kHz
Sep 14 13:47:51 optimus kernel: ------------[ cut here ]------------
Sep 14 13:47:51 optimus kernel: WARNING: CPU: 2 PID: 358 at drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.c:1401 dcn_bw_update_from_pplib.cold+0x73/0x9c [amdgpu]
Sep 14 13:47:51 optimus kernel: Modules linked in: rt2800usb(+) rt2x00usb rt2800lib rt2x00lib edac_mce_amd amdgpu(+) mac80211 ccp rng_core input_leds kvm cfg80211 mousedev fuse irqbypass snd_hda_codec_realtek crct10dif_pclmul snd_hda_codec_generic gpu_sched ledtrig_audio i2c_algo_bit eeepc_wmi crc32_pclmul snd_hda_codec_hdmi asus_wmi snd_hda_intel sparse_keymap wmi_bmof ttm snd_hda_codec ghash_clmulni_intel rfkill drm_kms_helper snd_hda_core snd_hwdep snd_pcm drm aesni_intel snd_timer r8169 agpgart syscopyarea aes_x86_64 sysfillrect realtek crypto_simd snd sysimgblt fb_sys_fops cryptd pcspkr sp5100_tco glue_helper soundcore libphy i2c_piix4 k10temp wmi evdev pinctrl_amd gpio_amdpt mac_hid pcc_cpufreq acpi_cpufreq vboxnetflt(OE) vboxnetadp(OE) vboxpci(OE) vboxdrv(OE) sg crypto_user ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 sr_mod cdrom sd_mod hid_generic usbhid hid crc32c_intel ahci libahci libata xhci_pci scsi_mod xhci_hcd
Sep 14 13:47:51 optimus kernel: CPU: 2 PID: 358 Comm: systemd-udevd Tainted: G           OE     5.2.11-arch1-1-ARCH #1
Sep 14 13:47:51 optimus kernel: Hardware name: System manufacturer System Product Name/PRIME A320M-K, BIOS 4023 08/20/2018
Sep 14 13:47:51 optimus kernel: RIP: 0010:dcn_bw_update_from_pplib.cold+0x73/0x9c [amdgpu]
Sep 14 13:47:51 optimus kernel: Code: 48 8b 93 e0 02 00 00 db 42 78 83 f9 02 77 37 b8 02 00 00 00 8d 71 ff e9 d0 2b f7 ff 48 c7 c7 78 63 09 c1 31 c0 e8 21 07 30 ca <0f> 0b e9 4a 2c f7 ff 48 c7 c7 78 63 09 c1 31 c0 e8 0c 07 30 ca 0f
Sep 14 13:47:51 optimus kernel: RSP: 0018:ffffa3b68149f668 EFLAGS: 00010246
Sep 14 13:47:51 optimus kernel: RAX: 0000000000000024 RBX: ffff9d5048bde000 RCX: 0000000000000000
Sep 14 13:47:51 optimus kernel: RDX: 0000000000000000 RSI: 0000000000000092 RDI: 00000000ffffffff
Sep 14 13:47:51 optimus kernel: RBP: ffff9d5049ec2d80 R08: 00000000000003a3 R09: 0000000000000004
Sep 14 13:47:51 optimus kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffffa3b68149f708
Sep 14 13:47:51 optimus kernel: R13: 0000000000000001 R14: 000000000000000a R15: 0000000000000000
Sep 14 13:47:51 optimus kernel: FS:  00007fa1f1fb4840(0000) GS:ffff9d5057a80000(0000) knlGS:0000000000000000
Sep 14 13:47:51 optimus kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Sep 14 13:47:51 optimus kernel: CR2: 00007f8c080092c8 CR3: 000000021193a000 CR4: 00000000003406e0
Sep 14 13:47:51 optimus kernel: Call Trace:
Sep 14 13:47:51 optimus kernel:  dcn10_create_resource_pool+0x983/0xa50 [amdgpu]
Sep 14 13:47:51 optimus kernel:  dc_create_resource_pool+0x1c0/0x270
 [amdgpu]
Sep 14 13:47:51 optimus kernel:  dc_create+0x229/0x630 [amdgpu]
Sep 14 13:47:51 optimus kernel:  ? kmem_cache_alloc_trace+0x16b/0x1c0
Sep 14 13:47:51 optimus kernel:  ? amdgpu_cgs_create_device+0x23/0x50 [amdgpu]
Sep 14 13:47:51 optimus kernel:  amdgpu_dm_init+0xeb/0x160 [amdgpu]
Sep 14 13:47:51 optimus kernel:  dm_hw_init+0xe/0x20 [amdgpu]
Sep 14 13:47:51 optimus kernel:  amdgpu_device_init.cold+0x1000/0x15e3 [amdgpu]
Sep 14 13:47:51 optimus kernel:  amdgpu_driver_load_kms+0x88/0x270 [amdgpu]
Sep 14 13:47:51 optimus kernel:  drm_dev_register+0x111/0x150 [drm]
Sep 14 13:47:51 optimus kernel:  amdgpu_pci_probe+0xbd/0x120 [amdgpu]
Sep 14 13:47:51 optimus kernel:  ? __pm_runtime_resume+0x49/0x60
Sep 14 13:47:51 optimus kernel:  local_pci_probe+0x42/0x80
Sep 14 13:47:51 optimus kernel:  ? pci_match_device+0xc5/0x100
Sep 14 13:47:51 optimus kernel:  pci_device_probe+0xfa/0x190
Sep 14 13:47:51 optimus kernel:  really_probe+0xf0/0x380
Sep 14 13:47:51 optimus kernel:  driver_probe_device+0xb6/0x100
Sep 14 13:47:51 optimus kernel:  device_driver_attach+0x53/0x60
Sep 14 13:47:51 optimus kernel:  __driver_attach+0x8a/0x150
Sep 14 13:47:51 optimus kernel:  ? device_driver_attach+0x60/0x60
Sep 14 13:47:51 optimus kernel:  ? device_driver_attach+0x60/0x60
Sep 14 13:47:51 optimus kernel:  bus_for_each_dev+0x89/0xd0
Sep 14 13:47:51 optimus kernel:  bus_add_driver+0x14a/0x1e0
Sep 14 13:47:51 optimus kernel:  driver_register+0x6c/0xb0
Sep 14 13:47:51 optimus kernel:  ? 0xffffffffc11e1000
Sep 14 13:47:51 optimus kernel:  do_one_initcall+0x59/0x234
Sep 14 13:47:51 optimus kernel:  do_init_module+0x5c/0x230
Sep 14 13:47:51 optimus kernel:  load_module+0x2122/0x23a0
Sep 14 13:47:51 optimus kernel:  ? __se_sys_init_module+0x114/0x180
Sep 14 13:47:51 optimus kernel:  __se_sys_init_module+0x114/0x180
Sep 14 13:47:51 optimus kernel:  do_syscall_64+0x5f/0x1d0
Sep 14 13:47:51 optimus kernel:  ? page_fault+0x8/0x30
Sep 14 13:47:51 optimus kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Sep 14 13:47:51 optimus kernel: RIP: 0033:0x7fa1f37b2b3e
Sep 14 13:47:51 optimus kernel: Code: 48 8b 0d 55 f3 0b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 49 89 ca b8 af 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 22 f3 0b 00 f7 d8 64 89 01 48
Sep 14 13:47:51 optimus kernel: RSP: 002b:00007ffd1f0037f8 EFLAGS: 00000246 ORIG_RAX: 00000000000000af
Sep 14 13:47:51 optimus kernel: RAX: ffffffffffffffda RBX: 000055b29a5676e0 RCX: 00007fa1f37b2b3e
Sep 14 13:47:51 optimus kernel: RDX: 00007fa1f342284d RSI: 000000000070eac9 RDI: 000055b29af4a090
Sep 14 13:47:51 optimus kernel: RBP: 00007fa1f342284d R08: 000000000000005f R09: 000055b29a558670
Sep 14 13:47:51 optimus kernel: R10: 000055b29a542010 R11: 0000000000000246 R12: 000055b29af4a090
Sep 14 13:47:51 optimus kernel: R13: 000055b29a588dc0 R14: 0000000000020000 R15: 000055b29a5676e0
Sep 14 13:47:51 optimus kernel: ---[ end trace 3ab69476a5cb96c3 ]---
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB: values for DCF clock
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         300000 in kHz
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         600000 in kHz
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         626000 in kHz
Sep 14 13:47:51 optimus kernel: [drm] DM_PPLIB:         654000 in kHz
Sep 14 13:47:51 optimus kernel: [drm] Display Core initialized with v3.2.27!
Sep 14 13:47:51 optimus kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Sep 14 13:47:51 optimus kernel: [drm] Driver supports precise vblank timestamp query.
Sep 14 13:47:51 optimus dbus-daemon[528]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.8' (uid=0 pid=530 comm="/usr/bin/cupsd -l ")
Sep 14 13:47:51 optimus systemd[1]: Starting Manage, Install and Generate Color Profiles...
Sep 14 13:47:51 optimus kernel: [drm] VCN decode and encode initialized successfully(under SPG Mode).
Sep 14 13:47:51 optimus kernel: kfd kfd: Allocated 3969056 bytes on gart
Sep 14 13:47:51 optimus kernel: Topology: Add APU node [0x15dd:0x1002]
Sep 14 13:47:51 optimus kernel: kfd kfd: added device 1002:15dd
Sep 14 13:47:51 optimus kernel: [drm] fb mappable at 0xA1000000
Sep 14 13:47:51 optimus kernel: [drm] vram apper at 0xA0000000
Sep 14 13:47:51 optimus kernel: [drm] size 8294400
Sep 14 13:47:51 optimus kernel: [drm] fb depth is 24
Sep 14 13:47:51 optimus kernel: [drm]    pitch is 7680
Sep 14 13:47:51 optimus kernel: fbcon: amdgpudrmfb (fb0) is primary device
Sep 14 13:47:51 optimus kernel: Console: switching to colour frame buffer device 240x67
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: fb0: amdgpudrmfb frame buffer device
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring gfx uses VM inv eng 0 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring sdma0 uses VM inv eng 0 on hub 1
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring vcn_dec uses VM inv eng 1 on hub 1
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring vcn_enc0 uses VM inv eng 4 on hub 1
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring vcn_enc1 uses VM inv eng 5 on hub 1
Sep 14 13:47:51 optimus kernel: amdgpu 0000:07:00.0: ring vcn_jpeg uses VM inv eng 6 on hub 1
Sep 14 13:47:51 optimus kernel: [drm] Initialized amdgpu 3.32.0 20150101 for 0000:07:00.0 on minor 0
Sep 14 13:47:51 optimus dbus-daemon[528]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Sep 14 13:47:51 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=colord comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus systemd[1]: Started Manage, Install and Generate Color Profiles.
Sep 14 13:47:51 optimus kernel: ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3070, rev 0201 detected
Sep 14 13:47:51 optimus systemd-logind[529]: New seat seat0.
Sep 14 13:47:51 optimus systemd-logind[529]: Watching system buttons on /dev/input/event1 (Power Button)
Sep 14 13:47:51 optimus systemd-logind[529]: Watching system buttons on /dev/input/event0 (Power Button)
Sep 14 13:47:51 optimus systemd-logind[529]: Watching system buttons on /dev/input/event2 (LITEON Technology USB Keyboard)
Sep 14 13:47:51 optimus colord[539]: failed to get session [pid 530]: No data available
Sep 14 13:47:51 optimus systemd[1]: Started CUPS Scheduler.
Sep 14 13:47:51 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=org.cups.cupsd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus kernel: ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0005 detected
Sep 14 13:47:51 optimus systemd[1]: Starting Load/Save RF Kill Switch Status...
Sep 14 13:47:51 optimus systemd-udevd[360]: Using default interface naming scheme 'v240'.
Sep 14 13:47:51 optimus kernel: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Sep 14 13:47:51 optimus kernel: usbcore: registered new interface driver rt2800usb
Sep 14 13:47:51 optimus systemd-udevd[360]: Config file /usr/lib/systemd/network/99-default.link applies to device based on potentially unpredictable interface name 'wlan0'
Sep 14 13:47:51 optimus systemd-udevd[360]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Sep 14 13:47:51 optimus systemd[1]: Started Load/Save RF Kill Switch Status.
Sep 14 13:47:51 optimus 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'
Sep 14 13:47:51 optimus kernel: rt2800usb 3-4:1.0 wlp7s0f3u4: renamed from wlan0
Sep 14 13:47:51 optimus systemd-udevd[333]: Using default interface naming scheme 'v240'.
Sep 14 13:47:51 optimus pacserve[532]: [Errno 19] No such device
Sep 14 13:47:51 optimus systemd[1]: pacserve.service: Main process exited, code=exited, status=71/OSERR
Sep 14 13:47:51 optimus systemd[1]: pacserve.service: Failed with result 'exit-code'.
Sep 14 13:47:51 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Sep 14 13:47:51 optimus systemd[1]: Started Login Service.
Sep 14 13:47:51 optimus 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'
Sep 14 13:47:51 optimus systemd[1]: Started Simple Desktop Display Manager.
Sep 14 13:47:51 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:51 optimus systemd[1]: Reached target Multi-User System.
Sep 14 13:47:51 optimus systemd[1]: Reached target Graphical Interface.
Sep 14 13:47:51 optimus systemd[1]: Startup finished in 3.062s (kernel) + 1.624s (userspace) = 4.687s.
Sep
 14 13:47:51 optimus sddm[552]: Initializing...
Sep 14 13:47:51 optimus sddm[552]: Starting...
Sep 14 13:47:51 optimus sddm[552]: Logind interface found
Sep 14 13:47:51 optimus sddm[552]: Adding new display on vt 1 ...
Sep 14 13:47:51 optimus sddm[552]: Loading theme configuration from ""
Sep 14 13:47:51 optimus sddm[552]: Display server starting...
Sep 14 13:47:51 optimus sddm[552]: Running: /usr/bin/X -nolisten tcp -auth /var/run/sddm/{c75ce088-c538-4865-bb1d-80d0bba1d5c2} -background none -noreset -displayfd 17 -seat seat0 vt1
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,375|MainThread|acestream|init segmenter done: log_path=/home/acestream/.ACEStream/logs/segmenter.log
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,378|MainThread|acestream|platform=linux
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,378|MainThread|acestream|app=acestream
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,378|MainThread|acestream|version=3.1.35 code=3013500 revision=d6df0e1 date=2019-01-29
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,379|MainThread|acestream|use_local_db=True
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,379|MainThread|acestream|use_m2crypto=True
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,379|MainThread|acestream|is_gui_mode=0
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,380|MainThread|acestream|enable debug: 0
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,385|MainThread|acestream|get_default_api_version: 2
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,386|MainThread|acestream.coreapp|use fixed i2i_port: 62062
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,386|MainThread|acestream.coreapp|state_dir=u'/home/acestream/.ACEStream'
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,413|MainThread|acestream.coreapp|set_debug_from_ui: enabled=0
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,415|MainThread|acestream|enable debug: 0
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,443|MainThread|acestream.SocketHandler.InterruptSocket|bound on 127.0.0.1:47387
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,443|MainThread|acestream.SocketHandler.SocketHandler|bind: socket bound: host=0.0.0.0 port=8621
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,443|MainThread|acestream.LM|listen on 8621
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,448|MainThread|dht|init_bootstrap_nodes: failed to resolve host router.bittorrent.com
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,449|MainThread|dht|init_bootstrap_nodes: failed to resolve host dht.transmissionbt.com
Sep 14 13:47:52 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:47:52 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,457|MainThread|acestream.VideoServer|start: addr= port=6878 allow_remote=1 allow_intranet=1
Sep 14 13:47:52 optimus sddm[552]: Setting default cursor
Sep 14 13:47:52 optimus sddm[552]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Sep 14 13:47:52 optimus sddm[552]: Display server started.
Sep 14 13:47:52 optimus sddm[552]: Socket server starting...
Sep 14 13:47:52 optimus sddm[552]: Socket server started.
Sep 14 13:47:52 optimus sddm[552]: Loading theme configuration from ""
Sep 14 13:47:52 optimus sddm[552]: Greeter starting...
Sep 14 13:47:52 optimus sddm[552]: Adding cookie to "/var/run/sddm/{c75ce088-c538-4865-bb1d-80d0bba1d5c2}"
Sep 14 13:47:52 optimus sddm-helper[598]: [PAM] Starting...
Sep 14 13:47:52 optimus sddm-helper[598]: [PAM] Authenticating...
Sep 14 13:47:52 optimus sddm-helper[598]: [PAM] returning.
Sep 14 13:47:52 optimus sddm-helper[598]: pam_unix(sddm-greeter:session): session opened for user sddm by (uid=0)
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,681|MainThread|acestream.SocketHandler.InterruptSocket|bound on 127.0.0.1:59853
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,681|TrafficStatsSenderThread|acestream.TrafficStatsSender|init: error: <urlopen error [Errno -3] Temporary failure in name resolution>
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,681|MainThread|acestream.SocketHandler.SocketHandler|bind: socket bound: host=0.0.0.0 port=62062
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,681|Instance2InstanceThread-30|acestream.APIServer|run: ready to receive remote commands on 62062
Sep 14 13:47:52 optimus acestreamengine[525]: 2019-09-14 13:47:52,686|ServiceTaskQueueThread-2|acestream.Session|sync_time: no response
Sep 14 13:47:52 optimus systemd[1]: Created slice User Slice of UID 996.
Sep 14 13:47:52 optimus systemd[1]: Starting User Runtime Directory /run/user/996...
Sep 14 13:47:52 optimus systemd-logind[529]: New session c1 of user sddm.
Sep 14 13:47:52 optimus systemd[1]: Started User Runtime Directory /run/user/996.
Sep 14 13:47:52 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:52 optimus systemd[1]: Starting User Manager for UID 996...
Sep 14 13:47:52 optimus kernel: kauditd_printk_skb: 9 callbacks suppressed
Sep 14 13:47:52 optimus kernel: audit: type=1130 audit(1568458072.688:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:52 optimus systemd[612]: pam_unix(systemd-user:session): session opened for user sddm by (uid=0)
Sep 14 13:47:52 optimus kernel: audit: type=1006 audit(1568458072.698:21): pid=612 uid=0 old-auid=4294967295 auid=996 tty=(none) old-ses=4294967295 ses=1 res=1
Sep 14 13:47:52 optimus systemd[612]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 14 13:47:52 optimus systemd[612]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 14 13:47:52 optimus systemd[612]: Reached target Timers.
Sep 14 13:47:52 optimus systemd[612]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 14 13:47:52 optimus systemd[612]: Listening on GnuPG network certificate management daemon.
Sep 14 13:47:52 optimus systemd[612]: Listening on Sound System.
Sep 14 13:47:52 optimus systemd[612]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 14 13:47:52 optimus systemd[612]: Listening on p11-kit server.
Sep 14 13:47:52 optimus systemd[612]: Starting D-Bus User Message Bus Socket.
Sep 14 13:47:52 optimus systemd[612]: Reached target Paths.
Sep 14 13:47:52 optimus systemd[612]: Listening on Multimedia System.
Sep 14 13:47:52 optimus systemd[612]: Listening on D-Bus User Message Bus Socket.
Sep 14 13:47:52 optimus systemd[612]: Reached target Sockets.
Sep 14 13:47:52 optimus systemd[612]: Reached target Basic System.
Sep 14 13:47:52 optimus systemd[612]: Reached target Main User Target.
Sep 14 13:47:52 optimus systemd[612]: Startup finished in 44ms.
Sep 14 13:47:52 optimus systemd[1]: Started User Manager for UID 996.
Sep 14 13:47:52 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:52 optimus systemd[1]: Started Session c1 of user sddm.
Sep 14 13:47:52 optimus kernel: audit: type=1130 audit(1568458072.748:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:52 optimus sddm[552]: Greeter session started successfully
Sep 14 13:47:52 optimus sddm-greeter[619]: High-DPI autoscaling not Enabled
Sep 14 13:47:52 optimus sddm-greeter[619]: Reading from "/usr/share/xsessions/plasma.desktop"
Sep 14 13:47:52 optimus sddm-greeter[619]: Loading theme configuration from "qrc:/theme/theme.conf"
Sep 14 13:47:52 optimus systemd[612]: Started D-Bus User Message Bus.
Sep 14 13:47:52 optimus sddm-greeter[619]: Connected to the daemon.
Sep 14 13:47:52 optimus sddm[552]: Message received from greeter: Connect
Sep 14 13:47:52 optimus sddm-greeter[619]: Loading qrc:/theme/Main.qml...
Sep 14 13:47:53 optimus sddm-greeter[619]: Adding view for "HDMI-1" QRect(0,0 1920x1080)
Sep 14 13:47:53 optimus sddm-greeter[619]: Message received from daemon: Capabilities
Sep 14 13:47:53 optimus sddm-greeter[619]: Message received from daemon: HostName
Sep 14 13:47:54 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:47:55 optimus sddm-greeter[619]: Reading from "/usr/share/xsessions/plasma.desktop"
Sep 14 13:47:55 optimus sddm[552]: Message received from greeter: Login
Sep 14 13:47:55 optimus sddm[552]: Reading from "/usr/share/xsessions/plasma.desktop"
Sep 14 13:47:55 optimus sddm[552]: Reading from "/usr/share/xsessions/plasma.desktop"
Sep 14 13:47:55 optimus sddm[552]: Session "/usr/share/xsessions/plasma.desktop" selected, command: "/usr/bin/startkde"
Sep 14 13:47:55 optimus sddm-helper[638]: [PAM] Starting...
Sep 14 13:47:55 optimus sddm-helper[638]: [PAM] Authenticating...
Sep 14 13:47:55 optimus sddm-helper[638]: [PAM] Preparing to converse...
Sep 14 13:47:55 optimus sddm-helper[638]: [PAM] Conversation with 1 messages
Sep 14 13:47:55 optimus sddm-helper[638]: pam_kwallet5(sddm:auth): (null): pam_sm_authenticate
Sep 14 13:47:55 optimus sddm-helper[638]: [PAM] returning.
Sep 14 13:47:55 optimus sddm[552]: Authenticated successfully
Sep 14 13:47:55 optimus sddm-greeter[619]: Message received from daemon: LoginSucceeded
Sep 14 13:47:55 optimus sddm-helper[638]: pam_kwallet5(sddm:setcred):
 pam_kwallet5: pam_sm_setcred
Sep 14 13:47:55 optimus sddm-helper[638]: pam_unix(sddm:session): session opened for user jiakomo by (uid=0)
Sep 14 13:47:55 optimus kernel: audit: type=1006 audit(1568458075.671:23): pid=638 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
Sep 14 13:47:55 optimus systemd[1]: Created slice User Slice of UID 1000.
Sep 14 13:47:55 optimus systemd[1]: Starting User Runtime Directory /run/user/1000...
Sep 14 13:47:55 optimus systemd-logind[529]: New session 2 of user jiakomo.
Sep 14 13:47:55 optimus systemd[1]: Started User Runtime Directory /run/user/1000.
Sep 14 13:47:55 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:55 optimus systemd[1]: Starting User Manager for UID 1000...
Sep 14 13:47:55 optimus kernel: audit: type=1130 audit(1568458075.691:24): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:55 optimus systemd[642]: pam_unix(systemd-user:session): session opened for user jiakomo by (uid=0)
Sep 14 13:47:55 optimus kernel: audit: type=1006 audit(1568458075.695:25): pid=642 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
Sep 14 13:47:55 optimus sddm-helper[598]: [PAM] Closing session
Sep 14 13:47:55 optimus sddm-helper[598]: pam_unix(sddm-greeter:session): session closed for user sddm
Sep 14 13:47:55 optimus sddm-helper[598]: [PAM] Ended.
Sep 14 13:47:55 optimus sddm[552]: Auth: sddm-helper exited successfully
Sep 14 13:47:55 optimus systemd[1]: session-c1.scope: Succeeded.
Sep 14 13:47:55 optimus sddm[552]: Greeter stopped.
Sep 14 13:47:55 optimus systemd-logind[529]: Session c1 logged out. Waiting for processes to exit.
Sep 14 13:47:55 optimus systemd-logind[529]: Removed session c1.
Sep 14 13:47:55 optimus systemd[642]: Reached target Timers.
Sep 14 13:47:55 optimus kernel: audit: type=1130 audit(1568458075.728:26): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:55 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:55 optimus systemd[642]: Listening on Sound System.
Sep 14 13:47:55 optimus sddm-helper[638]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Sep 14 13:47:55 optimus systemd[642]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 14 13:47:55 optimus sddm-helper[648]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Sep 14 13:47:55 optimus systemd[642]: Listening on p11-kit server.
Sep 14 13:47:55 optimus systemd[642]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 14 13:47:55 optimus systemd[642]: Starting D-Bus User Message Bus Socket.
Sep 14 13:47:55 optimus systemd[642]: Listening on Multimedia System.
Sep 14 13:47:55 optimus systemd[642]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 14 13:47:55 optimus systemd[642]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 14 13:47:55 optimus systemd[642]: Reached target Paths.
Sep 14 13:47:55 optimus systemd[642]: Listening on GnuPG network certificate management daemon.
Sep 14 13:47:55 optimus systemd[642]: Listening on D-Bus User Message Bus Socket.
Sep 14 13:47:55 optimus systemd[642]: Reached target Sockets.
Sep 14 13:47:55 optimus systemd[642]: Reached target Basic System.
Sep 14 13:47:55 optimus systemd[642]: Reached target Main User Target.
Sep 14 13:47:55 optimus systemd[642]: Startup finished in 28ms.
Sep 14 13:47:55 optimus systemd[1]: Started User Manager for UID 1000.
Sep 14 13:47:55 optimus systemd[1]: Started Session 2 of user jiakomo.
Sep 14 13:47:55 optimus sddm-helper[638]: Starting: "/usr/share/sddm/scripts/Xsession \"/usr/bin/startkde\""
Sep 14 13:47:55 optimus sddm-helper[650]: Adding cookie to "/home/jiakomo/.Xauthority"
Sep 14 13:47:55 optimus sddm[552]: Session started
Sep 14 13:47:55 optimus systemd[642]: Started D-Bus User Message Bus.
Sep 14 13:47:56 optimus klauncher[691]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Sep 14 13:47:56 optimus kdeinit5[696]: Initializing  "kcm_mouse" :  "kcminit_mouse"
Sep 14 13:47:56 optimus kdeinit5[696]: Initializing  "kcm_access" :  "kcminit_access"
Sep 14 13:47:56 optimus kaccess[701]: Xlib XKB extension major= 1  minor= 0
Sep 14 13:47:56 optimus kdeinit5[696]: Initializing  "kcm_style" :  "kcminit_style"
Sep 14 13:47:56 optimus kaccess[701]: X server XKB extension major= 1  minor= 0
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Activating service name='org.kde.kglobalaccel' requested by ':1.7' (uid=1000 pid=701 comm="/usr/bin/kaccess ")
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Activating service name='ca.desrt.dconf' requested by ':1.9' (uid=1000 pid=709 comm="/usr/bin/gsettings set org.gnome.desktop.a11y.appl")
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Activating service name='org.kde.ActivityManager' requested by ':1.6' (uid=1000 pid=694 comm="kded5 [kdeinit5]                                  ")
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Successfully activated service 'ca.desrt.dconf'
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Successfully activated service 'org.kde.ActivityManager'
Sep 14 13:47:56 optimus systemd[1]: systemd-rfkill.service: Succeeded.
Sep 14 13:47:56 optimus 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'
Sep 14 13:47:56 optimus kernel: audit: type=1131 audit(1568458076.445:27): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Successfully activated service 'org.kde.kglobalaccel'
Sep 14 13:47:56 optimus kdeinit5[694]: 
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Activating service name='org.kde.KScreen' requested by ':1.6' (uid=1000 pid=694 comm="kded5 [kdeinit5]                                  ")
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Successfully activated service 'org.kde.KScreen'
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr: Connected output 67 to CRTC 63
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xcb.helper: Detected XRandR 1.6
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xcb.helper: Event Base:  89
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xcb.helper: Event Error:  147
Sep 14 13:47:56 optimus kdeinit5[694]: kscreen.kded: UPower not available, lid detection won't work
Sep 14 13:47:56 optimus kdeinit5[694]: kscreen.kded: PowerDevil SuspendSession action not available!
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.62' (uid=1000 pid=694 comm="kded5 [kdeinit5]                                  ")
Sep 14 13:47:56 optimus systemd[1]: Starting Daemon for power management...
Sep 14 13:47:56 optimus ksmserver[738]: Qt: Session management error: networkIdsList argument is NULL
Sep 14 13:47:56 optimus ksmserver[738]: Configuring Lock Action
Sep 14 13:47:56 optimus kdeinit5[696]: Initializing  "kcm_kgamma" :  "kcminit_kgamma"
Sep 14 13:47:56 optimus kdeinit5[696]: Initializing  "kded_touchpad" :  "kcminit_touchpad"
Sep 14 13:47:56 optimus kdeinit5[696]: kcm_touchpad: Using X11 backend
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/krunner.desktop" ("/usr/bin/krunner")
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/org.kde.plasmashell.desktop" ("/usr/bin/plasmashell")
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/pam_kwallet_init.desktop" ("/usr/lib/pam_kwallet_init")
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop" ("/usr/lib/polkit-kde-authentication-agent-1")
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Successfully activated service 'org.freedesktop.UPower'
Sep 14 13:47:56 optimus systemd[1]: Started Daemon for power management.
Sep 14 13:47:56 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:56 optimus kernel: audit: type=1130 audit(1568458076.628:28): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr: XRandR::setConfig
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr: Requested screen size is QSize(1920, 1080)
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr: Needed CRTCs:  1
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr: Actions to perform:
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr:         Primary Output: false
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr:   
      Change Screen Size: false
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr:         Disable outputs: false
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr:         Change outputs: false
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr:         Enable outputs: false
Sep 14 13:47:56 optimus kscreen_backend_launcher[732]: kscreen.xrandr: XRandR::setConfig done!
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/xembedsniproxy.desktop" ("/usr/bin/xembedsniproxy")
Sep 14 13:47:56 optimus ksmserver[738]: Session path: "/org/freedesktop/login1/session/_32"
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/gmenudbusmenuproxy.desktop" ("/usr/bin/gmenudbusmenuproxy")
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.11' (uid=0 pid=529 comm="/usr/lib/systemd/systemd-logind ")
Sep 14 13:47:56 optimus systemd[1]: Starting Authorization Manager...
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/pulseaudio.desktop" ("/usr/bin/start-pulseaudio-x11")
Sep 14 13:47:56 optimus ksmserver[738]: org.kde.kf5.ksmserver: Starting autostart service  "/etc/xdg/autostart/powerdevil.desktop" ("/usr/lib/org_kde_powerdevil")
Sep 14 13:47:56 optimus polkitd[780]: Started polkitd version 0.116
Sep 14 13:47:56 optimus systemd[642]: Starting Sound Service...
Sep 14 13:47:56 optimus kdeinit5[694]: Installing the delayed initialization callback.
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.67' (uid=1000 pid=790 comm="/usr/bin/pulseaudio --daemonize=no ")
Sep 14 13:47:56 optimus systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Sep 14 13:47:56 optimus systemd[1]: Started RealtimeKit Scheduling Policy Service.
Sep 14 13:47:56 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:56 optimus rtkit-daemon[799]: Successfully called chroot.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Successfully dropped privileges.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Successfully limited resources.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Running.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Canary thread running.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Watchdog thread running.
Sep 14 13:47:56 optimus kernel: audit: type=1130 audit(1568458076.705:29): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:56 optimus kdeinit5[694]: bluedevil: Created
Sep 14 13:47:56 optimus polkit-kde-authentication-agent-1[773]: New PolkitAgentListener  0x561cfde076a0
Sep 14 13:47:56 optimus polkit-kde-authentication-agent-1[773]: Adding new listener  PolkitQt1::Agent::Listener(0x7f3df00139d0) for  0x561cfde076a0
Sep 14 13:47:56 optimus polkit-kde-authentication-agent-1[773]: Listener online
Sep 14 13:47:56 optimus polkitd[780]: Loading rules from directory /etc/polkit-1/rules.d
Sep 14 13:47:56 optimus polkitd[780]: Loading rules from directory /usr/share/polkit-1/rules.d
Sep 14 13:47:56 optimus polkitd[780]: Finished loading, compiling and executing 2 rules
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Sep 14 13:47:56 optimus systemd[1]: Started Authorization Manager.
Sep 14 13:47:56 optimus 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'
Sep 14 13:47:56 optimus polkitd[780]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Sep 14 13:47:56 optimus rtkit-daemon[799]: Successfully made thread 790 of process 790 owned by '1000' high priority at nice level -11.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Supervising 1 threads of 1 processes of 1 users.
Sep 14 13:47:56 optimus polkitd[780]: Registered Authentication Agent for unix-session:2 (system bus name :1.69 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale el_GR.UTF-8)
Sep 14 13:47:56 optimus polkit-kde-authentication-agent-1[773]: Authentication agent result: true
Sep 14 13:47:56 optimus kdeinit5[694]: kcm_touchpad: Using X11 backend
Sep 14 13:47:56 optimus rtkit-daemon[799]: Supervising 1 threads of 1 processes of 1 users.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Successfully made thread 836 of process 790 owned by '1000' RT at priority 5.
Sep 14 13:47:56 optimus rtkit-daemon[799]: Supervising 2 threads of 1 processes of 1 users.
Sep 14 13:47:56 optimus kdeinit5[694]: Delayed initialization.
Sep 14 13:47:56 optimus kdeinit5[694]: Reloading the khotkeys configuration
Sep 14 13:47:56 optimus kdeinit5[694]: Version 2 File!
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_mouse.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kded_touchpad.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_about_distro.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_info.so"
Sep 14 13:47:56 optimus kdeinit5[694]: true
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_locations.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_windowedwidgets.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_powerdevilactivitiesconfig.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3baudiometainforenamerplugin.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_sessions.so"
Sep 14 13:47:56 optimus kdeinit5[694]: Imported file "/usr/share/khotkeys/defaults.khotkeys"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_services.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_keys.so"
Sep 14 13:47:56 optimus kdeinit5[694]: Imported file "/usr/share/khotkeys/kde32b1.khotkeys"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevilwirelesspowersavingaction_config.so"
Sep 14 13:47:56 optimus kdeinit5[694]: Imported file "/usr/share/khotkeys/konqueror_gestures_kde321.khotkeys"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kio_bluetooth.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_converter.so"
Sep 14 13:47:56 optimus kdeinit5[694]: Imported file "/usr/share/khotkeys/konsole.khotkeys"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kfileaudiopreview.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcmspellchecking.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_networkmanagement.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_access.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_memory.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_desktoppaths.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevildpmsaction.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/libkcm_qtquicksettings.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_clock.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_cddb.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_hotkeys.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3boggvorbisencoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_konsoleprofiles.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_kill.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/ebookthumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_devinfo.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_nic.so"
Sep 14 13:47:56 optimus kdeinit5[694]: bluedevil: Bluetooth operational changed false
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.62' (uid=1000 pid=694 comm="kded5 [kdeinit5]                                  ")
Sep 14 13:47:56 optimus kdeinit5[694]: Registering ":1.24/StatusNotifierItem" to system tray
Sep 14 13:47:56 optimus dbus-daemon[528]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Sep 14 13:47:56 optimus kdeinit5[694]: bluedevil: ObexManager operational changed false
Sep 14 13:47:56 optimus kdeinit5[694]: org.kde.bluez: PendingCall Error: "Unit dbus-org.bluez.service not found."
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.6' (uid=1000 pid=694 comm="kded5 [kdeinit5]                                  ")
Sep 14 13:47:56
 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_view1394.so"
Sep 14 13:47:56 optimus systemd[642]: Starting Bluetooth OBEX service...
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_calculatorrunner.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_solid_actions.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/icon_mode.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bexternalencoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/libplasmanetworkmanagement_openconnectui.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/exrthumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevilsuspendsessionaction_config.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/fontthumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevilhandlebuttoneventsaction_config.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_baloofile.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kfontviewpart.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_plasmasearch.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3blibsndfiledecoder.so"
Sep 14 13:47:56 optimus obexd[838]: OBEX daemon 5.50
Sep 14 13:47:56 optimus dbus-daemon[655]: [session uid=1000 pid=655] Successfully activated service 'org.bluez.obex'
Sep 14 13:47:56 optimus systemd[642]: Started Bluetooth OBEX service.
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bmaddecoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_krunner_kill.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3boggvorbisdecoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_dictionary.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kwincompositing.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/gvpart.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3blameencoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_trash.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kio.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kwinscreenedges.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/windowsexethumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kstyle_breeze_config.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/jpegthumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/attica_kde.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_datetime.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_ssl.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/user_manager.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bsoxencoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/plasma-geolocation-gps.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_dolphingeneral.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_k3blameencoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevildimdisplayaction_config.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_componentchooser.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_k3boggvorbisencoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/textthumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_phonon.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_emoticons.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_krunner_dictionary.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bffmpegdecoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_shell.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/appimagethumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_dolphinservices.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kwin_scripts.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kded.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_powerdevilprofilesconfig.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_sddm.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_placesrunner.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevilkeyboardbrightnesscontrolaction_config.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/opendocumentthumbnail.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_bookmarksrunner.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_powerdevilglobalconfig.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kio_obexftp.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bflacdecoder.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/libkcm_device_automounter.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kscreen.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_kwin.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_usb.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/plasma-geolocation-ip.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_activities.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/systemsettings_sidebar_mode.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kwintabbox.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/okularpart.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_webshortcuts.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_recentdocuments.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_webshortcuts.so"
Sep 14 13:47:56 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/dolphinpart.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kwinrules.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_krunner_charrunner.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_charrunner.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kstyle_oxygen_config.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_krunner_spellcheck.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_activities.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kio_msits.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bwavedecoder.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_standard_actions.so"
Sep 14 13:47:57 optimus rtkit-daemon[799]: Supervising 2 threads of 1 processes of 1 users.
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_spellcheck.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/djvuthumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_keyboard.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/audiothumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kwintouchscreen.so"
Sep 14 13:47:57 optimus rtkit-daemon[799]: Successfully made thread 841 of process 790 owned by '1000' RT at priority 5.
Sep 14 13:47:57 optimus rtkit-daemon[799]: Supervising 3 threads of 1 processes of 1 users.
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_browsertabs.so"
Sep 14 13:47:57 optimus rtkit-daemon[799]: Supervising 3 threads of 1 processes of 1 users.
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_dolphinviewmodes.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3bmpcdecoder.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_plasma-desktop.so"
Sep 14 13:47:57 optimus rtkit-daemon[799]: Successfully made thread 842 of process 790 owned by '1000' RT at priority 5.
Sep 14 13:47:57 optimus rtkit-daemon[799]: Supervising 4 threads of 1 processes
 of 1 users.
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/imagethumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevilbrightnesscontrolaction_config.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_autostart.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kritathumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_powerdevil.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/svgthumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_appstream.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_k3bsoxencoder.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_style.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_dolphinnavigation.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevilrunscriptaction_config.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/miloutextplugin.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_fontinst.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/k3baudioprojectcddbplugin.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kwinoptions.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_kgamma.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/baloofilepropertiesplugin.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_pci.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_windows.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/windowsimagethumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/krunner_katesessions.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_smserver.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/classic_mode.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_samba.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/powerdevildpmsaction_config.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/comicbookthumbnail.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_opengl.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kio_fonts.so"
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Backend loaded, loading core
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Core loaded, initializing backend
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_filetypes.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_joystick.so"
Sep 14 13:47:57 optimus plasmashell[762]: invalid metadata "/usr/lib/qt/plugins/kcm_k3bexternalencoder.so"
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: No outputs have backlight property
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Xrandr not supported, trying ddc, helper
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: [DDCutilBrightness] compiled without DDC/CI support
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Falling back to helper to get brightness
Sep 14 13:47:57 optimus plasmashell[762]: org.kde.plasmaquick: Applet preload policy set to 1
Sep 14 13:47:57 optimus dbus-daemon[528]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.70' (uid=1000 pid=792 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Sep 14 13:47:57 optimus systemd[642]: Started Sound Service.
Sep 14 13:47:57 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:47:57 optimus dbus-daemon[528]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Sep 14 13:47:57 optimus dbus-daemon[528]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.70' (uid=1000 pid=792 comm="/usr/lib/org_kde_powerdevil ") (using servicehelper)
Sep 14 13:47:57 optimus backlighthelper[863]: powerdevil: no kernel backlight interface found
Sep 14 13:47:57 optimus dbus-daemon[528]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: org.kde.powerdevil.backlighthelper.brightness failed
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: ""
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Backend ready, KDE Power Management system initialized
Sep 14 13:47:57 optimus dbus-daemon[528]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.70' (uid=1000 pid=792 comm="/usr/lib/org_kde_powerdevil ")
Sep 14 13:47:57 optimus systemd[1]: Starting Disk Manager...
Sep 14 13:47:57 optimus udisksd[869]: udisks daemon version 2.8.4 starting
Sep 14 13:47:57 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1133, resource id: 27262989, major code: 3 (GetWindowAttributes), minor code: 0
Sep 14 13:47:57 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1134, resource id: 27262989, major code: 14 (GetGeometry), minor code: 0
Sep 14 13:47:57 optimus dbus-daemon[528]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Sep 14 13:47:57 optimus systemd[1]: Started Disk Manager.
Sep 14 13:47:57 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:47:57 optimus udisksd[869]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Session path: "/org/freedesktop/login1/session/_32"
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: ACTIVE SESSION PATH: "/org/freedesktop/login1/session/_32"
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Current session is now active
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: fd passing available: true
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: systemd powersave events handling inhibited, descriptor: 19
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: systemd support initialized
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Got a valid offer for  "DPMSControl"
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Core is ready, registering various services on the bus...
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Can't contact ck
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Currently using activity  "daf03c5f-3e35-4c21-8e8d-90c2f7e008f8"
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: () ()
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: () ()
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: No batteries found, loading AC
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Activity is not forcing a profile
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Handle button events action could not check for screen configuration
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: The profile  "AC" tried to activate "DimDisplay" a non-existent action. This is usually due to an installation problem, a configuration problem, or because the action is not supported
Sep 14 13:47:57 optimus org_kde_powerdevil[792]: powerdevil: Can't contact ck
Sep 14 13:47:57 optimus kdeinit5[694]: bluedevil: ObexManager operational changed true
Sep 14 13:47:57 optimus kdeinit5[694]: bluedevil: ObexAgent registered
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/wallpapers/org.kde.image/contents/ui/main.qml:71:9: Unable to assign [undefined] to QStringList
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/wallpapers/org.kde.image/contents/ui/main.qml:71:9: Unable to assign [undefined] to QStringList
Sep 14 13:47:57 optimus plasmashell[762]: trying to show an empty dialog
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml:146:19: QML Loader: Binding loop detected for property "height"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17:
 QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml:302:17: QML QQuickText: Binding loop detected for property "width"
Sep 14 13:47:57 optimus plasmashell[762]: KActivities: Database connection:  "kactivities_db_resources_139867174144128_readonly" 
                                              query_only:          QVariant(qlonglong, 1) 
                                              journal_mode:        QVariant(QString, "wal") 
                                              wal_autocheckpoint:  QVariant(qlonglong, 100) 
                                              synchronous:         QVariant(qlonglong, 0)
Sep 14 13:47:57 optimus plasmashell[762]: Closing SQL connection:  "kactivities_db_resources_139867174144128_readonly"
Sep 14 13:47:57 optimus plasmashell[762]: KActivities: Database connection:  "kactivities_db_resources_139867174144128_readonly" 
                                              query_only:          QVariant(qlonglong, 1) 
                                              journal_mode:        QVariant(QString, "wal") 
                                              wal_autocheckpoint:  QVariant(qlonglong, 100) 
                                              synchronous:         QVariant(qlonglong, 0)
Sep 14 13:47:57 optimus plasmashell[762]: Nothing to load - the client id is empty
Sep 14 13:47:58 optimus plasmashell[762]: Nothing to load - the client id is empty
Sep 14 13:47:58 optimus plasmashell[762]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Sep 14 13:47:58 optimus plasmashell[762]: Both point size and pixel size set. Using pixel size.
Sep 14 13:47:58 optimus plasmashell[762]: Both point size and pixel size set. Using pixel size.
Sep 14 13:47:58 optimus plasmashell[762]: Both point size and pixel size set. Using pixel size.
Sep 14 13:47:58 optimus plasmashell[762]: trying to show an empty dialog
Sep 14 13:47:58 optimus kdeinit5[694]: Registering "org.kde.StatusNotifierHost-762" as system tray
Sep 14 13:47:58 optimus plasmashell[762]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so: (libpackagekitqt5.so.1: cannot open shared object file: No such file or directory)"
Sep 14 13:47:58 optimus plasmashell[762]: couldn't load "/usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so: (libflatpak.so.0: cannot open shared object file: No such file or directory)"
Sep 14 13:47:58 optimus plasmashell[762]: couldn't find any notifier backend ("/usr/lib/qt/plugins")
Sep 14 13:47:58 optimus plasmashell[762]: Plasma Shell startup completed
Sep 14 13:47:58 optimus plasmashell[762]: Both point size and pixel size set. Using pixel size.
Sep 14 13:47:58 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 2344, resource id: 2097170, major code: 2 (ChangeWindowAttributes), minor code: 0
Sep 14 13:47:58 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 2349, resource id: 2097188, major code: 18 (ChangeProperty), minor code: 0
Sep 14 13:47:58 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/CompactRepresentation.qml:53:17: Unable to assign [undefined] to int
Sep 14 13:47:59 optimus plasmashell[762]: org.kde.plasma.pulseaudio: No object for name "alsa_output.pci-0000_07_00.6.analog-stereo.monitor"
Sep 14 13:47:59 optimus kdeinit5[914]: Qt: Session management error: networkIdsList argument is NULL
Sep 14 13:47:59 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:47:59 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:375: TypeError: Cannot read property 'length' of undefined
Sep 14 13:48:00 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:48:00 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:48:00 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:00 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:375: TypeError: Cannot read property 'length' of undefined
Sep 14 13:48:00 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:00 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:375: TypeError: Cannot read property 'length' of undefined
Sep 14 13:48:00 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3833, resource id: 33554566, major code: 18 (ChangeProperty), minor code: 0
Sep 14 13:48:00 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3838, resource id: 33554567, major code: 18 (ChangeProperty), minor code: 0
Sep 14 13:48:00 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:00 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:371: Unable to assign [undefined] to QString
Sep 14 13:48:03 optimus plasmashell[762]: KActivitiesStats( 0x55e812cbd820 ) ResultModelPrivate::onResultScoreUpdated  result added: "applications:org.kde.konsole.desktop" score: 26.0264 last: 1568458080 first: 1498951897
Sep 14 13:48:04 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:48:04 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:48:05 optimus su[939]: (to root) jiakomo on pts/1
Sep 14 13:48:05 optimus su[939]: pam_unix(su-l:session): session opened for user root by (uid=1000)
Sep 14 13:48:05 optimus systemd[1]: Stopping User Manager for UID 996...
Sep 14 13:48:05 optimus systemd[612]: Stopped target Main User Target.
Sep 14 13:48:05 optimus systemd[612]: Stopping D-Bus User Message Bus...
Sep 14 13:48:05 optimus systemd[612]: dbus.service: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Stopped D-Bus User Message Bus.
Sep 14 13:48:05 optimus systemd[612]: Stopped target Basic System.
Sep 14 13:48:05 optimus systemd[612]: Stopped target Paths.
Sep 14 13:48:05 optimus systemd[612]: Stopped target Sockets.
Sep 14 13:48:05 optimus systemd[612]: gpg-agent.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed GnuPG cryptographic agent and passphrase cache.
Sep 14 13:48:05 optimus systemd[612]: p11-kit-server.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed p11-kit server.
Sep 14 13:48:05 optimus systemd[612]: gpg-agent-ssh.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Sep 14 13:48:05 optimus systemd[612]: gpg-agent-browser.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 14 13:48:05 optimus systemd[612]: pipewire.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed Multimedia System.
Sep 14 13:48:05 optimus systemd[612]: gpg-agent-extra.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Sep 14 13:48:05 optimus systemd[612]: dirmngr.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed GnuPG network certificate management daemon.
Sep 14 13:48:05 optimus systemd[612]: pulseaudio.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed Sound System.
Sep 14 13:48:05 optimus systemd[612]: Stopped target Timers.
Sep 14 13:48:05 optimus systemd[612]: dbus.socket: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Closed D-Bus User Message Bus Socket.
Sep 14 13:48:05 optimus systemd[612]: Reached target Shutdown.
Sep 14 13:48:05 optimus systemd[612]: systemd-exit.service: Succeeded.
Sep 14 13:48:05 optimus systemd[612]: Started Exit the Session.
Sep 14 13:48:05 optimus systemd[612]: Reached target
 Exit the Session.
Sep 14 13:48:05 optimus systemd[1]: user@996.service: Succeeded.
Sep 14 13:48:05 optimus systemd[1]: Stopped User Manager for UID 996.
Sep 14 13:48:05 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:05 optimus systemd[1]: Stopping User Runtime Directory /run/user/996...
Sep 14 13:48:05 optimus kernel: kauditd_printk_skb: 2 callbacks suppressed
Sep 14 13:48:05 optimus kernel: audit: type=1131 audit(1568458085.978:32): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:05 optimus systemd[642]: run-user-996.mount: Succeeded.
Sep 14 13:48:05 optimus systemd[1]: run-user-996.mount: Succeeded.
Sep 14 13:48:05 optimus systemd[1]: user-runtime-dir@996.service: Succeeded.
Sep 14 13:48:05 optimus systemd[1]: Stopped User Runtime Directory /run/user/996.
Sep 14 13:48:05 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:05 optimus systemd[1]: Removed slice User Slice of UID 996.
Sep 14 13:48:05 optimus kernel: audit: type=1131 audit(1568458085.988:33): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@996 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus systemd[1]: pacserve.service: Service RestartSec=15s expired, scheduling restart.
Sep 14 13:48:06 optimus systemd[1]: pacserve.service: Scheduled restart job, restart counter is at 1.
Sep 14 13:48:06 optimus systemd[1]: Stopped Pacserve.
Sep 14 13:48:06 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus systemd[1]: Started Pacserve.
Sep 14 13:48:06 optimus kernel: audit: type=1130 audit(1568458086.754:34): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus kernel: audit: type=1131 audit(1568458086.754:35): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus kernel: audit: type=1130 audit(1568458086.754:36): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:06 optimus pacserve[944]: [Errno 19] No such device
Sep 14 13:48:06 optimus systemd[1]: pacserve.service: Main process exited, code=exited, status=71/OSERR
Sep 14 13:48:06 optimus systemd[1]: pacserve.service: Failed with result 'exit-code'.
Sep 14 13:48:06 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Sep 14 13:48:06 optimus kernel: audit: type=1131 audit(1568458086.854:37): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Sep 14 13:48:11 optimus acestreamengine[525]: sendto: Network is unreachable
Sep 14 13:48:22 optimus systemd[1]: pacserve.service: Service RestartSec=15s expired, scheduling restart.
Sep 14 13:48:22 optimus systemd[1]: pacserve.service: Scheduled restart job, restart counter is at 2.
Sep 14 13:48:22 optimus systemd[1]: Stopped Pacserve.
Sep 14 13:48:22 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:22 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:22 optimus systemd[1]: Started Pacserve.
Sep 14 13:48:22 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:22 optimus kernel: audit: type=1130 audit(1568458102.107:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:22 optimus kernel: audit: type=1131 audit(1568458102.107:39): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:22 optimus kernel: audit: type=1130 audit(1568458102.111:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:22 optimus pacserve[949]: [Errno 19] No such device
Sep 14 13:48:22 optimus systemd[1]: pacserve.service: Main process exited, code=exited, status=71/OSERR
Sep 14 13:48:22 optimus systemd[1]: pacserve.service: Failed with result 'exit-code'.
Sep 14 13:48:22 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Sep 14 13:48:22 optimus kernel: audit: type=1131 audit(1568458102.207:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Sep 14 13:48:25 optimus systemd[1]: Created slice system-netctl.slice.
Sep 14 13:48:25 optimus systemd[1]: Starting Networking for netctl profile panagiouda2...
Sep 14 13:48:25 optimus network[955]: Starting network profile 'panagiouda2'...
Sep 14 13:48:25 optimus kernel: ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
Sep 14 13:48:25 optimus kernel: ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.36
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: authenticate with d4:76:ea:15:e0:60
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: send auth to d4:76:ea:15:e0:60 (try 1/3)
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: send auth to d4:76:ea:15:e0:60 (try 2/3)
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: authenticated
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: associate with d4:76:ea:15:e0:60 (try 1/3)
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: RX AssocResp from d4:76:ea:15:e0:60 (capab=0x1411 status=0 aid=2)
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: associated
Sep 14 13:48:28 optimus kernel: wlp7s0f3u4: Limiting TX power to 20 (20 - 0) dBm as advertised by d4:76:ea:15:e0:60
Sep 14 13:48:28 optimus systemd[1]: Started Networking for netctl profile panagiouda2.
Sep 14 13:48:28 optimus systemd[1]: Reached target Network.
Sep 14 13:48:28 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=netctl@panagiouda2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:28 optimus kernel: audit: type=1130 audit(1568458108.451:42): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=netctl@panagiouda2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:28 optimus kernel: 8021q: 802.1Q VLAN Support v1.8
Sep 14 13:48:28 optimus dhcpcd[1050]: DUID 00:01:00:01:22:25:db:45:00:e0:6c:30:a3:3b
Sep 14 13:48:28 optimus dhcpcd[1050]: wlp7s0f3u4: IAID 6c:30:a3:3b
Sep 14 13:48:28 optimus dhcpcd[1050]: wlp7s0f3u4: rebinding lease of 192.168.1.10
Sep 14 13:48:28 optimus dhcpcd[1050]: wlp7s0f3u4: probing address 192.168.1.10/24
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:375: TypeError: Type error
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml:454: TypeError: Cannot read property 'length' of undefined
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:371: Unable to assign [undefined] to QString
Sep 14 13:48:29 optimus kwin_x11[754]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 20365, resource id: 33554569, major code: 18 (ChangeProperty), minor code: 0
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:29 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:375: TypeError: Type error
Sep 14 13:48:29 optimus rtkit-daemon[799]: Supervising 4 threads of 1 processes of 1 users.
Sep 14 13:48:29 optimus rtkit-daemon[799]: Supervising 4 threads of 1 processes of 1 users.
Sep 14 13:48:29 optimus rtkit-daemon[799]: Successfully made thread 1083 of process 1054 owned by '1000' RT at priority
 10.
Sep 14 13:48:29 optimus rtkit-daemon[799]: Supervising 5 threads of 2 processes of 1 users.
Sep 14 13:48:30 optimus dbus-daemon[655]: [session uid=1000 pid=655] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.33' (uid=1000 pid=1054 comm="/usr/lib/firefox/firefox ")
Sep 14 13:48:30 optimus systemd[642]: Starting Accessibility services bus...
Sep 14 13:48:30 optimus dbus-daemon[655]: [session uid=1000 pid=655] Successfully activated service 'org.a11y.Bus'
Sep 14 13:48:30 optimus systemd[642]: Started Accessibility services bus.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Supervising 5 threads of 2 processes of 1 users.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Supervising 5 threads of 2 processes of 1 users.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Supervising 5 threads of 2 processes of 1 users.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Successfully made thread 1142 of process 1122 owned by '1000' RT at priority 10.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Supervising 6 threads of 3 processes of 1 users.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Supervising 6 threads of 3 processes of 1 users.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Successfully made thread 1143 of process 1122 owned by '1000' RT at priority 10.
Sep 14 13:48:30 optimus rtkit-daemon[799]: Supervising 7 threads of 3 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 7 threads of 3 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 7 threads of 3 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 7 threads of 3 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Successfully made thread 1197 of process 1174 owned by '1000' RT at priority 10.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 8 threads of 4 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 8 threads of 4 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Successfully made thread 1198 of process 1174 owned by '1000' RT at priority 10.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 9 threads of 4 processes of 1 users.
Sep 14 13:48:31 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:375: TypeError: Type error
Sep 14 13:48:31 optimus plasmashell[762]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml:347: Unable to assign [undefined] to int
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 9 threads of 4 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 9 threads of 4 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 9 threads of 4 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Successfully made thread 1234 of process 1215 owned by '1000' RT at priority 10.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 10 threads of 5 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 10 threads of 5 processes of 1 users.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Successfully made thread 1235 of process 1215 owned by '1000' RT at priority 10.
Sep 14 13:48:31 optimus rtkit-daemon[799]: Supervising 11 threads of 5 processes of 1 users.
Sep 14 13:48:32 optimus plasmashell[762]: KActivitiesStats( 0x55e812cbd820 ) ResultModelPrivate::onResultScoreUpdated  result added: "applications:firefox.desktop" score: 76.3303 last: 1568458109 first: 1498687133
Sep 14 13:48:33 optimus dhcpcd[1050]: wlp7s0f3u4: leased 192.168.1.10 for 1814400 seconds
Sep 14 13:48:33 optimus dhcpcd[1050]: wlp7s0f3u4: adding route to 192.168.1.0/24
Sep 14 13:48:33 optimus dhcpcd[1050]: wlp7s0f3u4: adding default route via 192.168.1.1
Sep 14 13:48:33 optimus dhcpcd[1050]: forked to background, child pid 1289
Sep 14 13:48:33 optimus network[955]: Started network profile 'panagiouda2'
Sep 14 13:48:35 optimus ntpd[533]: Listen normally on 3 wlp7s0f3u4 192.168.1.10:123
Sep 14 13:48:35 optimus ntpd[533]: new interface(s) found: waking up resolver
Sep 14 13:48:37 optimus systemd[1]: pacserve.service: Service RestartSec=15s expired, scheduling restart.
Sep 14 13:48:37 optimus systemd[1]: pacserve.service: Scheduled restart job, restart counter is at 3.
Sep 14 13:48:37 optimus systemd[1]: Stopped Pacserve.
Sep 14 13:48:37 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:37 optimus audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:37 optimus kernel: audit: type=1130 audit(1568458117.457:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:37 optimus kernel: audit: type=1131 audit(1568458117.457:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:37 optimus systemd[1]: Started Pacserve.
Sep 14 13:48:37 optimus audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:37 optimus kernel: audit: type=1130 audit(1568458117.460:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=pacserve comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 14 13:48:38 optimus pacserve[1299]: [2019-09-14 13:48:38 EEST] INFO: sending multicast message to (224.3.45.67, 15679) via 127.0.0.1
Sep 14 13:48:38 optimus pacserve[1299]: [2019-09-14 13:48:38 EEST] INFO: sending multicast message to (224.3.45.67, 15679) via 192.168.1.10

Offline

#4 2019-09-14 14:17:39

seth
Member
Registered: 2012-09-03
Posts: 49,967

Re: Connecting to a new wifi network with netctl

Disable/stop those two:

acestream-engine.service  enabled
pacserve.service          enabled

And you've two ntp services running, I suggest you stop them both as well for the moment.

ntpd.service              enabled
systemd-timesyncd.service enabled

See whether that makes any difference. If so, isolate the culprit. pacserve sends a multicast and that's the end of the log, so I'd start that one last.
It might also be an order issue, ie. the services work perfectly fine when started after the network is up but mess the stack when started before.

Offline

Board footer

Powered by FluxBB