You are not logged in.

#1 2015-12-28 23:53:01

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

[Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

I have recently purchased a Lenovo E460 containing an Intel Wireless 8260 [8086:24f3] (rev 3a) subsystem [8086:1130] and have been working on setting it up with Arch.  I am having some difficulties, however, getting the wireless adapter to work properly.  Currently my system is not loading any drivers for the adapter as can be seen by

lspci -v

:

01:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)
	Subsystem: Intel Corporation Device 1130
	Flags: fast devsel, IRQ 255
	Memory at f1100000 (64-bit, non-prefetchable) [disabled] [size=8K]
	Capabilities: [c8] Power Management version 3
	Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+
	Capabilities: [40] Express Endpoint, MSI 00
	Capabilities: [100] Advanced Error Reporting
	Capabilities: [140] Device Serial Number a4-34-d9-ff-ff-44-7f-0f
	Capabilities: [14c] Latency Tolerance Reporting
	Capabilities: [154] L1 PM Substates

thus

ip link

also sees nothing:

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s31f6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN mode DEFAULT group default qlen 1000
    link/ether 50:7b:9d:70:5d:ea brd ff:ff:ff:ff:ff:ff

I am currently running on a fresh install of Arch; however, I have installed the linux-firmware package from the testing repo instead of the core repo to try to fix the problem.  It has made no difference.

On my previous install I managed to make some "progress" following the instructions in this Ubuntu thread (*Note: This thread seems to describe my problem exactly.  We have the exact same wireless card --down to the subsystem--):
http://askubuntu.com/questions/693109/i … ed-network

I had to install linux-headers to follow these steps.  I have no output to share for the results of this, I appologize.  However, this resulted in drivers being loaded for my device, but ip link could not set the interface to "UP".  No error message seemed to be given; it simply would not change.  It was at this point that I defaulted to reinstalling arch as I was unsure how to reverse what I had done.

Now on the Arch forums I have found a similar problem, only with an intel 7265 instead of 8260:
https://bbs.archlinux.org/viewtopic.php?id=206133

The hardware is different, but the solution that this poster refers to seems very similar to the solution I have previously found. This second post in this Arch Thread says to install the package by making a PKGBUILD.

At this point I believe I have 3 questions:

1)The proposed solutions have me using backports.  Since these posts have been made, newer backports have been release.  Should I use these newer ones instead?

2)Did my first attempt likely fail because I did not install with a PKGBUILD?

3)I have also found these gits provided by intel and wonder if they could be a better solution to my problem; however, I have no idea how to go about applying them.
http://git.kernel.org/cgit/linux/kernel … rmware.git
http://git.kernel.org/cgit/linux/kernel … -fixes.git


I am new to this forum and forums in general, so if I have made any mistakes in creating this post or I should have given information more clearly, please provide me with feedback.

Last edited by forrest.koch (2015-12-31 05:02:52)

Offline

#2 2015-12-28 23:58:25

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

Have you checked dmesg to get a hint first? No mention of of iwlwifi at all? How does lspci -k look? What's listed in "Kernel modules:" (not "Kernel driver in use:")

Last edited by tom.ty89 (2015-12-28 23:59:33)

Offline

#3 2015-12-29 00:09:31

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

dmesg | grep iwlwifi

returns nothing

lspci -k

yields:

01:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)
	Subsystem: Intel Corporation Device 1130

Furthermore

lsmod | grep iwlwifi

returns nothing unless I first run

modprobe iwlwifi

Last edited by forrest.koch (2015-12-29 00:13:58)

Offline

#4 2015-12-29 00:17:09

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

What's its ID? (lspci -nn) oops sorry didn't notice that it's in the topic

Last edited by tom.ty89 (2015-12-29 00:21:25)

Offline

#5 2015-12-29 00:24:13

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

The ID is [8086:24f3]

What I find interesting though is that this product ID is listed as first seen in Kernel 3.x (https://wikidevi.com/wiki/List_of_Wi-Fi … s_in_Linux, but the Intel page only gives drivers for 4.1+.  Probably unrelated but a further source of confusion for me. (Unless they are referring to backports)

Offline

#6 2015-12-29 00:30:33

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

You probably need this patch: https://git.kernel.org/cgit/linux/kerne … 2d2b9da187
which is available since 4.2.7 / 4.3.1
Apparently a mistake has been made for you card. You can see 24F4/1130 is removed and 24F3/1130 is added instead in the patch:

forrest.koch wrote:
01:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)
	Subsystem: Intel Corporation Device 1130

Last edited by tom.ty89 (2015-12-29 00:33:29)

Offline

#7 2015-12-29 00:39:02

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

