You are not logged in.

#1 2016-08-29 16:00:16

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

NTFS-3g not writing to partition correctly

I have been having a problem writing to a NTFS partition from arch.

My computer is set up to dual boot Windows 10 and Arch and has three main paritions. A windows partition (NTFS), a shared partition with pictures, documents, etc. (NTFS), and an arch partition (ext4).

I can access and modify the shared partition fine from windows but whatever changes I make in arch don't change anything as seen by windows. However, running chkdsk on windows will recover some of the files some of the time.

Here is some relevant config information

$ cat /data/.NTFS-3G/UserMapping 
bennett:users:S-1-5-21-1267585978-1886190148-3662363122-1001


$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 465.8G  0 disk 
├─sda1   8:1    0  1000M  0 part 
├─sda2   8:2    0   260M  0 part /boot
├─sda3   8:3    0   128M  0 part 
├─sda4   8:4    0 274.4G  0 part /windows
├─sda5   8:5    0   125G  0 part /data
└─sda6   8:6    0    65G  0 part /
sdb      8:16   0  14.9G  0 disk 
└─sdb1   8:17   0  14.9G  0 part 

$ cat /etc/fstab 
# /dev/sda6
UUID=9f781d24-9e5f-460c-bdcf-1c9ff01ea7fa	/         	ext4      	rw,relatime,data=ordered	0 1

# /dev/sda2 LABEL=SYSTEM_DRV
UUID=3EFC-A21E      	/boot     	vfat      	rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro	0 2

# /dev/sda5
UUID=44B607A4B6079618	/data		ntfs-3g		permissions 	0 2

# /dev/sda4
UUID=10BAFE70BAFE51A8	/windows		ntfs-3g		permissions 	0 2

I get the felling that I have not configured ntfs-3g properly but I can not figure out what I have done wrong. If any other information will help please let me know.

Offline

#2 2016-08-29 16:03:21

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,797

Re: NTFS-3g not writing to partition correctly

I've never encountered such a thing, so I am just going to fish for some new information  Rotating drive? SDD?
What about a removable device like a USB? Same issue?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#3 2016-08-29 16:23:05

2ManyDogs
Forum Fellow
Registered: 2012-01-15
Posts: 4,645

Re: NTFS-3g not writing to partition correctly

I don't use ntfs, so I could be completely off base here, but I have never seen "permissions" used for options in fstab the way you have yours set up. What does "sudo mount" report for options when you have those ntfs partitions mounted in Arch? What happens if you take those lines out of your fstab and manually mount the partitions?

If I am missing something I apologize for the noise.

https://wiki.archlinux.org/index.php/NT … t_settings
https://wiki.archlinux.org/index.php/Fstab

(edit) never mind -- I did some more research and see that "permissions" is a valid fstab option for ntfs partitions. You still might try some of the options recommended in the wiki topic I linked.

Last edited by 2ManyDogs (2016-08-29 16:25:56)

Offline

#4 2016-08-29 17:30:12

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

ewaller wrote:

I've never encountered such a thing, so I am just going to fish for some new information  Rotating drive? SDD?
What about a removable device like a USB? Same issue?

It is a rotating drive.

I just now tried a NTFS USB and it works no problem. This now makes me think there is something wrong with the drive or the formatting of the partition. I will try to reformat when I have access to my external hard drive to backup my data.

Offline

#5 2016-08-29 17:45:55

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: NTFS-3g not writing to partition correctly

Is Windows using fast-startup instead of properly shutting down? This could cause the issue you're seeing.

http://www.tenforums.com/tutorials/4189 … -10-a.html


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#6 2016-08-29 17:47:32

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,797

Re: NTFS-3g not writing to partition correctly

slithery wrote:

Is Windows using fast-startup instead of properly shutting down?

Wow, nice catch !


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#7 2016-08-30 01:26:47

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

slithery wrote:

Is Windows using fast-startup instead of properly shutting down? This could cause the issue you're seeing.

http://www.tenforums.com/tutorials/4189 … -10-a.html

I disabled fast startup a while ago.

Also I formatted the partition and it still does not work.

Offline

#8 2016-08-30 08:39:00

phw
Member
Registered: 2013-05-27
Posts: 318

Re: NTFS-3g not writing to partition correctly

mrgiggums wrote:
slithery wrote:

Is Windows using fast-startup instead of properly shutting down? This could cause the issue you're seeing.

http://www.tenforums.com/tutorials/4189 … -10-a.html

I disabled fast startup a while ago.

Also I formatted the partition and it still does not work.


Please double check, if fast-startup is really deactivated. I have experienced it two times already that it got re-enabled after an update, last time after the "Anniversary Update" got installed.

Probably because MS wants to improve our "user experience", and we are obviously too stupid to decide ourselves.

Offline

#9 2016-08-30 13:01:53

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

phw wrote:
mrgiggums wrote:
slithery wrote:

Is Windows using fast-startup instead of properly shutting down? This could cause the issue you're seeing.

http://www.tenforums.com/tutorials/4189 … -10-a.html

I disabled fast startup a while ago.

Also I formatted the partition and it still does not work.


Please double check, if fast-startup is really deactivated. I have experienced it two times already that it got re-enabled after an update, last time after the "Anniversary Update" got installed.

Probably because MS wants to improve our "user experience", and we are obviously too stupid to decide ourselves.

I double checked, and I even turned it on and off again for good measure, but still no luck.

Last edited by mrgiggums (2016-08-30 13:02:11)

Offline

#10 2016-08-30 13:16:01

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,868
Website

Re: NTFS-3g not writing to partition correctly

Please boot into Windows, shutdown (not reboot), then boot into Arch and post the journal for that session.

Then do the same thing, but reboot instead of shutting down.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#11 2016-08-30 14:18:25

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: NTFS-3g not writing to partition correctly

When I looked at the description I also though the problem might be related to fast startup or whatever trickery windows does, make triple sure that it is not being used. A telltale sign that it is being used is the uptime reported in the task manager, if you see large values right after (re)booting you'll know it is using fast startup.


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#12 2016-08-30 14:44:25

alphaniner
Member
From: Ancapistan
Registered: 2010-07-12
Posts: 2,810

Re: NTFS-3g not writing to partition correctly

Last time I tried to use Arch to access a partition created by WX I had some issues. I don't remember the details, but IIRC the messages indicated it was due to a new version of NTFS that wasn't completely supported yet. I know you said you have no issues with NTFS on a USB drive, but even if it was formatted by WX it could presumably be using different options or something.

That said, this was several months ago and I'm not even sure if I was using ntfs-3g or the ro kernel module.


But whether the Constitution really be one thing, or another, this much is certain - that it has either authorized such a government as we have had, or has been powerless to prevent it. In either case, it is unfit to exist.
-Lysander Spooner

Offline

#13 2016-08-30 15:00:23

newbie1962
Member
From: italy
Registered: 2012-07-24
Posts: 137

Re: NTFS-3g not writing to partition correctly

in my fstab I have no windows partition 8:10, but I can create and delete every time after mounting the windows partition, it would be useful to know the permissions of those partitions.
posted

ls -l /dev/sda4

hp-envy dv7

Offline

#14 2016-08-30 15:09:07

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

WorMzy wrote:

Please boot into Windows, shutdown (not reboot), then boot into Arch and post the journal for that session.

Then do the same thing, but reboot instead of shutting down.

Journal from shutdown