Sorry for the noob question, I am relatively new to Arch (coming from Ubuntu, so it's a bit of a learning curve for me), but how would I go about applying that patch?  Also I am running kernel version 4.2.5, will this be an issue?

EDIT: I'm researching it now, though you can point me to some reading material if you'd like!

Last edited by forrest.koch (2015-12-29 00:41:11)

Offline

#8 2015-12-29 00:49:21

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

You need to rebuild the kernel (or maybe the module alone, but I am not sure if it's possible) with the patch applied, or just build the latest release of 4.2 branch (4.2.8). Truth is linux-lts in the repo has the patched applied, maybe you can use it for now. Enabling [testing] repo can get you 4.3.3, but I don't really recommend it.

See also: https://wiki.archlinux.org/index.php/Ke … ild_System

Last edited by tom.ty89 (2015-12-29 00:50:06)

Offline

#9 2015-12-29 00:58:14

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

Thank you for your help, I will look into how to do this now and report back with my progress.  It may be a while though because I'm not sure how long I can work on this for today.  Thanks again for your guidance.

Offline

#10 2015-12-29 04:37:18

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

Okay so I managed to successfully patch and install a custom kernel image (though ABS defaulted to 4.2.5 not 4.2.8 like I think you said?).

The drivers are now in use.  I can see this when I run lspci -v (or -nnk).

When I try to run Wifi-menu it starts with:

Scanning for networks... Could not read interface p2p-dev-wlp1s0 flags: No such Device

It takes me to the normal Blue Gui screen and I can see the wireless networks in my area.  I select mine and it exits with:

Job for netctl@wlp1s0\x2dHelloWorld.service failed because the control process exited with error code. See "systemctl status "netctl@wlp1s0\\x2dHelloWorld.service"" and "journalctl -xe" for details

and in case it helps, here are the contents of journalctl -xe:

-- Logs begin at Sat 2015-12-26 06:27:08 AEDT, end at Wed 2015-12-30 02:30:08 AEDT. --
Dec 30 02:19:00 localhost systemd[1]: Stopping Permit User Sessions...
-- Subject: Unit systemd-user-sessions.service has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-user-sessions.service has begun shutting down.
Dec 30 02:19:00 localhost systemd[1]: Removed slice system-getty.slice.
-- Subject: Unit system-getty.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit system-getty.slice has finished shutting down.
Dec 30 02:19:00 localhost systemd[1]: Stopped Permit User Sessions.
-- Subject: Unit systemd-user-sessions.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-user-sessions.service has finished shutting down.
Dec 30 02:19:00 localhost mkinitcpio[4534]: ==> Build complete.
Dec 30 02:19:00 localhost systemd[1]: Started Generate shutdown-ramfs.
-- Subject: Unit mkinitcpio-generate-shutdown-ramfs.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mkinitcpio-generate-shutdown-ramfs.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:00 localhost systemd[1]: Stopped target Remote File Systems.
-- Subject: Unit remote-fs.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit remote-fs.target has finished shutting down.
Dec 30 02:19:01 localhost dhcpcd[4547]: sending signal TERM to pid 243
Dec 30 02:19:01 localhost dhcpcd[4547]: waiting for pid 243 to exit
Dec 30 02:19:01 localhost systemd[1]: Stopped dhcpcd on all interfaces.
-- Subject: Unit dhcpcd.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dhcpcd.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Login Service.
-- Subject: Unit systemd-logind.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-logind.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Basic System.
-- Subject: Unit basic.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit basic.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Slices.
-- Subject: Unit slices.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit slices.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Removed slice User and Session Slice.
-- Subject: Unit user.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user.slice has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Paths.
-- Subject: Unit paths.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit paths.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
-- Subject: Unit systemd-ask-password-wall.path has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-ask-password-wall.path has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
-- Subject: Unit systemd-ask-password-console.path has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-ask-password-console.path has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Sockets.
-- Subject: Unit sockets.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sockets.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Closed D-Bus System Message Bus Socket.
-- Subject: Unit dbus.socket has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dbus.socket has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target System Initialization.
-- Subject: Unit sysinit.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sysinit.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopping Update UTMP about System Boot/Shutdown...
-- Subject: Unit systemd-update-utmp.service has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp.service has begun shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Setup Virtual Console.
-- Subject: Unit systemd-vconsole-setup.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-vconsole-setup.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopping Load/Save Random Seed...
-- Subject: Unit systemd-random-seed.service has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has begun shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Encrypted Volumes.
-- Subject: Unit cryptsetup.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit cryptsetup.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Swap.
-- Subject: Unit swap.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit swap.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Apply Kernel Variables.
-- Subject: Unit systemd-sysctl.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysctl.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Load/Save Random Seed.
-- Subject: Unit systemd-random-seed.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Update UTMP about System Boot/Shutdown.
-- Subject: Unit systemd-update-utmp.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Create Volatile Files and Directories.
-- Subject: Unit systemd-tmpfiles-setup.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Local File Systems.
-- Subject: Unit local-fs.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounting /run/user/0...
-- Subject: Unit run-user-0.mount has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit run-user-0.mount has begun shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounting Temporary Directory...
-- Subject: Unit tmp.mount has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit tmp.mount has begun shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounting /home...
-- Subject: Unit home.mount has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit home.mount has begun shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounting /boot...
-- Subject: Unit boot.mount has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit boot.mount has begun shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Flush Journal to Persistent Storage.
-- Subject: Unit systemd-journal-flush.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounting /var...
-- Subject: Unit var.mount has begun shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var.mount has begun shutting down.
Dec 30 02:19:01 localhost umount[4603]: umount: /var: target is busy
Dec 30 02:19:01 localhost umount[4603]: (In some cases useful info about processes that
Dec 30 02:19:01 localhost umount[4603]: use the device is found by lsof(8) or fuser(1).)
Dec 30 02:19:01 localhost systemd[1]: var.mount: Mount process exited, code=exited status=32
Dec 30 02:19:01 localhost systemd[1]: Failed unmounting /var.
-- Subject: Unit var.mount has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var.mount has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped File System Check on /dev/disk/by-uuid/92fb600b-de86-47a3-bb91-ad3f2651ef54.
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounted Temporary Directory.
-- Subject: Unit tmp.mount has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit tmp.mount has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounted /run/user/0.
-- Subject: Unit run-user-0.mount has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit run-user-0.mount has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounted /boot.
-- Subject: Unit boot.mount has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit boot.mount has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Unmounted /home.
-- Subject: Unit home.mount has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit home.mount has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Reached target Unmount All Filesystems.
-- Subject: Unit umount.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit umount.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:01 localhost systemd[1]: Stopped File System Check on /dev/disk/by-uuid/47c4229c-9e4e-442a-897e-0e950cb89cf2.
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped target Local File Systems (Pre).
-- Subject: Unit local-fs-pre.target has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs-pre.target has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Remount Root and Kernel File Systems.
-- Subject: Unit systemd-remount-fs.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-remount-fs.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Stopped Create Static Device Nodes in /dev.
-- Subject: Unit systemd-tmpfiles-setup-dev.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup-dev.service has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Removed slice system-systemd\x2dfsck.slice.
-- Subject: Unit system-systemd\x2dfsck.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit system-systemd\x2dfsck.slice has finished shutting down.
Dec 30 02:19:01 localhost systemd[1]: Reached target Shutdown.
-- Subject: Unit shutdown.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit shutdown.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:01 localhost systemd[1]: Reached target Final Step.
-- Subject: Unit final.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit final.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:01 localhost systemd[1]: Starting Reboot...
-- Subject: Unit systemd-reboot.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-reboot.service has begun starting up.
Dec 30 02:19:01 localhost systemd[1]: Shutting down.
Dec 30 02:19:01 localhost systemd-shutdown[1]: Sending SIGTERM to remaining processes...
Dec 30 02:19:01 localhost systemd-journald[124]: Journal stopped
-- Subject: The journal has been stopped
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The system journal process has shut down and closed all currently
-- active journal files.
-- Reboot --
Dec 30 02:19:22 localhost systemd-journald[139]: Runtime journal (/run/log/journal/) is currently using 8.0M.
                                                 Maximum allowed usage is set to 393.6M.
                                                 Leaving at least 590.4M free (of currently available 3.8G of space).
                                                 Enforced usage limit is thus 393.6M, of which 385.6M are still available.
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys cpuset
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys cpu
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys cpuacct
Dec 30 02:19:22 localhost kernel: Linux version 4.2.5-1-custom (forrest@localhost) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Wed Dec 30 01:50:09 AEDT 2015
Dec 30 02:19:22 localhost kernel: Command line: BOOT_IMAGE=/vmlinuz-linux-custom root=UUID=a250314a-a8a8-4449-b528-242919b9d27f rw quiet
Dec 30 02:19:22 localhost kernel: x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
Dec 30 02:19:22 localhost kernel: x86/fpu: xstate_offset[3]: 03c0, xstate_sizes[3]: 0040
Dec 30 02:19:22 localhost kernel: x86/fpu: xstate_offset[4]: 0400, xstate_sizes[4]: 0040
Dec 30 02:19:22 localhost kernel: x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
Dec 30 02:19:22 localhost kernel: x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
Dec 30 02:19:22 localhost kernel: x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
Dec 30 02:19:22 localhost kernel: x86/fpu: Supporting XSAVE feature 0x08: 'MPX bounds registers'
Dec 30 02:19:22 localhost kernel: x86/fpu: Supporting XSAVE feature 0x10: 'MPX CSR'
Dec 30 02:19:22 localhost kernel: x86/fpu: Enabled xstate features 0x1f, context size is 0x440 bytes, using 'standard' format.
Dec 30 02:19:22 localhost kernel: x86/fpu: Using 'eager' FPU context switches.
Dec 30 02:19:22 localhost kernel: e820: BIOS-provided physical RAM map:
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009cfff] usable
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x000000000009d000-0x00000000000fffff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000cef45fff] usable
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000cef46000-0x00000000cef46fff] ACPI NVS
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000cef47000-0x00000000cef70fff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000cef71000-0x00000000d63cafff] usable
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d63cb000-0x00000000d6408fff] type 20
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d6409000-0x00000000d7f7dfff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d7f7e000-0x00000000d7fcdfff] ACPI NVS
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d7fce000-0x00000000d7ffdfff] ACPI data
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d7ffe000-0x00000000d7ffefff] usable
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d7fff000-0x00000000d80fffff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000d9000000-0x00000000dc7fffff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000f80fa000-0x00000000f80fafff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000f80fd000-0x00000000f80fdfff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Dec 30 02:19:22 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x00000002227fffff] usable
Dec 30 02:19:22 localhost kernel: NX (Execute Disable) protection: active
Dec 30 02:19:22 localhost kernel: efi: EFI v2.40 by Lenovo
Dec 30 02:19:22 localhost kernel: efi:  SMBIOS=0xd7c05000  ACPI=0xd7ffd000  ACPI 2.0=0xd7ffd014  ESRT=0xd70d2000 
Dec 30 02:19:22 localhost kernel: esrt: Reserving ESRT space from 0x00000000d70d2000 to 0x00000000d70d2038.
Dec 30 02:19:22 localhost kernel: SMBIOS 2.8 present.
Dec 30 02:19:22 localhost kernel: DMI: LENOVO 20ETCTO1WW/20ETCTO1WW, BIOS R00ET32W (1.07 ) 10/14/2015
Dec 30 02:19:22 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Dec 30 02:19:22 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Dec 30 02:19:22 localhost kernel: e820: last_pfn = 0x222800 max_arch_pfn = 0x400000000
Dec 30 02:19:22 localhost kernel: MTRR default type: write-back
Dec 30 02:19:22 localhost kernel: MTRR fixed ranges enabled:
Dec 30 02:19:22 localhost kernel:   00000-9FFFF write-back
Dec 30 02:19:22 localhost kernel:   A0000-BFFFF uncachable
Dec 30 02:19:22 localhost kernel:   C0000-FFFFF write-protect
Dec 30 02:19:22 localhost kernel: MTRR variable ranges enabled:
Dec 30 02:19:22 localhost kernel:   0 base 00E0000000 mask 7FE0000000 uncachable
Dec 30 02:19:22 localhost kernel:   1 base 00DC000000 mask 7FFC000000 uncachable
Dec 30 02:19:22 localhost kernel:   2 base 00DA000000 mask 7FFE000000 uncachable
Dec 30 02:19:22 localhost kernel:   3 disabled
Dec 30 02:19:22 localhost kernel:   4 disabled
Dec 30 02:19:22 localhost kernel:   5 disabled
Dec 30 02:19:22 localhost kernel:   6 disabled
Dec 30 02:19:22 localhost kernel:   7 disabled
Dec 30 02:19:22 localhost kernel:   8 disabled
Dec 30 02:19:22 localhost kernel:   9 disabled
Dec 30 02:19:22 localhost kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Dec 30 02:19:22 localhost kernel: e820: last_pfn = 0xd7fff max_arch_pfn = 0x400000000
Dec 30 02:19:22 localhost kernel: Scanning 1 areas for low memory corruption
Dec 30 02:19:22 localhost kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
Dec 30 02:19:22 localhost kernel: Using GB pages for direct mapping
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
Dec 30 02:19:22 localhost kernel:  [mem 0x00000000-0x000fffff] page 4k
Dec 30 02:19:22 localhost kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
Dec 30 02:19:22 localhost kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
Dec 30 02:19:22 localhost kernel: BRK [0x01b38000, 0x01b38fff] PGTABLE
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0x222600000-0x2227fffff]
Dec 30 02:19:22 localhost kernel:  [mem 0x222600000-0x2227fffff] page 2M
Dec 30 02:19:22 localhost kernel: BRK [0x01b39000, 0x01b39fff] PGTABLE
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0x220000000-0x2225fffff]
Dec 30 02:19:22 localhost kernel:  [mem 0x220000000-0x2225fffff] page 2M
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0x200000000-0x21fffffff]
Dec 30 02:19:22 localhost kernel:  [mem 0x200000000-0x21fffffff] page 2M
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0x00100000-0xcef45fff]
Dec 30 02:19:22 localhost kernel:  [mem 0x00100000-0x001fffff] page 4k
Dec 30 02:19:22 localhost kernel:  [mem 0x00200000-0x3fffffff] page 2M
Dec 30 02:19:22 localhost kernel:  [mem 0x40000000-0xbfffffff] page 1G
Dec 30 02:19:22 localhost kernel:  [mem 0xc0000000-0xcedfffff] page 2M
Dec 30 02:19:22 localhost kernel:  [mem 0xcee00000-0xcef45fff] page 4k
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0xcef71000-0xd63cafff]
Dec 30 02:19:22 localhost kernel:  [mem 0xcef71000-0xceffffff] page 4k
Dec 30 02:19:22 localhost kernel:  [mem 0xcf000000-0xd61fffff] page 2M
Dec 30 02:19:22 localhost kernel:  [mem 0xd6200000-0xd63cafff] page 4k
Dec 30 02:19:22 localhost kernel: BRK [0x01b3a000, 0x01b3afff] PGTABLE
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0xd7ffe000-0xd7ffefff]
Dec 30 02:19:22 localhost kernel:  [mem 0xd7ffe000-0xd7ffefff] page 4k
Dec 30 02:19:22 localhost kernel: BRK [0x01b3b000, 0x01b3bfff] PGTABLE
Dec 30 02:19:22 localhost kernel: init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Dec 30 02:19:22 localhost kernel:  [mem 0x100000000-0x1ffffffff] page 1G
Dec 30 02:19:22 localhost kernel: RAMDISK: [mem 0x37804000-0x37bf9fff]
Dec 30 02:19:22 localhost kernel: ACPI: Early table checksum verification disabled
Dec 30 02:19:22 localhost kernel: ACPI: RSDP 0x00000000D7FFD014 000024 (v02 LENOVO)
Dec 30 02:19:22 localhost kernel: ACPI: XSDT 0x00000000D7FD0188 0000EC (v01 LENOVO TP-R00   00000000 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: FACP 0x00000000D7FF2000 0000F4 (v05 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: DSDT 0x00000000D7FD9000 01124C (v02 LENOVO TP-R00   00000320 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: FACS 0x00000000D7F8F000 000040
Dec 30 02:19:22 localhost kernel: ACPI: TCPA 0x00000000D7FFB000 000032 (v02 LENOVO TP-R00   00000002 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0x00000000D7FFA000 0004B7 (v02 LENOVO Tpm2Tabl 00001000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0x00000000D7FF9000 00004B (v02 LENOVO MeSsdt   00003000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: TPM2 0x00000000D7FF8000 000034 (v03 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: UEFI 0x00000000D7FA6000 000042 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0x00000000D7FF3000 004E0A (v02 LENOVO SaSsdt   00003000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: ASF! 0x00000000D7FF1000 0000A5 (v32 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: ECDT 0x00000000D7FF0000 000052 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: HPET 0x00000000D7FEF000 000038 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: LPIT 0x00000000D7FEE000 000094 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: APIC 0x00000000D7FED000 0000BC (v03 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: MCFG 0x00000000D7FEC000 00003C (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: WDAT 0x00000000D7FEB000 000134 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0x00000000D7FD7000 001AFC (v01 LENOVO SataAhci 00001000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: DBGP 0x00000000D7FD6000 000034 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: DBG2 0x00000000D7FD5000 000054 (v00 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: BOOT 0x00000000D7FD4000 000028 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: BATB 0x00000000D7FD3000 000046 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0x00000000D7FD2000 000E58 (v02 LENOVO CpuSsdt  00003000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0x00000000D7FD1000 0003D9 (v02 LENOVO CtdpB    00001000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: MSDM 0x00000000D7FFC000 000055 (v03 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: FPDT 0x00000000D7FCF000 000044 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: BGRT 0x00000000D7FCE000 000038 (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: UEFI 0x00000000D7F8D000 00012A (v01 LENOVO TP-R00   00000320 PTEC 00000002)
Dec 30 02:19:22 localhost kernel: ACPI: Local APIC address 0xfee00000
Dec 30 02:19:22 localhost kernel: No NUMA configuration found
Dec 30 02:19:22 localhost kernel: Faking a node at [mem 0x0000000000000000-0x00000002227fffff]
Dec 30 02:19:22 localhost kernel: NODE_DATA(0) allocated [mem 0x2227fa000-0x2227fdfff]
Dec 30 02:19:22 localhost kernel:  [ffffea0000000000-ffffea00089fffff] PMD -> [ffff880219e00000-ffff880221dfffff] on node 0
Dec 30 02:19:22 localhost kernel: Zone ranges:
Dec 30 02:19:22 localhost kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Dec 30 02:19:22 localhost kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Dec 30 02:19:22 localhost kernel:   Normal   [mem 0x0000000100000000-0x00000002227fffff]
Dec 30 02:19:22 localhost kernel: Movable zone start for each node
Dec 30 02:19:22 localhost kernel: Early memory node ranges
Dec 30 02:19:22 localhost kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Dec 30 02:19:22 localhost kernel:   node   0: [mem 0x0000000000059000-0x000000000009cfff]
Dec 30 02:19:22 localhost kernel:   node   0: [mem 0x0000000000100000-0x00000000cef45fff]
Dec 30 02:19:22 localhost kernel:   node   0: [mem 0x00000000cef71000-0x00000000d63cafff]
Dec 30 02:19:22 localhost kernel:   node   0: [mem 0x00000000d7ffe000-0x00000000d7ffefff]
Dec 30 02:19:22 localhost kernel:   node   0: [mem 0x0000000100000000-0x00000002227fffff]
Dec 30 02:19:22 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000002227fffff]
Dec 30 02:19:22 localhost kernel: On node 0 totalpages: 2067260
Dec 30 02:19:22 localhost kernel:   DMA zone: 64 pages used for memmap
Dec 30 02:19:22 localhost kernel:   DMA zone: 22 pages reserved
Dec 30 02:19:22 localhost kernel:   DMA zone: 3995 pages, LIFO batch:0
Dec 30 02:19:22 localhost kernel:   DMA32 zone: 13647 pages used for memmap
Dec 30 02:19:22 localhost kernel:   DMA32 zone: 873377 pages, LIFO batch:31
Dec 30 02:19:22 localhost kernel:   Normal zone: 18592 pages used for memmap
Dec 30 02:19:22 localhost kernel:   Normal zone: 1189888 pages, LIFO batch:31
Dec 30 02:19:22 localhost kernel: Reserving Intel graphics stolen memory at 0xda800000-0xdc7fffff
Dec 30 02:19:22 localhost kernel: ACPI: PM-Timer IO Port: 0x1808
Dec 30 02:19:22 localhost kernel: ACPI: Local APIC address 0xfee00000
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Dec 30 02:19:22 localhost kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Dec 30 02:19:22 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Dec 30 02:19:22 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Dec 30 02:19:22 localhost kernel: ACPI: IRQ0 used by override.
Dec 30 02:19:22 localhost kernel: ACPI: IRQ9 used by override.
Dec 30 02:19:22 localhost kernel: Using ACPI (MADT) for SMP configuration information
Dec 30 02:19:22 localhost kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Dec 30 02:19:22 localhost kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0x0009d000-0x000fffff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xcef46000-0xcef46fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xcef47000-0xcef70fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd63cb000-0xd6408fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd6409000-0xd7f7dfff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd7f7e000-0xd7fcdfff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd7fce000-0xd7ffdfff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd7fff000-0xd80fffff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd8100000-0xd8ffffff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xd9000000-0xdc7fffff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xdc800000-0xf80f9fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xf80fa000-0xf80fafff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xf80fb000-0xf80fcfff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xf80fd000-0xf80fdfff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xf80fe000-0xfdffffff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Dec 30 02:19:22 localhost kernel: PM: Registered nosave memory: [mem 0xfe011000-0xffffffff]
Dec 30 02:19:22 localhost kernel: e820: [mem 0xdc800000-0xf80f9fff] available for PCI devices
Dec 30 02:19:22 localhost kernel: Booting paravirtualized kernel on bare hardware
Dec 30 02:19:22 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Dec 30 02:19:22 localhost kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
Dec 30 02:19:22 localhost kernel: PERCPU: Embedded 32 pages/cpu @ffff880222400000 s91480 r8192 d31400 u262144
Dec 30 02:19:22 localhost kernel: pcpu-alloc: s91480 r8192 d31400 u262144 alloc=1*2097152
Dec 30 02:19:22 localhost kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Dec 30 02:19:22 localhost kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 2034935
Dec 30 02:19:22 localhost kernel: Policy zone: Normal
Dec 30 02:19:22 localhost kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux-custom root=UUID=a250314a-a8a8-4449-b528-242919b9d27f rw quiet
Dec 30 02:19:22 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Dec 30 02:19:22 localhost kernel: Calgary: detecting Calgary via BIOS EBDA area
Dec 30 02:19:22 localhost kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Dec 30 02:19:22 localhost kernel: Memory: 7986604K/8269040K available (5611K kernel code, 922K rwdata, 1768K rodata, 1180K init, 1152K bss, 282436K reserved, 0K cma-reserved)
Dec 30 02:19:22 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Dec 30 02:19:22 localhost kernel: Preemptible hierarchical RCU implementation.
Dec 30 02:19:22 localhost kernel:         Build-time adjustment of leaf fanout to 64.
Dec 30 02:19:22 localhost kernel:         RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
Dec 30 02:19:22 localhost kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
Dec 30 02:19:22 localhost kernel: NR_IRQS:8448 nr_irqs:2048 16
Dec 30 02:19:22 localhost kernel: Console: colour dummy device 80x25
Dec 30 02:19:22 localhost kernel: console [tty0] enabled
Dec 30 02:19:22 localhost kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Dec 30 02:19:22 localhost kernel: hpet clockevent registered
Dec 30 02:19:22 localhost kernel: tsc: PIT calibration matches HPET. 1 loops
Dec 30 02:19:22 localhost kernel: tsc: Detected 2398.952 MHz processor
Dec 30 02:19:22 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4799.81 BogoMIPS (lpj=7996506)
Dec 30 02:19:22 localhost kernel: pid_max: default: 32768 minimum: 301
Dec 30 02:19:22 localhost kernel: ACPI: Core revision 20150619
Dec 30 02:19:22 localhost kernel: ACPI: All ACPI Tables successfully acquired
Dec 30 02:19:22 localhost kernel: Security Framework initialized
Dec 30 02:19:22 localhost kernel: Yama: becoming mindful.
Dec 30 02:19:22 localhost kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Dec 30 02:19:22 localhost kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Dec 30 02:19:22 localhost kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Dec 30 02:19:22 localhost kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys blkio
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys memory
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys devices
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys freezer
Dec 30 02:19:22 localhost kernel: Initializing cgroup subsys net_cls
Dec 30 02:19:22 localhost kernel: CPU: Physical Processor ID: 0
Dec 30 02:19:22 localhost kernel: CPU: Processor Core ID: 0
Dec 30 02:19:22 localhost kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Dec 30 02:19:22 localhost kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Dec 30 02:19:22 localhost kernel: mce: CPU supports 8 MCE banks
Dec 30 02:19:22 localhost kernel: CPU0: Thermal monitoring enabled (TM1)
Dec 30 02:19:22 localhost kernel: process: using mwait in idle threads
Dec 30 02:19:22 localhost kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Dec 30 02:19:22 localhost kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Dec 30 02:19:22 localhost kernel: Freeing SMP alternatives memory: 20K (ffffffff81a0f000 - ffffffff81a14000)
Dec 30 02:19:22 localhost kernel: ftrace: allocating 22161 entries in 87 pages
Dec 30 02:19:22 localhost kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Dec 30 02:19:22 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Dec 30 02:19:22 localhost kernel: TSC deadline timer enabled
Dec 30 02:19:22 localhost kernel: smpboot: CPU0: Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz (fam: 06, model: 4e, stepping: 03)
Dec 30 02:19:22 localhost kernel: Performance Events: no PEBS fmt3+, generic architected perfmon, full-width counters, Intel PMU driver.
Dec 30 02:19:22 localhost kernel: ... version:                4
Dec 30 02:19:22 localhost kernel: ... bit width:              48
Dec 30 02:19:22 localhost kernel: ... generic registers:      4
Dec 30 02:19:22 localhost kernel: ... value mask:             0000ffffffffffff
Dec 30 02:19:22 localhost kernel: ... max period:             0000ffffffffffff
Dec 30 02:19:22 localhost kernel: ... fixed-purpose events:   3
Dec 30 02:19:22 localhost kernel: ... event mask:             000000070000000f
Dec 30 02:19:22 localhost kernel: x86: Booting SMP configuration:
Dec 30 02:19:22 localhost kernel: .... node  #0, CPUs:      #1
Dec 30 02:19:22 localhost kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Dec 30 02:19:22 localhost kernel:  #2 #3
Dec 30 02:19:22 localhost kernel: x86: Booted up 1 node, 4 CPUs
Dec 30 02:19:22 localhost kernel: smpboot: Total of 4 processors activated (19199.26 BogoMIPS)
Dec 30 02:19:22 localhost kernel: devtmpfs: initialized
Dec 30 02:19:22 localhost kernel: PM: Registering ACPI NVS region [mem 0xcef46000-0xcef46fff] (4096 bytes)
Dec 30 02:19:22 localhost kernel: PM: Registering ACPI NVS region [mem 0xd7f7e000-0xd7fcdfff] (327680 bytes)
Dec 30 02:19:22 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Dec 30 02:19:22 localhost kernel: pinctrl core: initialized pinctrl subsystem
Dec 30 02:19:22 localhost kernel: RTC time: 15:19:21, date: 12/29/15
Dec 30 02:19:22 localhost kernel: NET: Registered protocol family 16
Dec 30 02:19:22 localhost kernel: cpuidle: using governor ladder
Dec 30 02:19:22 localhost kernel: cpuidle: using governor menu
Dec 30 02:19:22 localhost kernel: Simple Boot Flag at 0x47 set to 0x1
Dec 30 02:19:22 localhost kernel: ACPI: bus type PCI registered
Dec 30 02:19:22 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Dec 30 02:19:22 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Dec 30 02:19:22 localhost kernel: PCI: not using MMCONFIG
Dec 30 02:19:22 localhost kernel: PCI: Using configuration type 1 for base access
Dec 30 02:19:22 localhost kernel: ACPI: Added _OSI(Module Device)
Dec 30 02:19:22 localhost kernel: ACPI: Added _OSI(Processor Device)
Dec 30 02:19:22 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Dec 30 02:19:22 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
Dec 30 02:19:22 localhost kernel: ACPI : EC: EC description table is found, configuring boot EC
Dec 30 02:19:22 localhost kernel: ACPI : EC: EC started
Dec 30 02:19:22 localhost kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Dec 30 02:19:22 localhost kernel: ACPI: Dynamic OEM Table Load:
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0xFFFF880218588800 0003CF (v02 PmRef  Cpu0Cst  00003001 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: Dynamic OEM Table Load:
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0xFFFF880218BC8800 00071D (v02 PmRef  Cpu0Ist  00003000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: Dynamic OEM Table Load:
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0xFFFF880218BC9000 0005AA (v02 PmRef  ApIst    00003000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: Dynamic OEM Table Load:
Dec 30 02:19:22 localhost kernel: ACPI: SSDT 0xFFFF880218584000 000119 (v02 PmRef  ApCst    00003000 INTL 20141107)
Dec 30 02:19:22 localhost kernel: ACPI: Interpreter enabled
Dec 30 02:19:22 localhost kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150619/hwxface-580)
Dec 30 02:19:22 localhost kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)
Dec 30 02:19:22 localhost kernel: ACPI: (supports S0 S3 S4 S5)
Dec 30 02:19:22 localhost kernel: ACPI: Using IOAPIC for interrupt routing
Dec 30 02:19:22 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Dec 30 02:19:22 localhost kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
Dec 30 02:19:22 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Dec 30 02:19:22 localhost kernel: ACPI: Power Resource [PUBS] (on)
Dec 30 02:19:22 localhost kernel: ACPI: Power Resource [PG00] (on)
Dec 30 02:19:22 localhost kernel: ACPI: Power Resource [PG01] (on)
Dec 30 02:19:22 localhost kernel: ACPI: Power Resource [PG02] (on)
Dec 30 02:19:22 localhost kernel: ACPI: Power Resource [WRST] (off)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Dec 30 02:19:22 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Dec 30 02:19:22 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 30 02:19:22 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
Dec 30 02:19:22 localhost kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Dec 30 02:19:22 localhost kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Dec 30 02:19:22 localhost kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
Dec 30 02:19:22 localhost kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Dec 30 02:19:22 localhost kernel: PCI host bridge to bus 0000:00
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-3f]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xdc800000-0xfeafffff window]
Dec 30 02:19:22 localhost kernel: pci 0000:00:00.0: [8086:1904] type 00 class 0x060000
Dec 30 02:19:22 localhost kernel: pci 0000:00:02.0: [8086:1916] type 00 class 0x030000
Dec 30 02:19:22 localhost kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf0ffffff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Dec 30 02:19:22 localhost kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Dec 30 02:19:22 localhost kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
Dec 30 02:19:22 localhost kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf1220000-0xf122ffff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
Dec 30 02:19:22 localhost kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
Dec 30 02:19:22 localhost kernel: pci 0000:00:14.2: reg 0x10: [mem 0xf124a000-0xf124afff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
Dec 30 02:19:22 localhost kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf124b000-0xf124bfff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:16.0: PME# supported from D3hot
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: [8086:9d03] type 00 class 0x010601
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: reg 0x10: [mem 0xf1248000-0xf1249fff]
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: reg 0x14: [mem 0xf124e000-0xf124e0ff]
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: reg 0x18: [io  0x3080-0x3087]
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: reg 0x1c: [io  0x3088-0x308b]
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: reg 0x20: [io  0x3060-0x307f]
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: reg 0x24: [mem 0xf124c000-0xf124c7ff]
Dec 30 02:19:22 localhost kernel: pci 0000:00:17.0: PME# supported from D3hot
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.0: [8086:9d12] type 01 class 0x060400
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.5: [8086:9d15] type 01 class 0x060400
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.0: [8086:9d48] type 00 class 0x060100
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xf1244000-0xf1247fff]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.3: [8086:9d70] type 00 class 0x040300
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf1240000-0xf1243fff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xf1230000-0xf123ffff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xf124d000-0xf124d0ff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.6: [8086:1570] type 00 class 0x020000
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xf1200000-0xf121ffff]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:00:1f.6: System wakeup disabled by ACPI
Dec 30 02:19:22 localhost kernel: pci 0000:01:00.0: [8086:24f3] type 00 class 0x028000
Dec 30 02:19:22 localhost kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf1100000-0xf1101fff 64bit]
Dec 30 02:19:22 localhost kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:01:00.0: System wakeup disabled by ACPI
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Dec 30 02:19:22 localhost kernel: pci 0000:02:00.0: [10ec:522a] type 00 class 0xff0000
Dec 30 02:19:22 localhost kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf1000000-0xf1000fff]
Dec 30 02:19:22 localhost kernel: pci 0000:02:00.0: supports D1 D2
Dec 30 02:19:22 localhost kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Dec 30 02:19:22 localhost kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 02]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0xf1000000-0xf10fffff]
Dec 30 02:19:22 localhost kernel: ACPI: Enabled 5 GPEs in block 00 to 7F
Dec 30 02:19:22 localhost kernel: ACPI : EC: GPE = 0x20, I/O: command/status = 0x66, data = 0x62
Dec 30 02:19:22 localhost kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=mem,locks=none
Dec 30 02:19:22 localhost kernel: vgaarb: loaded
Dec 30 02:19:22 localhost kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
Dec 30 02:19:22 localhost kernel: vgaarb: bridge control possible 0000:00:02.0
Dec 30 02:19:22 localhost kernel: PCI: Using ACPI for IRQ routing
Dec 30 02:19:22 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
Dec 30 02:19:22 localhost kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Dec 30 02:19:22 localhost kernel: e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
Dec 30 02:19:22 localhost kernel: e820: reserve RAM buffer [mem 0xcef46000-0xcfffffff]
Dec 30 02:19:22 localhost kernel: e820: reserve RAM buffer [mem 0xd63cb000-0xd7ffffff]
Dec 30 02:19:22 localhost kernel: e820: reserve RAM buffer [mem 0xd7fff000-0xd7ffffff]
Dec 30 02:19:22 localhost kernel: e820: reserve RAM buffer [mem 0x222800000-0x223ffffff]
Dec 30 02:19:22 localhost kernel: NetLabel: Initializing
Dec 30 02:19:22 localhost kernel: NetLabel:  domain hash size = 128
Dec 30 02:19:22 localhost kernel: NetLabel:  protocols = UNLABELED CIPSOv4
Dec 30 02:19:22 localhost kernel: NetLabel:  unlabeled traffic allowed by default
Dec 30 02:19:22 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Dec 30 02:19:22 localhost kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Dec 30 02:19:22 localhost kernel: clocksource: Switched to clocksource hpet
Dec 30 02:19:22 localhost kernel: pnp: PnP ACPI init
Dec 30 02:19:22 localhost kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:00: [mem 0x00100000-0xdc7fffff] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:00: [mem 0xfed4c000-0xffffffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Dec 30 02:19:22 localhost kernel: system 00:01: [io  0x1800-0x189f] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [io  0x1600-0x167f] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xfed90000-0xfed93fff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: [mem 0xdc800000-0xdc81ffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 30 02:19:22 localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Dec 30 02:19:22 localhost kernel: pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Dec 30 02:19:22 localhost kernel: pnp 00:04: Plug and Play ACPI device, IDs LEN2020 PNP0f13 (active)
Dec 30 02:19:22 localhost kernel: system 00:05: [io  0x1854-0x1857] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 30 02:19:22 localhost kernel: system 00:07: [io  0x2000-0x20fe] has been reserved
Dec 30 02:19:22 localhost kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 30 02:19:22 localhost kernel: pnp: PnP ACPI: found 8 devices
Dec 30 02:19:22 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0xf1100000-0xf11fffff]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 02]
Dec 30 02:19:22 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0xf1000000-0xf10fffff]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:00: resource 19 [mem 0xdc800000-0xfeafffff window]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xf1100000-0xf11fffff]
Dec 30 02:19:22 localhost kernel: pci_bus 0000:02: resource 1 [mem 0xf1000000-0xf10fffff]
Dec 30 02:19:22 localhost kernel: NET: Registered protocol family 2
Dec 30 02:19:22 localhost kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Dec 30 02:19:22 localhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Dec 30 02:19:22 localhost kernel: TCP: Hash tables configured (established 65536 bind 65536)
Dec 30 02:19:22 localhost kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
Dec 30 02:19:22 localhost kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Dec 30 02:19:22 localhost kernel: NET: Registered protocol family 1
Dec 30 02:19:22 localhost kernel: pci 0000:00:02.0: Video device with shadowed ROM
Dec 30 02:19:22 localhost kernel: PCI: CLS 0 bytes, default 64
Dec 30 02:19:22 localhost kernel: Unpacking initramfs...
Dec 30 02:19:22 localhost kernel: Freeing initrd memory: 4056K (ffff880037804000 - ffff880037bfa000)
Dec 30 02:19:22 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Dec 30 02:19:22 localhost kernel: software IO TLB [mem 0xc9c86000-0xcdc86000] (64MB) mapped at [ffff8800c9c86000-ffff8800cdc85fff]
Dec 30 02:19:22 localhost kernel: microcode: CPU0 sig=0x406e3, pf=0x80, revision=0x33
Dec 30 02:19:22 localhost kernel: microcode: CPU1 sig=0x406e3, pf=0x80, revision=0x33
Dec 30 02:19:22 localhost kernel: microcode: CPU2 sig=0x406e3, pf=0x80, revision=0x33
Dec 30 02:19:22 localhost kernel: microcode: CPU3 sig=0x406e3, pf=0x80, revision=0x33
Dec 30 02:19:22 localhost kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Dec 30 02:19:22 localhost kernel: Scanning for low memory corruption every 60 seconds
Dec 30 02:19:22 localhost kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
Dec 30 02:19:22 localhost kernel: Initialise system trusted keyring
Dec 30 02:19:22 localhost kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Dec 30 02:19:22 localhost kernel: zpool: loaded
Dec 30 02:19:22 localhost kernel: zbud: loaded
Dec 30 02:19:22 localhost kernel: VFS: Disk quotas dquot_6.6.0
Dec 30 02:19:22 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dec 30 02:19:22 localhost kernel: Key type big_key registered
Dec 30 02:19:22 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
Dec 30 02:19:22 localhost kernel: io scheduler noop registered
Dec 30 02:19:22 localhost kernel: io scheduler deadline registered
Dec 30 02:19:22 localhost kernel: io scheduler cfq registered (default)
Dec 30 02:19:22 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Dec 30 02:19:22 localhost kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Dec 30 02:19:22 localhost kernel: efifb: probing for efifb
Dec 30 02:19:22 localhost kernel: efifb: framebuffer at 0xe0000000, mapped to 0xffffc90001000000, using 4160k, total 4160k
Dec 30 02:19:22 localhost kernel: efifb: mode is 1366x768x32, linelength=5504, pages=1
Dec 30 02:19:22 localhost kernel: efifb: scrolling: redraw
Dec 30 02:19:22 localhost kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Dec 30 02:19:22 localhost kernel: Console: switching to colour frame buffer device 170x48
Dec 30 02:19:22 localhost kernel: fb0: EFI VGA frame buffer device
Dec 30 02:19:22 localhost kernel: intel_idle: does not run on family 6 model 78
Dec 30 02:19:22 localhost kernel: GHES: HEST is not enabled!
Dec 30 02:19:22 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Dec 30 02:19:22 localhost kernel: Linux agpgart interface v0.103
Dec 30 02:19:22 localhost kernel: rtc_cmos 00:02: RTC can wake from S4
Dec 30 02:19:22 localhost kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Dec 30 02:19:22 localhost kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Dec 30 02:19:22 localhost kernel: Intel P-state driver initializing.
Dec 30 02:19:22 localhost kernel: intel_pstate: HWP enabled
Dec 30 02:19:22 localhost kernel: ledtrig-cpu: registered to indicate activity on CPUs
Dec 30 02:19:22 localhost kernel: NET: Registered protocol family 10
Dec 30 02:19:22 localhost kernel: NET: Registered protocol family 17
Dec 30 02:19:22 localhost kernel: Loading compiled-in X.509 certificates
Dec 30 02:19:22 localhost kernel: registered taskstats version 1
Dec 30 02:19:22 localhost kernel: zswap: loading zswap
Dec 30 02:19:22 localhost kernel: zswap: using zbud pool
Dec 30 02:19:22 localhost kernel: zswap: using lzo compressor
Dec 30 02:19:22 localhost kernel:   Magic number: 11:80:337
Dec 30 02:19:22 localhost kernel: tty tty58: hash matches
Dec 30 02:19:22 localhost kernel: rtc_cmos 00:02: setting system clock to 2015-12-29 15:19:21 UTC (1451402361)
Dec 30 02:19:22 localhost kernel: PM: Hibernation image not present or could not be loaded.
Dec 30 02:19:22 localhost kernel: Freeing unused kernel memory: 1180K (ffffffff818e8000 - ffffffff81a0f000)
Dec 30 02:19:22 localhost kernel: Write protecting the kernel read-only data: 8192k
Dec 30 02:19:22 localhost kernel: Freeing unused kernel memory: 520K (ffff88000157e000 - ffff880001600000)
Dec 30 02:19:22 localhost kernel: Freeing unused kernel memory: 280K (ffff8800017ba000 - ffff880001800000)
Dec 30 02:19:22 localhost kernel: random: systemd-tmpfile urandom read with 7 bits of entropy available
Dec 30 02:19:22 localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Dec 30 02:19:22 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Dec 30 02:19:22 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Dec 30 02:19:22 localhost kernel: ACPI: bus type USB registered
Dec 30 02:19:22 localhost kernel: usbcore: registered new interface driver usbfs
Dec 30 02:19:22 localhost kernel: usbcore: registered new interface driver hub
Dec 30 02:19:22 localhost kernel: SCSI subsystem initialized
Dec 30 02:19:22 localhost kernel: usbcore: registered new device driver usb
Dec 30 02:19:22 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Dec 30 02:19:22 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Dec 30 02:19:22 localhost kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
Dec 30 02:19:22 localhost kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Dec 30 02:19:22 localhost kernel: hub 1-0:1.0: USB hub found
Dec 30 02:19:22 localhost kernel: hub 1-0:1.0: 12 ports detected
Dec 30 02:19:22 localhost kernel: libata version 3.00 loaded.
Dec 30 02:19:22 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Dec 30 02:19:22 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Dec 30 02:19:22 localhost kernel: hub 2-0:1.0: USB hub found
Dec 30 02:19:22 localhost kernel: hub 2-0:1.0: 6 ports detected
Dec 30 02:19:22 localhost kernel: usb: failed to peer usb2-port6 and usb1-port4 by location (usb2-port6:none) (usb1-port4:usb2-port4)
Dec 30 02:19:22 localhost kernel: usb usb2-port6: failed to peer to usb1-port4 (-16)
Dec 30 02:19:22 localhost kernel: usb: port power management may be unreliable
Dec 30 02:19:22 localhost kernel: ahci 0000:00:17.0: version 3.0
Dec 30 02:19:22 localhost kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x1 impl SATA mode
Dec 30 02:19:22 localhost kernel: ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Dec 30 02:19:22 localhost kernel: scsi host0: ahci
Dec 30 02:19:22 localhost kernel: scsi host1: ahci
Dec 30 02:19:22 localhost kernel: ata1: SATA max UDMA/133 abar m2048@0xf124c000 port 0xf124c100 irq 121
Dec 30 02:19:22 localhost kernel: ata2: DUMMY
Dec 30 02:19:22 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Dec 30 02:19:22 localhost kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Dec 30 02:19:22 localhost kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Dec 30 02:19:22 localhost kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Dec 30 02:19:22 localhost kernel: ata1.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Dec 30 02:19:22 localhost kernel: ata1.00: ATA-9: SAMSUNG MZ7LF192HCGS-000L1, FXT03L1Q, max UDMA/133
Dec 30 02:19:22 localhost kernel: ata1.00: 375093936 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Dec 30 02:19:22 localhost kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Dec 30 02:19:22 localhost kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Dec 30 02:19:22 localhost kernel: ata1.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Dec 30 02:19:22 localhost kernel: ata1.00: configured for UDMA/133
Dec 30 02:19:22 localhost kernel: scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MZ7LF192 3L1Q PQ: 0 ANSI: 5
Dec 30 02:19:22 localhost kernel: sd 0:0:0:0: [sda] 375093936 512-byte logical blocks: (192 GB/178 GiB)
Dec 30 02:19:22 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off
Dec 30 02:19:22 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Dec 30 02:19:22 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Dec 30 02:19:22 localhost kernel:  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
Dec 30 02:19:22 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Dec 30 02:19:22 localhost kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
Dec 30 02:19:22 localhost kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Dec 30 02:19:22 localhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Dec 30 02:19:22 localhost systemd[1]: systemd 228 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Dec 30 02:19:22 localhost systemd[1]: Detected architecture x86-64.
Dec 30 02:19:22 localhost systemd[1]: No hostname configured.
Dec 30 02:19:22 localhost systemd[1]: Set hostname to <localhost>.
Dec 30 02:19:22 localhost systemd[1]: display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service failed to load: No such file or directory.
Dec 30 02:19:22 localhost systemd[1]: Listening on Journal Socket (/dev/log).
Dec 30 02:19:22 localhost systemd[1]: Listening on Journal Socket.
Dec 30 02:19:22 localhost systemd[1]: Created slice User and Session Slice.
Dec 30 02:19:22 localhost systemd[1]: Listening on LVM2 metadata daemon socket.
Dec 30 02:19:22 localhost systemd[1]: Reached target Remote File Systems.
Dec 30 02:19:22 localhost systemd[1]: Listening on Device-mapper event daemon FIFOs.
Dec 30 02:19:22 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Dec 30 02:19:22 localhost systemd[1]: Listening on udev Control Socket.
Dec 30 02:19:22 localhost systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Dec 30 02:19:22 localhost kernel: hub 1-1:1.0: USB hub found
Dec 30 02:19:22 localhost kernel: hub 1-1:1.0: 1 port detected
Dec 30 02:19:22 localhost systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Dec 30 02:19:22 localhost systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Dec 30 02:19:22 localhost systemd[1]: Reached target Encrypted Volumes.
Dec 30 02:19:22 localhost systemd[1]: Reached target Paths.
Dec 30 02:19:22 localhost systemd[1]: Listening on udev Kernel Socket.
Dec 30 02:19:22 localhost systemd[1]: Created slice System Slice.
Dec 30 02:19:22 localhost systemd[1]: Mounting Huge Pages File System...
Dec 30 02:19:22 localhost systemd[1]: Reached target Slices.
Dec 30 02:19:22 localhost systemd[1]: Starting Remount Root and Kernel File Systems...
Dec 30 02:19:22 localhost systemd[1]: Created slice system-getty.slice.
Dec 30 02:19:22 localhost systemd[1]: Created slice system-systemd\x2dfsck.slice.
Dec 30 02:19:22 localhost systemd[1]: Mounting POSIX Message Queue File System...
Dec 30 02:19:22 localhost systemd[1]: Mounting Temporary Directory...
Dec 30 02:19:22 localhost systemd[1]: Mounting Debug File System...
Dec 30 02:19:22 localhost systemd[1]: Starting Journal Service...
Dec 30 02:19:22 localhost systemd[1]: Mounting Configuration File System...
Dec 30 02:19:22 localhost systemd[1]: Starting Apply Kernel Variables...
Dec 30 02:19:22 localhost systemd[1]: Starting Setup Virtual Console...
Dec 30 02:19:22 localhost systemd[1]: Starting Create list of required static device nodes for the current kernel...
Dec 30 02:19:22 localhost systemd[1]: Started Create list of required static device nodes for the current kernel.
Dec 30 02:19:22 localhost systemd[1]: Started Setup Virtual Console.
Dec 30 02:19:22 localhost systemd[1]: Mounted Configuration File System.
Dec 30 02:19:22 localhost systemd[1]: Mounted Temporary Directory.
Dec 30 02:19:22 localhost systemd[1]: Mounted Debug File System.
Dec 30 02:19:22 localhost kernel: EXT4-fs (sda5): re-mounted. Opts: data=ordered
Dec 30 02:19:22 localhost systemd[1]: Mounted POSIX Message Queue File System.
Dec 30 02:19:22 localhost systemd[1]: Mounted Huge Pages File System.
Dec 30 02:19:22 localhost systemd[1]: Started Remount Root and Kernel File Systems.
Dec 30 02:19:22 localhost systemd[1]: Started Apply Kernel Variables.
Dec 30 02:19:22 localhost systemd[1]: Starting Create Static Device Nodes in /dev...
Dec 30 02:19:22 localhost systemd[1]: Starting udev Coldplug all Devices...
Dec 30 02:19:22 localhost systemd[1]: Started Create Static Device Nodes in /dev.
Dec 30 02:19:22 localhost systemd[1]: Reached target Local File Systems (Pre).
Dec 30 02:19:22 localhost systemd[1]: Starting udev Kernel Device Manager...
Dec 30 02:19:22 localhost systemd[1]: Started udev Kernel Device Manager.
Dec 30 02:19:22 localhost systemd-journald[139]: Journal started
-- Subject: The journal has been started
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The system journal process has started up, opened the journal
-- files for writing and is now ready to process requests.
Dec 30 02:19:22 localhost systemd[1]: Started Journal Service.
Dec 30 02:19:22 localhost systemd[1]: Started udev Coldplug all Devices.
-- Subject: Unit systemd-udev-trigger.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udev-trigger.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: Monitor-Mwait will be used to enter C-1 state
Dec 30 02:19:22 localhost kernel: Monitor-Mwait will be used to enter C-2 state
Dec 30 02:19:22 localhost kernel: Monitor-Mwait will be used to enter C-3 state
Dec 30 02:19:22 localhost kernel: ACPI: acpi_idle registered with cpuidle
Dec 30 02:19:22 localhost kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
Dec 30 02:19:22 localhost kernel: ACPI: Lid Switch [LID]
Dec 30 02:19:22 localhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
Dec 30 02:19:22 localhost kernel: ACPI: Sleep Button [SLPB]
Dec 30 02:19:22 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Dec 30 02:19:22 localhost kernel: ACPI: Power Button [PWRF]
Dec 30 02:19:22 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Dec 30 02:19:22 localhost systemd[1]: Found device SAMSUNG_MZ7LF192HCGS-000L1 SYSTEM.
-- Subject: Unit dev-disk-by\x2duuid-18FB\x2d6074.device has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-18FB\x2d6074.device has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: Non-volatile memory driver v1.3
Dec 30 02:19:22 localhost systemd[1]: Mounting /boot...
-- Subject: Unit boot.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit boot.mount has begun starting up.
Dec 30 02:19:22 localhost kernel: wmi: Mapper loaded
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.25
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: ThinkPad BIOS R00ET32W (1.07 ), EC unknown
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: Lenovo ThinkPad E460, model 20ETCTO1WW
Dec 30 02:19:22 localhost kernel: [drm] Initialized drm 1.1.0 20060810
Dec 30 02:19:22 localhost systemd[1]: Found device SAMSUNG_MZ7LF192HCGS-000L1 6.
-- Subject: Unit dev-disk-by\x2duuid-728eef90\x2d6b5f\x2d44b2\x2d9777\x2da448f65ffb93.device has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-728eef90\x2d6b5f\x2d44b2\x2d9777\x2da448f65ffb93.device has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Activating swap /dev/disk/by-uuid/728eef90-6b5f-44b2-9777-a448f65ffb93...
-- Subject: Unit dev-disk-by\x2duuid-728eef90\x2d6b5f\x2d44b2\x2d9777\x2da448f65ffb93.swap has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-728eef90\x2d6b5f\x2d44b2\x2d9777\x2da448f65ffb93.swap has begun starting up.
Dec 30 02:19:22 localhost kernel: i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
Dec 30 02:19:22 localhost kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Dec 30 02:19:22 localhost kernel: Adding 8388604k swap on /dev/sda6.  Priority:-1 extents:1 across:8388604k SSFS
Dec 30 02:19:22 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
Dec 30 02:19:22 localhost systemd[1]: Activated swap /dev/disk/by-uuid/728eef90-6b5f-44b2-9777-a448f65ffb93.
-- Subject: Unit dev-disk-by\x2duuid-728eef90\x2d6b5f\x2d44b2\x2d9777\x2da448f65ffb93.swap has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-728eef90\x2d6b5f\x2d44b2\x2d9777\x2da448f65ffb93.swap has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Found device SAMSUNG_MZ7LF192HCGS-000L1 8.
-- Subject: Unit dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.device has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.device has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting File System Check on /dev/disk/by-uuid/47c4229c-9e4e-442a-897e-0e950cb89cf2...
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Reached target Swap.
-- Subject: Unit swap.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit swap.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: ACPI: Battery Slot [BAT0] (battery present)
Dec 30 02:19:22 localhost systemd[1]: Found device SAMSUNG_MZ7LF192HCGS-000L1 7.
-- Subject: Unit dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.device has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.device has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: pps_core: LinuxPPS API ver. 1 registered
Dec 30 02:19:22 localhost kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Dec 30 02:19:22 localhost kernel: ACPI: AC Adapter [AC] (on-line)
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: detected a 8-level brightness capable ThinkPad
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: radio switch found; radios are enabled
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Dec 30 02:19:22 localhost systemd[1]: Starting File System Check on /dev/disk/by-uuid/92fb600b-de86-47a3-bb91-ad3f2651ef54...
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.service has begun starting up.
Dec 30 02:19:22 localhost kernel: FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Dec 30 02:19:22 localhost systemd[1]: Mounted /boot.
-- Subject: Unit boot.mount has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit boot.mount has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: PTP clock support registered
Dec 30 02:19:22 localhost kernel: AVX2 version of gcm_enc/dec engaged.
Dec 30 02:19:22 localhost kernel: AES CTR mode by8 optimization enabled
Dec 30 02:19:22 localhost kernel: usb 1-6: new full-speed USB device number 3 using xhci_hcd
Dec 30 02:19:22 localhost kernel: Intel(R) Wireless WiFi driver for Linux
Dec 30 02:19:22 localhost kernel: Copyright(c) 2003- 2015 Intel Corporation
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: Unsupported splx structure
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-8000C-15.ucode failed with error -2
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-8000C-14.ucode failed with error -2
Dec 30 02:19:22 localhost kernel: [drm] This hardware requires preliminary hardware support.
                                  See CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT, and/or modparam preliminary_hw_support
Dec 30 02:19:22 localhost kernel: snd_hda_intel 0000:00:1f.3: failed to add i915 component master (-19)
Dec 30 02:19:22 localhost kernel: e1000e: Intel(R) PRO/1000 Network Driver - 3.2.5-k
Dec 30 02:19:22 localhost kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Dec 30 02:19:22 localhost kernel: e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: loaded firmware version 25.30.13.0 op_mode iwlmvm
Dec 30 02:19:22 localhost kernel: kvm: disabled by bios
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0: CX20753/4: BIOS auto-probing.
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20753/4: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0:    mono: mono_out=0x0
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0:    inputs:
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0:      Internal Mic=0x1a
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0:      Mic=0x19
Dec 30 02:19:22 localhost kernel: intel_rapl: Found RAPL domain package
Dec 30 02:19:22 localhost kernel: intel_rapl: Found RAPL domain core
Dec 30 02:19:22 localhost kernel: intel_rapl: Found RAPL domain uncore
Dec 30 02:19:22 localhost kernel: intel_rapl: Found RAPL domain dram
Dec 30 02:19:22 localhost kernel: snd_hda_codec_conexant hdaudioC0D0: Enable sync_write for stable communication
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 8260, REV=0x208
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: can't access the RSA semaphore it is write protected
Dec 30 02:19:22 localhost systemd-fsck[196]: /dev/sda8: clean, 128961/786432 files, 670264/3145728 blocks
Dec 30 02:19:22 localhost systemd-fsck[202]: /dev/sda7: clean, 1068/524288 files, 138638/2097152 blocks
Dec 30 02:19:22 localhost systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
-- Subject: Unit systemd-rfkill.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-rfkill.socket has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started File System Check on /dev/disk/by-uuid/47c4229c-9e4e-442a-897e-0e950cb89cf2.
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-47c4229c\x2d9e4e\x2d442a\x2d897e\x2d0e950cb89cf2.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Dec 30 02:19:22 localhost systemd[1]: Started File System Check on /dev/disk/by-uuid/92fb600b-de86-47a3-bb91-ad3f2651ef54.
-- Subject: Unit systemd-fsck@dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-fsck@dev-disk-by\x2duuid-92fb600b\x2dde86\x2d47a3\x2dbb91\x2dad3f2651ef54.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Mounting /var...
-- Subject: Unit var.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var.mount has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Mounting /home...
-- Subject: Unit home.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit home.mount has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Mounted /home.
-- Subject: Unit home.mount has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit home.mount has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: data=ordered
Dec 30 02:19:22 localhost kernel: EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: data=ordered
Dec 30 02:19:22 localhost systemd[1]: Mounted /var.
-- Subject: Unit var.mount has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit var.mount has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting Load/Save Random Seed...
-- Subject: Unit systemd-random-seed.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Starting Load/Save RF Kill Switch Status...
-- Subject: Unit systemd-rfkill.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-rfkill.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Starting Flush Journal to Persistent Storage...
-- Subject: Unit systemd-journal-flush.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Reached target Local File Systems.
-- Subject: Unit local-fs.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started Load/Save Random Seed.
-- Subject: Unit systemd-random-seed.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd-journald[139]: System journal (/var/log/journal/) is currently using 24.0M.
                                                 Maximum allowed usage is set to 793.5M.
                                                 Leaving at least 1.1G free (of currently available 7.0G of space).
                                                 Enforced usage limit is thus 793.5M, of which 769.5M are still available.
Dec 30 02:19:22 localhost systemd-journald[139]: Time spent on flushing to /var is 71.825ms for 730 entries.
Dec 30 02:19:22 localhost kernel: thermal LNXTHERM:00: registered as thermal_zone1
Dec 30 02:19:22 localhost kernel: ACPI: Thermal Zone [THM0] (42 C)
Dec 30 02:19:22 localhost kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
Dec 30 02:19:22 localhost kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
Dec 30 02:19:22 localhost kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
Dec 30 02:19:22 localhost kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
Dec 30 02:19:22 localhost kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
Dec 30 02:19:22 localhost kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
Dec 30 02:19:22 localhost kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
Dec 30 02:19:22 localhost kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
Dec 30 02:19:22 localhost kernel: tsc: Refined TSC clocksource calibration: 2399.990 MHz
Dec 30 02:19:22 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22982e1e4da, max_idle_ns: 440795324676 ns
Dec 30 02:19:22 localhost kernel: usb 1-1.1: new high-speed USB device number 4 using xhci_hcd
Dec 30 02:19:22 localhost kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
Dec 30 02:19:22 localhost systemd[1]: Started Load/Save RF Kill Switch Status.
-- Subject: Unit systemd-rfkill.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-rfkill.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Sound Card.
-- Subject: Unit sound.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sound.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started Flush Journal to Persistent Storage.
-- Subject: Unit systemd-journal-flush.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting Create Volatile Files and Directories...
-- Subject: Unit systemd-tmpfiles-setup.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Started Create Volatile Files and Directories.
-- Subject: Unit systemd-tmpfiles-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown...
-- Subject: Unit systemd-update-utmp.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Started Update UTMP about System Boot/Shutdown.
-- Subject: Unit systemd-update-utmp.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target System Initialization.
-- Subject: Unit sysinit.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sysinit.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started Daily verification of password and group files.
-- Subject: Unit shadow.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit shadow.timer has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Listening on D-Bus System Message Bus Socket.
-- Subject: Unit dbus.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dbus.socket has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Sockets.
-- Subject: Unit sockets.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sockets.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Basic System.
-- Subject: Unit basic.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit basic.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting Login Service...
-- Subject: Unit systemd-logind.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-logind.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Started Daily rotation of log files.
-- Subject: Unit logrotate.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit logrotate.timer has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started Daily man-db cache update.
-- Subject: Unit man-db.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit man-db.timer has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started D-Bus System Message Bus.
-- Subject: Unit dbus.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dbus.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting dhcpcd on all interfaces...
-- Subject: Unit dhcpcd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dhcpcd.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Started Daily Cleanup of Temporary Directories.
-- Subject: Unit systemd-tmpfiles-clean.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-clean.timer has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Timers.
-- Subject: Unit timers.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit timers.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Starting Permit User Sessions...
-- Subject: Unit systemd-user-sessions.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-user-sessions.service has begun starting up.
Dec 30 02:19:22 localhost systemd[1]: Started Login Service.
-- Subject: Unit systemd-logind.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-logind.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd-logind[272]: New seat seat0.
-- Subject: A new seat seat0 is now available
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
-- 
-- A new seat seat0 has been configured and is now available.
Dec 30 02:19:22 localhost dhcpcd[274]: dev: loaded udev
Dec 30 02:19:22 localhost dhcpcd[274]: forked to background, child pid 277
Dec 30 02:19:22 localhost systemd-logind[272]: Watching system buttons on /dev/input/event3 (Power Button)
Dec 30 02:19:22 localhost systemd-logind[272]: Watching system buttons on /dev/input/event1 (Lid Switch)
Dec 30 02:19:22 localhost systemd-logind[272]: Watching system buttons on /dev/input/event2 (Sleep Button)
Dec 30 02:19:22 localhost systemd-logind[272]: Watching system buttons on /dev/input/event5 (ThinkPad Extra Buttons)
Dec 30 02:19:22 localhost systemd[1]: Started Permit User Sessions.
-- Subject: Unit systemd-user-sessions.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-user-sessions.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started Getty on tty1.
-- Subject: Unit getty@tty1.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit getty@tty1.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Login Prompts.
-- Subject: Unit getty.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit getty.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Started dhcpcd on all interfaces.
-- Subject: Unit dhcpcd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dhcpcd.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Network.
-- Subject: Unit network.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit network.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Multi-User System.
-- Subject: Unit multi-user.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit multi-user.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Reached target Graphical Interface.
-- Subject: Unit graphical.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit graphical.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost systemd[1]: Startup finished in 834ms (kernel) + 596ms (userspace) = 19.779s.
-- Subject: System start-up is now complete
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- All system services necessary queued for starting at boot have been
-- successfully started. Note that this does not mean that the machine is
-- now idle as services might still be busy with completing start-up.
-- 
-- Kernel start-up required 834747 microseconds.
-- 
-- Initial RAM disk start-up required INITRD_USEC microseconds.
-- 
-- Userspace start-up required 596493 microseconds.
Dec 30 02:19:22 localhost dhcpcd-run-hooks[286]: wlp1s0: starting wpa_supplicant
Dec 30 02:19:22 localhost dhcpcd-run-hooks[289]: wlp1s0: failed to start wpa_supplicant
Dec 30 02:19:22 localhost dhcpcd-run-hooks[290]: wlp1s0: Successfully initialized wpa_supplicant
                                                 Line 1309: unknown EAP method 'SIM'
                                                 You may need to add support for this EAP method during wpa_supplicant
                                                 build time configuration.
                                                 See README for more information.
                                                 Line 1309: failed to parse eap 'SIM'.
                                                 Line 1312: failed to parse network block.
                                                 Line 1319: unknown EAP method 'PSK'
                                                 You may need to add support for this EAP method during wpa_supplicant
                                                 build time configuration.
                                                 See README for more information.
                                                 Line 1319: failed to parse eap 'PSK'.
                                                 Line 1323: failed to parse network block.
                                                 Line 1355: unknown EAP method 'IKEV2'
                                                 You may need to add support for this EAP method during wpa_supplicant
                                                 build time configuration.
                                                 See README for more information.
                                                 Line 1355: failed to parse eap 'IKEV2'.
                                                 Line 1358: failed to parse network block.
                                                 Line 1443: too large mode (value=5 max_value=4)
                                                 Line 1443: failed to parse mode '5'.
                                                 Line 1446: failed to parse network block.
                                                 Line 1451: too large mode (value=5 max_value=4)
                                                 Line 1451: failed to parse mode '5'.
                                                 Line 1453: invalid key_mg
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: can't access the RSA semaphore it is write protected
Dec 30 02:19:22 localhost kernel: usb 1-7: new high-speed USB device number 5 using xhci_hcd
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
Dec 30 02:19:22 localhost kernel: iwlwifi 0000:01:00.0: can't access the RSA semaphore it is write protected
Dec 30 02:19:22 localhost dhcpcd[277]: wlp1s0: waiting for carrier
Dec 30 02:19:22 localhost kernel: IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
Dec 30 02:19:22 localhost kernel: e1000e 0000:00:1f.6 eth0: registered PHC clock
Dec 30 02:19:22 localhost kernel: e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 50:7b:9d:70:5d:ea
Dec 30 02:19:22 localhost kernel: e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
Dec 30 02:19:22 localhost kernel: e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
Dec 30 02:19:22 localhost dhcpcd[277]: wlp1s0: carrier acquired
Dec 30 02:19:22 localhost dhcpcd[277]: wlp1s0: adding address fe80::75b3:8772:d811:43ab
Dec 30 02:19:22 localhost dhcpcd[277]: DUID 00:01:00:01:1e:10:55:0f:50:7b:9d:70:5d:ea
Dec 30 02:19:22 localhost dhcpcd[277]: wlp1s0: IAID d9:44:7f:0f
Dec 30 02:19:22 localhost dhcpcd[277]: wlp1s0: carrier lost
Dec 30 02:19:22 localhost kernel: e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
Dec 30 02:19:22 localhost dhcpcd[277]: wlp1s0: deleting address fe80::75b3:8772:d811:43ab
Dec 30 02:19:22 localhost kernel: media: Linux media interface: v0.10
Dec 30 02:19:22 localhost kernel: Linux video capture interface: v2.00
Dec 30 02:19:22 localhost kernel: usb-storage 1-1.1:1.0: USB Mass Storage device detected
Dec 30 02:19:22 localhost kernel: scsi host2: usb-storage 1-1.1:1.0
Dec 30 02:19:22 localhost kernel: usbcore: registered new interface driver usb-storage
Dec 30 02:19:22 localhost kernel: Bluetooth: Core ver 2.20
Dec 30 02:19:22 localhost kernel: NET: Registered protocol family 31
Dec 30 02:19:22 localhost kernel: Bluetooth: HCI device and connection manager initialized
Dec 30 02:19:22 localhost kernel: Bluetooth: HCI socket layer initialized
Dec 30 02:19:22 localhost kernel: Bluetooth: L2CAP socket layer initialized
Dec 30 02:19:22 localhost kernel: Bluetooth: SCO socket layer initialized
Dec 30 02:19:22 localhost kernel: usbcore: registered new interface driver btusb
Dec 30 02:19:22 localhost systemd[1]: Reached target Bluetooth.
-- Subject: Unit bluetooth.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit bluetooth.target has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:22 localhost kernel: uvcvideo: Found UVC 1.00 device Integrated Camera (0bda:57e3)
Dec 30 02:19:22 localhost kernel: Bluetooth: hci0: Firmware revision 0.0 build 90 week 25 2015
Dec 30 02:19:22 localhost kernel: uvcvideo: Failed to register entity for entity 6
Dec 30 02:19:22 localhost kernel: uvcvideo: Failed to register entites (-22).
Dec 30 02:19:22 localhost kernel: input: Integrated Camera as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input14
Dec 30 02:19:22 localhost kernel: usbcore: registered new interface driver uvcvideo
Dec 30 02:19:22 localhost kernel: USB Video Class driver (1.1.1)
Dec 30 02:19:23 localhost dhcpcd[277]: enp0s31f6: waiting for carrier
Dec 30 02:19:23 localhost dhcpcd[277]: enp0s31f6: waiting for carrier
Dec 30 02:19:23 localhost kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
Dec 30 02:19:23 localhost kernel: input: AlpsPS/2 ALPS DualPoint Stick as /devices/platform/i8042/serio1/input/input15
Dec 30 02:19:23 localhost kernel: mousedev: PS/2 mouse device common for all mice
Dec 30 02:19:23 localhost kernel: clocksource: Switched to clocksource tsc
Dec 30 02:19:23 localhost kernel: input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input7
Dec 30 02:19:23 localhost kernel: scsi 2:0:0:0: Direct-Access     USB 2.0  Flash Disk       1.00 PQ: 0 ANSI: 0 CCS
Dec 30 02:19:23 localhost kernel: sd 2:0:0:0: [sdb] 1015808 512-byte logical blocks: (520 MB/496 MiB)
Dec 30 02:19:23 localhost kernel: random: nonblocking pool is initialized
Dec 30 02:19:23 localhost kernel: sd 2:0:0:0: [sdb] Write Protect is off
Dec 30 02:19:23 localhost kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 26 00 00
Dec 30 02:19:23 localhost kernel: sd 2:0:0:0: [sdb] No Caching mode page found
Dec 30 02:19:23 localhost kernel: sd 2:0:0:0: [sdb] Assuming drive cache: write through
Dec 30 02:19:24 localhost kernel:  sdb: sdb1
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] Attached SCSI removable disk
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x08
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] Sense Key : 0x3 [current] 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] ASC=0x11 ASCQ=0x0 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] CDB: opcode=0x28 28 00 00 00 00 20 00 00 18 00 00 00
Dec 30 02:19:24 localhost kernel: blk_update_request: critical medium error, dev sdb, sector 32
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x08
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] Sense Key : 0x3 [current] 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] ASC=0x11 ASCQ=0x0 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] CDB: opcode=0x28 28 00 00 00 00 80 00 00 f0 00 00 00
Dec 30 02:19:24 localhost kernel: blk_update_request: critical medium error, dev sdb, sector 128
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x08
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] Sense Key : 0x3 [current] 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] ASC=0x11 ASCQ=0x0 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] CDB: opcode=0x28 28 00 00 00 00 28 00 00 08 00 00 00
Dec 30 02:19:24 localhost kernel: blk_update_request: critical medium error, dev sdb, sector 40
Dec 30 02:19:24 localhost kernel: Buffer I/O error on dev sdb, logical block 5, async page read
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x08
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] Sense Key : 0x3 [current] 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] ASC=0x11 ASCQ=0x0 
Dec 30 02:19:24 localhost kernel: sd 2:0:0:0: [sdb] CDB: opcode=0x28 28 00 00 00 00 28 00 00 08 00 00 00
Dec 30 02:19:24 localhost kernel: blk_update_request: critical medium error, dev sdb, sector 40
Dec 30 02:19:24 localhost kernel: Buffer I/O error on dev sdb, logical block 5, async page read
Dec 30 02:19:25 localhost dhcpcd[277]: enp0s31f6: carrier acquired
Dec 30 02:19:25 localhost dhcpcd[277]: enp0s31f6: adding address fe80::5634:6886:f30b:39ea
Dec 30 02:19:25 localhost kernel: e1000e: enp0s31f6 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Dec 30 02:19:25 localhost kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready
Dec 30 02:19:25 localhost dhcpcd[277]: enp0s31f6: IAID 9d:70:5d:ea
Dec 30 02:19:25 localhost dhcpcd[277]: enp0s31f6: soliciting an IPv6 router
Dec 30 02:19:26 localhost dhcpcd[277]: enp0s31f6: rebinding lease of 192.168.1.106
Dec 30 02:19:26 localhost dhcpcd[277]: enp0s31f6: probing address 192.168.1.106/24
Dec 30 02:19:28 localhost login[279]: pam_unix(login:session): session opened for user root by LOGIN(uid=0)
Dec 30 02:19:28 localhost systemd[1]: Created slice User Slice of root.
-- Subject: Unit user-0.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user-0.slice has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[1]: Starting User Manager for UID 0...
-- Subject: Unit user@0.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user@0.service has begun starting up.
Dec 30 02:19:28 localhost systemd-logind[272]: New session c1 of user root.
-- Subject: A new session c1 has been created for user root
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
-- 
-- A new session with the ID c1 has been created for the user root.
-- 
-- The leading process of the session is 279.
Dec 30 02:19:28 localhost systemd[1]: Started Session c1 of user root.
-- Subject: Unit session-c1.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit session-c1.scope has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: pam_unix(systemd-user:session): session opened for user root by (uid=0)
Dec 30 02:19:28 localhost systemd[329]: Reached target Timers.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: Reached target Paths.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: Starting D-Bus User Message Bus Socket.
-- Subject: Unit UNIT has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has begun starting up.
Dec 30 02:19:28 localhost systemd[329]: Listening on D-Bus User Message Bus Socket.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: Reached target Sockets.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: Reached target Basic System.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: Reached target Default.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost systemd[329]: Startup finished in 18ms.
-- Subject: System start-up is now complete
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- All system services necessary queued for starting at boot have been
-- successfully started. Note that this does not mean that the machine is
-- now idle as services might still be busy with completing start-up.
-- 
-- Kernel start-up required KERNEL_USEC microseconds.
-- 
-- Initial RAM disk start-up required INITRD_USEC microseconds.
-- 
-- Userspace start-up required 18535 microseconds.
Dec 30 02:19:28 localhost systemd[1]: Started User Manager for UID 0.
-- Subject: Unit user@0.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user@0.service has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:28 localhost login[279]: ROOT LOGIN ON tty1
Dec 30 02:19:29 localhost dhcpcd[277]: enp0s31f6: Router Advertisement from fe80::f4b3:42ff:fe73:3a88
Dec 30 02:19:29 localhost dhcpcd[277]: enp0s31f6: ignoring RA from fe80::f4b3:42ff:fe73:3a88 (no public prefix, no managed address)
Dec 30 02:19:29 localhost dhcpcd[277]: enp0s31f6: soliciting a DHCPv6 lease
Dec 30 02:19:32 localhost dhcpcd[277]: enp0s31f6: leased 192.168.1.106 for 86400 seconds
Dec 30 02:19:32 localhost dhcpcd[277]: enp0s31f6: adding route to 192.168.1.0/24
Dec 30 02:19:32 localhost dhcpcd[277]: enp0s31f6: adding default route via 192.168.1.1
Dec 30 02:19:32 localhost dhcpcd[277]: enp0s31f6: removing route to 192.168.1.0/24
Dec 30 02:19:38 localhost dhcpcd[277]: enp0s31f6: no IPv6 Routers available
Dec 30 02:19:38 localhost dhcpcd[277]: enp0s31f6: Router Advertisement from fe80::f4b3:42ff:fe73:3a88
Dec 30 02:19:38 localhost dhcpcd[277]: enp0s31f6: ignoring RA from fe80::f4b3:42ff:fe73:3a88 (no public prefix, no managed address)
Dec 30 02:19:38 localhost dhcpcd[277]: enp0s31f6: soliciting a DHCPv6 lease
Dec 30 02:19:45 localhost systemd[1]: Stopped Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down.
Dec 30 02:19:45 localhost systemd[1]: Created slice system-netctl.slice.
-- Subject: Unit system-netctl.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit system-netctl.slice has finished starting up.
-- 
-- The start-up result is done.
Dec 30 02:19:45 localhost systemd[1]: Starting Networking for netctl profile wlp1s0-HelloWorld...
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has begun starting up.
Dec 30 02:19:45 localhost network[467]: Starting network profile 'wlp1s0-HelloWorld'...
Dec 30 02:19:45 localhost network[467]: The interface of network profile 'wlp1s0-HelloWorld' is already up
Dec 30 02:19:45 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Main process exited, code=exited, status=1/FAILURE
Dec 30 02:19:45 localhost systemd[1]: Failed to start Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has failed.
-- 
-- The result is failed.
Dec 30 02:19:45 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Unit entered failed state.
Dec 30 02:19:45 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Failed with result 'exit-code'.
Dec 30 02:20:01 localhost dhcpcd[277]: enp0s31f6: carrier lost
Dec 30 02:20:01 localhost kernel: e1000e: enp0s31f6 NIC Link is Down
Dec 30 02:20:01 localhost dhcpcd[277]: enp0s31f6: deleting address fe80::5634:6886:f30b:39ea
Dec 30 02:20:01 localhost dhcpcd[277]: enp0s31f6: deleting default route via 192.168.1.1
Dec 30 02:20:22 localhost systemd[1]: Stopped Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down.
Dec 30 02:20:22 localhost systemd[1]: Starting Networking for netctl profile wlp1s0-HelloWorld...
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has begun starting up.
Dec 30 02:20:22 localhost network[650]: Starting network profile 'wlp1s0-HelloWorld'...
Dec 30 02:20:22 localhost network[650]: The interface of network profile 'wlp1s0-HelloWorld' is already up
Dec 30 02:20:22 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Main process exited, code=exited, status=1/FAILURE
Dec 30 02:20:22 localhost systemd[1]: Failed to start Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has failed.
-- 
-- The result is failed.
Dec 30 02:20:22 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Unit entered failed state.
Dec 30 02:20:22 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Failed with result 'exit-code'.
Dec 30 02:26:26 localhost systemd[1]: Stopped Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down.
Dec 30 02:26:26 localhost systemd[1]: Starting Networking for netctl profile wlp1s0-HelloWorld...
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has begun starting up.
Dec 30 02:26:26 localhost network[734]: Starting network profile 'wlp1s0-HelloWorld'...
Dec 30 02:26:26 localhost network[734]: The interface of network profile 'wlp1s0-HelloWorld' is already up
Dec 30 02:26:26 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Main process exited, code=exited, status=1/FAILURE
Dec 30 02:26:26 localhost systemd[1]: Failed to start Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has failed.
-- 
-- The result is failed.
Dec 30 02:26:26 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Unit entered failed state.
Dec 30 02:26:26 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Failed with result 'exit-code'.
Dec 30 02:27:19 localhost systemd[1]: Stopped Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down.
Dec 30 02:27:19 localhost systemd[1]: Starting Networking for netctl profile wlp1s0-HelloWorld...
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has begun starting up.
Dec 30 02:27:19 localhost network[862]: Starting network profile 'wlp1s0-HelloWorld'...
Dec 30 02:27:19 localhost network[862]: The interface of network profile 'wlp1s0-HelloWorld' is already up
Dec 30 02:27:19 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Main process exited, code=exited, status=1/FAILURE
Dec 30 02:27:19 localhost systemd[1]: Failed to start Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has failed.
-- 
-- The result is failed.
Dec 30 02:27:19 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Unit entered failed state.
Dec 30 02:27:19 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Failed with result 'exit-code'.
Dec 30 02:30:08 localhost systemd[1]: Stopped Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has finished shutting down.
Dec 30 02:30:08 localhost systemd[1]: Starting Networking for netctl profile wlp1s0-HelloWorld...
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has begun starting up.
Dec 30 02:30:08 localhost network[1172]: Starting network profile 'wlp1s0-HelloWorld'...
Dec 30 02:30:08 localhost network[1172]: The interface of network profile 'wlp1s0-HelloWorld' is already up
Dec 30 02:30:08 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Main process exited, code=exited, status=1/FAILURE
Dec 30 02:30:08 localhost systemd[1]: Failed to start Networking for netctl profile wlp1s0-HelloWorld.
-- Subject: Unit netctl@wlp1s0\x2dHelloWorld.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlp1s0\x2dHelloWorld.service has failed.
-- 
-- The result is failed.
Dec 30 02:30:08 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Unit entered failed state.
Dec 30 02:30:08 localhost systemd[1]: netctl@wlp1s0\x2dHelloWorld.service: Failed with result 'exit-code'.

So the drivers work, but wifi currently does not.

Last edited by forrest.koch (2015-12-29 05:08:38)

Offline

#11 2015-12-29 06:24:42

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

Do not use -x, use -b or -u for journalctl.

ABS (ideally) provides you the PKGBUILD et al. of the packages in the current repos. So yeah it's normal that it "defaults" to 4.2.5 now. You could have edit the PKGBUILD before you makepkg though.

Anyway, have you tried scanning with `iw` instead?

Offline

#12 2015-12-31 05:01:58

forrest.koch
Member
Registered: 2015-12-26
Posts: 13

Re: [Solved] Intel Wireless 8260 [8086:24f3] (rev 3a) unsupported?

Alright so everything appears to be working now.  I believe that after I had gotten the drivers working by installing the patched kernel, I was simply misconfiguring my wifi settings as I was able to connect to a networks via iw but not wpa_supplicant.  I fixed this by ensuring all network related services (wpa_supplicant and dhcpcd) were disabled and simply used NetworkManager instead.

I now have working internet and can continue with setting up my Arch desktop!

Thank you very much for you help with this Tom, I hope that I will be able to contribute back to these forums in not too long.

Offline

Board footer

Powered by FluxBB