Aug 30 09:55:00 BW3PC systemd-journald[172]: Runtime journal (/run/log/journal/) is 8.0M, max 796.5M, 788.5M free.
Aug 30 09:55:00 BW3PC systemd-journald[172]: System journal (/var/log/journal/) is 1.2G, max 4.0G, 2.7G free.
Aug 30 09:55:03 BW3PC systemd-journald[172]: Time spent on flushing to /var is 2.995142s for 2 entries.
Aug 30 09:55:03 BW3PC kernel: Linux version 4.7.2-1-ARCH (builduser@tobias) (gcc version 6.1.1 20160802 (GCC) ) #1 SMP PREEMPT Sat Aug 20 23:02:56 CEST 2016
Aug 30 09:55:04 BW3PC kernel: Command line: initrd=\initramfs-linux.img root=PARTUUID=65eefeef-abde-47b1-b7f5-764b8364164e rw
Aug 30 09:55:04 BW3PC kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Aug 30 09:55:04 BW3PC kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Aug 30 09:55:04 BW3PC kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Aug 30 09:55:04 BW3PC kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Aug 30 09:55:04 BW3PC kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Aug 30 09:55:04 BW3PC kernel: x86/fpu: Using 'eager' FPU context switches.
Aug 30 09:55:04 BW3PC kernel: e820: BIOS-provided physical RAM map:
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009bfff] usable
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x000000000009c000-0x000000000009cfff] reserved
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x000000000009d000-0x000000000009dfff] usable
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000ca769fff] usable
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x00000000ca76a000-0x00000000ccbfefff] reserved
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x00000000ccbff000-0x00000000ccd7efff] ACPI NVS
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x00000000ccd7f000-0x00000000ccdfefff] ACPI data
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x00000000ccdff000-0x00000000ccdfffff] usable
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Aug 30 09:55:04 BW3PC kernel: BIOS-e820: [mem 0x0000000100000000-0x000000042dffffff] usable
Aug 30 09:55:04 BW3PC kernel: NX (Execute Disable) protection: active
Aug 30 09:55:04 BW3PC kernel: e820: update [mem 0xc15a4018-0xc15b4057] usable ==> usable
Aug 30 09:55:04 BW3PC kernel: e820: update [mem 0xc1593018-0xc15a3657] usable ==> usable
Aug 30 09:55:04 BW3PC kernel: extended physical RAM map:
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009bfff] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x000000000009c000-0x000000000009cfff] reserved
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x000000000009d000-0x000000000009dfff] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x000000000009e000-0x000000000009ffff] reserved
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000c1593017] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000c1593018-0x00000000c15a3657] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000c15a3658-0x00000000c15a4017] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000c15a4018-0x00000000c15b4057] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000c15b4058-0x00000000ca769fff] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000ca76a000-0x00000000ccbfefff] reserved
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000ccbff000-0x00000000ccd7efff] ACPI NVS
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000ccd7f000-0x00000000ccdfefff] ACPI data
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000ccdff000-0x00000000ccdfffff] usable
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Aug 30 09:55:04 BW3PC kernel: reserve setup_data: [mem 0x0000000100000000-0x000000042dffffff] usable
Aug 30 09:55:04 BW3PC kernel: efi: EFI v2.31 by Lenovo
Aug 30 09:55:04 BW3PC kernel: efi:  ACPI=0xccdfe000  ACPI 2.0=0xccdfe014  SMBIOS=0xccbfe000 
Aug 30 09:55:04 BW3PC kernel: SMBIOS 2.7 present.
Aug 30 09:55:04 BW3PC kernel: DMI: LENOVO 20CKCTO1WW/20CKCTO1WW, BIOS N11ET31W (1.07 ) 03/19/2015
Aug 30 09:55:04 BW3PC kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug 30 09:55:04 BW3PC kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 30 09:55:04 BW3PC kernel: e820: last_pfn = 0x42e000 max_arch_pfn = 0x400000000
Aug 30 09:55:04 BW3PC kernel: MTRR default type: write-back
Aug 30 09:55:04 BW3PC kernel: MTRR fixed ranges enabled:
Aug 30 09:55:04 BW3PC kernel:   00000-9FFFF write-back
Aug 30 09:55:04 BW3PC kernel:   A0000-BFFFF uncachable
Aug 30 09:55:04 BW3PC kernel:   C0000-FFFFF write-protect
Aug 30 09:55:04 BW3PC kernel: MTRR variable ranges enabled:
Aug 30 09:55:04 BW3PC kernel:   0 base 00E0000000 mask 7FF0000000 uncachable
Aug 30 09:55:04 BW3PC kernel:   1 base 00D0000000 mask 7FF0000000 uncachable
Aug 30 09:55:04 BW3PC kernel:   2 base 00CE000000 mask 7FFE000000 uncachable
Aug 30 09:55:04 BW3PC kernel:   3 base 00CD000000 mask 7FFF000000 uncachable
Aug 30 09:55:04 BW3PC kernel:   4 base 00CCE00000 mask 7FFFE00000 uncachable
Aug 30 09:55:04 BW3PC kernel:   5 base 00F0000000 mask 7FF0000000 uncachable
Aug 30 09:55:04 BW3PC kernel:   6 disabled
Aug 30 09:55:04 BW3PC kernel:   7 disabled
Aug 30 09:55:04 BW3PC kernel:   8 disabled
Aug 30 09:55:04 BW3PC kernel:   9 disabled
Aug 30 09:55:04 BW3PC kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Aug 30 09:55:04 BW3PC kernel: e820: last_pfn = 0xcce00 max_arch_pfn = 0x400000000
Aug 30 09:55:04 BW3PC kernel: Scanning 1 areas for low memory corruption
Aug 30 09:55:04 BW3PC kernel: Base memory trampoline at [ffff880000096000] 96000 size 24576
Aug 30 09:55:04 BW3PC kernel: Using GB pages for direct mapping
Aug 30 09:55:04 BW3PC kernel: BRK [0x01b58000, 0x01b58fff] PGTABLE
Aug 30 09:55:04 BW3PC kernel: BRK [0x01b59000, 0x01b59fff] PGTABLE
Aug 30 09:55:04 BW3PC kernel: BRK [0x01b5a000, 0x01b5afff] PGTABLE
Aug 30 09:55:04 BW3PC kernel: BRK [0x01b5b000, 0x01b5bfff] PGTABLE
Aug 30 09:55:04 BW3PC kernel: BRK [0x01b5c000, 0x01b5cfff] PGTABLE
Aug 30 09:55:04 BW3PC kernel: RAMDISK: [mem 0x7fa71000-0x7fffffff]
Aug 30 09:55:04 BW3PC kernel: ACPI: Early table checksum verification disabled
Aug 30 09:55:04 BW3PC kernel: ACPI: RSDP 0x00000000CCDFE014 000024 (v02 LENOVO)
Aug 30 09:55:04 BW3PC kernel: ACPI: XSDT 0x00000000CCDFE1C0 0000EC (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: FACP 0x00000000CCDF9000 00010C (v05 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: DSDT 0x00000000CCDE4000 010FB9 (v01 LENOVO TP-N11   00001070 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: FACS 0x00000000CCD68000 000040
Aug 30 09:55:04 BW3PC kernel: ACPI: ASF! 0x00000000CCDFD000 0000A5 (v32 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: HPET 0x00000000CCDFC000 000038 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: ECDT 0x00000000CCDFB000 000052 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: APIC 0x00000000CCDF8000 000098 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: MCFG 0x00000000CCDF7000 00003C (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDF6000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDF5000 000486 (v01 LENOVO TP-SSDT2 00000200 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDE3000 0009CB (v01 LENOVO SataAhci 00001000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDE2000 000152 (v01 LENOVO Rmv_Batt 00001000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDE1000 0006C5 (v01 LENOVO Cpu0Ist  00003000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDE0000 000B74 (v02 LENOVO CpuSsdt  00003000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDDF000 000369 (v02 LENOVO CtdpB    00001000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDDD000 001475 (v01 LENOVO SaSsdt   00003000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDDC000 000394 (v02 LENOVO CppcTabl 00001000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: PCCT 0x00000000CCDDB000 00006E (v05 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDDA000 000AC4 (v02 LENOVO Cpc_Tabl 00001000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: TCPA 0x00000000CCDD9000 000032 (v02 PTL    LENOVO   06040000 LNVO 00000001)
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0x00000000CCDD8000 0006A5 (v01 Intel_ TpmTable 00001000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: UEFI 0x00000000CCDD7000 000042 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: MSDM 0x00000000CCCB1000 000055 (v03 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: BATB 0x00000000CCDD6000 000046 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: FPDT 0x00000000CCDD5000 000064 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: UEFI 0x00000000CCDD4000 00030A (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: BGRT 0x00000000CCDD3000 000038 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 09:55:04 BW3PC kernel: ACPI: Local APIC address 0xfee00000
Aug 30 09:55:04 BW3PC kernel: No NUMA configuration found
Aug 30 09:55:04 BW3PC kernel: Faking a node at [mem 0x0000000000000000-0x000000042dffffff]
Aug 30 09:55:04 BW3PC kernel: NODE_DATA(0) allocated [mem 0x42dffa000-0x42dffdfff]
Aug 30 09:55:04 BW3PC kernel: Zone ranges:
Aug 30 09:55:04 BW3PC kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Aug 30 09:55:04 BW3PC kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Aug 30 09:55:04 BW3PC kernel:   Normal   [mem 0x0000000100000000-0x000000042dffffff]
Aug 30 09:55:04 BW3PC kernel: Movable zone start for each node
Aug 30 09:55:04 BW3PC kernel: Early memory node ranges
Aug 30 09:55:04 BW3PC kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Aug 30 09:55:04 BW3PC kernel:   node   0: [mem 0x0000000000059000-0x000000000009bfff]
Aug 30 09:55:04 BW3PC kernel:   node   0: [mem 0x000000000009d000-0x000000000009dfff]
Aug 30 09:55:04 BW3PC kernel:   node   0: [mem 0x0000000000100000-0x00000000ca769fff]
Aug 30 09:55:04 BW3PC kernel:   node   0: [mem 0x00000000ccdff000-0x00000000ccdfffff]
Aug 30 09:55:04 BW3PC kernel:   node   0: [mem 0x0000000100000000-0x000000042dffffff]
Aug 30 09:55:04 BW3PC kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000042dffffff]
Aug 30 09:55:04 BW3PC kernel: On node 0 totalpages: 4163334
Aug 30 09:55:04 BW3PC kernel:   DMA zone: 64 pages used for memmap
Aug 30 09:55:04 BW3PC kernel:   DMA zone: 22 pages reserved
Aug 30 09:55:04 BW3PC kernel:   DMA zone: 3995 pages, LIFO batch:0
Aug 30 09:55:04 BW3PC kernel:   DMA32 zone: 12894 pages used for memmap
Aug 30 09:55:04 BW3PC kernel:   DMA32 zone: 825195 pages, LIFO batch:31
Aug 30 09:55:04 BW3PC kernel:   Normal zone: 52096 pages used for memmap
Aug 30 09:55:04 BW3PC kernel:   Normal zone: 3334144 pages, LIFO batch:31
Aug 30 09:55:04 BW3PC kernel: Reserving Intel graphics stolen memory at 0xce000000-0xcfffffff
Aug 30 09:55:04 BW3PC kernel: ACPI: PM-Timer IO Port: 0x1808
Aug 30 09:55:04 BW3PC kernel: ACPI: Local APIC address 0xfee00000
Aug 30 09:55:04 BW3PC kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Aug 30 09:55:04 BW3PC kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Aug 30 09:55:04 BW3PC kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
Aug 30 09:55:04 BW3PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 30 09:55:04 BW3PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 30 09:55:04 BW3PC kernel: ACPI: IRQ0 used by override.
Aug 30 09:55:04 BW3PC kernel: ACPI: IRQ9 used by override.
Aug 30 09:55:04 BW3PC kernel: Using ACPI (MADT) for SMP configuration information
Aug 30 09:55:04 BW3PC kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
Aug 30 09:55:04 BW3PC kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xc1593000-0xc1593fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xc15a3000-0xc15a3fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xc15a4000-0xc15a4fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xc15b4000-0xc15b4fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xca76a000-0xccbfefff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xccbff000-0xccd7efff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xccd7f000-0xccdfefff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xcce00000-0xcdffffff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xce000000-0xcfffffff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xd0000000-0xf80f7fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Aug 30 09:55:04 BW3PC kernel: PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
Aug 30 09:55:04 BW3PC kernel: e820: [mem 0xd0000000-0xf80f7fff] available for PCI devices
Aug 30 09:55:04 BW3PC kernel: Booting paravirtualized kernel on bare hardware
Aug 30 09:55:04 BW3PC kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Aug 30 09:55:04 BW3PC kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
Aug 30 09:55:04 BW3PC kernel: percpu: Embedded 33 pages/cpu @ffff88042dc00000 s97944 r8192 d29032 u262144
Aug 30 09:55:04 BW3PC kernel: pcpu-alloc: s97944 r8192 d29032 u262144 alloc=1*2097152
Aug 30 09:55:04 BW3PC kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Aug 30 09:55:04 BW3PC kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4098258
Aug 30 09:55:04 BW3PC kernel: Policy zone: Normal
Aug 30 09:55:04 BW3PC kernel: Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=65eefeef-abde-47b1-b7f5-764b8364164e rw
Aug 30 09:55:04 BW3PC kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug 30 09:55:04 BW3PC kernel: Calgary: detecting Calgary via BIOS EBDA area
Aug 30 09:55:04 BW3PC kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Aug 30 09:55:04 BW3PC kernel: Memory: 16215984K/16653336K available (6028K kernel code, 977K rwdata, 1836K rodata, 1244K init, 1164K bss, 437352K reserved, 0K cma-reserved)
Aug 30 09:55:04 BW3PC kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Aug 30 09:55:04 BW3PC kernel: Preemptible hierarchical RCU implementation.
Aug 30 09:55:04 BW3PC kernel:         Build-time adjustment of leaf fanout to 64.
Aug 30 09:55:04 BW3PC kernel:         RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
Aug 30 09:55:04 BW3PC kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
Aug 30 09:55:04 BW3PC kernel: NR_IRQS:8448 nr_irqs:760 16
Aug 30 09:55:04 BW3PC kernel: Console: colour dummy device 80x25
Aug 30 09:55:04 BW3PC kernel: console [tty0] enabled
Aug 30 09:55:04 BW3PC kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Aug 30 09:55:04 BW3PC kernel: hpet clockevent registered
Aug 30 09:55:04 BW3PC kernel: tsc: Fast TSC calibration using PIT
Aug 30 09:55:04 BW3PC kernel: tsc: Detected 2194.835 MHz processor
Aug 30 09:55:04 BW3PC kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4391.57 BogoMIPS (lpj=7316116)
Aug 30 09:55:04 BW3PC kernel: pid_max: default: 32768 minimum: 301
Aug 30 09:55:04 BW3PC kernel: ACPI: Core revision 20160422
Aug 30 09:55:04 BW3PC kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
Aug 30 09:55:04 BW3PC kernel: 
Aug 30 09:55:04 BW3PC kernel: Security Framework initialized
Aug 30 09:55:04 BW3PC kernel: Yama: becoming mindful.
Aug 30 09:55:04 BW3PC kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Aug 30 09:55:04 BW3PC kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Aug 30 09:55:04 BW3PC kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug 30 09:55:04 BW3PC kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug 30 09:55:04 BW3PC kernel: CPU: Physical Processor ID: 0
Aug 30 09:55:04 BW3PC kernel: CPU: Processor Core ID: 0
Aug 30 09:55:04 BW3PC kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Aug 30 09:55:04 BW3PC kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Aug 30 09:55:04 BW3PC kernel: mce: CPU supports 7 MCE banks
Aug 30 09:55:04 BW3PC kernel: CPU0: Thermal monitoring enabled (TM1)
Aug 30 09:55:04 BW3PC kernel: process: using mwait in idle threads
Aug 30 09:55:04 BW3PC kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Aug 30 09:55:04 BW3PC kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Aug 30 09:55:04 BW3PC kernel: Freeing SMP alternatives memory: 24K (ffffffff81a2d000 - ffffffff81a33000)
Aug 30 09:55:04 BW3PC kernel: ftrace: allocating 23806 entries in 93 pages
Aug 30 09:55:04 BW3PC kernel: smpboot: Max logical packages: 4
Aug 30 09:55:04 BW3PC kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Aug 30 09:55:04 BW3PC kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Aug 30 09:55:04 BW3PC kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 30 09:55:04 BW3PC kernel: TSC deadline timer enabled
Aug 30 09:55:04 BW3PC kernel: smpboot: CPU0: Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz (family: 0x6, model: 0x3d, stepping: 0x4)
Aug 30 09:55:04 BW3PC kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Broadwell events, full-width counters, Intel PMU driver.
Aug 30 09:55:04 BW3PC kernel: ... version:                3
Aug 30 09:55:04 BW3PC kernel: ... bit width:              48
Aug 30 09:55:04 BW3PC kernel: ... generic registers:      4
Aug 30 09:55:04 BW3PC kernel: ... value mask:             0000ffffffffffff
Aug 30 09:55:04 BW3PC kernel: ... max period:             0000ffffffffffff
Aug 30 09:55:04 BW3PC kernel: ... fixed-purpose events:   3
Aug 30 09:55:04 BW3PC kernel: ... event mask:             000000070000000f
Aug 30 09:55:04 BW3PC kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 30 09:55:04 BW3PC kernel: x86: Booting SMP configuration:
Aug 30 09:55:04 BW3PC kernel: .... node  #0, CPUs:      #1 #2 #3
Aug 30 09:55:04 BW3PC kernel: x86: Booted up 1 node, 4 CPUs
Aug 30 09:55:04 BW3PC kernel: smpboot: Total of 4 processors activated (17570.88 BogoMIPS)
Aug 30 09:55:04 BW3PC kernel: devtmpfs: initialized
Aug 30 09:55:04 BW3PC kernel: x86/mm: Memory block size: 128MB
Aug 30 09:55:04 BW3PC kernel: PM: Registering ACPI NVS region [mem 0xccbff000-0xccd7efff] (1572864 bytes)
Aug 30 09:55:04 BW3PC kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Aug 30 09:55:04 BW3PC kernel: pinctrl core: initialized pinctrl subsystem
Aug 30 09:55:04 BW3PC kernel: RTC time: 14:54:55, date: 08/30/16
Aug 30 09:55:04 BW3PC kernel: NET: Registered protocol family 16
Aug 30 09:55:04 BW3PC kernel: cpuidle: using governor ladder
Aug 30 09:55:04 BW3PC kernel: cpuidle: using governor menu
Aug 30 09:55:04 BW3PC kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 30 09:55:04 BW3PC kernel: ACPI: bus type PCI registered
Aug 30 09:55:04 BW3PC kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 30 09:55:04 BW3PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Aug 30 09:55:04 BW3PC kernel: PCI: not using MMCONFIG
Aug 30 09:55:04 BW3PC kernel: PCI: Using configuration type 1 for base access
Aug 30 09:55:04 BW3PC kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Aug 30 09:55:04 BW3PC kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 30 09:55:04 BW3PC kernel: ACPI: Added _OSI(Module Device)
Aug 30 09:55:04 BW3PC kernel: ACPI: Added _OSI(Processor Device)
Aug 30 09:55:04 BW3PC kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 30 09:55:04 BW3PC kernel: ACPI: Added _OSI(Processor Aggregator Device)
Aug 30 09:55:04 BW3PC kernel: ACPI : EC: EC description table is found, configuring boot EC
Aug 30 09:55:04 BW3PC kernel: ACPI : EC: EC started
Aug 30 09:55:04 BW3PC kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Aug 30 09:55:04 BW3PC kernel: ACPI: Dynamic OEM Table Load:
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0xFFFF88041B2A3800 000436 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: Dynamic OEM Table Load:
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0xFFFF88041B2A4000 0005AA (v01 PmRef  ApIst    00003000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: Dynamic OEM Table Load:
Aug 30 09:55:04 BW3PC kernel: ACPI: SSDT 0xFFFF88041B2AB200 000119 (v02 PmRef  ApCst    00003000 INTL 20120711)
Aug 30 09:55:04 BW3PC kernel: ACPI: Interpreter enabled
Aug 30 09:55:04 BW3PC kernel: ACPI: (supports S0 S3 S4 S5)
Aug 30 09:55:04 BW3PC kernel: ACPI: Using IOAPIC for interrupt routing
Aug 30 09:55:04 BW3PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Aug 30 09:55:04 BW3PC kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
Aug 30 09:55:04 BW3PC kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 30 09:55:04 BW3PC kernel: ACPI: Power Resource [PUBS] (on)
Aug 30 09:55:04 BW3PC kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Aug 30 09:55:04 BW3PC kernel: ACPI: Power Resource [NVP3] (on)
Aug 30 09:55:04 BW3PC kernel: ACPI: Power Resource [NVP2] (on)
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 09:55:04 BW3PC kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Aug 30 09:55:04 BW3PC kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug 30 09:55:04 BW3PC kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
Aug 30 09:55:04 BW3PC kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Aug 30 09:55:04 BW3PC kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Aug 30 09:55:04 BW3PC kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
Aug 30 09:55:04 BW3PC kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Aug 30 09:55:04 BW3PC kernel: PCI host bridge to bus 0000:00
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: root bus resource [bus 00-3f]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:00.0: [8086:1604] type 00 class 0x060000
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:02.0: [8086:1616] type 00 class 0x030000
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf0ffffff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:03.0: [8086:160c] type 00 class 0x040300
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:03.0: reg 0x10: [mem 0xf1230000-0xf1233fff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:14.0: [8086:9cb1] type 00 class 0x0c0330
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf1220000-0xf122ffff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:16.0: [8086:9cba] type 00 class 0x078000
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf1239000-0xf123901f 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:19.0: [8086:15a3] type 00 class 0x020000
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:19.0: reg 0x10: [mem 0xf1200000-0xf121ffff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:19.0: reg 0x14: [mem 0xf123e000-0xf123efff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:19.0: reg 0x18: [io  0x3080-0x309f]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:19.0: System wakeup disabled by ACPI
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1b.0: [8086:9ca0] type 00 class 0x040300
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf1234000-0xf1237fff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.0: [8086:9c9a] type 01 class 0x060400
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1: [8086:9c94] type 01 class 0x060400
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1d.0: [8086:9ca6] type 00 class 0x0c0320
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf123d000-0xf123d3ff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.0: [8086:9cc3] type 00 class 0x060100
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: [8086:9c83] type 00 class 0x010601
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: reg 0x10: [io  0x30a8-0x30af]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: reg 0x14: [io  0x30b4-0x30b7]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: reg 0x18: [io  0x30a0-0x30a7]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x30b0-0x30b3]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xf123c000-0xf123c7ff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.2: PME# supported from D3hot
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.3: [8086:9ca2] type 00 class 0x0c0500
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf1238000-0xf12380ff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.6: [8086:9ca4] type 00 class 0x118000
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xf123b000-0xf123bfff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:02:00.0: [10ec:5227] type 00 class 0xff0000
Aug 30 09:55:04 BW3PC kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf1100000-0xf1100fff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:02:00.0: supports D1 D2
Aug 30 09:55:04 BW3PC kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:03:00.0: [8086:095b] type 00 class 0x028000
Aug 30 09:55:04 BW3PC kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf1000000-0xf1001fff 64bit]
Aug 30 09:55:04 BW3PC kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1:   bridge window [mem 0xf1000000-0xf10fffff]
Aug 30 09:55:04 BW3PC kernel: ACPI: Enabled 4 GPEs in block 00 to 7F
Aug 30 09:55:04 BW3PC kernel: ACPI : EC: EC stopped
Aug 30 09:55:04 BW3PC kernel: ACPI : EC: GPE = 0x25, I/O: command/status = 0x66, data = 0x62
Aug 30 09:55:04 BW3PC kernel: ACPI : EC: EC started
Aug 30 09:55:04 BW3PC kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=mem,locks=none
Aug 30 09:55:04 BW3PC kernel: vgaarb: loaded
Aug 30 09:55:04 BW3PC kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
Aug 30 09:55:04 BW3PC kernel: vgaarb: bridge control possible 0000:00:02.0
Aug 30 09:55:04 BW3PC kernel: PCI: Using ACPI for IRQ routing
Aug 30 09:55:04 BW3PC kernel: PCI: pci_cache_line_size set to 64 bytes
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0xc1593018-0xc3ffffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0xc15a4018-0xc3ffffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0xca76a000-0xcbffffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0xcce00000-0xcfffffff]
Aug 30 09:55:04 BW3PC kernel: e820: reserve RAM buffer [mem 0x42e000000-0x42fffffff]
Aug 30 09:55:04 BW3PC kernel: NetLabel: Initializing
Aug 30 09:55:04 BW3PC kernel: NetLabel:  domain hash size = 128
Aug 30 09:55:04 BW3PC kernel: NetLabel:  protocols = UNLABELED CIPSOv4
Aug 30 09:55:04 BW3PC kernel: NetLabel:  unlabeled traffic allowed by default
Aug 30 09:55:04 BW3PC kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Aug 30 09:55:04 BW3PC kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Aug 30 09:55:04 BW3PC kernel: amd_nb: Cannot enumerate AMD northbridges
Aug 30 09:55:04 BW3PC kernel: clocksource: Switched to clocksource hpet
Aug 30 09:55:04 BW3PC kernel: VFS: Disk quotas dquot_6.6.0
Aug 30 09:55:04 BW3PC kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 30 09:55:04 BW3PC kernel: pnp: PnP ACPI init
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x000e0000-0x000e3fff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x000e4000-0x000e7fff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x000e8000-0x000ebfff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x000ec000-0x000effff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0x00100000-0xcfffffff] could not be reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: [mem 0xfed4c000-0xffffffff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Aug 30 09:55:04 BW3PC kernel: pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x1800-0x189f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0880-0x08ff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0900-0x097f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0980-0x09ff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0a00-0x0a7f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0a80-0x0aff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0b00-0x0b7f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x0b80-0x0bff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x1600-0x167f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [io  0x1640-0x165f] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 30 09:55:04 BW3PC kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 30 09:55:04 BW3PC kernel: pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Aug 30 09:55:04 BW3PC kernel: pnp 00:04: Plug and Play ACPI device, IDs LEN002c PNP0f13 (active)
Aug 30 09:55:04 BW3PC kernel: pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
Aug 30 09:55:04 BW3PC kernel: system 00:06: [mem 0xd0010000-0xd001ffff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:06: [mem 0xd0000000-0xd000ffff] has been reserved
Aug 30 09:55:04 BW3PC kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 30 09:55:04 BW3PC kernel: pnp: PnP ACPI: found 7 devices
Aug 30 09:55:04 BW3PC kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:1c.1:   bridge window [mem 0xf1000000-0xf10fffff]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 15 [mem 0xd0000000-0xfebfffff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:00: resource 16 [mem 0xfed40000-0xfed4bfff window]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:02: resource 1 [mem 0xf1100000-0xf11fffff]
Aug 30 09:55:04 BW3PC kernel: pci_bus 0000:03: resource 1 [mem 0xf1000000-0xf10fffff]
Aug 30 09:55:04 BW3PC kernel: NET: Registered protocol family 2
Aug 30 09:55:04 BW3PC kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Aug 30 09:55:04 BW3PC kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 30 09:55:04 BW3PC kernel: TCP: Hash tables configured (established 131072 bind 65536)
Aug 30 09:55:04 BW3PC kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
Aug 30 09:55:04 BW3PC kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Aug 30 09:55:04 BW3PC kernel: NET: Registered protocol family 1
Aug 30 09:55:04 BW3PC kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Aug 30 09:55:04 BW3PC kernel: PCI: CLS 64 bytes, default 64
Aug 30 09:55:04 BW3PC kernel: Unpacking initramfs...
Aug 30 09:55:04 BW3PC kernel: Freeing initrd memory: 5692K (ffff88007fa71000 - ffff880080000000)
Aug 30 09:55:04 BW3PC kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 30 09:55:04 BW3PC kernel: software IO TLB [mem 0xba58d000-0xbe58d000] (64MB) mapped at [ffff8800ba58d000-ffff8800be58cfff]
Aug 30 09:55:04 BW3PC kernel: Scanning for low memory corruption every 60 seconds
Aug 30 09:55:04 BW3PC kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
Aug 30 09:55:04 BW3PC kernel: Initialise system trusted keyrings
Aug 30 09:55:04 BW3PC kernel: workingset: timestamp_bits=38 max_order=22 bucket_order=0
Aug 30 09:55:04 BW3PC kernel: zbud: loaded
Aug 30 09:55:04 BW3PC kernel: Key type big_key registered
Aug 30 09:55:04 BW3PC kernel: Key type asymmetric registered
Aug 30 09:55:04 BW3PC kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Aug 30 09:55:04 BW3PC kernel: io scheduler noop registered
Aug 30 09:55:04 BW3PC kernel: io scheduler deadline registered
Aug 30 09:55:04 BW3PC kernel: io scheduler cfq registered (default)
Aug 30 09:55:04 BW3PC kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug 30 09:55:04 BW3PC kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug 30 09:55:04 BW3PC kernel: efifb: probing for efifb
Aug 30 09:55:04 BW3PC kernel: efifb: framebuffer at 0xe0000000, using 8100k, total 8100k
Aug 30 09:55:04 BW3PC kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
Aug 30 09:55:04 BW3PC kernel: efifb: scrolling: redraw
Aug 30 09:55:04 BW3PC kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Aug 30 09:55:04 BW3PC kernel: Console: switching to colour frame buffer device 240x67
Aug 30 09:55:04 BW3PC kernel: fb0: EFI VGA frame buffer device
Aug 30 09:55:04 BW3PC kernel: intel_idle: MWAIT substates: 0x11142120
Aug 30 09:55:04 BW3PC kernel: intel_idle: v0.4.1 model 0x3D
Aug 30 09:55:04 BW3PC kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Aug 30 09:55:04 BW3PC kernel: GHES: HEST is not enabled!
Aug 30 09:55:04 BW3PC kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Aug 30 09:55:04 BW3PC kernel: Linux agpgart interface v0.103
Aug 30 09:55:04 BW3PC kernel: rtc_cmos 00:02: RTC can wake from S4
Aug 30 09:55:04 BW3PC kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Aug 30 09:55:04 BW3PC kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Aug 30 09:55:04 BW3PC kernel: intel_pstate: Intel P-state driver initializing
Aug 30 09:55:04 BW3PC kernel: ledtrig-cpu: registered to indicate activity on CPUs
Aug 30 09:55:04 BW3PC kernel: NET: Registered protocol family 10
Aug 30 09:55:04 BW3PC kernel: NET: Registered protocol family 17
Aug 30 09:55:04 BW3PC kernel: microcode: CPU0 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 09:55:04 BW3PC kernel: microcode: CPU1 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 09:55:04 BW3PC kernel: microcode: CPU2 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 09:55:04 BW3PC kernel: microcode: CPU3 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 09:55:04 BW3PC kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Aug 30 09:55:04 BW3PC kernel: registered taskstats version 1
Aug 30 09:55:04 BW3PC kernel: Loading compiled-in X.509 certificates
Aug 30 09:55:04 BW3PC kernel: zswap: loaded using pool lzo/zbud
Aug 30 09:55:04 BW3PC kernel:   Magic number: 12:642:941
Aug 30 09:55:04 BW3PC kernel: rtc_cmos 00:02: setting system clock to 2016-08-30 14:54:56 UTC (1472568896)
Aug 30 09:55:04 BW3PC kernel: PM: Hibernation image not present or could not be loaded.
Aug 30 09:55:04 BW3PC kernel: Freeing unused kernel memory: 1244K (ffffffff818f6000 - ffffffff81a2d000)
Aug 30 09:55:04 BW3PC kernel: Write protecting the kernel read-only data: 8192k
Aug 30 09:55:04 BW3PC kernel: Freeing unused kernel memory: 100K (ffff8800015e7000 - ffff880001600000)
Aug 30 09:55:04 BW3PC kernel: Freeing unused kernel memory: 212K (ffff8800017cb000 - ffff880001800000)
Aug 30 09:55:04 BW3PC kernel: random: systemd-tmpfile: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 09:55:04 BW3PC kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Aug 30 09:55:04 BW3PC kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 30 09:55:04 BW3PC kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 30 09:55:04 BW3PC kernel: rtsx_pci 0000:02:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 40
Aug 30 09:55:04 BW3PC kernel: ACPI: bus type USB registered
Aug 30 09:55:04 BW3PC kernel: usbcore: registered new interface driver usbfs
Aug 30 09:55:04 BW3PC kernel: usbcore: registered new interface driver hub
Aug 30 09:55:04 BW3PC kernel: usbcore: registered new device driver usb
Aug 30 09:55:04 BW3PC kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 30 09:55:04 BW3PC kernel: ehci-pci: EHCI PCI platform driver
Aug 30 09:55:04 BW3PC kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Aug 30 09:55:04 BW3PC kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
Aug 30 09:55:04 BW3PC kernel: ehci-pci 0000:00:1d.0: debug port 2
Aug 30 09:55:04 BW3PC kernel: SCSI subsystem initialized
Aug 30 09:55:04 BW3PC kernel: libata version 3.00 loaded.
Aug 30 09:55:04 BW3PC kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Aug 30 09:55:04 BW3PC kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf123d000
Aug 30 09:55:04 BW3PC kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Aug 30 09:55:04 BW3PC kernel: hub 1-0:1.0: USB hub found
Aug 30 09:55:04 BW3PC kernel: hub 1-0:1.0: 3 ports detected
Aug 30 09:55:04 BW3PC kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Aug 30 09:55:04 BW3PC kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Aug 30 09:55:04 BW3PC kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
Aug 30 09:55:04 BW3PC kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Aug 30 09:55:04 BW3PC kernel: hub 2-0:1.0: USB hub found
Aug 30 09:55:04 BW3PC kernel: hub 2-0:1.0: 11 ports detected
Aug 30 09:55:04 BW3PC kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Aug 30 09:55:04 BW3PC kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Aug 30 09:55:04 BW3PC kernel: hub 3-0:1.0: USB hub found
Aug 30 09:55:04 BW3PC kernel: hub 3-0:1.0: 4 ports detected
Aug 30 09:55:04 BW3PC kernel: ahci 0000:00:1f.2: version 3.0
Aug 30 09:55:04 BW3PC kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Aug 30 09:55:04 BW3PC kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x5 impl SATA mode
Aug 30 09:55:04 BW3PC kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Aug 30 09:55:04 BW3PC kernel: scsi host0: ahci
Aug 30 09:55:04 BW3PC kernel: scsi host1: ahci
Aug 30 09:55:04 BW3PC kernel: scsi host2: ahci
Aug 30 09:55:04 BW3PC kernel: ata1: SATA max UDMA/133 abar m2048@0xf123c000 port 0xf123c100 irq 42
Aug 30 09:55:04 BW3PC kernel: ata2: DUMMY
Aug 30 09:55:04 BW3PC kernel: ata3: SATA max UDMA/133 abar m2048@0xf123c000 port 0xf123c200 irq 42
Aug 30 09:55:04 BW3PC kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Aug 30 09:55:04 BW3PC kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug 30 09:55:04 BW3PC kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug 30 09:55:04 BW3PC kernel: ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 09:55:04 BW3PC kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 09:55:04 BW3PC kernel: ata3.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 09:55:04 BW3PC kernel: ata3.00: ATA-9: SanDisk SSD U110 16GB, U21B001, max UDMA/133
Aug 30 09:55:04 BW3PC kernel: ata3.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
Aug 30 09:55:04 BW3PC kernel: ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 09:55:04 BW3PC kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 09:55:04 BW3PC kernel: ata3.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 09:55:04 BW3PC kernel: ata3.00: configured for UDMA/133
Aug 30 09:55:04 BW3PC kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 09:55:04 BW3PC kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 09:55:04 BW3PC kernel: usb 2-7: new full-speed USB device number 2 using xhci_hcd
Aug 30 09:55:04 BW3PC kernel: ata1.00: ATA-8: ST500LM021-1KJ152, 0002LIM1, max UDMA/133
Aug 30 09:55:04 BW3PC kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug 30 09:55:04 BW3PC kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 09:55:04 BW3PC kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 09:55:04 BW3PC kernel: hub 1-1:1.0: USB hub found
Aug 30 09:55:04 BW3PC kernel: hub 1-1:1.0: 8 ports detected
Aug 30 09:55:04 BW3PC kernel: ata1.00: configured for UDMA/133
Aug 30 09:55:04 BW3PC kernel: scsi 0:0:0:0: Direct-Access     ATA      ST500LM021-1KJ15 LIM1 PQ: 0 ANSI: 5
Aug 30 09:55:04 BW3PC kernel: scsi 2:0:0:0: Direct-Access     ATA      SanDisk SSD U110 001  PQ: 0 ANSI: 5
Aug 30 09:55:04 BW3PC kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Aug 30 09:55:04 BW3PC kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
Aug 30 09:55:04 BW3PC kernel: sd 0:0:0:0: [sda] Write Protect is off
Aug 30 09:55:04 BW3PC kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 30 09:55:04 BW3PC kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 30 09:55:04 BW3PC kernel: sd 2:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
Aug 30 09:55:04 BW3PC kernel: sd 2:0:0:0: [sdb] Write Protect is off
Aug 30 09:55:04 BW3PC kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Aug 30 09:55:04 BW3PC kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 30 09:55:04 BW3PC kernel:  sdb: sdb1
Aug 30 09:55:04 BW3PC kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
Aug 30 09:55:04 BW3PC kernel:  sda: sda1 sda2 sda3 sda4 sda5 sda6
Aug 30 09:55:04 BW3PC kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Aug 30 09:55:04 BW3PC kernel: usb 2-8: new high-speed USB device number 3 using xhci_hcd
Aug 30 09:55:04 BW3PC kernel: tsc: Refined TSC clocksource calibration: 2194.918 MHz
Aug 30 09:55:04 BW3PC kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fa37202099, max_idle_ns: 440795206796 ns
Aug 30 09:55:04 BW3PC kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
Aug 30 09:55:04 BW3PC kernel: random: nonblocking pool is initialized
Aug 30 09:55:04 BW3PC kernel: clocksource: Switched to clocksource tsc
Aug 30 09:55:04 BW3PC kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Aug 30 09:55:04 BW3PC systemd[1]: systemd 231 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Aug 30 09:55:04 BW3PC systemd[1]: Detected architecture x86-64.
Aug 30 09:55:04 BW3PC systemd[1]: Set hostname to <BW3PC>.
Aug 30 09:55:04 BW3PC systemd[1]: Listening on Process Core Dump Socket.
Aug 30 09:55:04 BW3PC systemd[1]: Listening on Journal Socket.
Aug 30 09:55:04 BW3PC systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Aug 30 09:55:04 BW3PC systemd[1]: Listening on udev Kernel Socket.
Aug 30 09:55:04 BW3PC systemd[1]: Created slice System Slice.
Aug 30 09:55:04 BW3PC systemd[1]: Starting Setup Virtual Console...
Aug 30 09:55:04 BW3PC systemd[1]: Mounting Huge Pages File System...
Aug 30 09:55:04 BW3PC systemd[1]: Listening on Journal Socket (/dev/log).
Aug 30 09:55:04 BW3PC systemd[1]: Reached target Remote File Systems.
Aug 30 09:55:04 BW3PC systemd[1]: Starting Create list of required static device nodes for the current kernel...
Aug 30 09:55:04 BW3PC systemd[1]: Listening on LVM2 metadata daemon socket.
Aug 30 09:55:04 BW3PC systemd[1]: Mounting POSIX Message Queue File System...
Aug 30 09:55:04 BW3PC systemd[1]: Reached target Encrypted Volumes.
Aug 30 09:55:04 BW3PC systemd[1]: Starting Apply Kernel Variables...
Aug 30 09:55:04 BW3PC systemd[1]: Mounting Configuration File System...
Aug 30 09:55:04 BW3PC systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Aug 30 09:55:04 BW3PC systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Aug 30 09:55:04 BW3PC systemd[1]: Reached target Login Prompts.
Aug 30 09:55:04 BW3PC systemd[1]: Created slice system-getty.slice.
Aug 30 09:55:04 BW3PC systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Aug 30 09:55:04 BW3PC systemd[1]: Starting Set Up Additional Binary Formats...
Aug 30 09:55:04 BW3PC systemd[1]: Listening on udev Control Socket.
Aug 30 09:55:04 BW3PC systemd[1]: Created slice User and Session Slice.
Aug 30 09:55:04 BW3PC systemd[1]: Mounting Debug File System...
Aug 30 09:55:04 BW3PC systemd[1]: Reached target Slices.
Aug 30 09:55:04 BW3PC systemd[1]: Reached target Swap.
Aug 30 09:55:04 BW3PC systemd[1]: Mounting Temporary Directory...
Aug 30 09:55:04 BW3PC systemd[1]: Starting Journal Service...
Aug 30 09:55:04 BW3PC systemd[1]: Listening on Device-mapper event daemon FIFOs.
Aug 30 09:55:04 BW3PC systemd[1]: Starting Remount Root and Kernel File Systems...
Aug 30 09:55:04 BW3PC systemd[1]: Mounted Configuration File System.
Aug 30 09:55:04 BW3PC systemd[1]: Mounted Debug File System.
Aug 30 09:55:04 BW3PC systemd[1]: Mounted POSIX Message Queue File System.
Aug 30 09:55:04 BW3PC systemd[1]: Mounted Huge Pages File System.
Aug 30 09:55:04 BW3PC systemd[1]: Mounted Temporary Directory.
Aug 30 09:55:04 BW3PC systemd[1]: Started Setup Virtual Console.
Aug 30 09:55:04 BW3PC systemd[1]: Started Create list of required static device nodes for the current kernel.
Aug 30 09:55:04 BW3PC systemd[1]: Started Apply Kernel Variables.
Aug 30 09:55:04 BW3PC systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 158 (systemd-binfmt)
Aug 30 09:55:04 BW3PC kernel: EXT4-fs (sda6): re-mounted. Opts: data=ordered
Aug 30 09:55:04 BW3PC systemd[1]: Mounting Arbitrary Executable File Formats File System...
Aug 30 09:55:04 BW3PC systemd[1]: Started Remount Root and Kernel File Systems.
Aug 30 09:55:04 BW3PC systemd[1]: Starting Load/Save Random Seed...
Aug 30 09:55:04 BW3PC systemd[1]: Starting udev Coldplug all Devices...
Aug 30 09:55:04 BW3PC systemd[1]: Starting Create Static Device Nodes in /dev...
Aug 30 09:55:04 BW3PC systemd[1]: Mounted Arbitrary Executable File Formats File System.
Aug 30 09:55:04 BW3PC systemd[1]: Started Load/Save Random Seed.
Aug 30 09:55:04 BW3PC systemd[1]: Started Set Up Additional Binary Formats.
Aug 30 09:55:04 BW3PC systemd[1]: Started udev Coldplug all Devices.
Aug 30 09:55:04 BW3PC systemd[1]: Started Create Static Device Nodes in /dev.
Aug 30 09:55:04 BW3PC systemd[1]: Reached target Local File Systems (Pre).
Aug 30 09:55:04 BW3PC systemd[1]: Starting udev Kernel Device Manager...
Aug 30 09:55:04 BW3PC systemd[1]: Started udev Kernel Device Manager.
Aug 30 09:55:04 BW3PC kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
Aug 30 09:55:04 BW3PC kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
Aug 30 09:55:04 BW3PC kernel: ACPI: AC Adapter [AC] (on-line)
Aug 30 09:55:04 BW3PC kernel: ACPI: Lid Switch [LID]
Aug 30 09:55:04 BW3PC kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
Aug 30 09:55:04 BW3PC kernel: ACPI: Sleep Button [SLPB]
Aug 30 09:55:04 BW3PC kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Aug 30 09:55:04 BW3PC kernel: ACPI: Power Button [PWRF]
Aug 30 09:55:04 BW3PC kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Aug 30 09:55:04 BW3PC kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug 30 09:55:04 BW3PC kernel: pps_core: LinuxPPS API ver. 1 registered
Aug 30 09:55:04 BW3PC kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Aug 30 09:55:04 BW3PC kernel: PTP clock support registered
Aug 30 09:55:04 BW3PC kernel: wmi: Mapper loaded
Aug 30 09:55:04 BW3PC kernel: FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
Aug 30 09:55:04 BW3PC kernel: ACPI: Battery Slot [BAT0] (battery present)
Aug 30 09:55:04 BW3PC kernel: ACPI: Battery Slot [BAT1] (battery present)
Aug 30 09:55:04 BW3PC kernel: thermal LNXTHERM:00: registered as thermal_zone1
Aug 30 09:55:04 BW3PC kernel: ACPI: Thermal Zone [THM0] (40 C)
Aug 30 09:55:04 BW3PC kernel: e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
Aug 30 09:55:04 BW3PC kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Aug 30 09:55:04 BW3PC kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Aug 30 09:55:04 BW3PC kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
Aug 30 09:55:04 BW3PC kernel: Non-volatile memory driver v1.3
Aug 30 09:55:04 BW3PC kernel: e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
Aug 30 09:55:04 BW3PC kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 54:ee:75:59:46:85
Aug 30 09:55:04 BW3PC kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Aug 30 09:55:04 BW3PC kernel: e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: 1000FF-0FF
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.25
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: ThinkPad BIOS N11ET31W (1.07 ), EC unknown
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: Lenovo ThinkPad T550, model 20CKCTO1WW
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: radio switch found; radios are enabled
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Aug 30 09:55:04 BW3PC kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Aug 30 09:55:04 BW3PC kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
Aug 30 09:55:04 BW3PC kernel: Intel(R) Wireless WiFi driver for Linux
Aug 30 09:55:04 BW3PC kernel: Copyright(c) 2003- 2015 Intel Corporation
Aug 30 09:55:04 BW3PC kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Aug 30 09:55:04 BW3PC kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Aug 30 09:55:04 BW3PC kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Aug 30 09:55:04 BW3PC kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Aug 30 09:55:04 BW3PC kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Aug 30 09:55:04 BW3PC kernel: media: Linux media interface: v0.10
Aug 30 09:55:04 BW3PC kernel: iTCO_vendor_support: vendor-support=0
Aug 30 09:55:04 BW3PC kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Aug 30 09:55:04 BW3PC kernel: iTCO_wdt: Found a Wildcat Point_LP TCO device (Version=2, TCOBASE=0x1860)
Aug 30 09:55:04 BW3PC kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Aug 30 09:55:04 BW3PC kernel: Bluetooth: Core ver 2.21
Aug 30 09:55:04 BW3PC kernel: NET: Registered protocol family 31
Aug 30 09:55:04 BW3PC kernel: Bluetooth: HCI device and connection manager initialized
Aug 30 09:55:04 BW3PC kernel: Bluetooth: HCI socket layer initialized
Aug 30 09:55:04 BW3PC kernel: Bluetooth: L2CAP socket layer initialized
Aug 30 09:55:04 BW3PC kernel: Bluetooth: SCO socket layer initialized
Aug 30 09:55:04 BW3PC kernel: Linux video capture interface: v2.00
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3232: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=2 (0x16/0x15/0x0/0x0/0x0)
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:      Dock Mic=0x19
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:      Mic=0x1a
Aug 30 09:55:04 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
Aug 30 09:55:04 BW3PC kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
Aug 30 09:55:04 BW3PC kernel: psmouse serio1: synaptics: queried max coordinates: x [..5676], y [..4758]
Aug 30 09:55:04 BW3PC kernel: usbcore: registered new interface driver btusb
Aug 30 09:55:04 BW3PC kernel: Bluetooth: hci0: read Intel version: 370810011003110e00
Aug 30 09:55:04 BW3PC kernel: psmouse serio1: synaptics: queried min coordinates: x [1266..], y [1096..]
Aug 30 09:55:04 BW3PC kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Aug 30 09:55:04 BW3PC kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xf003a3/0x943300/0x12e800/0x10000, board id: 3053, fw id: 2560
Aug 30 09:55:04 BW3PC kernel: psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Aug 30 09:55:04 BW3PC kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
Aug 30 09:55:04 BW3PC kernel: AVX2 version of gcm_enc/dec engaged.
Aug 30 09:55:04 BW3PC kernel: AES CTR mode by8 optimization enabled
Aug 30 09:55:04 BW3PC kernel: Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
Aug 30 09:55:04 BW3PC kernel: [drm] Initialized drm 1.1.0 20060810
Aug 30 09:55:04 BW3PC kernel: uvcvideo: Found UVC 1.00 device Integrated Camera (04ca:703c)
Aug 30 09:55:04 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Extension 4 was not initialized!
Aug 30 09:55:04 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Extension 3 was not initialized!
Aug 30 09:55:04 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Processing 2 was not initialized!
Aug 30 09:55:04 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Camera 1 was not initialized!
Aug 30 09:55:04 BW3PC kernel: input: Integrated Camera as /devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input14
Aug 30 09:55:04 BW3PC kernel: usbcore: registered new interface driver uvcvideo
Aug 30 09:55:04 BW3PC kernel: USB Video Class driver (1.1.1)
Aug 30 09:55:04 BW3PC kernel: Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
Aug 30 09:55:04 BW3PC kernel: iwlwifi 0000:03:00.0: loaded firmware version 21.302800.0 op_mode iwlmvm
Aug 30 09:55:04 BW3PC kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
Aug 30 09:55:04 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:04 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:04 BW3PC kernel: mousedev: PS/2 mouse device common for all mice
Aug 30 09:55:04 BW3PC kernel: i915 0000:00:02.0: enabling device (0006 -> 0007)
Aug 30 09:55:04 BW3PC kernel: [drm] Memory usable by graphics device = 4096M
Aug 30 09:55:04 BW3PC kernel: checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
Aug 30 09:55:04 BW3PC kernel: fb: switching to inteldrmfb from EFI VGA
Aug 30 09:55:04 BW3PC kernel: Console: switching to colour dummy device 80x25
Aug 30 09:55:04 BW3PC kernel: [drm] Replacing VGA console driver
Aug 30 09:55:04 BW3PC kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Aug 30 09:55:04 BW3PC kernel: [drm] Driver supports precise vblank timestamp query.
Aug 30 09:55:04 BW3PC kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=mem
Aug 30 09:55:04 BW3PC kernel: ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
Aug 30 09:55:04 BW3PC kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15
Aug 30 09:55:04 BW3PC kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Aug 30 09:55:04 BW3PC kernel: snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Aug 30 09:55:04 BW3PC kernel: [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
Aug 30 09:55:04 BW3PC kernel: fbcon: inteldrmfb (fb0) is primary device
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input17
Aug 30 09:55:04 BW3PC kernel: input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input18
Aug 30 09:55:04 BW3PC kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input13
Aug 30 09:55:04 BW3PC kernel: intel_rapl: Found RAPL domain package
Aug 30 09:55:04 BW3PC kernel: intel_rapl: Found RAPL domain core
Aug 30 09:55:04 BW3PC kernel: intel_rapl: Found RAPL domain uncore
Aug 30 09:55:04 BW3PC kernel: intel_rapl: Found RAPL domain dram
Aug 30 09:55:04 BW3PC kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Aug 30 09:55:04 BW3PC kernel: iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
Aug 30 09:55:04 BW3PC systemd-journald[172]: Journal started
Aug 30 09:55:05 BW3PC systemd[1]: Started Journal Service.
Aug 30 09:55:05 BW3PC kernel: Console: switching to colour frame buffer device 240x67
Aug 30 09:55:05 BW3PC kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Aug 30 09:55:05 BW3PC systemd[1]: Found device ST500LM021-1KJ152 Data.
Aug 30 09:55:05 BW3PC systemd[1]: Found device ST500LM021-1KJ152 SYSTEM_DRV.
Aug 30 09:55:05 BW3PC systemd[1]: Found device ST500LM021-1KJ152 Windows.
Aug 30 09:55:05 BW3PC systemd[1]: Mounting /windows...
Aug 30 09:55:05 BW3PC systemd[1]: Mounting /boot...
Aug 30 09:55:05 BW3PC systemd[1]: Mounting /data...
Aug 30 09:55:05 BW3PC systemd[1]: Reached target Bluetooth.
Aug 30 09:55:05 BW3PC systemd[1]: Reached target Sound Card.
Aug 30 09:55:05 BW3PC kernel: fuse init (API version 7.25)
Aug 30 09:55:09 BW3PC kernel: FAT-fs (sda2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Aug 30 09:55:05 BW3PC systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Aug 30 09:55:06 BW3PC ntfs-3g[287]: Bad mapping item ""
Aug 30 09:55:05 BW3PC systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Aug 30 09:55:06 BW3PC ntfs-3g[311]: Version 2016.2.22 external FUSE 29
Aug 30 09:55:05 BW3PC systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:tpacpi::kbd_backlight...
Aug 30 09:55:06 BW3PC ntfs-3g[311]: Mounted /dev/sda5 (Read-Write, label "Data", NTFS 3.1)
Aug 30 09:55:05 BW3PC systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 30 09:55:06 BW3PC ntfs-3g[311]: Cmdline options: rw,permissions
Aug 30 09:55:05 BW3PC systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 30 09:55:06 BW3PC ntfs-3g[311]: Mount options: rw,allow_other,nonempty,default_permissions,relatime,fsname=/dev/sda5,blkdev,blksize=4096
Aug 30 09:55:05 BW3PC systemd[1]: Starting Load/Save RF Kill Switch Status...
Aug 30 09:55:06 BW3PC ntfs-3g[311]: User mapping built, Posix ACLs not used, configuration type 7
Aug 30 09:55:05 BW3PC systemd[1]: Mounting FUSE Control File System...
Aug 30 09:55:09 BW3PC ntfs-3g[285]: Bad mapping item ""
Aug 30 09:55:05 BW3PC systemd[1]: Mounted FUSE Control File System.
Aug 30 09:55:09 BW3PC ntfs-3g[314]: Version 2016.2.22 external FUSE 29
Aug 30 09:55:05 BW3PC systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Aug 30 09:55:09 BW3PC ntfs-3g[314]: Mounted /dev/sda4 (Read-Write, label "Windows", NTFS 3.1)
Aug 30 09:55:05 BW3PC systemd[1]: Started Load/Save Screen Backlight Brightness of leds:tpacpi::kbd_backlight.
Aug 30 09:55:09 BW3PC ntfs-3g[314]: Cmdline options: rw,permissions
Aug 30 09:55:05 BW3PC systemd[1]: Mounted /boot.
Aug 30 09:55:09 BW3PC ntfs-3g[314]: Mount options: rw,allow_other,nonempty,default_permissions,relatime,fsname=/dev/sda4,blkdev,blksize=4096
Aug 30 09:55:05 BW3PC systemd[1]: Started Load/Save RF Kill Switch Status.
Aug 30 09:55:09 BW3PC ntfs-3g[314]: User mapping built, Posix ACLs not used, configuration type 7
Aug 30 09:55:06 BW3PC systemd[1]: Mounted /data.
Aug 30 09:55:09 BW3PC systemd[1]: Started Flush Journal to Persistent Storage.
Aug 30 09:55:09 BW3PC systemd[1]: Mounted /windows.
Aug 30 09:55:09 BW3PC systemd[1]: Reached target Local File Systems.
Aug 30 09:55:09 BW3PC systemd[1]: Starting Create Volatile Files and Directories...
Aug 30 09:55:09 BW3PC systemd[1]: Started Create Volatile Files and Directories.
Aug 30 09:55:09 BW3PC systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Aug 30 09:55:09 BW3PC systemd[1]: Starting Network Time Synchronization...
Aug 30 09:55:09 BW3PC systemd[1]: Started Update UTMP about System Boot/Shutdown.
Aug 30 09:55:09 BW3PC systemd[1]: Started Network Time Synchronization.
Aug 30 09:55:09 BW3PC systemd[1]: Reached target System Initialization.
Aug 30 09:55:09 BW3PC systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 30 09:55:09 BW3PC systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 30 09:55:09 BW3PC systemd[1]: Listening on CUPS Scheduler.
Aug 30 09:55:09 BW3PC systemd[1]: Reached target Sockets.
Aug 30 09:55:09 BW3PC systemd[1]: Started CUPS Scheduler.
Aug 30 09:55:09 BW3PC systemd[1]: Reached target Paths.
Aug 30 09:55:09 BW3PC systemd[1]: Reached target Basic System.
Aug 30 09:55:09 BW3PC systemd[1]: Starting Login Service...
Aug 30 09:55:09 BW3PC systemd[1]: Started D-Bus System Message Bus.
Aug 30 09:55:10 BW3PC systemd[1]: Starting Network Manager...
Aug 30 09:55:10 BW3PC systemd[1]: Reached target System Time Synchronized.
Aug 30 09:55:10 BW3PC systemd[1]: Started Daily verification of password and group files.
Aug 30 09:55:10 BW3PC systemd[1]: Started Daily rotation of log files.
Aug 30 09:55:10 BW3PC systemd[1]: Started Daily man-db cache update.
Aug 30 09:55:10 BW3PC systemd[1]: Reached target Timers.
Aug 30 09:55:10 BW3PC systemd[1]: Started Login Service.
Aug 30 09:55:10 BW3PC systemd-logind[322]: New seat seat0.
Aug 30 09:55:10 BW3PC systemd-logind[322]: Watching system buttons on /dev/input/event3 (Power Button)
Aug 30 09:55:10 BW3PC systemd-logind[322]: Watching system buttons on /dev/input/event13 (Video Bus)
Aug 30 09:55:10 BW3PC systemd-logind[322]: Watching system buttons on /dev/input/event1 (Lid Switch)
Aug 30 09:55:10 BW3PC systemd-logind[322]: Watching system buttons on /dev/input/event2 (Sleep Button)
Aug 30 09:55:10 BW3PC systemd-logind[322]: Watching system buttons on /dev/input/event5 (ThinkPad Extra Buttons)
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0383] NetworkManager (version 1.4.1) is starting...
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0384] Read config: /etc/NetworkManager/NetworkManager.conf
Aug 30 09:55:11 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0500] manager[0x1e13080]: monitoring kernel firmware directory '/usr/lib/firmware'.
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0520] dns-mgr[0x1e0c820]: init: dns=default, rc-manager=resolvconf
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0739] rfkill2: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill2) (driver iwlwifi)
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0741] manager[0x1e13080]: WiFi hardware radio set enabled
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.0741] manager[0x1e13080]: WWAN hardware radio set enabled
Aug 30 09:55:11 BW3PC systemd[1]: Started Network Manager.
Aug 30 09:55:11 BW3PC systemd[1]: Reached target Network.
Aug 30 09:55:11 BW3PC systemd[1]: Starting Permit User Sessions...
Aug 30 09:55:11 BW3PC systemd[1]: Started Permit User Sessions.
Aug 30 09:55:11 BW3PC systemd[1]: Starting GNOME Display Manager...
Aug 30 09:55:11 BW3PC systemd[1]: Reached target Multi-User System.
Aug 30 09:55:11 BW3PC systemd[1]: Starting Network Manager Script Dispatcher Service...
Aug 30 09:55:11 BW3PC systemd[1]: Started GNOME Display Manager.
Aug 30 09:55:11 BW3PC systemd[1]: Reached target Graphical Interface.
Aug 30 09:55:11 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service'
Aug 30 09:55:11 BW3PC systemd[1]: Reached target User and Group Name Lookups.
Aug 30 09:55:11 BW3PC systemd[1]: Starting Accounts Service...
Aug 30 09:55:11 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Aug 30 09:55:11 BW3PC systemd[1]: Started Network Manager Script Dispatcher Service.
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.5649] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Aug 30 09:55:11 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
Aug 30 09:55:11 BW3PC systemd[1]: Starting Authorization Manager...
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.7586] keyfile: new connection /etc/NetworkManager/system-connections/Auto InternetStuff-5G (9e6252be-2f0c-4ab6-b3d4-cc12fa638cc1,"Auto InternetStuff-5G")
Aug 30 09:55:11 BW3PC polkitd[345]: Started polkitd version 0.113
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.8907] keyfile: new connection /etc/NetworkManager/system-connections/Auto MYB’s iPhone (5df2a473-87a0-4de7-814b-d00b1d1253e1,"Auto MYB’s iPhone")
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.9227] keyfile: new connection /etc/NetworkManager/system-connections/Auto Bernardoni (78c192ec-20d5-4f93-9dfc-5b5c7205d5fb,"Auto Bernardoni")
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.9482] keyfile: new connection /etc/NetworkManager/system-connections/Auto IllinoisNet (0cb29b04-0cbe-4121-a6ba-22e593920d25,"Auto IllinoisNet")
Aug 30 09:55:11 BW3PC polkitd[345]: Loading rules from directory /etc/polkit-1/rules.d
Aug 30 09:55:11 BW3PC polkitd[345]: Loading rules from directory /usr/share/polkit-1/rules.d
Aug 30 09:55:11 BW3PC NetworkManager[324]: <info>  [1472568911.9738] keyfile: new connection /etc/NetworkManager/system-connections/Auto BWB S6 (bdce0395-0657-48d1-9469-19d7076cce1f,"Auto BWB S6")
Aug 30 09:55:12 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Aug 30 09:55:12 BW3PC systemd[1]: Starting Hostname Service...
Aug 30 09:55:12 BW3PC polkitd[345]: Finished loading, compiling and executing 2 rules
Aug 30 09:55:12 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Aug 30 09:55:12 BW3PC systemd[1]: Started Authorization Manager.
Aug 30 09:55:12 BW3PC polkitd[345]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Aug 30 09:55:12 BW3PC accounts-daemon[339]: started daemon version 0.6.42
Aug 30 09:55:12 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.Accounts'
Aug 30 09:55:12 BW3PC systemd[1]: Started Accounts Service.
Aug 30 09:55:12 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.hostname1'
Aug 30 09:55:12 BW3PC systemd[1]: Started Hostname Service.
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1810] settings: hostname: using hostnamed
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1810] settings: hostname changed from (none) to "BW3PC"
Aug 30 09:55:12 BW3PC systemd[1]: Startup finished in 3.174s (kernel) + 13.319s (userspace) = 22.877s.
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1812] dhcp-init: Using DHCP client 'dhclient'
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1812] manager: WiFi enabled by radio killswitch; enabled by state file
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1813] manager: WWAN enabled by radio killswitch; enabled by state file
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1813] manager: Networking is enabled by state file
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMVxlanFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMVlanFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMVethFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMTunFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMMacvlanFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMIPTunnelFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1814] Loaded device plugin: NMInfinibandFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1815] Loaded device plugin: NMEthernetFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1815] Loaded device plugin: NMBridgeFactory (internal)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.1815] Loaded device plugin: NMBondFactory (internal)
Aug 30 09:55:12 BW3PC nm-dispatcher[336]: req:1 'hostname': new request (0 scripts)
Aug 30 09:55:12 BW3PC nm-dispatcher[336]: req:1 'hostname': completed: no scripts
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.3126] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/libnm-device-plugin-wwan.so)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4084] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/libnm-device-plugin-team.so)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4098] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/libnm-device-plugin-wifi.so)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4253] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/libnm-device-plugin-bluetooth.so)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4303] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/libnm-device-plugin-adsl.so)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4314] device (lo): link connected
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4320] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4330] manager: (enp0s25): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4337] keyfile: add connection in-memory (bf38749c-9e6c-383d-a3c0-2ae9fb3c906d,"Wired connection 1")
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4341] settings: (enp0s25): created default wired connection 'Wired connection 1'
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.4350] device (enp0s25): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Aug 30 09:55:12 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
Aug 30 09:55:12 BW3PC gdm-autologin][353]: pam_unix(gdm-autologin:session): session opened for user bennett by (uid=0)
Aug 30 09:55:12 BW3PC systemd[1]: Created slice User Slice of bennett.
Aug 30 09:55:12 BW3PC systemd[1]: Starting User Manager for UID 1000...
Aug 30 09:55:12 BW3PC systemd-logind[322]: New session c1 of user bennett.
Aug 30 09:55:12 BW3PC systemd[1]: Started Session c1 of user bennett.
Aug 30 09:55:12 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
Aug 30 09:55:12 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 09:55:12 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:12 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.7380] (wlp3s0): using nl80211 for WiFi device control
Aug 30 09:55:12 BW3PC systemd[357]: pam_unix(systemd-user:session): session opened for user bennett by (uid=0)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.7382] device (wlp3s0): driver supports Access Point (AP) mode
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.7390] manager: (wlp3s0): new 802.11 WiFi device (/org/freedesktop/NetworkManager/Devices/2)
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.7397] device (wlp3s0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Aug 30 09:55:12 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:12 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:12 BW3PC systemd[357]: Listening on Sound System.
Aug 30 09:55:13 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 09:55:13 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:13 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:13 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:13 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 09:55:13 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 09:55:13 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 09:55:12 BW3PC dbus[323]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service'
Aug 30 09:55:12 BW3PC systemd[357]: Reached target Timers.
Aug 30 09:55:13 BW3PC dbus[323]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Aug 30 09:55:12 BW3PC systemd[357]: Starting D-Bus User Message Bus Socket.
Aug 30 09:55:13 BW3PC wpa_supplicant[364]: Successfully initialized wpa_supplicant
Aug 30 09:55:13 BW3PC wpa_supplicant[364]: Could not read interface p2p-dev-wlp3s0 flags: No such device
Aug 30 09:55:12 BW3PC systemd[357]: Reached target Paths.
Aug 30 09:55:12 BW3PC NetworkManager[324]: <info>  [1472568912.8441] device (wlp3s0): set-hw-addr: set MAC address to C2:C7:C3:BE:DB:0D (scanning)
Aug 30 09:55:12 BW3PC systemd[357]: Listening on D-Bus User Message Bus Socket.
Aug 30 09:55:13 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) Log file renamed from "/home/bennett/.local/share/xorg/Xorg.pid-366.log" to "/home/bennett/.local/share/xorg/Xorg.0.log"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: X.Org X Server 1.18.4
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Release Date: 2016-07-19
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: X Protocol Version 11, Revision 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Build Operating System: Linux 4.5.4-1-ARCH x86_64
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Current Operating System: Linux BW3PC 4.7.2-1-ARCH #1 SMP PREEMPT Sat Aug 20 23:02:56 CEST 2016 x86_64
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=65eefeef-abde-47b1-b7f5-764b8364164e rw
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Build Date: 19 July 2016  05:54:24PM
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:  
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Current version of pixman: 0.34.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Before reporting problems, check http://wiki.x.org
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         to make sure that you have the latest version.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: Markers: (--) probed, (**) from config file, (==) default setting,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         (++) from command line, (!!) notice, (II) informational,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Log file: "/home/bennett/.local/share/xorg/Xorg.0.log", Time: Tue Aug 30 09:55:13 2016
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Aug 30 09:55:12 BW3PC systemd[357]: Reached target Sockets.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) No Layout section.  Using the first Screen section.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) No screen section available. Using defaults.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) |-->Screen "Default Screen Section" (0)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) |   |-->Monitor "<default monitor>"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) No monitor specified for screen "Default Screen Section".
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Using a default monitor configuration.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Automatically adding devices
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Automatically enabling devices
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Automatically adding GPU devices
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Entry deleted from font path.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Entry deleted from font path.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) FontPath set to:
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         /usr/share/fonts/misc/,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         /usr/share/fonts/TTF/,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         /usr/share/fonts/OTF/,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         /usr/share/fonts/Type1/
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) ModulePath set to "/usr/lib/xorg/modules"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) The server relies on udev to provide the list of input devices.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loader magic: 0x821d40
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module ABI versions:
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         X.Org ANSI C Emulation: 0.4
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         X.Org Video Driver: 20.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         X.Org XInput driver : 22.1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         X.Org Server Extension : 9.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (++) using VT number 1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) xfree86: Adding drm device (/dev/dri/card0)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) PCI:*(0:0:2:0) 8086:1616:17aa:2223 rev 9, Mem @ 0xf0000000/16777216, 0xe0000000/268435456, I/O @ 0x00003000/64, BIOS @ 0x????????/131072
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "glx"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module glx: vendor="X.Org Foundation"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         compiled for 1.18.4, module version = 1.0.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         ABI class: X.Org Server Extension, version 9.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) AIGLX enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Matched intel as autoconfigured driver 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Matched intel as autoconfigured driver 1
Aug 30 09:55:12 BW3PC systemd[357]: Reached target Basic System.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Matched modesetting as autoconfigured driver 2
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Matched fbdev as autoconfigured driver 3
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Matched vesa as autoconfigured driver 4
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Assigned the driver to the xf86ConfigLayout
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "intel"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module intel: vendor="X.Org Foundation"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         compiled for 1.18.4, module version = 2.99.917
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Module class: X.Org Video Driver
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         ABI class: X.Org Video Driver, version 20.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "modesetting"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module modesetting: vendor="X.Org Foundation"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         compiled for 1.18.4, module version = 1.18.4
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Module class: X.Org Video Driver
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         ABI class: X.Org Video Driver, version 20.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "fbdev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) Warning, couldn't open module fbdev
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) UnloadModule: "fbdev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Unloading fbdev
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "vesa"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) Warning, couldn't open module vesa
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) UnloadModule: "vesa"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Unloading vesa
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (EE) Failed to load module "vesa" (module does not exist, 0)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20160425
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): SNA compiled from 2.99.917-697-g12c14de
Aug 30 09:55:12 BW3PC systemd[357]: Reached target Default.
Aug 30 09:55:12 BW3PC systemd[357]: Startup finished in 145ms.
Aug 30 09:55:12 BW3PC systemd[1]: Started User Manager for UID 1000.
Aug 30 09:55:12 BW3PC systemd[1]: Starting WPA supplicant...
Aug 30 09:55:13 BW3PC systemd[1]: Started WPA supplicant.
Aug 30 09:55:13 BW3PC NetworkManager[324]: <info>  [1472568913.4007] supplicant: wpa_supplicant running
Aug 30 09:55:13 BW3PC NetworkManager[324]: <info>  [1472568913.4008] device (wlp3s0): supplicant interface state: init -> starting
Aug 30 09:55:13 BW3PC NetworkManager[324]: <info>  [1472568913.6005] sup-iface[0x1e84c20,wlp3s0]: supports 5 scan SSIDs
Aug 30 09:55:13 BW3PC NetworkManager[324]: <info>  [1472568913.6012] device (wlp3s0): supplicant interface state: starting -> ready
Aug 30 09:55:13 BW3PC NetworkManager[324]: <info>  [1472568913.6013] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) Falling back to old probe method for modesetting
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 5500
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 2 threads
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Creating default Display subsection in Screen section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         "Default Screen Section" for depth/fbbpp 24/32
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): Depth 24, (--) framebuffer bpp 32
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): RGB weight 888
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): Default visual is TrueColor
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Output eDP1 has no monitor section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Enabled output eDP1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Output DP1 has no monitor section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Enabled output DP1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Output HDMI1 has no monitor section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Enabled output HDMI1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Output DP2 has no monitor section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Enabled output DP2
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Output HDMI2 has no monitor section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Enabled output HDMI2
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) intel(0): Using a maximum size of 256x256 for hardware cursors
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Output VIRTUAL1 has no monitor section
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Enabled output VIRTUAL1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): TearFree disabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): DPI set to (96, 96)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading sub module "dri3"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "dri3"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module "dri3" already built-in
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading sub module "dri2"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "dri2"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module "dri2" already built-in
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading sub module "present"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "present"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module "present" already built-in
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) UnloadModule: "modesetting"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Unloading modesetting
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) Depth 24 pixmap format is 32 bpp
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): SNA initialized with Broadwell (gen8) backend
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): Backing store enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): Silken mouse enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): HW Cursor enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): DPMS enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (==) intel(0): Display hotplug detection enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): [DRI2] Setup complete
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): [DRI2]   DRI driver: i965
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): [DRI2]   VDPAU driver: va_gl
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): direct rendering: DRI2 DRI3 enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): hardware support for Present enabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) RandR disabled
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_ARB_create_context
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_ARB_create_context_profile
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_INTEL_swap_event
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_ARB_fbconfig_float
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: enabled GLX_ARB_create_context_robustness
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) AIGLX: Loaded and initialized i965
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) GLX: Initialized DRI2 GL provider for screen 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Setting screen physical size to 508 x 285
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device Power Button (/dev/input/event3)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "libinput"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module libinput: vendor="X.Org Foundation"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         compiled for 1.18.3, module version = 0.19.0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Module class: X.Org XInput Driver
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         ABI class: X.Org XInput driver, version 22.1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 13 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'Power Button'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Power Button: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event3"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Power Button', /dev/input/event3 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Power Button', /dev/input/event3 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Power Button', /dev/input/event3 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Power Button', /dev/input/event3 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device Video Bus (/dev/input/event13)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 16 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'Video Bus'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Video Bus: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event13"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Video Bus', /dev/input/event13 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Video Bus', /dev/input/event13 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15/event13"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Video Bus', /dev/input/event13 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Video Bus', /dev/input/event13 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 17 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'Sleep Button'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Sleep Button: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event2"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Sleep Button', /dev/input/event2 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Sleep Button', /dev/input/event2 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3/event2"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Sleep Button', /dev/input/event2 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Sleep Button', /dev/input/event2 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event14)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event15)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event16)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device Integrated Camera (/dev/input/event12)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Integrated Camera: Applying InputClass "libinput keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 18 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'Integrated Camera'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Integrated Camera: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event12"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Integrated Camera', /dev/input/event12 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Integrated Camera', /dev/input/event12 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input14/event12"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 9)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Integrated Camera', /dev/input/event12 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'Integrated Camera', /dev/input/event12 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event8)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel PCH Dock Headphone (/dev/input/event9)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event7)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 19 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) AT Translated Set 2 keyboard: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event0"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) LoadModule: "synaptics"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Module synaptics: vendor="X.Org Foundation"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         compiled for 1.18.3, module version = 1.8.99
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         Module class: X.Org XInput Driver
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]:         ABI class: X.Org XInput driver, version 22.1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 20 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event11"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5676 (res 45)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1096 - 4758 (res 68)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event11"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 11)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event17)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event17 13:81 fd 21 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) TPPS/2 IBM TrackPoint: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event17"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event17 is tagged by udev as: Mouse Pointingstick
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Device 'TPPS/2 IBM TrackPoint' set to const accel 1.00
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event17 is a pointer caps
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event17"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 12)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "AccelerationScheme" "none"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event17 is tagged by udev as: Mouse Pointingstick
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Device 'TPPS/2 IBM TrackPoint' set to const accel 1.00
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event17 is a pointer caps
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) No input driver specified, ignoring this device.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) This device may have been added with another device file.
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event5)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 22 paused 0
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) ThinkPad Extra Buttons: always reports core events
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "Device" "/dev/input/event5"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "_source" "server/udev"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event5 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event5 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input7/event5"
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 13)
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event5 is tagged by udev as: Keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event5 is a keyboard
Aug 30 09:55:14 BW3PC /usr/lib/gdm/gdm-x-session[363]: /etc/gdm/Xsession: Beginning session setup...
Aug 30 09:55:15 BW3PC /usr/lib/gdm/gdm-x-session[363]: localuser:bennett being added to access control list
Aug 30 09:55:15 BW3PC systemd[357]: Started D-Bus User Message Bus.
Aug 30 09:55:15 BW3PC dbus-daemon[386]: Successfully activated service 'org.freedesktop.systemd1'
Aug 30 09:55:15 BW3PC /usr/lib/gdm/gdm-x-session[363]: /etc/gdm/Xsession: Setup done, will execute: cinnamon-session-cinnamon
Aug 30 09:55:16 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): EDID vendor "AUO", prod id 13805
Aug 30 09:55:16 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Printing DDC gathered Modelines:
Aug 30 09:55:16 BW3PC /usr/lib/gdm/gdm-x-session[363]: (II) intel(0): Modeline "1920x1080"x0.0  142.00  1920 2028 2076 2100  1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
Aug 30 09:55:16 BW3PC dbus-daemon[386]: Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service'
Aug 30 09:55:16 BW3PC systemd[357]: Starting Virtual filesystem service...
Aug 30 09:55:16 BW3PC dbus-daemon[386]: Successfully activated service 'org.gtk.vfs.Daemon'
Aug 30 09:55:16 BW3PC systemd[357]: Started Virtual filesystem service.
Aug 30 09:55:16 BW3PC wpa_supplicant[364]: wlp3s0: Reject scan trigger since one is already pending
Aug 30 09:55:16 BW3PC dbus-daemon[386]: Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service'
Aug 30 09:55:16 BW3PC systemd[357]: Starting Accessibility services bus...
Aug 30 09:55:16 BW3PC NetworkManager[324]: <info>  [1472568916.8723] device (wlp3s0): supplicant interface state: ready -> inactive
Aug 30 09:55:16 BW3PC dbus-daemon[386]: Successfully activated service 'org.a11y.Bus'
Aug 30 09:55:16 BW3PC systemd[357]: Started Accessibility services bus.
Aug 30 09:55:16 BW3PC NetworkManager[324]: <info>  [1472568916.9088] policy: auto-activating connection 'Auto InternetStuff-5G'
Aug 30 09:55:16 BW3PC NetworkManager[324]: <info>  [1472568916.9097] device (wlp3s0): Activation: starting connection 'Auto InternetStuff-5G' (9e6252be-2f0c-4ab6-b3d4-cc12fa638cc1)
Aug 30 09:55:16 BW3PC at-spi-bus-launcher[403]: Activating service name='org.a11y.atspi.Registry'
Aug 30 09:55:16 BW3PC NetworkManager[324]: <info>  [1472568916.9098] device (wlp3s0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Aug 30 09:55:16 BW3PC at-spi-bus-launcher[403]: ** (process:403): WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
Aug 30 09:55:16 BW3PC NetworkManager[324]: <info>  [1472568916.9099] manager: NetworkManager state is now CONNECTING
Aug 30 09:55:16 BW3PC NetworkManager[324]: <info>  [1472568916.9954] device (wlp3s0): set-hw-addr: set-cloned MAC address to 5C:E0:C5:09:49:AD (permanent)
Aug 30 09:55:17 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0085] device (wlp3s0): supplicant interface state: inactive -> disabled
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0087] device (wlp3s0): state change: prepare -> config (reason 'none') [40 50 0]
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0089] device (wlp3s0): Activation: (wifi) access point 'Auto InternetStuff-5G' has security, but secrets are required.
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0089] device (wlp3s0): state change: config -> need-auth (reason 'none') [50 60 0]
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0118] device (wlp3s0): state change: need-auth -> prepare (reason 'none') [60 40 0]
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0121] device (wlp3s0): state change: prepare -> config (reason 'none') [40 50 0]
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0122] device (wlp3s0): Activation: (wifi) connection 'Auto InternetStuff-5G' has security, and secrets exist.  No new secrets needed.
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0122] Config: added 'ssid' value 'InternetStuff-5G'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0122] Config: added 'scan_ssid' value '1'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0122] Config: added 'key_mgmt' value 'WPA-PSK'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0123] Config: added 'auth_alg' value 'OPEN'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0123] Config: added 'psk' value '<omitted>'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0375] sup-iface[0x1e84c20,wlp3s0]: config: set interface ap_scan to 1
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0377] device (wlp3s0): supplicant interface state: disabled -> inactive
Aug 30 09:55:17 BW3PC wpa_supplicant[364]: wlp3s0: SME: Trying to authenticate with b0:7f:b9:14:23:cc (SSID='InternetStuff-5G' freq=5745 MHz)
Aug 30 09:55:17 BW3PC kernel: wlp3s0: authenticate with b0:7f:b9:14:23:cc
Aug 30 09:55:17 BW3PC at-spi-bus-launcher[403]: Successfully activated service 'org.a11y.atspi.Registry'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0515] device (wlp3s0): supplicant interface state: inactive -> authenticating
Aug 30 09:55:17 BW3PC wpa_supplicant[364]: wlp3s0: Trying to associate with b0:7f:b9:14:23:cc (SSID='InternetStuff-5G' freq=5745 MHz)
Aug 30 09:55:17 BW3PC org.a11y.atspi.Registry[408]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Aug 30 09:55:17 BW3PC kernel: wlp3s0: send auth to b0:7f:b9:14:23:cc (try 1/3)
Aug 30 09:55:17 BW3PC kernel: wlp3s0: authenticated
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0570] device (wlp3s0): supplicant interface state: authenticating -> associating
Aug 30 09:55:17 BW3PC kernel: wlp3s0: associate with b0:7f:b9:14:23:cc (try 1/3)
Aug 30 09:55:17 BW3PC kernel: wlp3s0: RX AssocResp from b0:7f:b9:14:23:cc (capab=0x11 status=0 aid=3)
Aug 30 09:55:17 BW3PC wpa_supplicant[364]: wlp3s0: Associated with b0:7f:b9:14:23:cc
Aug 30 09:55:17 BW3PC kernel: wlp3s0: associated
Aug 30 09:55:17 BW3PC kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.0759] device (wlp3s0): supplicant interface state: associating -> associated
Aug 30 09:55:17 BW3PC gnome-keyring-daemon[416]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 09:55:17 BW3PC gnome-keyring-daemon[417]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 09:55:17 BW3PC /usr/lib/gdm/gdm-x-session[363]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Aug 30 09:55:17 BW3PC /usr/lib/gdm/gdm-x-session[363]: ** Message: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 09:55:17 BW3PC gnome-keyring-daemon[418]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 09:55:17 BW3PC /usr/lib/gdm/gdm-x-session[363]: ** Message: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 09:55:17 BW3PC /usr/lib/gdm/gdm-x-session[363]: ** Message: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 09:55:17 BW3PC /usr/lib/gdm/gdm-x-session[363]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Aug 30 09:55:17 BW3PC /usr/lib/gdm/gdm-x-session[363]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Aug 30 09:55:17 BW3PC systemd[357]: Starting Sound Service...
Aug 30 09:55:17 BW3PC wpa_supplicant[364]: wlp3s0: WPA: Key negotiation completed with b0:7f:b9:14:23:cc [PTK=CCMP GTK=CCMP]
Aug 30 09:55:17 BW3PC wpa_supplicant[364]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to b0:7f:b9:14:23:cc completed [id=0 id_str=]
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.8467] device (wlp3s0): supplicant interface state: associated -> completed
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.8467] device (wlp3s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'InternetStuff-5G'.
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.8468] device (wlp3s0): state change: config -> ip-config (reason 'none') [50 70 0]
Aug 30 09:55:17 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.8715] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Aug 30 09:55:17 BW3PC systemd[1]: Starting Daemon for power management...
Aug 30 09:55:17 BW3PC NetworkManager[324]: <info>  [1472568917.9435] dhcp4 (wlp3s0): dhclient started with pid 499
Aug 30 09:55:18 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
Aug 30 09:55:18 BW3PC systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Aug 30 09:55:18 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Aug 30 09:55:18 BW3PC systemd[1]: Started RealtimeKit Scheduling Policy Service.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully called chroot.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully dropped privileges.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully limited resources.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Running.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Canary thread running.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Watchdog thread running.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully made thread 481 of process 481 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 1 threads of 1 processes of 1 users.
Aug 30 09:55:18 BW3PC dhclient[499]: DHCPREQUEST on wlp3s0 to 255.255.255.255 port 67
Aug 30 09:55:18 BW3PC dhclient[499]: DHCPACK from 192.168.1.1
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1484] dhcp4 (wlp3s0):   address 192.168.1.4
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1487] dhcp4 (wlp3s0):   plen 24 (255.255.255.0)
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1488] dhcp4 (wlp3s0):   gateway 192.168.1.1
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1488] dhcp4 (wlp3s0):   server identifier 192.168.1.1
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1488] dhcp4 (wlp3s0):   lease time 86400
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1488] dhcp4 (wlp3s0):   nameserver '192.168.1.1'
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1488] dhcp4 (wlp3s0): state changed unknown -> bound
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1510] device (wlp3s0): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1515] device (wlp3s0): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1518] device (wlp3s0): state change: secondaries -> activated (reason 'none') [90 100 0]
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.1519] manager: NetworkManager state is now CONNECTED_LOCAL
Aug 30 09:55:18 BW3PC nm-dispatcher[336]: req:2 'connectivity-change': new request (0 scripts)
Aug 30 09:55:18 BW3PC nm-dispatcher[336]: req:2 'connectivity-change': completed: no scripts
Aug 30 09:55:18 BW3PC dhclient[499]: bound to 192.168.1.4 -- renewal in 35528 seconds.
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.2461] manager: NetworkManager state is now CONNECTED_GLOBAL
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.2462] policy: set 'Auto InternetStuff-5G' (wlp3s0) as default for IPv4 routing and DNS
Aug 30 09:55:18 BW3PC NetworkManager[324]: <info>  [1472568918.2462] dns-mgr: Writing DNS information to /usr/bin/resolvconf
Aug 30 09:55:18 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.UPower'
Aug 30 09:55:18 BW3PC systemd[1]: Started Daemon for power management.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 1 threads of 1 processes of 1 users.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully made thread 535 of process 481 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 2 threads of 1 processes of 1 users.
Aug 30 09:55:18 BW3PC kernel: IPv6: wlp3s0: IPv6 duplicate address fe80::bad1:b49d:1ce8:53da detected!
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 2 threads of 1 processes of 1 users.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully made thread 552 of process 481 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 3 threads of 1 processes of 1 users.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 3 threads of 1 processes of 1 users.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Successfully made thread 553 of process 481 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Aug 30 09:55:18 BW3PC rtkit-daemon[500]: Supervising 4 threads of 1 processes of 1 users.
Aug 30 09:55:19 BW3PC dbus-daemon[386]: Activating service name='ca.desrt.dconf'
Aug 30 09:55:19 BW3PC dbus-daemon[386]: Successfully activated service 'ca.desrt.dconf'
Aug 30 09:55:19 BW3PC dbus-daemon[386]: Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service'
Aug 30 09:55:19 BW3PC systemd[357]: Starting Virtual filesystem service - disk device monitor...
Aug 30 09:55:19 BW3PC systemd[357]: Started Sound Service.
Aug 30 09:55:19 BW3PC NetworkManager[324]: <info>  [1472568919.2318] device (wlp3s0): Activation: successful, device activated.
Aug 30 09:55:19 BW3PC NetworkManager[324]: <info>  [1472568919.2324] manager: startup complete
Aug 30 09:55:19 BW3PC nm-dispatcher[336]: req:3 'up' [wlp3s0]: new request (0 scripts)
Aug 30 09:55:19 BW3PC nm-dispatcher[336]: req:3 'up' [wlp3s0]: completed: no scripts
Aug 30 09:55:19 BW3PC NetworkManager[324]: <info>  [1472568919.2339] device (wlp3s0): ipv6: duplicate address check failed for the fe80::bad1:b49d:1ce8:53da/64 lft forever pref forever lifetime 9-0[4294967295,4294967295] dev 3 flags tentative,permanent,0x8 src kernel addr
Aug 30 09:55:19 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
Aug 30 09:55:19 BW3PC systemd[1]: Starting Disk Manager...
Aug 30 09:55:19 BW3PC udisksd[578]: udisks daemon version 2.1.7 starting
Aug 30 09:55:19 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Aug 30 09:55:19 BW3PC udisksd[578]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Aug 30 09:55:19 BW3PC systemd[1]: Started Disk Manager.
Aug 30 09:55:19 BW3PC dbus-daemon[386]: Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Aug 30 09:55:19 BW3PC systemd[357]: Started Virtual filesystem service - disk device monitor.
Aug 30 09:55:19 BW3PC NetworkManager[324]: <info>  [1472568919.5086] device (wlp3s0): ipv6: duplicate address check failed for the fe80::d873:67f2:14f4:1af6/64 lft forever pref forever lifetime 9-0[4294967295,4294967295] dev 3 flags tentative,permanent,0x8 src kernel addr
Aug 30 09:55:19 BW3PC kernel: IPv6: wlp3s0: IPv6 duplicate address fe80::d873:67f2:14f4:1af6 detected!
Aug 30 09:55:19 BW3PC NetworkManager[324]: <info>  [1472568919.7363] device (wlp3s0): ipv6: duplicate address check failed for the fe80::695b:cc6b:e17d:5f7f/64 lft forever pref forever lifetime 10-0[4294967295,4294967295] dev 3 flags tentative,permanent,0x8 src kernel add
Aug 30 09:55:19 BW3PC NetworkManager[324]: <warn>  [1472568919.7363] device (wlp3s0): linklocal6: failed to generate an address: Too many DAD collisions
Aug 30 09:55:19 BW3PC kernel: IPv6: wlp3s0: IPv6 duplicate address fe80::695b:cc6b:e17d:5f7f detected!
Aug 30 09:55:20 BW3PC dbus[323]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'
Aug 30 09:55:20 BW3PC systemd[1]: Starting Manage, Install and Generate Color Profiles...
Aug 30 09:55:20 BW3PC systemd[1]: Starting CUPS Scheduler...
Aug 30 09:55:20 BW3PC systemd[1]: Started Manage, Install and Generate Color Profiles.
Aug 30 09:55:20 BW3PC dbus[323]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Aug 30 09:55:20 BW3PC colord[586]: /usr/lib/colord/colord-sane: error while loading shared libraries: libsane.so.1: cannot open shared object file: No such file or directory
Aug 30 09:55:20 BW3PC colord[586]: (colord:586): Cd-WARNING **: failed to get session [pid 588]: No such device or address
Aug 30 09:55:20 BW3PC systemd[1]: Started CUPS Scheduler.
Aug 30 09:55:22 BW3PC polkitd[345]: Registered Authentication Agent for unix-session:c1 (system bus name :1.28 [/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Aug 30 09:55:22 BW3PC /usr/lib/gdm/gdm-x-session[363]: Failed to play sound: Sound disabled
Aug 30 09:55:22 BW3PC cinnamon-killer-daemon[612]: Bound Cinnamon restart to <Control><Alt>Escape.
Aug 30 09:55:23 BW3PC /usr/lib/gdm/gdm-x-session[363]: sys:1: PyGIWarning: Nemo was imported without specifying a version first. Use gi.require_version('Nemo', '3.0') before import to ensure that the right version gets loaded.
Aug 30 09:55:24 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x7f57c000c1d0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:24 BW3PC dbus-daemon[386]: Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service'
Aug 30 09:55:24 BW3PC systemd[357]: Starting Virtual filesystem metadata service...
Aug 30 09:55:24 BW3PC dbus-daemon[386]: Successfully activated service 'org.gtk.vfs.Metadata'
Aug 30 09:55:24 BW3PC systemd[357]: Started Virtual filesystem metadata service.
Aug 30 09:55:24 BW3PC /usr/lib/gdm/gdm-x-session[363]: Cjs-Message: JS LOG: About to start Cinnamon
Aug 30 09:55:25 BW3PC dbus-daemon[386]: Activating service name='org.Cinnamon.Slideshow'
Aug 30 09:55:26 BW3PC dbus-daemon[386]: Successfully activated service 'org.Cinnamon.Slideshow'
Aug 30 09:55:26 BW3PC /usr/lib/gdm/gdm-x-session[363]: St-Message: cogl npot texture sizes SUPPORTED
Aug 30 09:55:26 BW3PC /usr/lib/gdm/gdm-x-session[363]: Cjs-Message: JS LOG: Cinnamon started at Tue Aug 30 2016 09:55:26 GMT-0500 (CDT)
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: Cjs-Message: JS LOG: network applet: Cannot find connection for active (or connection cannot be read)
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: openGL version 4.3 detected (GL3 Cogl Driver)
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: MetaSyncRing disabled: couldn't find required GL extensions, or the minimum safe openGL version was not met
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: Cjs-Message: JS LOG: Invalid network device type, is 14
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: Cjs-Message: JS LOG: network applet: Found connection for active
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x7f57c000c1d0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to NemoWindowPane 0x2702f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:27 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to NemoWindowPane 0x28f32e0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2905b10 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:28 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to NemoWindowPane 0x29614a0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:29 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:30 BW3PC /usr/lib/gdm/gdm-x-session[363]: PluginRegistry::load_plugins: Importing plugin __init__.py failed: 'module' object has no attribute 'AVAILABLE'
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:37 BW3PC /usr/lib/gdm/gdm-x-session[363]: (nemo:610): Gtk-WARNING **: Allocating size to GtkGrid 0x2949f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 09:55:40 BW3PC systemd-timesyncd[319]: Synchronized to time server 97.107.129.217:123 (2.arch.pool.ntp.org).
Aug 30 09:57:19 BW3PC /usr/lib/gdm/gdm-x-session[363]: (cinnamon-settings-daemon:430): GLib-GIO-CRITICAL **: g_dbus_proxy_get_object_path: assertion 'G_IS_DBUS_PROXY (proxy)' failed
Aug 30 09:57:19 BW3PC /usr/lib/gdm/gdm-x-session[363]: (cinnamon-settings-daemon:430): GLib-GIO-CRITICAL **: g_dbus_proxy_get_object_path: assertion 'G_IS_DBUS_PROXY (proxy)' failed

Journal from reboot

Aug 30 10:11:48 BW3PC systemd-journald[164]: Runtime journal (/run/log/journal/) is 8.0M, max 796.5M, 788.5M free.
Aug 30 10:11:48 BW3PC systemd-journald[164]: System journal (/var/log/journal/) is 1.2G, max 4.0G, 2.7G free.
Aug 30 10:11:49 BW3PC systemd-journald[164]: Time spent on flushing to /var is 1.159261s for 2 entries.
Aug 30 10:11:49 BW3PC kernel: Linux version 4.7.2-1-ARCH (builduser@tobias) (gcc version 6.1.1 20160802 (GCC) ) #1 SMP PREEMPT Sat Aug 20 23:02:56 CEST 2016
Aug 30 10:11:49 BW3PC kernel: Command line: initrd=\initramfs-linux.img root=PARTUUID=65eefeef-abde-47b1-b7f5-764b8364164e rw
Aug 30 10:11:49 BW3PC kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Aug 30 10:11:49 BW3PC kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Aug 30 10:11:49 BW3PC kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Aug 30 10:11:49 BW3PC kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Aug 30 10:11:49 BW3PC kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Aug 30 10:11:49 BW3PC kernel: x86/fpu: Using 'eager' FPU context switches.
Aug 30 10:11:49 BW3PC kernel: e820: BIOS-provided physical RAM map:
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009bfff] usable
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x000000000009c000-0x000000000009cfff] reserved
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x000000000009d000-0x000000000009dfff] usable
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000ca769fff] usable
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x00000000ca76a000-0x00000000ccbfefff] reserved
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x00000000ccbff000-0x00000000ccd7efff] ACPI NVS
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x00000000ccd7f000-0x00000000ccdfefff] ACPI data
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x00000000ccdff000-0x00000000ccdfffff] usable
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Aug 30 10:11:49 BW3PC kernel: BIOS-e820: [mem 0x0000000100000000-0x000000042dffffff] usable
Aug 30 10:11:49 BW3PC kernel: NX (Execute Disable) protection: active
Aug 30 10:11:49 BW3PC kernel: e820: update [mem 0xc15a4018-0xc15b4057] usable ==> usable
Aug 30 10:11:49 BW3PC kernel: e820: update [mem 0xc1593018-0xc15a3657] usable ==> usable
Aug 30 10:11:49 BW3PC kernel: extended physical RAM map:
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009bfff] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x000000000009c000-0x000000000009cfff] reserved
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x000000000009d000-0x000000000009dfff] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x000000000009e000-0x000000000009ffff] reserved
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000c1593017] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000c1593018-0x00000000c15a3657] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000c15a3658-0x00000000c15a4017] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000c15a4018-0x00000000c15b4057] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000c15b4058-0x00000000ca769fff] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000ca76a000-0x00000000ccbfefff] reserved
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000ccbff000-0x00000000ccd7efff] ACPI NVS
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000ccd7f000-0x00000000ccdfefff] ACPI data
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000ccdff000-0x00000000ccdfffff] usable
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Aug 30 10:11:49 BW3PC kernel: reserve setup_data: [mem 0x0000000100000000-0x000000042dffffff] usable
Aug 30 10:11:49 BW3PC kernel: efi: EFI v2.31 by Lenovo
Aug 30 10:11:49 BW3PC kernel: efi:  ACPI=0xccdfe000  ACPI 2.0=0xccdfe014  SMBIOS=0xccbfe000 
Aug 30 10:11:49 BW3PC kernel: SMBIOS 2.7 present.
Aug 30 10:11:49 BW3PC kernel: DMI: LENOVO 20CKCTO1WW/20CKCTO1WW, BIOS N11ET31W (1.07 ) 03/19/2015
Aug 30 10:11:49 BW3PC kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug 30 10:11:49 BW3PC kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 30 10:11:49 BW3PC kernel: e820: last_pfn = 0x42e000 max_arch_pfn = 0x400000000
Aug 30 10:11:49 BW3PC kernel: MTRR default type: write-back
Aug 30 10:11:49 BW3PC kernel: MTRR fixed ranges enabled:
Aug 30 10:11:49 BW3PC kernel:   00000-9FFFF write-back
Aug 30 10:11:49 BW3PC kernel:   A0000-BFFFF uncachable
Aug 30 10:11:49 BW3PC kernel:   C0000-FFFFF write-protect
Aug 30 10:11:49 BW3PC kernel: MTRR variable ranges enabled:
Aug 30 10:11:49 BW3PC kernel:   0 base 00E0000000 mask 7FF0000000 uncachable
Aug 30 10:11:49 BW3PC kernel:   1 base 00D0000000 mask 7FF0000000 uncachable
Aug 30 10:11:49 BW3PC kernel:   2 base 00CE000000 mask 7FFE000000 uncachable
Aug 30 10:11:49 BW3PC kernel:   3 base 00CD000000 mask 7FFF000000 uncachable
Aug 30 10:11:49 BW3PC kernel:   4 base 00CCE00000 mask 7FFFE00000 uncachable
Aug 30 10:11:49 BW3PC kernel:   5 base 00F0000000 mask 7FF0000000 uncachable
Aug 30 10:11:49 BW3PC kernel:   6 disabled
Aug 30 10:11:49 BW3PC kernel:   7 disabled
Aug 30 10:11:49 BW3PC kernel:   8 disabled
Aug 30 10:11:49 BW3PC kernel:   9 disabled
Aug 30 10:11:49 BW3PC kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Aug 30 10:11:49 BW3PC kernel: e820: last_pfn = 0xcce00 max_arch_pfn = 0x400000000
Aug 30 10:11:49 BW3PC kernel: Scanning 1 areas for low memory corruption
Aug 30 10:11:49 BW3PC kernel: Base memory trampoline at [ffff880000096000] 96000 size 24576
Aug 30 10:11:49 BW3PC kernel: Using GB pages for direct mapping
Aug 30 10:11:49 BW3PC kernel: BRK [0x01b58000, 0x01b58fff] PGTABLE
Aug 30 10:11:49 BW3PC kernel: BRK [0x01b59000, 0x01b59fff] PGTABLE
Aug 30 10:11:49 BW3PC kernel: BRK [0x01b5a000, 0x01b5afff] PGTABLE
Aug 30 10:11:49 BW3PC kernel: BRK [0x01b5b000, 0x01b5bfff] PGTABLE
Aug 30 10:11:49 BW3PC kernel: BRK [0x01b5c000, 0x01b5cfff] PGTABLE
Aug 30 10:11:49 BW3PC kernel: RAMDISK: [mem 0x7fa71000-0x7fffffff]
Aug 30 10:11:49 BW3PC kernel: ACPI: Early table checksum verification disabled
Aug 30 10:11:49 BW3PC kernel: ACPI: RSDP 0x00000000CCDFE014 000024 (v02 LENOVO)
Aug 30 10:11:49 BW3PC kernel: ACPI: XSDT 0x00000000CCDFE1C0 0000EC (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: FACP 0x00000000CCDF9000 00010C (v05 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: DSDT 0x00000000CCDE4000 010FB9 (v01 LENOVO TP-N11   00001070 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: FACS 0x00000000CCD68000 000040
Aug 30 10:11:49 BW3PC kernel: ACPI: ASF! 0x00000000CCDFD000 0000A5 (v32 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: HPET 0x00000000CCDFC000 000038 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: ECDT 0x00000000CCDFB000 000052 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: APIC 0x00000000CCDF8000 000098 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: MCFG 0x00000000CCDF7000 00003C (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDF6000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDF5000 000486 (v01 LENOVO TP-SSDT2 00000200 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDE3000 0009CB (v01 LENOVO SataAhci 00001000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDE2000 000152 (v01 LENOVO Rmv_Batt 00001000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDE1000 0006C5 (v01 LENOVO Cpu0Ist  00003000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDE0000 000B74 (v02 LENOVO CpuSsdt  00003000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDDF000 000369 (v02 LENOVO CtdpB    00001000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDDD000 001475 (v01 LENOVO SaSsdt   00003000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDDC000 000394 (v02 LENOVO CppcTabl 00001000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: PCCT 0x00000000CCDDB000 00006E (v05 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDDA000 000AC4 (v02 LENOVO Cpc_Tabl 00001000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: TCPA 0x00000000CCDD9000 000032 (v02 PTL    LENOVO   06040000 LNVO 00000001)
Aug 30 10:11:49 BW3PC kernel: ACPI: SSDT 0x00000000CCDD8000 0006A5 (v01 Intel_ TpmTable 00001000 INTL 20120711)
Aug 30 10:11:49 BW3PC kernel: ACPI: UEFI 0x00000000CCDD7000 000042 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: MSDM 0x00000000CCCB1000 000055 (v03 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: BATB 0x00000000CCDD6000 000046 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: FPDT 0x00000000CCDD5000 000064 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: UEFI 0x00000000CCDD4000 00030A (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: BGRT 0x00000000CCDD3000 000038 (v01 LENOVO TP-N11   00001070 PTEC 00000002)
Aug 30 10:11:49 BW3PC kernel: ACPI: Local APIC address 0xfee00000
Aug 30 10:11:49 BW3PC kernel: No NUMA configuration found
Aug 30 10:11:49 BW3PC kernel: Faking a node at [mem 0x0000000000000000-0x000000042dffffff]
Aug 30 10:11:49 BW3PC kernel: NODE_DATA(0) allocated [mem 0x42dffa000-0x42dffdfff]
Aug 30 10:11:49 BW3PC kernel: Zone ranges:
Aug 30 10:11:49 BW3PC kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Aug 30 10:11:49 BW3PC kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Aug 30 10:11:49 BW3PC kernel:   Normal   [mem 0x0000000100000000-0x000000042dffffff]
Aug 30 10:11:49 BW3PC kernel: Movable zone start for each node
Aug 30 10:11:49 BW3PC kernel: Early memory node ranges
Aug 30 10:11:49 BW3PC kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Aug 30 10:11:49 BW3PC kernel:   node   0: [mem 0x0000000000059000-0x000000000009bfff]
Aug 30 10:11:49 BW3PC kernel:   node   0: [mem 0x000000000009d000-0x000000000009dfff]
Aug 30 10:11:49 BW3PC kernel:   node   0: [mem 0x0000000000100000-0x00000000ca769fff]
Aug 30 10:11:49 BW3PC kernel:   node   0: [mem 0x00000000ccdff000-0x00000000ccdfffff]
Aug 30 10:11:49 BW3PC kernel:   node   0: [mem 0x0000000100000000-0x000000042dffffff]
Aug 30 10:11:49 BW3PC kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000042dffffff]
Aug 30 10:11:49 BW3PC kernel: On node 0 totalpages: 4163334
Aug 30 10:11:49 BW3PC kernel:   DMA zone: 64 pages used for memmap
Aug 30 10:11:49 BW3PC kernel:   DMA zone: 22 pages reserved
Aug 30 10:11:49 BW3PC kernel:   DMA zone: 3995 pages, LIFO batch:0
Aug 30 10:11:49 BW3PC kernel:   DMA32 zone: 12894 pages used for memmap
Aug 30 10:11:49 BW3PC kernel:   DMA32 zone: 825195 pages, LIFO batch:31
Aug 30 10:11:49 BW3PC kernel:   Normal zone: 52096 pages used for memmap
Aug 30 10:11:49 BW3PC kernel:   Normal zone: 3334144 pages, LIFO batch:31
Aug 30 10:11:49 BW3PC kernel: Reserving Intel graphics stolen memory at 0xce000000-0xcfffffff
Aug 30 10:11:49 BW3PC kernel: ACPI: PM-Timer IO Port: 0x1808
Aug 30 10:11:49 BW3PC kernel: ACPI: Local APIC address 0xfee00000
Aug 30 10:11:49 BW3PC kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Aug 30 10:11:49 BW3PC kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Aug 30 10:11:49 BW3PC kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
Aug 30 10:11:49 BW3PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 30 10:11:49 BW3PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 30 10:11:49 BW3PC kernel: ACPI: IRQ0 used by override.
Aug 30 10:11:49 BW3PC kernel: ACPI: IRQ9 used by override.
Aug 30 10:11:49 BW3PC kernel: Using ACPI (MADT) for SMP configuration information
Aug 30 10:11:49 BW3PC kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
Aug 30 10:11:49 BW3PC kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xc1593000-0xc1593fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xc15a3000-0xc15a3fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xc15a4000-0xc15a4fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xc15b4000-0xc15b4fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xca76a000-0xccbfefff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xccbff000-0xccd7efff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xccd7f000-0xccdfefff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xcce00000-0xcdffffff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xce000000-0xcfffffff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xd0000000-0xf80f7fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Aug 30 10:11:49 BW3PC kernel: PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
Aug 30 10:11:49 BW3PC kernel: e820: [mem 0xd0000000-0xf80f7fff] available for PCI devices
Aug 30 10:11:49 BW3PC kernel: Booting paravirtualized kernel on bare hardware
Aug 30 10:11:49 BW3PC kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Aug 30 10:11:49 BW3PC kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
Aug 30 10:11:49 BW3PC kernel: percpu: Embedded 33 pages/cpu @ffff88042dc00000 s97944 r8192 d29032 u262144
Aug 30 10:11:49 BW3PC kernel: pcpu-alloc: s97944 r8192 d29032 u262144 alloc=1*2097152
Aug 30 10:11:49 BW3PC kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Aug 30 10:11:49 BW3PC kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4098258
Aug 30 10:11:49 BW3PC kernel: Policy zone: Normal
Aug 30 10:11:49 BW3PC kernel: Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=65eefeef-abde-47b1-b7f5-764b8364164e rw
Aug 30 10:11:49 BW3PC kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug 30 10:11:49 BW3PC kernel: Calgary: detecting Calgary via BIOS EBDA area
Aug 30 10:11:49 BW3PC kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Aug 30 10:11:49 BW3PC kernel: Memory: 16215980K/16653336K available (6028K kernel code, 977K rwdata, 1836K rodata, 1244K init, 1164K bss, 437356K reserved, 0K cma-reserved)
Aug 30 10:11:49 BW3PC kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Aug 30 10:11:49 BW3PC kernel: Preemptible hierarchical RCU implementation.
Aug 30 10:11:49 BW3PC kernel:         Build-time adjustment of leaf fanout to 64.
Aug 30 10:11:49 BW3PC kernel:         RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
Aug 30 10:11:49 BW3PC kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
Aug 30 10:11:49 BW3PC kernel: NR_IRQS:8448 nr_irqs:760 16
Aug 30 10:11:49 BW3PC kernel: Console: colour dummy device 80x25
Aug 30 10:11:49 BW3PC kernel: console [tty0] enabled
Aug 30 10:11:49 BW3PC kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Aug 30 10:11:49 BW3PC kernel: hpet clockevent registered
Aug 30 10:11:49 BW3PC kernel: tsc: Fast TSC calibration using PIT
Aug 30 10:11:49 BW3PC kernel: tsc: Detected 2194.857 MHz processor
Aug 30 10:11:49 BW3PC kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4391.61 BogoMIPS (lpj=7316190)
Aug 30 10:11:49 BW3PC kernel: pid_max: default: 32768 minimum: 301
Aug 30 10:11:49 BW3PC kernel: ACPI: Core revision 20160422
Aug 30 10:11:49 BW3PC kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
Aug 30 10:11:49 BW3PC kernel: 
Aug 30 10:11:49 BW3PC kernel: Security Framework initialized
Aug 30 10:11:49 BW3PC kernel: Yama: becoming mindful.
Aug 30 10:11:49 BW3PC kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Aug 30 10:11:49 BW3PC kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Aug 30 10:11:49 BW3PC kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug 30 10:11:49 BW3PC kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug 30 10:11:49 BW3PC kernel: CPU: Physical Processor ID: 0
Aug 30 10:11:50 BW3PC kernel: CPU: Processor Core ID: 0
Aug 30 10:11:50 BW3PC kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Aug 30 10:11:50 BW3PC kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Aug 30 10:11:50 BW3PC kernel: mce: CPU supports 7 MCE banks
Aug 30 10:11:50 BW3PC kernel: CPU0: Thermal monitoring enabled (TM1)
Aug 30 10:11:50 BW3PC kernel: process: using mwait in idle threads
Aug 30 10:11:50 BW3PC kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Aug 30 10:11:50 BW3PC kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Aug 30 10:11:50 BW3PC kernel: Freeing SMP alternatives memory: 24K (ffffffff81a2d000 - ffffffff81a33000)
Aug 30 10:11:50 BW3PC kernel: ftrace: allocating 23806 entries in 93 pages
Aug 30 10:11:50 BW3PC kernel: smpboot: Max logical packages: 4
Aug 30 10:11:50 BW3PC kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Aug 30 10:11:50 BW3PC kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Aug 30 10:11:50 BW3PC kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 30 10:11:50 BW3PC kernel: TSC deadline timer enabled
Aug 30 10:11:50 BW3PC kernel: smpboot: CPU0: Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz (family: 0x6, model: 0x3d, stepping: 0x4)
Aug 30 10:11:50 BW3PC kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Broadwell events, full-width counters, Intel PMU driver.
Aug 30 10:11:50 BW3PC kernel: ... version:                3
Aug 30 10:11:50 BW3PC kernel: ... bit width:              48
Aug 30 10:11:50 BW3PC kernel: ... generic registers:      4
Aug 30 10:11:50 BW3PC kernel: ... value mask:             0000ffffffffffff
Aug 30 10:11:50 BW3PC kernel: ... max period:             0000ffffffffffff
Aug 30 10:11:50 BW3PC kernel: ... fixed-purpose events:   3
Aug 30 10:11:50 BW3PC kernel: ... event mask:             000000070000000f
Aug 30 10:11:50 BW3PC kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 30 10:11:50 BW3PC kernel: x86: Booting SMP configuration:
Aug 30 10:11:50 BW3PC kernel: .... node  #0, CPUs:      #1 #2 #3
Aug 30 10:11:50 BW3PC kernel: x86: Booted up 1 node, 4 CPUs
Aug 30 10:11:50 BW3PC kernel: smpboot: Total of 4 processors activated (17570.12 BogoMIPS)
Aug 30 10:11:50 BW3PC kernel: devtmpfs: initialized
Aug 30 10:11:50 BW3PC kernel: x86/mm: Memory block size: 128MB
Aug 30 10:11:50 BW3PC kernel: PM: Registering ACPI NVS region [mem 0xccbff000-0xccd7efff] (1572864 bytes)
Aug 30 10:11:50 BW3PC kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Aug 30 10:11:50 BW3PC kernel: pinctrl core: initialized pinctrl subsystem
Aug 30 10:11:50 BW3PC kernel: RTC time: 15:11:44, date: 08/30/16
Aug 30 10:11:50 BW3PC kernel: NET: Registered protocol family 16
Aug 30 10:11:50 BW3PC kernel: cpuidle: using governor ladder
Aug 30 10:11:50 BW3PC kernel: cpuidle: using governor menu
Aug 30 10:11:50 BW3PC kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 30 10:11:50 BW3PC kernel: ACPI: bus type PCI registered
Aug 30 10:11:50 BW3PC kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 30 10:11:50 BW3PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Aug 30 10:11:50 BW3PC kernel: PCI: not using MMCONFIG
Aug 30 10:11:50 BW3PC kernel: PCI: Using configuration type 1 for base access
Aug 30 10:11:50 BW3PC kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Aug 30 10:11:50 BW3PC kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 30 10:11:50 BW3PC kernel: ACPI: Added _OSI(Module Device)
Aug 30 10:11:50 BW3PC kernel: ACPI: Added _OSI(Processor Device)
Aug 30 10:11:50 BW3PC kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 30 10:11:50 BW3PC kernel: ACPI: Added _OSI(Processor Aggregator Device)
Aug 30 10:11:50 BW3PC kernel: ACPI : EC: EC description table is found, configuring boot EC
Aug 30 10:11:50 BW3PC kernel: ACPI : EC: EC started
Aug 30 10:11:50 BW3PC kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Aug 30 10:11:50 BW3PC kernel: ACPI: Dynamic OEM Table Load:
Aug 30 10:11:50 BW3PC kernel: ACPI: SSDT 0xFFFF88041B2A3800 000436 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
Aug 30 10:11:50 BW3PC kernel: ACPI: Dynamic OEM Table Load:
Aug 30 10:11:50 BW3PC kernel: ACPI: SSDT 0xFFFF88041B2A4000 0005AA (v01 PmRef  ApIst    00003000 INTL 20120711)
Aug 30 10:11:50 BW3PC kernel: ACPI: Dynamic OEM Table Load:
Aug 30 10:11:50 BW3PC kernel: ACPI: SSDT 0xFFFF88041B2AB200 000119 (v02 PmRef  ApCst    00003000 INTL 20120711)
Aug 30 10:11:50 BW3PC kernel: ACPI: Interpreter enabled
Aug 30 10:11:50 BW3PC kernel: ACPI: (supports S0 S3 S4 S5)
Aug 30 10:11:50 BW3PC kernel: ACPI: Using IOAPIC for interrupt routing
Aug 30 10:11:50 BW3PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Aug 30 10:11:50 BW3PC kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
Aug 30 10:11:50 BW3PC kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 30 10:11:50 BW3PC kernel: ACPI: Power Resource [PUBS] (on)
Aug 30 10:11:50 BW3PC kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Aug 30 10:11:50 BW3PC kernel: ACPI: Power Resource [NVP3] (on)
Aug 30 10:11:50 BW3PC kernel: ACPI: Power Resource [NVP2] (on)
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Aug 30 10:11:50 BW3PC kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Aug 30 10:11:50 BW3PC kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug 30 10:11:50 BW3PC kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
Aug 30 10:11:50 BW3PC kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Aug 30 10:11:50 BW3PC kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Aug 30 10:11:50 BW3PC kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
Aug 30 10:11:50 BW3PC kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Aug 30 10:11:50 BW3PC kernel: PCI host bridge to bus 0000:00
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: root bus resource [bus 00-3f]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:00.0: [8086:1604] type 00 class 0x060000
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:02.0: [8086:1616] type 00 class 0x030000
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf0ffffff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:03.0: [8086:160c] type 00 class 0x040300
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:03.0: reg 0x10: [mem 0xf1230000-0xf1233fff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:14.0: [8086:9cb1] type 00 class 0x0c0330
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf1220000-0xf122ffff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:16.0: [8086:9cba] type 00 class 0x078000
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf1239000-0xf123901f 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:19.0: [8086:15a3] type 00 class 0x020000
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:19.0: reg 0x10: [mem 0xf1200000-0xf121ffff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:19.0: reg 0x14: [mem 0xf123e000-0xf123efff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:19.0: reg 0x18: [io  0x3080-0x309f]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:19.0: System wakeup disabled by ACPI
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1b.0: [8086:9ca0] type 00 class 0x040300
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf1234000-0xf1237fff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.0: [8086:9c9a] type 01 class 0x060400
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1: [8086:9c94] type 01 class 0x060400
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1d.0: [8086:9ca6] type 00 class 0x0c0320
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf123d000-0xf123d3ff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.0: [8086:9cc3] type 00 class 0x060100
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: [8086:9c83] type 00 class 0x010601
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: reg 0x10: [io  0x30a8-0x30af]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: reg 0x14: [io  0x30b4-0x30b7]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: reg 0x18: [io  0x30a0-0x30a7]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x30b0-0x30b3]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xf123c000-0xf123c7ff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.2: PME# supported from D3hot
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.3: [8086:9ca2] type 00 class 0x0c0500
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf1238000-0xf12380ff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.6: [8086:9ca4] type 00 class 0x118000
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xf123b000-0xf123bfff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:02:00.0: [10ec:5227] type 00 class 0xff0000
Aug 30 10:11:50 BW3PC kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf1100000-0xf1100fff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:02:00.0: supports D1 D2
Aug 30 10:11:50 BW3PC kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:03:00.0: [8086:095b] type 00 class 0x028000
Aug 30 10:11:50 BW3PC kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf1000000-0xf1001fff 64bit]
Aug 30 10:11:50 BW3PC kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1:   bridge window [mem 0xf1000000-0xf10fffff]
Aug 30 10:11:50 BW3PC kernel: ACPI: Enabled 4 GPEs in block 00 to 7F
Aug 30 10:11:50 BW3PC kernel: ACPI : EC: EC stopped
Aug 30 10:11:50 BW3PC kernel: ACPI : EC: GPE = 0x25, I/O: command/status = 0x66, data = 0x62
Aug 30 10:11:50 BW3PC kernel: ACPI : EC: EC started
Aug 30 10:11:50 BW3PC kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=mem,locks=none
Aug 30 10:11:50 BW3PC kernel: vgaarb: loaded
Aug 30 10:11:50 BW3PC kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
Aug 30 10:11:50 BW3PC kernel: vgaarb: bridge control possible 0000:00:02.0
Aug 30 10:11:50 BW3PC kernel: PCI: Using ACPI for IRQ routing
Aug 30 10:11:50 BW3PC kernel: PCI: pci_cache_line_size set to 64 bytes
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0xc1593018-0xc3ffffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0xc15a4018-0xc3ffffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0xca76a000-0xcbffffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0xcce00000-0xcfffffff]
Aug 30 10:11:50 BW3PC kernel: e820: reserve RAM buffer [mem 0x42e000000-0x42fffffff]
Aug 30 10:11:50 BW3PC kernel: NetLabel: Initializing
Aug 30 10:11:50 BW3PC kernel: NetLabel:  domain hash size = 128
Aug 30 10:11:50 BW3PC kernel: NetLabel:  protocols = UNLABELED CIPSOv4
Aug 30 10:11:50 BW3PC kernel: NetLabel:  unlabeled traffic allowed by default
Aug 30 10:11:50 BW3PC kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Aug 30 10:11:50 BW3PC kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Aug 30 10:11:50 BW3PC kernel: amd_nb: Cannot enumerate AMD northbridges
Aug 30 10:11:50 BW3PC kernel: clocksource: Switched to clocksource hpet
Aug 30 10:11:50 BW3PC kernel: VFS: Disk quotas dquot_6.6.0
Aug 30 10:11:50 BW3PC kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 30 10:11:50 BW3PC kernel: pnp: PnP ACPI init
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x000e0000-0x000e3fff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x000e4000-0x000e7fff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x000e8000-0x000ebfff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x000ec000-0x000effff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0x00100000-0xcfffffff] could not be reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: [mem 0xfed4c000-0xffffffff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Aug 30 10:11:50 BW3PC kernel: pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x1800-0x189f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0880-0x08ff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0900-0x097f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0980-0x09ff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0a00-0x0a7f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0a80-0x0aff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0b00-0x0b7f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x0b80-0x0bff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x1600-0x167f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [io  0x1640-0x165f] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 30 10:11:50 BW3PC kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 30 10:11:50 BW3PC kernel: pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Aug 30 10:11:50 BW3PC kernel: pnp 00:04: Plug and Play ACPI device, IDs LEN002c PNP0f13 (active)
Aug 30 10:11:50 BW3PC kernel: pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
Aug 30 10:11:50 BW3PC kernel: system 00:06: [mem 0xd0010000-0xd001ffff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:06: [mem 0xd0000000-0xd000ffff] has been reserved
Aug 30 10:11:50 BW3PC kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 30 10:11:50 BW3PC kernel: pnp: PnP ACPI: found 7 devices
Aug 30 10:11:50 BW3PC kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:1c.1:   bridge window [mem 0xf1000000-0xf10fffff]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 15 [mem 0xd0000000-0xfebfffff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:00: resource 16 [mem 0xfed40000-0xfed4bfff window]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:02: resource 1 [mem 0xf1100000-0xf11fffff]
Aug 30 10:11:50 BW3PC kernel: pci_bus 0000:03: resource 1 [mem 0xf1000000-0xf10fffff]
Aug 30 10:11:50 BW3PC kernel: NET: Registered protocol family 2
Aug 30 10:11:50 BW3PC kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Aug 30 10:11:50 BW3PC kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 30 10:11:50 BW3PC kernel: TCP: Hash tables configured (established 131072 bind 65536)
Aug 30 10:11:50 BW3PC kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
Aug 30 10:11:50 BW3PC kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Aug 30 10:11:50 BW3PC kernel: NET: Registered protocol family 1
Aug 30 10:11:50 BW3PC kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Aug 30 10:11:50 BW3PC kernel: PCI: CLS 64 bytes, default 64
Aug 30 10:11:51 BW3PC kernel: Unpacking initramfs...
Aug 30 10:11:51 BW3PC kernel: Freeing initrd memory: 5692K (ffff88007fa71000 - ffff880080000000)
Aug 30 10:11:51 BW3PC kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 30 10:11:51 BW3PC kernel: software IO TLB [mem 0xba58d000-0xbe58d000] (64MB) mapped at [ffff8800ba58d000-ffff8800be58cfff]
Aug 30 10:11:51 BW3PC kernel: Scanning for low memory corruption every 60 seconds
Aug 30 10:11:51 BW3PC kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
Aug 30 10:11:51 BW3PC kernel: Initialise system trusted keyrings
Aug 30 10:11:51 BW3PC kernel: workingset: timestamp_bits=38 max_order=22 bucket_order=0
Aug 30 10:11:51 BW3PC kernel: zbud: loaded
Aug 30 10:11:51 BW3PC kernel: Key type big_key registered
Aug 30 10:11:51 BW3PC kernel: Key type asymmetric registered
Aug 30 10:11:51 BW3PC kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Aug 30 10:11:51 BW3PC kernel: io scheduler noop registered
Aug 30 10:11:51 BW3PC kernel: io scheduler deadline registered
Aug 30 10:11:51 BW3PC kernel: io scheduler cfq registered (default)
Aug 30 10:11:51 BW3PC kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug 30 10:11:51 BW3PC kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug 30 10:11:51 BW3PC kernel: efifb: probing for efifb
Aug 30 10:11:51 BW3PC kernel: efifb: framebuffer at 0xe0000000, using 8100k, total 8100k
Aug 30 10:11:51 BW3PC kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
Aug 30 10:11:51 BW3PC kernel: efifb: scrolling: redraw
Aug 30 10:11:51 BW3PC kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Aug 30 10:11:51 BW3PC kernel: Console: switching to colour frame buffer device 240x67
Aug 30 10:11:51 BW3PC kernel: fb0: EFI VGA frame buffer device
Aug 30 10:11:51 BW3PC kernel: intel_idle: MWAIT substates: 0x11142120
Aug 30 10:11:51 BW3PC kernel: intel_idle: v0.4.1 model 0x3D
Aug 30 10:11:51 BW3PC kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Aug 30 10:11:51 BW3PC kernel: GHES: HEST is not enabled!
Aug 30 10:11:51 BW3PC kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Aug 30 10:11:51 BW3PC kernel: Linux agpgart interface v0.103
Aug 30 10:11:51 BW3PC kernel: rtc_cmos 00:02: RTC can wake from S4
Aug 30 10:11:51 BW3PC kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Aug 30 10:11:51 BW3PC kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Aug 30 10:11:51 BW3PC kernel: intel_pstate: Intel P-state driver initializing
Aug 30 10:11:51 BW3PC kernel: ledtrig-cpu: registered to indicate activity on CPUs
Aug 30 10:11:51 BW3PC kernel: NET: Registered protocol family 10
Aug 30 10:11:51 BW3PC kernel: NET: Registered protocol family 17
Aug 30 10:11:51 BW3PC kernel: microcode: CPU0 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 10:11:51 BW3PC kernel: microcode: CPU1 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 10:11:51 BW3PC kernel: microcode: CPU2 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 10:11:51 BW3PC kernel: microcode: CPU3 sig=0x306d4, pf=0x40, revision=0x1d
Aug 30 10:11:51 BW3PC kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Aug 30 10:11:51 BW3PC kernel: registered taskstats version 1
Aug 30 10:11:51 BW3PC kernel: Loading compiled-in X.509 certificates
Aug 30 10:11:51 BW3PC kernel: zswap: loaded using pool lzo/zbud
Aug 30 10:11:51 BW3PC kernel:   Magic number: 12:474:185
Aug 30 10:11:51 BW3PC kernel: rtc_cmos 00:02: setting system clock to 2016-08-30 15:11:44 UTC (1472569904)
Aug 30 10:11:51 BW3PC kernel: PM: Hibernation image not present or could not be loaded.
Aug 30 10:11:51 BW3PC kernel: Freeing unused kernel memory: 1244K (ffffffff818f6000 - ffffffff81a2d000)
Aug 30 10:11:51 BW3PC kernel: Write protecting the kernel read-only data: 8192k
Aug 30 10:11:51 BW3PC kernel: Freeing unused kernel memory: 100K (ffff8800015e7000 - ffff880001600000)
Aug 30 10:11:51 BW3PC kernel: Freeing unused kernel memory: 212K (ffff8800017cb000 - ffff880001800000)
Aug 30 10:11:51 BW3PC kernel: random: systemd-tmpfile: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 30 10:11:51 BW3PC kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Aug 30 10:11:51 BW3PC kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 30 10:11:51 BW3PC kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 30 10:11:51 BW3PC kernel: rtsx_pci 0000:02:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 40
Aug 30 10:11:51 BW3PC kernel: ACPI: bus type USB registered
Aug 30 10:11:51 BW3PC kernel: usbcore: registered new interface driver usbfs
Aug 30 10:11:51 BW3PC kernel: usbcore: registered new interface driver hub
Aug 30 10:11:51 BW3PC kernel: usbcore: registered new device driver usb
Aug 30 10:11:51 BW3PC kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 30 10:11:51 BW3PC kernel: ehci-pci: EHCI PCI platform driver
Aug 30 10:11:51 BW3PC kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Aug 30 10:11:51 BW3PC kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
Aug 30 10:11:51 BW3PC kernel: ehci-pci 0000:00:1d.0: debug port 2
Aug 30 10:11:51 BW3PC kernel: SCSI subsystem initialized
Aug 30 10:11:51 BW3PC kernel: libata version 3.00 loaded.
Aug 30 10:11:51 BW3PC kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Aug 30 10:11:51 BW3PC kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf123d000
Aug 30 10:11:51 BW3PC kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Aug 30 10:11:51 BW3PC kernel: hub 1-0:1.0: USB hub found
Aug 30 10:11:51 BW3PC kernel: hub 1-0:1.0: 3 ports detected
Aug 30 10:11:51 BW3PC kernel: ahci 0000:00:1f.2: version 3.0
Aug 30 10:11:51 BW3PC kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Aug 30 10:11:51 BW3PC kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x5 impl SATA mode
Aug 30 10:11:51 BW3PC kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Aug 30 10:11:51 BW3PC kernel: scsi host0: ahci
Aug 30 10:11:51 BW3PC kernel: scsi host1: ahci
Aug 30 10:11:51 BW3PC kernel: scsi host2: ahci
Aug 30 10:11:51 BW3PC kernel: ata1: SATA max UDMA/133 abar m2048@0xf123c000 port 0xf123c100 irq 41
Aug 30 10:11:51 BW3PC kernel: ata2: DUMMY
Aug 30 10:11:51 BW3PC kernel: ata3: SATA max UDMA/133 abar m2048@0xf123c000 port 0xf123c200 irq 41
Aug 30 10:11:51 BW3PC kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Aug 30 10:11:51 BW3PC kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Aug 30 10:11:51 BW3PC kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
Aug 30 10:11:51 BW3PC kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Aug 30 10:11:51 BW3PC kernel: hub 2-0:1.0: USB hub found
Aug 30 10:11:51 BW3PC kernel: hub 2-0:1.0: 11 ports detected
Aug 30 10:11:51 BW3PC kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Aug 30 10:11:51 BW3PC kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Aug 30 10:11:51 BW3PC kernel: hub 3-0:1.0: USB hub found
Aug 30 10:11:51 BW3PC kernel: hub 3-0:1.0: 4 ports detected
Aug 30 10:11:51 BW3PC kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Aug 30 10:11:51 BW3PC kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug 30 10:11:51 BW3PC kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Aug 30 10:11:51 BW3PC kernel: ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 10:11:51 BW3PC kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 10:11:51 BW3PC kernel: ata3.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 10:11:51 BW3PC kernel: ata3.00: ATA-9: SanDisk SSD U110 16GB, U21B001, max UDMA/133
Aug 30 10:11:51 BW3PC kernel: ata3.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
Aug 30 10:11:51 BW3PC kernel: ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 10:11:51 BW3PC kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 10:11:51 BW3PC kernel: ata3.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 10:11:51 BW3PC kernel: ata3.00: configured for UDMA/133
Aug 30 10:11:51 BW3PC kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 10:11:51 BW3PC kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 10:11:51 BW3PC kernel: ata1.00: ATA-8: ST500LM021-1KJ152, 0002LIM1, max UDMA/133
Aug 30 10:11:51 BW3PC kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug 30 10:11:51 BW3PC kernel: usb 2-7: new full-speed USB device number 2 using xhci_hcd
Aug 30 10:11:51 BW3PC kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Aug 30 10:11:51 BW3PC kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 10:11:51 BW3PC kernel: ata1.00: configured for UDMA/133
Aug 30 10:11:51 BW3PC kernel: scsi 0:0:0:0: Direct-Access     ATA      ST500LM021-1KJ15 LIM1 PQ: 0 ANSI: 5
Aug 30 10:11:51 BW3PC kernel: hub 1-1:1.0: USB hub found
Aug 30 10:11:51 BW3PC kernel: hub 1-1:1.0: 8 ports detected
Aug 30 10:11:51 BW3PC kernel: scsi 2:0:0:0: Direct-Access     ATA      SanDisk SSD U110 001  PQ: 0 ANSI: 5
Aug 30 10:11:51 BW3PC kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Aug 30 10:11:51 BW3PC kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
Aug 30 10:11:51 BW3PC kernel: sd 2:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
Aug 30 10:11:51 BW3PC kernel: sd 0:0:0:0: [sda] Write Protect is off
Aug 30 10:11:51 BW3PC kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 30 10:11:51 BW3PC kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 30 10:11:51 BW3PC kernel: sd 2:0:0:0: [sdb] Write Protect is off
Aug 30 10:11:51 BW3PC kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Aug 30 10:11:51 BW3PC kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 30 10:11:51 BW3PC kernel:  sdb: sdb1
Aug 30 10:11:51 BW3PC kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
Aug 30 10:11:51 BW3PC kernel:  sda: sda1 sda2 sda3 sda4 sda5 sda6
Aug 30 10:11:51 BW3PC kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Aug 30 10:11:51 BW3PC kernel: usb 2-8: new high-speed USB device number 3 using xhci_hcd
Aug 30 10:11:51 BW3PC kernel: tsc: Refined TSC clocksource calibration: 2194.918 MHz
Aug 30 10:11:51 BW3PC kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fa37202099, max_idle_ns: 440795206796 ns
Aug 30 10:11:51 BW3PC kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
Aug 30 10:11:51 BW3PC kernel: random: nonblocking pool is initialized
Aug 30 10:11:51 BW3PC kernel: clocksource: Switched to clocksource tsc
Aug 30 10:11:51 BW3PC kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Aug 30 10:11:51 BW3PC systemd[1]: systemd 231 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Aug 30 10:11:51 BW3PC systemd[1]: Detected architecture x86-64.
Aug 30 10:11:51 BW3PC systemd[1]: Set hostname to <BW3PC>.
Aug 30 10:11:51 BW3PC systemd[1]: Listening on LVM2 metadata daemon socket.
Aug 30 10:11:51 BW3PC systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Encrypted Volumes.
Aug 30 10:11:51 BW3PC systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Aug 30 10:11:51 BW3PC systemd[1]: Listening on Journal Socket.
Aug 30 10:11:51 BW3PC systemd[1]: Created slice User and Session Slice.
Aug 30 10:11:51 BW3PC systemd[1]: Created slice System Slice.
Aug 30 10:11:51 BW3PC systemd[1]: Starting Create list of required static device nodes for the current kernel...
Aug 30 10:11:51 BW3PC systemd[1]: Mounting Configuration File System...
Aug 30 10:11:51 BW3PC systemd[1]: Starting Setup Virtual Console...
Aug 30 10:11:51 BW3PC systemd[1]: Starting Remount Root and Kernel File Systems...
Aug 30 10:11:51 BW3PC systemd[1]: Mounting Huge Pages File System...
Aug 30 10:11:51 BW3PC kernel: EXT4-fs (sda6): re-mounted. Opts: data=ordered
Aug 30 10:11:51 BW3PC systemd[1]: Listening on udev Control Socket.
Aug 30 10:11:51 BW3PC systemd[1]: Mounting Debug File System...
Aug 30 10:11:51 BW3PC systemd[1]: Listening on udev Kernel Socket.
Aug 30 10:11:51 BW3PC systemd[1]: Listening on Journal Socket (/dev/log).
Aug 30 10:11:51 BW3PC systemd[1]: Starting Journal Service...
Aug 30 10:11:51 BW3PC systemd[1]: Created slice system-getty.slice.
Aug 30 10:11:51 BW3PC systemd[1]: Starting Apply Kernel Variables...
Aug 30 10:11:51 BW3PC systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Aug 30 10:11:51 BW3PC systemd[1]: Listening on Device-mapper event daemon FIFOs.
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Remote File Systems.
Aug 30 10:11:51 BW3PC systemd[1]: Mounting POSIX Message Queue File System...
Aug 30 10:11:51 BW3PC systemd[1]: Listening on Process Core Dump Socket.
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Slices.
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Login Prompts.
Aug 30 10:11:51 BW3PC systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Aug 30 10:11:51 BW3PC systemd[1]: Starting Set Up Additional Binary Formats...
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Swap.
Aug 30 10:11:51 BW3PC systemd[1]: Mounting Temporary Directory...
Aug 30 10:11:51 BW3PC systemd[1]: Mounted Configuration File System.
Aug 30 10:11:51 BW3PC systemd[1]: Mounted Debug File System.
Aug 30 10:11:51 BW3PC systemd[1]: Mounted POSIX Message Queue File System.
Aug 30 10:11:51 BW3PC systemd[1]: Mounted Huge Pages File System.
Aug 30 10:11:51 BW3PC systemd[1]: Mounted Temporary Directory.
Aug 30 10:11:51 BW3PC systemd[1]: Started Create list of required static device nodes for the current kernel.
Aug 30 10:11:51 BW3PC systemd[1]: Started Setup Virtual Console.
Aug 30 10:11:51 BW3PC systemd[1]: Started Remount Root and Kernel File Systems.
Aug 30 10:11:51 BW3PC systemd[1]: Starting Load/Save Random Seed...
Aug 30 10:11:51 BW3PC systemd[1]: Starting udev Coldplug all Devices...
Aug 30 10:11:51 BW3PC systemd[1]: Starting Create Static Device Nodes in /dev...
Aug 30 10:11:51 BW3PC systemd[1]: Started Apply Kernel Variables.
Aug 30 10:11:51 BW3PC systemd[1]: Started Load/Save Random Seed.
Aug 30 10:11:51 BW3PC systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 169 (systemd-binfmt)
Aug 30 10:11:51 BW3PC systemd[1]: Mounting Arbitrary Executable File Formats File System...
Aug 30 10:11:51 BW3PC systemd[1]: Mounted Arbitrary Executable File Formats File System.
Aug 30 10:11:51 BW3PC systemd[1]: Started Set Up Additional Binary Formats.
Aug 30 10:11:51 BW3PC systemd[1]: Started udev Coldplug all Devices.
Aug 30 10:11:51 BW3PC systemd[1]: Started Create Static Device Nodes in /dev.
Aug 30 10:11:51 BW3PC systemd[1]: Starting udev Kernel Device Manager...
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Local File Systems (Pre).
Aug 30 10:11:51 BW3PC systemd[1]: Started udev Kernel Device Manager.
Aug 30 10:11:51 BW3PC kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
Aug 30 10:11:51 BW3PC kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Aug 30 10:11:51 BW3PC kernel: pps_core: LinuxPPS API ver. 1 registered
Aug 30 10:11:51 BW3PC kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Aug 30 10:11:51 BW3PC kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
Aug 30 10:11:51 BW3PC kernel: ACPI: Lid Switch [LID]
Aug 30 10:11:51 BW3PC kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
Aug 30 10:11:51 BW3PC kernel: ACPI: Sleep Button [SLPB]
Aug 30 10:11:51 BW3PC kernel: ACPI: AC Adapter [AC] (on-line)
Aug 30 10:11:51 BW3PC kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Aug 30 10:11:51 BW3PC kernel: ACPI: Power Button [PWRF]
Aug 30 10:11:51 BW3PC kernel: PTP clock support registered
Aug 30 10:11:51 BW3PC kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug 30 10:11:51 BW3PC kernel: ACPI: Battery Slot [BAT0] (battery present)
Aug 30 10:11:51 BW3PC kernel: ACPI: Battery Slot [BAT1] (battery present)
Aug 30 10:11:51 BW3PC kernel: wmi: Mapper loaded
Aug 30 10:11:51 BW3PC kernel: Non-volatile memory driver v1.3
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.25
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: ThinkPad BIOS N11ET31W (1.07 ), EC unknown
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: Lenovo ThinkPad T550, model 20CKCTO1WW
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: radio switch found; radios are enabled
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Aug 30 10:11:51 BW3PC kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Aug 30 10:11:51 BW3PC kernel: thermal LNXTHERM:00: registered as thermal_zone1
Aug 30 10:11:51 BW3PC kernel: ACPI: Thermal Zone [THM0] (43 C)
Aug 30 10:11:51 BW3PC kernel: FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
Aug 30 10:11:51 BW3PC kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
Aug 30 10:11:51 BW3PC kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
Aug 30 10:11:51 BW3PC kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Aug 30 10:11:51 BW3PC kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Aug 30 10:11:51 BW3PC kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Aug 30 10:11:51 BW3PC kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Aug 30 10:11:51 BW3PC kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Aug 30 10:11:51 BW3PC kernel: Intel(R) Wireless WiFi driver for Linux
Aug 30 10:11:51 BW3PC kernel: Copyright(c) 2003- 2015 Intel Corporation
Aug 30 10:11:51 BW3PC kernel: [drm] Initialized drm 1.1.0 20060810
Aug 30 10:11:51 BW3PC kernel: e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
Aug 30 10:11:51 BW3PC kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Aug 30 10:11:51 BW3PC kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Aug 30 10:11:51 BW3PC kernel: iwlwifi 0000:03:00.0: loaded firmware version 21.302800.0 op_mode iwlmvm
Aug 30 10:11:51 BW3PC kernel: AVX2 version of gcm_enc/dec engaged.
Aug 30 10:11:51 BW3PC kernel: AES CTR mode by8 optimization enabled
Aug 30 10:11:51 BW3PC kernel: Bluetooth: Core ver 2.21
Aug 30 10:11:51 BW3PC kernel: NET: Registered protocol family 31
Aug 30 10:11:51 BW3PC kernel: Bluetooth: HCI device and connection manager initialized
Aug 30 10:11:51 BW3PC kernel: Bluetooth: HCI socket layer initialized
Aug 30 10:11:51 BW3PC kernel: Bluetooth: L2CAP socket layer initialized
Aug 30 10:11:51 BW3PC kernel: Bluetooth: SCO socket layer initialized
Aug 30 10:11:51 BW3PC kernel: usbcore: registered new interface driver btusb
Aug 30 10:11:51 BW3PC kernel: Bluetooth: hci0: read Intel version: 370810011003110e00
Aug 30 10:11:51 BW3PC kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
Aug 30 10:11:51 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:11:51 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:11:51 BW3PC kernel: e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
Aug 30 10:11:51 BW3PC kernel: Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
Aug 30 10:11:51 BW3PC kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 54:ee:75:59:46:85
Aug 30 10:11:51 BW3PC kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Aug 30 10:11:51 BW3PC kernel: e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: 1000FF-0FF
Aug 30 10:11:51 BW3PC kernel: media: Linux media interface: v0.10
Aug 30 10:11:51 BW3PC kernel: Linux video capture interface: v2.00
Aug 30 10:11:51 BW3PC kernel: intel_rapl: Found RAPL domain package
Aug 30 10:11:51 BW3PC kernel: intel_rapl: Found RAPL domain core
Aug 30 10:11:51 BW3PC kernel: intel_rapl: Found RAPL domain uncore
Aug 30 10:11:51 BW3PC kernel: intel_rapl: Found RAPL domain dram
Aug 30 10:11:51 BW3PC kernel: uvcvideo: Found UVC 1.00 device Integrated Camera (04ca:703c)
Aug 30 10:11:51 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Extension 4 was not initialized!
Aug 30 10:11:51 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Extension 3 was not initialized!
Aug 30 10:11:51 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Processing 2 was not initialized!
Aug 30 10:11:51 BW3PC kernel: uvcvideo 2-8:1.0: Entity type for entity Camera 1 was not initialized!
Aug 30 10:11:51 BW3PC kernel: input: Integrated Camera as /devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input8
Aug 30 10:11:51 BW3PC kernel: usbcore: registered new interface driver uvcvideo
Aug 30 10:11:51 BW3PC kernel: USB Video Class driver (1.1.1)
Aug 30 10:11:51 BW3PC kernel: Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
Aug 30 10:11:51 BW3PC kernel: iTCO_vendor_support: vendor-support=0
Aug 30 10:11:51 BW3PC systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Aug 30 10:11:51 BW3PC kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Aug 30 10:11:51 BW3PC systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:tpacpi::kbd_backlight...
Aug 30 10:11:51 BW3PC systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 30 10:11:51 BW3PC systemd[1]: Starting Load/Save RF Kill Switch Status...
Aug 30 10:11:51 BW3PC kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Aug 30 10:11:51 BW3PC kernel: iTCO_wdt: Found a Wildcat Point_LP TCO device (Version=2, TCOBASE=0x1860)
Aug 30 10:11:51 BW3PC kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Aug 30 10:11:51 BW3PC kernel: psmouse serio1: synaptics: queried max coordinates: x [..5676], y [..4758]
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3232: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=2 (0x16/0x15/0x0/0x0/0x0)
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:      Dock Mic=0x19
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:      Mic=0x1a
Aug 30 10:11:51 BW3PC kernel: snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
Aug 30 10:11:51 BW3PC kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
Aug 30 10:11:51 BW3PC kernel: input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
Aug 30 10:11:51 BW3PC kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
Aug 30 10:11:51 BW3PC kernel: input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
Aug 30 10:11:51 BW3PC kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
Aug 30 10:11:51 BW3PC kernel: psmouse serio1: synaptics: queried min coordinates: x [1266..], y [1096..]
Aug 30 10:11:51 BW3PC kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xf003a3/0x943300/0x12e800/0x10000, board id: 3053, fw id: 2560
Aug 30 10:11:51 BW3PC kernel: psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Aug 30 10:11:51 BW3PC systemd[1]: Started Load/Save Screen Backlight Brightness of leds:tpacpi::kbd_backlight.
Aug 30 10:11:51 BW3PC kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
Aug 30 10:11:51 BW3PC kernel: mousedev: PS/2 mouse device common for all mice
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Sound Card.
Aug 30 10:11:51 BW3PC systemd[1]: Reached target Bluetooth.
Aug 30 10:11:51 BW3PC kernel: i915 0000:00:02.0: enabling device (0006 -> 0007)
Aug 30 10:11:51 BW3PC kernel: [drm] Memory usable by graphics device = 4096M
Aug 30 10:11:51 BW3PC kernel: checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
Aug 30 10:11:51 BW3PC kernel: fb: switching to inteldrmfb from EFI VGA
Aug 30 10:11:51 BW3PC kernel: Console: switching to colour dummy device 80x25
Aug 30 10:11:51 BW3PC kernel: [drm] Replacing VGA console driver
Aug 30 10:11:51 BW3PC kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Aug 30 10:11:51 BW3PC kernel: [drm] Driver supports precise vblank timestamp query.
Aug 30 10:11:51 BW3PC kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=mem
Aug 30 10:11:51 BW3PC kernel: ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
Aug 30 10:11:51 BW3PC kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15
Aug 30 10:11:51 BW3PC kernel: snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Aug 30 10:11:51 BW3PC kernel: [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
Aug 30 10:11:51 BW3PC kernel: fbcon: inteldrmfb (fb0) is primary device
Aug 30 10:11:51 BW3PC kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Aug 30 10:11:51 BW3PC kernel: iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
Aug 30 10:11:51 BW3PC systemd[1]: Started Load/Save RF Kill Switch Status.
Aug 30 10:11:51 BW3PC kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Aug 30 10:11:51 BW3PC systemd-journald[164]: Journal started
Aug 30 10:11:52 BW3PC kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input14
Aug 30 10:11:52 BW3PC kernel: Console: switching to colour frame buffer device 240x67
Aug 30 10:11:52 BW3PC kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Aug 30 10:11:52 BW3PC systemd[1]: Started Journal Service.
Aug 30 10:11:52 BW3PC systemd[1]: Found device ST500LM021-1KJ152 Data.
Aug 30 10:11:52 BW3PC kernel: input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
Aug 30 10:11:52 BW3PC kernel: input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input17
Aug 30 10:11:52 BW3PC kernel: input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input18
Aug 30 10:11:52 BW3PC systemd[1]: Found device ST500LM021-1KJ152 SYSTEM_DRV.
Aug 30 10:11:52 BW3PC systemd[1]: Found device ST500LM021-1KJ152 Windows.
Aug 30 10:11:52 BW3PC systemd[1]: Mounting /windows...
Aug 30 10:11:53 BW3PC kernel: fuse init (API version 7.25)
Aug 30 10:11:56 BW3PC kernel: FAT-fs (sda2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Aug 30 10:11:52 BW3PC systemd[1]: Mounting /boot...
Aug 30 10:11:52 BW3PC systemd[1]: Mounting /data...
Aug 30 10:11:52 BW3PC systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 30 10:11:52 BW3PC systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Aug 30 10:11:53 BW3PC systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Aug 30 10:11:53 BW3PC systemd[1]: Mounting FUSE Control File System...
Aug 30 10:11:53 BW3PC systemd[1]: Mounted FUSE Control File System.
Aug 30 10:11:53 BW3PC systemd[1]: Mounted /boot.
Aug 30 10:11:56 BW3PC systemd[1]: Started Flush Journal to Persistent Storage.
Aug 30 10:11:56 BW3PC ntfs-3g[293]: Bad mapping item ""
Aug 30 10:11:56 BW3PC ntfs-3g[297]: Bad mapping item ""
Aug 30 10:11:56 BW3PC systemd[1]: Mounted /data.
Aug 30 10:11:56 BW3PC ntfs-3g[320]: Version 2016.2.22 external FUSE 29
Aug 30 10:11:56 BW3PC systemd[1]: Mounted /windows.
Aug 30 10:11:56 BW3PC ntfs-3g[320]: Mounted /dev/sda5 (Read-Write, label "Data", NTFS 3.1)
Aug 30 10:11:56 BW3PC systemd[1]: Reached target Local File Systems.
Aug 30 10:11:56 BW3PC ntfs-3g[320]: Cmdline options: rw,permissions
Aug 30 10:11:56 BW3PC systemd[1]: Starting Create Volatile Files and Directories...
Aug 30 10:11:56 BW3PC ntfs-3g[320]: Mount options: rw,allow_other,nonempty,default_permissions,relatime,fsname=/dev/sda5,blkdev,blksize=4096
Aug 30 10:11:56 BW3PC ntfs-3g[320]: User mapping built, Posix ACLs not used, configuration type 7
Aug 30 10:11:56 BW3PC ntfs-3g[323]: Version 2016.2.22 external FUSE 29
Aug 30 10:11:56 BW3PC ntfs-3g[323]: Mounted /dev/sda4 (Read-Write, label "Windows", NTFS 3.1)
Aug 30 10:11:56 BW3PC ntfs-3g[323]: Cmdline options: rw,permissions
Aug 30 10:11:56 BW3PC ntfs-3g[323]: Mount options: rw,allow_other,nonempty,default_permissions,relatime,fsname=/dev/sda4,blkdev,blksize=4096
Aug 30 10:11:56 BW3PC ntfs-3g[323]: User mapping built, Posix ACLs not used, configuration type 7
Aug 30 10:11:56 BW3PC systemd[1]: Started Create Volatile Files and Directories.
Aug 30 10:11:56 BW3PC systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Aug 30 10:11:56 BW3PC systemd[1]: Starting Network Time Synchronization...
Aug 30 10:11:56 BW3PC systemd[1]: Started Update UTMP about System Boot/Shutdown.
Aug 30 10:11:56 BW3PC systemd[1]: Started Network Time Synchronization.
Aug 30 10:11:56 BW3PC systemd[1]: Reached target System Time Synchronized.
Aug 30 10:11:56 BW3PC systemd[1]: Reached target System Initialization.
Aug 30 10:11:56 BW3PC systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 30 10:11:56 BW3PC systemd[1]: Started Daily verification of password and group files.
Aug 30 10:11:56 BW3PC systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 30 10:11:56 BW3PC systemd[1]: Started Daily rotation of log files.
Aug 30 10:11:56 BW3PC systemd[1]: Listening on CUPS Scheduler.
Aug 30 10:11:56 BW3PC systemd[1]: Reached target Sockets.
Aug 30 10:11:56 BW3PC systemd[1]: Started Daily man-db cache update.
Aug 30 10:11:56 BW3PC systemd[1]: Reached target Timers.
Aug 30 10:11:56 BW3PC systemd[1]: Started CUPS Scheduler.
Aug 30 10:11:56 BW3PC systemd[1]: Reached target Paths.
Aug 30 10:11:56 BW3PC systemd[1]: Reached target Basic System.
Aug 30 10:11:56 BW3PC systemd[1]: Started D-Bus System Message Bus.
Aug 30 10:11:57 BW3PC systemd[1]: Starting Network Manager...
Aug 30 10:11:57 BW3PC systemd[1]: Starting Login Service...
Aug 30 10:11:57 BW3PC systemd[1]: Started Login Service.
Aug 30 10:11:57 BW3PC systemd-logind[332]: New seat seat0.
Aug 30 10:11:57 BW3PC systemd-logind[332]: Watching system buttons on /dev/input/event3 (Power Button)
Aug 30 10:11:57 BW3PC systemd-logind[332]: Watching system buttons on /dev/input/event13 (Video Bus)
Aug 30 10:11:57 BW3PC systemd-logind[332]: Watching system buttons on /dev/input/event1 (Lid Switch)
Aug 30 10:11:57 BW3PC systemd-logind[332]: Watching system buttons on /dev/input/event2 (Sleep Button)
Aug 30 10:11:57 BW3PC systemd-logind[332]: Watching system buttons on /dev/input/event4 (ThinkPad Extra Buttons)
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.0746] NetworkManager (version 1.4.1) is starting...
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.0746] Read config: /etc/NetworkManager/NetworkManager.conf
Aug 30 10:11:58 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.0863] manager[0x1235060]: monitoring kernel firmware directory '/usr/lib/firmware'.
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.1030] dns-mgr[0x122e800]: init: dns=default, rc-manager=resolvconf
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.1182] rfkill2: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill2) (driver iwlwifi)
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.1183] manager[0x1235060]: WiFi hardware radio set enabled
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.1183] manager[0x1235060]: WWAN hardware radio set enabled
Aug 30 10:11:58 BW3PC systemd[1]: Started Network Manager.
Aug 30 10:11:58 BW3PC systemd[1]: Reached target Network.
Aug 30 10:11:58 BW3PC systemd[1]: Starting Permit User Sessions...
Aug 30 10:11:58 BW3PC systemd[1]: Starting Network Manager Script Dispatcher Service...
Aug 30 10:11:58 BW3PC systemd[1]: Started Permit User Sessions.
Aug 30 10:11:58 BW3PC systemd[1]: Starting GNOME Display Manager...
Aug 30 10:11:58 BW3PC systemd[1]: Reached target Multi-User System.
Aug 30 10:11:58 BW3PC systemd[1]: Started GNOME Display Manager.
Aug 30 10:11:58 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service'
Aug 30 10:11:58 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.4609] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.4975] keyfile: new connection /etc/NetworkManager/system-connections/Auto InternetStuff-5G (9e6252be-2f0c-4ab6-b3d4-cc12fa638cc1,"Auto InternetStuff-5G")
Aug 30 10:11:58 BW3PC systemd[1]: Started Network Manager Script Dispatcher Service.
Aug 30 10:11:58 BW3PC systemd[1]: Reached target User and Group Name Lookups.
Aug 30 10:11:58 BW3PC systemd[1]: Starting Accounts Service...
Aug 30 10:11:58 BW3PC systemd[1]: Reached target Graphical Interface.
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.5328] keyfile: new connection /etc/NetworkManager/system-connections/Auto MYB’s iPhone (5df2a473-87a0-4de7-814b-d00b1d1253e1,"Auto MYB’s iPhone")
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.6432] keyfile: new connection /etc/NetworkManager/system-connections/Auto Bernardoni (78c192ec-20d5-4f93-9dfc-5b5c7205d5fb,"Auto Bernardoni")
Aug 30 10:11:58 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
Aug 30 10:11:58 BW3PC systemd[1]: Starting Authorization Manager...
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.7600] keyfile: new connection /etc/NetworkManager/system-connections/Auto IllinoisNet (0cb29b04-0cbe-4121-a6ba-22e593920d25,"Auto IllinoisNet")
Aug 30 10:11:58 BW3PC polkitd[352]: Started polkitd version 0.113
Aug 30 10:11:58 BW3PC NetworkManager[331]: <info>  [1472569918.8864] keyfile: new connection /etc/NetworkManager/system-connections/Auto BWB S6 (bdce0395-0657-48d1-9469-19d7076cce1f,"Auto BWB S6")
Aug 30 10:11:58 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Aug 30 10:11:58 BW3PC systemd[1]: Starting Hostname Service...
Aug 30 10:11:59 BW3PC polkitd[352]: Loading rules from directory /etc/polkit-1/rules.d
Aug 30 10:11:59 BW3PC polkitd[352]: Loading rules from directory /usr/share/polkit-1/rules.d
Aug 30 10:11:59 BW3PC polkitd[352]: Finished loading, compiling and executing 2 rules
Aug 30 10:11:59 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Aug 30 10:11:59 BW3PC systemd[1]: Started Authorization Manager.
Aug 30 10:11:59 BW3PC polkitd[352]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Aug 30 10:11:59 BW3PC accounts-daemon[348]: started daemon version 0.6.42
Aug 30 10:11:59 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.Accounts'
Aug 30 10:11:59 BW3PC systemd[1]: Started Accounts Service.
Aug 30 10:11:59 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.hostname1'
Aug 30 10:11:59 BW3PC systemd[1]: Started Hostname Service.
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0755] settings: hostname: using hostnamed
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0756] settings: hostname changed from (none) to "BW3PC"
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0757] dhcp-init: Using DHCP client 'dhclient'
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0757] manager: WiFi enabled by radio killswitch; enabled by state file
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0757] manager: WWAN enabled by radio killswitch; enabled by state file
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0758] manager: Networking is enabled by state file
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0758] Loaded device plugin: NMVxlanFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0758] Loaded device plugin: NMVlanFactory (internal)
Aug 30 10:11:59 BW3PC nm-dispatcher[341]: req:1 'hostname': new request (0 scripts)
Aug 30 10:11:59 BW3PC systemd[1]: Startup finished in 2.999s (kernel) + 12.389s (userspace) = 27.396s.
Aug 30 10:11:59 BW3PC nm-dispatcher[341]: req:1 'hostname': completed: no scripts
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0758] Loaded device plugin: NMVethFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0758] Loaded device plugin: NMTunFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0759] Loaded device plugin: NMMacvlanFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0759] Loaded device plugin: NMIPTunnelFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0759] Loaded device plugin: NMInfinibandFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0759] Loaded device plugin: NMEthernetFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0759] Loaded device plugin: NMBridgeFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.0759] Loaded device plugin: NMBondFactory (internal)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.1827] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/libnm-device-plugin-wwan.so)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.2909] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/libnm-device-plugin-team.so)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.2920] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/libnm-device-plugin-wifi.so)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.2928] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/libnm-device-plugin-bluetooth.so)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3084] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/libnm-device-plugin-adsl.so)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3853] device (lo): link connected
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3861] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3872] manager: (enp0s25): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3879] keyfile: add connection in-memory (bf38749c-9e6c-383d-a3c0-2ae9fb3c906d,"Wired connection 1")
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3883] settings: (enp0s25): created default wired connection 'Wired connection 1'
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.3892] device (enp0s25): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Aug 30 10:11:59 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
Aug 30 10:11:59 BW3PC gdm-autologin][360]: pam_unix(gdm-autologin:session): session opened for user bennett by (uid=0)
Aug 30 10:11:59 BW3PC systemd[1]: Created slice User Slice of bennett.
Aug 30 10:11:59 BW3PC systemd[1]: Starting User Manager for UID 1000...
Aug 30 10:11:59 BW3PC systemd[1]: Started Session c1 of user bennett.
Aug 30 10:11:59 BW3PC systemd-logind[332]: New session c1 of user bennett.
Aug 30 10:11:59 BW3PC systemd[364]: pam_unix(systemd-user:session): session opened for user bennett by (uid=0)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.6910] (wlp3s0): using nl80211 for WiFi device control
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.6912] device (wlp3s0): driver supports Access Point (AP) mode
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.6920] manager: (wlp3s0): new 802.11 WiFi device (/org/freedesktop/NetworkManager/Devices/2)
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.6928] device (wlp3s0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Aug 30 10:11:59 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
Aug 30 10:11:59 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 10:11:59 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:11:59 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:11:59 BW3PC systemd[364]: Listening on Sound System.
Aug 30 10:12:00 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:12:00 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:12:00 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 10:12:00 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:12:00 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:12:00 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:12:00 BW3PC kernel: iwlwifi 0000:03:00.0: L1 Enabled - LTR Enabled
Aug 30 10:12:00 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 10:12:00 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 10:12:00 BW3PC dbus[330]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service'
Aug 30 10:11:59 BW3PC systemd[364]: Reached target Timers.
Aug 30 10:12:00 BW3PC dbus[330]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Aug 30 10:11:59 BW3PC systemd[364]: Reached target Paths.
Aug 30 10:11:59 BW3PC systemd[364]: Starting D-Bus User Message Bus Socket.
Aug 30 10:11:59 BW3PC NetworkManager[331]: <info>  [1472569919.7939] device (wlp3s0): set-hw-addr: set MAC address to 7E:97:46:B7:00:4B (scanning)
Aug 30 10:12:00 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) Log file renamed from "/home/bennett/.local/share/xorg/Xorg.pid-372.log" to "/home/bennett/.local/share/xorg/Xorg.0.log"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: X.Org X Server 1.18.4
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Release Date: 2016-07-19
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: X Protocol Version 11, Revision 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Build Operating System: Linux 4.5.4-1-ARCH x86_64
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Current Operating System: Linux BW3PC 4.7.2-1-ARCH #1 SMP PREEMPT Sat Aug 20 23:02:56 CEST 2016 x86_64
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=65eefeef-abde-47b1-b7f5-764b8364164e rw
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Build Date: 19 July 2016  05:54:24PM
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:  
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Current version of pixman: 0.34.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Before reporting problems, check http://wiki.x.org
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         to make sure that you have the latest version.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: Markers: (--) probed, (**) from config file, (==) default setting,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         (++) from command line, (!!) notice, (II) informational,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Log file: "/home/bennett/.local/share/xorg/Xorg.0.log", Time: Tue Aug 30 10:12:00 2016
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) No Layout section.  Using the first Screen section.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) No screen section available. Using defaults.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) |-->Screen "Default Screen Section" (0)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) |   |-->Monitor "<default monitor>"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) No monitor specified for screen "Default Screen Section".
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Using a default monitor configuration.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Automatically adding devices
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Automatically enabling devices
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Automatically adding GPU devices
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Entry deleted from font path.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Entry deleted from font path.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) FontPath set to:
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         /usr/share/fonts/misc/,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         /usr/share/fonts/TTF/,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         /usr/share/fonts/OTF/,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         /usr/share/fonts/Type1/
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) ModulePath set to "/usr/lib/xorg/modules"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) The server relies on udev to provide the list of input devices.
Aug 30 10:12:01 BW3PC wpa_supplicant[373]: Successfully initialized wpa_supplicant
Aug 30 10:12:01 BW3PC wpa_supplicant[373]: Could not read interface p2p-dev-wlp3s0 flags: No such device
Aug 30 10:11:59 BW3PC systemd[364]: Listening on D-Bus User Message Bus Socket.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loader magic: 0x821d40
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module ABI versions:
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         X.Org ANSI C Emulation: 0.4
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         X.Org Video Driver: 20.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         X.Org XInput driver : 22.1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         X.Org Server Extension : 9.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (++) using VT number 1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) xfree86: Adding drm device (/dev/dri/card0)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) PCI:*(0:0:2:0) 8086:1616:17aa:2223 rev 9, Mem @ 0xf0000000/16777216, 0xe0000000/268435456, I/O @ 0x00003000/64, BIOS @ 0x????????/131072
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "glx"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module glx: vendor="X.Org Foundation"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         compiled for 1.18.4, module version = 1.0.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         ABI class: X.Org Server Extension, version 9.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) AIGLX enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Matched intel as autoconfigured driver 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Matched intel as autoconfigured driver 1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Matched modesetting as autoconfigured driver 2
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Matched fbdev as autoconfigured driver 3
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Matched vesa as autoconfigured driver 4
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Assigned the driver to the xf86ConfigLayout
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "intel"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module intel: vendor="X.Org Foundation"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         compiled for 1.18.4, module version = 2.99.917
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Module class: X.Org Video Driver
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         ABI class: X.Org Video Driver, version 20.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "modesetting"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module modesetting: vendor="X.Org Foundation"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         compiled for 1.18.4, module version = 1.18.4
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Module class: X.Org Video Driver
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         ABI class: X.Org Video Driver, version 20.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "fbdev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) Warning, couldn't open module fbdev
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) UnloadModule: "fbdev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Unloading fbdev
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "vesa"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) Warning, couldn't open module vesa
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) UnloadModule: "vesa"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Unloading vesa
Aug 30 10:11:59 BW3PC systemd[364]: Reached target Sockets.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (EE) Failed to load module "vesa" (module does not exist, 0)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20160425
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): SNA compiled from 2.99.917-697-g12c14de
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) Falling back to old probe method for modesetting
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 5500
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 2 threads
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Creating default Display subsection in Screen section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         "Default Screen Section" for depth/fbbpp 24/32
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): Depth 24, (--) framebuffer bpp 32
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): RGB weight 888
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): Default visual is TrueColor
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Output eDP1 has no monitor section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Enabled output eDP1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Output DP1 has no monitor section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Enabled output DP1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Output HDMI1 has no monitor section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Enabled output HDMI1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Output DP2 has no monitor section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Enabled output DP2
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Output HDMI2 has no monitor section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Enabled output HDMI2
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) intel(0): Using a maximum size of 256x256 for hardware cursors
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Output VIRTUAL1 has no monitor section
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Enabled output VIRTUAL1
Aug 30 10:11:59 BW3PC systemd[364]: Reached target Basic System.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): TearFree disabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): DPI set to (96, 96)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading sub module "dri3"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "dri3"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module "dri3" already built-in
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading sub module "dri2"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "dri2"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module "dri2" already built-in
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading sub module "present"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "present"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module "present" already built-in
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) UnloadModule: "modesetting"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Unloading modesetting
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) Depth 24 pixmap format is 32 bpp
Aug 30 10:11:59 BW3PC systemd[364]: Reached target Default.
Aug 30 10:11:59 BW3PC systemd[364]: Startup finished in 160ms.
Aug 30 10:11:59 BW3PC systemd[1]: Started User Manager for UID 1000.
Aug 30 10:12:00 BW3PC systemd[1]: Starting WPA supplicant...
Aug 30 10:12:00 BW3PC systemd[1]: Started WPA supplicant.
Aug 30 10:12:00 BW3PC NetworkManager[331]: <info>  [1472569920.2609] supplicant: wpa_supplicant running
Aug 30 10:12:00 BW3PC NetworkManager[331]: <info>  [1472569920.2610] device (wlp3s0): supplicant interface state: init -> starting
Aug 30 10:12:00 BW3PC NetworkManager[331]: <info>  [1472569920.5196] sup-iface[0x12a5420,wlp3s0]: supports 5 scan SSIDs
Aug 30 10:12:00 BW3PC NetworkManager[331]: <info>  [1472569920.5202] device (wlp3s0): supplicant interface state: starting -> ready
Aug 30 10:12:00 BW3PC NetworkManager[331]: <info>  [1472569920.5203] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): SNA initialized with Broadwell (gen8) backend
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): Backing store enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): Silken mouse enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): HW Cursor enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): DPMS enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (==) intel(0): Display hotplug detection enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): [DRI2] Setup complete
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): [DRI2]   DRI driver: i965
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): [DRI2]   VDPAU driver: va_gl
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): direct rendering: DRI2 DRI3 enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): hardware support for Present enabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) RandR disabled
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_ARB_create_context
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_ARB_create_context_profile
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_INTEL_swap_event
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_ARB_fbconfig_float
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: enabled GLX_ARB_create_context_robustness
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) AIGLX: Loaded and initialized i965
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) GLX: Initialized DRI2 GL provider for screen 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Setting screen physical size to 508 x 285
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device Power Button (/dev/input/event3)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "libinput"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module libinput: vendor="X.Org Foundation"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         compiled for 1.18.3, module version = 0.19.0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Module class: X.Org XInput Driver
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         ABI class: X.Org XInput driver, version 22.1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 13 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'Power Button'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Power Button: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event3"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Power Button', /dev/input/event3 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Power Button', /dev/input/event3 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Power Button', /dev/input/event3 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Power Button', /dev/input/event3 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device Video Bus (/dev/input/event13)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 16 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'Video Bus'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Video Bus: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event13"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Video Bus', /dev/input/event13 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Video Bus', /dev/input/event13 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15/event13"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Video Bus', /dev/input/event13 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Video Bus', /dev/input/event13 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 17 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'Sleep Button'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Sleep Button: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event2"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Sleep Button', /dev/input/event2 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Sleep Button', /dev/input/event2 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3/event2"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Sleep Button', /dev/input/event2 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Sleep Button', /dev/input/event2 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event15)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event16)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event17)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device Integrated Camera (/dev/input/event6)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Integrated Camera: Applying InputClass "libinput keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 18 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'Integrated Camera'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Integrated Camera: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event6"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Integrated Camera', /dev/input/event6 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Integrated Camera', /dev/input/event6 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input8/event6"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 9)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Integrated Camera', /dev/input/event6 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'Integrated Camera', /dev/input/event6 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event8)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel PCH Dock Headphone (/dev/input/event10)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event11)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 19 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) AT Translated Set 2 keyboard: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event0"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) LoadModule: "synaptics"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Module synaptics: vendor="X.Org Foundation"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         compiled for 1.18.3, module version = 1.8.99
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         Module class: X.Org XInput Driver
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]:         ABI class: X.Org XInput driver, version 22.1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 20 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event12"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5676 (res 45)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1096 - 4758 (res 68)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event12"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 11)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event14)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 21 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) TPPS/2 IBM TrackPoint: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event14"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event14 is tagged by udev as: Mouse Pointingstick
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Device 'TPPS/2 IBM TrackPoint' set to const accel 1.00
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event14 is a pointer caps
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input14/event14"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 12)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "AccelerationScheme" "none"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event14 is tagged by udev as: Mouse Pointingstick
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Device 'TPPS/2 IBM TrackPoint' set to const accel 1.00
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'TPPS/2 IBM TrackPoint', /dev/input/event14 is a pointer caps
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) No input driver specified, ignoring this device.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) This device may have been added with another device file.
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 22 paused 0
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) ThinkPad Extra Buttons: always reports core events
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "Device" "/dev/input/event4"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "_source" "server/udev"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event4 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event4 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 13)
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event4 is tagged by udev as: Keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) input device 'ThinkPad Extra Buttons', /dev/input/event4 is a keyboard
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: /etc/gdm/Xsession: Beginning session setup...
Aug 30 10:12:01 BW3PC /usr/lib/gdm/gdm-x-session[370]: localuser:bennett being added to access control list
Aug 30 10:12:02 BW3PC systemd[364]: Started D-Bus User Message Bus.
Aug 30 10:12:02 BW3PC /usr/lib/gdm/gdm-x-session[370]: /etc/gdm/Xsession: Setup done, will execute: cinnamon-session-cinnamon
Aug 30 10:12:03 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): EDID vendor "AUO", prod id 13805
Aug 30 10:12:03 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Printing DDC gathered Modelines:
Aug 30 10:12:03 BW3PC /usr/lib/gdm/gdm-x-session[370]: (II) intel(0): Modeline "1920x1080"x0.0  142.00  1920 2028 2076 2100  1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
Aug 30 10:12:03 BW3PC dbus-daemon[393]: Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service'
Aug 30 10:12:03 BW3PC systemd[364]: Starting Virtual filesystem service...
Aug 30 10:12:03 BW3PC dbus-daemon[393]: Successfully activated service 'org.gtk.vfs.Daemon'
Aug 30 10:12:03 BW3PC systemd[364]: Started Virtual filesystem service.
Aug 30 10:12:03 BW3PC wpa_supplicant[373]: wlp3s0: Reject scan trigger since one is already pending
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.7474] device (wlp3s0): supplicant interface state: ready -> inactive
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.7729] policy: auto-activating connection 'Auto InternetStuff-5G'
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.7739] device (wlp3s0): Activation: starting connection 'Auto InternetStuff-5G' (9e6252be-2f0c-4ab6-b3d4-cc12fa638cc1)
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.7740] device (wlp3s0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.7742] manager: NetworkManager state is now CONNECTING
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8647] device (wlp3s0): set-hw-addr: set-cloned MAC address to 5C:E0:C5:09:49:AD (permanent)
Aug 30 10:12:03 BW3PC dbus-daemon[393]: Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service'
Aug 30 10:12:03 BW3PC kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8770] device (wlp3s0): supplicant interface state: inactive -> disabled
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8772] device (wlp3s0): state change: prepare -> config (reason 'none') [40 50 0]
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8773] device (wlp3s0): Activation: (wifi) access point 'Auto InternetStuff-5G' has security, but secrets are required.
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8773] device (wlp3s0): state change: config -> need-auth (reason 'none') [50 60 0]
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8803] device (wlp3s0): state change: need-auth -> prepare (reason 'none') [60 40 0]
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8806] device (wlp3s0): state change: prepare -> config (reason 'none') [40 50 0]
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8808] device (wlp3s0): Activation: (wifi) connection 'Auto InternetStuff-5G' has security, and secrets exist.  No new secrets needed.
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8808] Config: added 'ssid' value 'InternetStuff-5G'
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8808] Config: added 'scan_ssid' value '1'
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8808] Config: added 'key_mgmt' value 'WPA-PSK'
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8808] Config: added 'auth_alg' value 'OPEN'
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8808] Config: added 'psk' value '<omitted>'
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8940] sup-iface[0x12a5420,wlp3s0]: config: set interface ap_scan to 1
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.8942] device (wlp3s0): supplicant interface state: disabled -> inactive
Aug 30 10:12:03 BW3PC systemd[364]: Starting Accessibility services bus...
Aug 30 10:12:03 BW3PC wpa_supplicant[373]: wlp3s0: SME: Trying to authenticate with b0:7f:b9:14:23:cc (SSID='InternetStuff-5G' freq=5745 MHz)
Aug 30 10:12:03 BW3PC kernel: wlp3s0: authenticate with b0:7f:b9:14:23:cc
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.9084] device (wlp3s0): supplicant interface state: inactive -> authenticating
Aug 30 10:12:03 BW3PC wpa_supplicant[373]: wlp3s0: Trying to associate with b0:7f:b9:14:23:cc (SSID='InternetStuff-5G' freq=5745 MHz)
Aug 30 10:12:03 BW3PC kernel: wlp3s0: send auth to b0:7f:b9:14:23:cc (try 1/3)
Aug 30 10:12:03 BW3PC kernel: wlp3s0: authenticated
Aug 30 10:12:03 BW3PC kernel: wlp3s0: associate with b0:7f:b9:14:23:cc (try 1/3)
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.9141] device (wlp3s0): supplicant interface state: authenticating -> associating
Aug 30 10:12:03 BW3PC kernel: wlp3s0: RX AssocResp from b0:7f:b9:14:23:cc (capab=0x11 status=0 aid=3)
Aug 30 10:12:03 BW3PC wpa_supplicant[373]: wlp3s0: Associated with b0:7f:b9:14:23:cc
Aug 30 10:12:03 BW3PC kernel: wlp3s0: associated
Aug 30 10:12:03 BW3PC kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Aug 30 10:12:03 BW3PC NetworkManager[331]: <info>  [1472569923.9296] device (wlp3s0): supplicant interface state: associating -> associated
Aug 30 10:12:03 BW3PC dbus-daemon[393]: Successfully activated service 'org.a11y.Bus'
Aug 30 10:12:03 BW3PC systemd[364]: Started Accessibility services bus.
Aug 30 10:12:03 BW3PC at-spi-bus-launcher[410]: Activating service name='org.a11y.atspi.Registry'
Aug 30 10:12:03 BW3PC at-spi-bus-launcher[410]: ** (process:410): WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
Aug 30 10:12:03 BW3PC at-spi-bus-launcher[410]: Successfully activated service 'org.a11y.atspi.Registry'
Aug 30 10:12:03 BW3PC org.a11y.atspi.Registry[415]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Aug 30 10:12:04 BW3PC gnome-keyring-daemon[484]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 10:12:04 BW3PC gnome-keyring-daemon[483]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.3998] device (wlp3s0): supplicant interface state: associated -> completed
Aug 30 10:12:04 BW3PC /usr/lib/gdm/gdm-x-session[370]: ** Message: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 10:12:04 BW3PC wpa_supplicant[373]: wlp3s0: WPA: Key negotiation completed with b0:7f:b9:14:23:cc [PTK=CCMP GTK=CCMP]
Aug 30 10:12:04 BW3PC wpa_supplicant[373]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to b0:7f:b9:14:23:cc completed [id=0 id_str=]
Aug 30 10:12:04 BW3PC gnome-keyring-daemon[485]: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.3998] device (wlp3s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'InternetStuff-5G'.
Aug 30 10:12:04 BW3PC /usr/lib/gdm/gdm-x-session[370]: ** Message: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.3999] device (wlp3s0): state change: config -> ip-config (reason 'none') [50 70 0]
Aug 30 10:12:04 BW3PC /usr/lib/gdm/gdm-x-session[370]: ** Message: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.4091] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Aug 30 10:12:04 BW3PC /usr/lib/gdm/gdm-x-session[370]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Aug 30 10:12:04 BW3PC /usr/lib/gdm/gdm-x-session[370]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.5143] dhcp4 (wlp3s0): dhclient started with pid 495
Aug 30 10:12:04 BW3PC systemd[364]: Starting Sound Service...
Aug 30 10:12:04 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9484] device (wlp3s0): ipv6: duplicate address check failed for the fe80::bad1:b49d:1ce8:53da/64 lft forever pref forever lifetime 8-0[4294967295,4294967295] dev 3 flags tentative,permanent,0x8 src kernel addr
Aug 30 10:12:04 BW3PC kernel: IPv6: wlp3s0: IPv6 duplicate address fe80::bad1:b49d:1ce8:53da detected!
Aug 30 10:12:04 BW3PC dhclient[495]: DHCPREQUEST on wlp3s0 to 255.255.255.255 port 67
Aug 30 10:12:04 BW3PC dhclient[495]: DHCPACK from 192.168.1.1
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9845] dhcp4 (wlp3s0):   address 192.168.1.4
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9845] dhcp4 (wlp3s0):   plen 24 (255.255.255.0)
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9845] dhcp4 (wlp3s0):   gateway 192.168.1.1
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9845] dhcp4 (wlp3s0):   server identifier 192.168.1.1
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9845] dhcp4 (wlp3s0):   lease time 86400
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9846] dhcp4 (wlp3s0):   nameserver '192.168.1.1'
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9846] dhcp4 (wlp3s0): state changed unknown -> bound
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9862] device (wlp3s0): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9866] device (wlp3s0): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Aug 30 10:12:04 BW3PC nm-dispatcher[341]: req:2 'connectivity-change': new request (0 scripts)
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9869] device (wlp3s0): state change: secondaries -> activated (reason 'none') [90 100 0]
Aug 30 10:12:04 BW3PC nm-dispatcher[341]: req:2 'connectivity-change': completed: no scripts
Aug 30 10:12:04 BW3PC NetworkManager[331]: <info>  [1472569924.9871] manager: NetworkManager state is now CONNECTED_LOCAL
Aug 30 10:12:05 BW3PC systemd[1]: Starting Daemon for power management...
Aug 30 10:12:05 BW3PC dhclient[495]: bound to 192.168.1.4 -- renewal in 41474 seconds.
Aug 30 10:12:05 BW3PC NetworkManager[331]: <info>  [1472569925.1282] manager: NetworkManager state is now CONNECTED_GLOBAL
Aug 30 10:12:05 BW3PC NetworkManager[331]: <info>  [1472569925.1283] policy: set 'Auto InternetStuff-5G' (wlp3s0) as default for IPv4 routing and DNS
Aug 30 10:12:05 BW3PC NetworkManager[331]: <info>  [1472569925.1284] dns-mgr: Writing DNS information to /usr/bin/resolvconf
Aug 30 10:12:05 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
Aug 30 10:12:05 BW3PC systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Aug 30 10:12:05 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Aug 30 10:12:05 BW3PC systemd[1]: Started RealtimeKit Scheduling Policy Service.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully called chroot.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully dropped privileges.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully limited resources.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Running.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Watchdog thread running.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Canary thread running.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully made thread 507 of process 507 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 1 threads of 1 processes of 1 users.
Aug 30 10:12:05 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.UPower'
Aug 30 10:12:05 BW3PC systemd[1]: Started Daemon for power management.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 1 threads of 1 processes of 1 users.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully made thread 544 of process 507 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 2 threads of 1 processes of 1 users.
Aug 30 10:12:05 BW3PC kernel: IPv6: wlp3s0: IPv6 duplicate address fe80::d873:67f2:14f4:1af6 detected!
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 2 threads of 1 processes of 1 users.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully made thread 570 of process 507 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 3 threads of 1 processes of 1 users.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 3 threads of 1 processes of 1 users.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Successfully made thread 571 of process 507 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Aug 30 10:12:05 BW3PC rtkit-daemon[517]: Supervising 4 threads of 1 processes of 1 users.
Aug 30 10:12:06 BW3PC systemd[364]: Started Sound Service.
Aug 30 10:12:06 BW3PC dbus-daemon[393]: Activating service name='ca.desrt.dconf'
Aug 30 10:12:06 BW3PC dbus-daemon[393]: Successfully activated service 'ca.desrt.dconf'
Aug 30 10:12:06 BW3PC dbus-daemon[393]: Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service'
Aug 30 10:12:06 BW3PC NetworkManager[331]: <info>  [1472569926.2194] device (wlp3s0): Activation: successful, device activated.
Aug 30 10:12:06 BW3PC NetworkManager[331]: <info>  [1472569926.2199] manager: startup complete
Aug 30 10:12:06 BW3PC nm-dispatcher[341]: req:3 'up' [wlp3s0]: new request (0 scripts)
Aug 30 10:12:06 BW3PC systemd[364]: Starting Virtual filesystem service - disk device monitor...
Aug 30 10:12:06 BW3PC nm-dispatcher[341]: req:3 'up' [wlp3s0]: completed: no scripts
Aug 30 10:12:06 BW3PC NetworkManager[331]: <info>  [1472569926.2211] device (wlp3s0): ipv6: duplicate address check failed for the fe80::d873:67f2:14f4:1af6/64 lft forever pref forever lifetime 9-0[4294967295,4294967295] dev 3 flags tentative,permanent,0x8 src kernel addr
Aug 30 10:12:06 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
Aug 30 10:12:06 BW3PC systemd[1]: Starting Disk Manager...
Aug 30 10:12:06 BW3PC udisksd[586]: udisks daemon version 2.1.7 starting
Aug 30 10:12:06 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Aug 30 10:12:06 BW3PC udisksd[586]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Aug 30 10:12:06 BW3PC systemd[1]: Started Disk Manager.
Aug 30 10:12:06 BW3PC dbus-daemon[393]: Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Aug 30 10:12:06 BW3PC systemd[364]: Started Virtual filesystem service - disk device monitor.
Aug 30 10:12:06 BW3PC NetworkManager[331]: <info>  [1472569926.7059] device (wlp3s0): ipv6: duplicate address check failed for the fe80::695b:cc6b:e17d:5f7f/64 lft forever pref forever lifetime 10-0[4294967295,4294967295] dev 3 flags tentative,permanent,0x8 src kernel add
Aug 30 10:12:06 BW3PC NetworkManager[331]: <warn>  [1472569926.7060] device (wlp3s0): linklocal6: failed to generate an address: Too many DAD collisions
Aug 30 10:12:06 BW3PC kernel: IPv6: wlp3s0: IPv6 duplicate address fe80::695b:cc6b:e17d:5f7f detected!
Aug 30 10:12:07 BW3PC dbus[330]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'
Aug 30 10:12:07 BW3PC systemd[1]: Starting Manage, Install and Generate Color Profiles...
Aug 30 10:12:07 BW3PC systemd[1]: Starting CUPS Scheduler...
Aug 30 10:12:07 BW3PC dbus[330]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Aug 30 10:12:07 BW3PC systemd[1]: Started Manage, Install and Generate Color Profiles.
Aug 30 10:12:08 BW3PC colord[594]: /usr/lib/colord/colord-sane: error while loading shared libraries: libsane.so.1: cannot open shared object file: No such file or directory
Aug 30 10:12:08 BW3PC colord[594]: (colord:594): Cd-WARNING **: failed to get session [pid 596]: No such device or address
Aug 30 10:12:08 BW3PC systemd[1]: Started CUPS Scheduler.
Aug 30 10:12:09 BW3PC polkitd[352]: Registered Authentication Agent for unix-session:c1 (system bus name :1.27 [/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Aug 30 10:12:09 BW3PC /usr/lib/gdm/gdm-x-session[370]: Failed to play sound: Sound disabled
Aug 30 10:12:09 BW3PC cinnamon-killer-daemon[619]: Bound Cinnamon restart to <Control><Alt>Escape.
Aug 30 10:12:10 BW3PC /usr/lib/gdm/gdm-x-session[370]: sys:1: PyGIWarning: Nemo was imported without specifying a version first. Use gi.require_version('Nemo', '3.0') before import to ensure that the right version gets loaded.
Aug 30 10:12:11 BW3PC dbus-daemon[393]: Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service'
Aug 30 10:12:11 BW3PC systemd[364]: Starting Virtual filesystem metadata service...
Aug 30 10:12:11 BW3PC dbus-daemon[393]: Successfully activated service 'org.gtk.vfs.Metadata'
Aug 30 10:12:11 BW3PC systemd[364]: Started Virtual filesystem metadata service.
Aug 30 10:12:11 BW3PC /usr/lib/gdm/gdm-x-session[370]: Cjs-Message: JS LOG: About to start Cinnamon
Aug 30 10:12:11 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x7f25f000d1d0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:12 BW3PC dbus-daemon[393]: Activating service name='org.Cinnamon.Slideshow'
Aug 30 10:12:13 BW3PC dbus-daemon[393]: Successfully activated service 'org.Cinnamon.Slideshow'
Aug 30 10:12:13 BW3PC /usr/lib/gdm/gdm-x-session[370]: St-Message: cogl npot texture sizes SUPPORTED
Aug 30 10:12:13 BW3PC /usr/lib/gdm/gdm-x-session[370]: Cjs-Message: JS LOG: Cinnamon started at Tue Aug 30 2016 10:12:13 GMT-0500 (CDT)
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: Cjs-Message: JS LOG: network applet: Cannot find connection for active (or connection cannot be read)
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: openGL version 4.3 detected (GL3 Cogl Driver)
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: MetaSyncRing disabled: couldn't find required GL extensions, or the minimum safe openGL version was not met
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: Cjs-Message: JS LOG: Invalid network device type, is 14
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: Cjs-Message: JS LOG: network applet: Found connection for active
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x7f25f000d1d0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to NemoWindowPane 0x28c4f20 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:14 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to NemoWindowPane 0x2aab9e0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x29cc980 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to NemoWindowPane 0x2b254a0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:15 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:16 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:16 BW3PC /usr/lib/gdm/gdm-x-session[370]: (nemo:617): Gtk-WARNING **: Allocating size to GtkGrid 0x2af8f30 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
Aug 30 10:12:21 BW3PC /usr/lib/gdm/gdm-x-session[370]: PluginRegistry::load_plugins: Importing plugin __init__.py failed: 'module' object has no attribute 'AVAILABLE'
Aug 30 10:12:27 BW3PC systemd[364]: Time has been changed
Aug 30 10:12:27 BW3PC systemd[1]: Time has been changed
Aug 30 10:12:27 BW3PC systemd-timesyncd[327]: Synchronized to time server 107.170.224.8:123 (2.arch.pool.ntp.org).
Aug 30 10:12:33 BW3PC /usr/lib/gdm/gdm-x-session[370]: (cinnamon:610): St-WARNING **: Failed to load /home/bennett/.themes/Numix-Cinnamon/cinnamon/background-assets/popup-inside.svg: Error opening file: No such file or directory
Aug 30 10:12:33 BW3PC /usr/lib/gdm/gdm-x-session[370]: (cinnamon:610): St-WARNING **: Did not find color property '-gradient-start'
Aug 30 10:12:33 BW3PC /usr/lib/gdm/gdm-x-session[370]: (cinnamon:610): St-WARNING **: Did not find color property '-gradient-end'

Last edited by mrgiggums (2016-08-30 15:15:43)

Offline

#15 2016-08-30 15:20:33

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

R00KIE wrote:

When I looked at the description I also though the problem might be related to fast startup or whatever trickery windows does, make triple sure that it is not being used. A telltale sign that it is being used is the uptime reported in the task manager, if you see large values right after (re)booting you'll know it is using fast startup.

The uptime in task manager was less than  a minute, so that is not the problem.

newbie1962 wrote:

in my fstab I have no windows partition 8:10, but I can create and delete every time after mounting the windows partition, it would be useful to know the permissions of those partitions.
posted

ls -l /dev/sda4
$ ls -l /dev/sda4
brw-rw---- 1 root disk 8, 4 Aug 30 10:11 /dev/sda4
$ ls -l /dev/sda5
brw-rw---- 1 root disk 8, 5 Aug 30 10:11 /dev/sda5

Offline

#16 2016-08-30 20:27:57

Soukyuu
Member
Registered: 2014-04-08
Posts: 854

Re: NTFS-3g not writing to partition correctly

Hmm, it might not be the reason (but who knows for sure?), but your logs have the following:

ntfs-3g[293]: Bad mapping item ""

A quick google search for that message lead me here: https://forums.gentoo.org/viewtopic-t-8 … art-0.html

You could try accessing your NTFS partition without permissions and check if it changes anything.


[ Arch x86_64 | linux | Framework 13 | AMD Ryzen™ 5 7640U | 32GB RAM | KDE Plasma Wayland ]

Offline

#17 2016-08-30 23:20:49

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

Soukyuu wrote:

Hmm, it might not be the reason (but who knows for sure?), but your logs have the following:

ntfs-3g[293]: Bad mapping item ""

A quick google search for that message lead me here: https://forums.gentoo.org/viewtopic-t-8 … art-0.html

You could try accessing your NTFS partition without permissions and check if it changes anything.

It turns out you can't have empty lines so I fixed that and the error disappeared, but I still can't write.

Offline

#18 2016-08-31 15:10:11

newbie1962
Member
From: italy
Registered: 2012-07-24
Posts: 137

Re: NTFS-3g not writing to partition correctly

I would try to do a check of the disk and see if the disc is to break with GSmartControl.
edit
or try so in fstab x see if he writes

 ntfs-3g    uid=your user,gid=users,umask=0022    0       0

Last edited by newbie1962 (2016-08-31 15:14:45)


hp-envy dv7

Offline

#19 2016-08-31 19:23:24

mrgiggums
Member
Registered: 2016-01-09
Posts: 13

Re: NTFS-3g not writing to partition correctly

newbie1962 wrote:

I would try to do a check of the disk and see if the disc is to break with GSmartControl.
edit
or try so in fstab x see if he writes

 ntfs-3g    uid=your user,gid=users,umask=0022    0       0

I tried those options in fstab but it still doesn't work. I also reformatted with mkfs and that didn't work either.

Offline

Board footer

Powered by FluxBB