You are not logged in.

#1 2016-01-03 12:00:19

VenomGameworld
Member
Registered: 2009-07-12
Posts: 39

[SOLVED] USB Wireless adapter not recognized in "ip link"

Hi,

I recently bought a Edimax EW-7811UTC USB wireless adapter and I've wanted to use the open source driver (https://aur.archlinux.org/packages/rtl8 … -dkms-git/). The installation went fine and I've entered the command "modprobe 8812au" to load it, I received no error at this point. I've checked the output of some other commands mentioned in the wiki:

dmesg | grep usbcore

[    0.633891] usbcore: registered new interface driver usbfs
[    0.633900] usbcore: registered new interface driver hub
[    0.633921] usbcore: registered new device driver usb
[    1.507164] usbcore: registered new interface driver usb-storage
[    1.507623] usbcore: registered new interface driver uas
[    1.607833] usbcore: registered new interface driver usbhid
[  510.432210] usbcore: registered new interface driver rtl8821au

(the last line mentions the driver being loaded, so this looks OK)

lspci -k
No references towards the USB wireless adapter?!

ip link
Only mentions my lookback interface lo and my wired connection eth0. No wlan0.

Does anyone have a clue what I'm missing?

Thanks in advance!

Last edited by VenomGameworld (2016-01-05 21:48:02)

Offline

#2 2016-01-03 13:08:11

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

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

Please post the actual command output rather than a vague description.

Why is your ethernet interface called "eth0"?

Can we see the output of:

uname -a


Doesn't matter sorry, you've been here longer than me...

Last edited by Head_on_a_Stick (2016-01-03 13:09:00)

Offline

#3 2016-01-03 13:22:34

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

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

`lsusb -t` or `lsusb.py -cui`

EDIT: I had this adapter https://wikidevi.com/wiki/Buffalo_WI-U2-433DM and I used the source here to build the driver instead https://github.com/abperiasamy/rtl8812AU_8821AU_linux

@Head_on_a_Stick, You have 3,115 posts while he has only 28 tho big_smile

Last edited by tom.ty89 (2016-01-03 13:29:18)

Offline

#4 2016-01-03 14:53:23

stewbond
Member
Registered: 2015-05-12
Posts: 32

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

I have the same issue (not sure if I should create my own thread).  The wireless controller exists and I can see it in lspci, but I can't see it with ip link.  I'm not sure how to add that interface.

stew ~ $ uname -a
Linux Romulus 4.2.5-1-ARCH #1 SMP PREEMPT Tue Oct 27 08:13:28 CET 2015 x86_64 GNU/Linux
stew ~ $ lspci -k
06:00.0 Network controller: Broadcom Corporation BCM4352 802.11ac Wireless Network Adapter (rev 03)
	Subsystem: ASUSTeK Computer Inc. Device 855c
	Kernel driver in use: bcma-pci-bridge
	Kernel modules: bcma
stew ~ $ ip link
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: enp10s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
    link/ether f0:79:59:dc:c4:bf brd ff:ff:ff:ff:ff:ff
3: eno1: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN mode DEFAULT group default qlen 1000
    link/ether f0:79:59:dc:c3:75 brd ff:ff:ff:ff:ff:ff

Edit: Solved my own problem by installing an alternate driver.  This worked:

# pacman -S dkms
# git clone sudo git clone https://aur.archlinux.org/broadcom-wl-dkms.git
# chown stew /usr/src/broadcom-wl-dkms
$ cd /usr/src/broadcom-wl-dkms
$ makepkg
# pacman -U broadcom-wl-dkms-6.30.223.271-4-x86_64.pkg.tar.xz     
# rmmod b43 b43legacy ssb bcm43xx brcm80211 brcmfmac brcmsmac bcma wl
# modprobe wl

Now I get this:

stew ~ $ ip link
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: enp10s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
    link/ether f0:79:59:dc:c4:bf brd ff:ff:ff:ff:ff:ff
3: eno1: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN mode DEFAULT group default qlen 1000
    link/ether f0:79:59:dc:c3:75 brd ff:ff:ff:ff:ff:ff
4: wlp6s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN mode DEFAULT group default qlen 1000
    link/ether 6c:71:d9:f2:b6:bb brd ff:ff:ff:ff:ff:ff

Last edited by stewbond (2016-01-03 17:50:00)

Offline

#5 2016-01-03 15:54:06

wtx
Member
Registered: 2014-06-09
Posts: 76

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

VenomGameworld wrote:

(...)

lspci -k
No references towards the USB wireless adapter?!

lspci shows only PCI devices, but your device is working on USB. Your USB device won't appear after lspci.

Show us output of "lsusb -t" command as tom.ty89 said.

Have you checked if your USB doesn't need any firmware?

Show us also whole "dmesg".

@stewbond: As I can see you had only similar problem. But your device is PCI device and VenomGameworld has USB device. PCI and USB are different kind of devices and they require another kind of Linux drivers.

Last edited by wtx (2016-01-03 16:11:38)

Offline

#6 2016-01-03 18:15:48

VenomGameworld
Member
Registered: 2009-07-12
Posts: 39

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

@Head_on_a_Stick:

Sorry, maybe I was a bit too keen. This time I will post the entire output.

"Why is your ethernet interface called "eth0"?"
> Isn't this default behaviour?

uname -a

Linux zeus 4.2.5-1-ARCH #1 SMP PREEMPT Tue Oct 27 08:13:28 CET 2015 x86_64 GNU/Linux

@tom.ty89:

lsusb -t

/:  Bus 04.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/2p, 480M
    |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/8p, 480M
        |__ Port 2: Dev 3, If 0, Class=Vendor Specific Class, Driver=, 480M
        |__ Port 6: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
        |__ Port 6: Dev 4, If 1, Class=Human Interface Device, Driver=usbhid, 1.5M
/:  Bus 03.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 5000M
/:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 480M
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/2p, 480M
    |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/6p, 480M
        |__ Port 4: Dev 3, If 0, Class=Mass Storage, Driver=usb-storage, 480M
        |__ Port 5: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 12M
        |__ Port 5: Dev 4, If 1, Class=Human Interface Device, Driver=usbhid, 12M
        |__ Port 5: Dev 4, If 2, Class=Human Interface Device, Driver=usbhid, 12M

Thanks for the link, but the repo seems a bit outdated. If I can't get it to work with this driver I will definitely try yours.

@wtx:

lspci shows only PCI devices, but your device is working on USB. Your USB device won't appear after lspci.

Show us output of "lsusb -t" command as tom.ty89 said.

Have you checked if your USB doesn't need any firmware?

It's a regular USB2.0 port at the back where also my keyboard and mouse are plugged in.

dmesg

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.2.5-1-ARCH (builduser@tobias) (gcc version 5.2.0 (GCC) ) #1 SMP PREEMPT Tue Oct 27 08:13:28 CET 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=d77c8aab-649e-cd01-d02c-8aab649ecd01 rw quiet
[    0.000000] x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
[    0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 0x340 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf423fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf424000-0x00000000bf479fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf47a000-0x00000000bf5acfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf5ad000-0x00000000bf5bdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf5be000-0x00000000bf5d4fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf5d5000-0x00000000bf5d6fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf5d7000-0x00000000bf5d7fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bf5d8000-0x00000000bf5dffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf5e0000-0x00000000bf5e9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf5ea000-0x00000000bf642fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf643000-0x00000000bf685fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf686000-0x00000000bf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013f7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: System manufacturer System Product Name/P8H67-M LE, BIOS 0603 02/11/2011
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x13f800 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 100000000 mask FC0000000 write-back
[    0.000000]   2 base 0C0000000 mask FC0000000 uncachable
[    0.000000]   3 base 13F800000 mask FFF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcd90-0x000fcd9f] mapped at [ffff8800000fcd90]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
[    0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
[    0.000000] BRK [0x01b38000, 0x01b38fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x13f600000-0x13f7fffff]
[    0.000000]  [mem 0x13f600000-0x13f7fffff] page 2M
[    0.000000] BRK [0x01b39000, 0x01b39fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x120000000-0x13f5fffff]
[    0.000000]  [mem 0x120000000-0x13f5fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x11fffffff]
[    0.000000]  [mem 0x100000000-0x11fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbf423fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbf3fffff] page 2M
[    0.000000]  [mem 0xbf400000-0xbf423fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbf5d5000-0xbf5d6fff]
[    0.000000]  [mem 0xbf5d5000-0xbf5d6fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbf686000-0xbf7fffff]
[    0.000000]  [mem 0xbf686000-0xbf7fffff] page 4k
[    0.000000] BRK [0x01b3a000, 0x01b3afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x37926000-0x37c8afff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0420 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000BF46D068 00004C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000BF475E08 0000F4 (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000BF46D140 008CC7 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000BF5E1F80 000040
[    0.000000] ACPI: APIC 0x00000000BF475F00 000072 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000BF475F78 000102 (v01 AMICPU PROC     00000001 MSFT 03000001)
[    0.000000] ACPI: MCFG 0x00000000BF476080 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000BF4760C0 000038 (v01 ALASKA A M I    01072009 AMI. 00000004)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013f7fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13f7f9000-0x13f7fcfff]
[    0.000000]  [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013ae00000-ffff88013edfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013f7fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bf423fff]
[    0.000000]   node   0: [mem 0x00000000bf5d5000-0x00000000bf5d6fff]
[    0.000000]   node   0: [mem 0x00000000bf686000-0x00000000bf7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013f7fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013f7fffff]
[    0.000000] On node 0 totalpages: 1043772
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12183 pages used for memmap
[    0.000000]   DMA32 zone: 779680 pages, LIFO batch:31
[    0.000000]   Normal zone: 4064 pages used for memmap
[    0.000000]   Normal zone: 260096 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf424000-0xbf479fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf47a000-0xbf5acfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5ad000-0xbf5bdfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5be000-0xbf5d4fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5d7000-0xbf5d7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5d8000-0xbf5dffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5e0000-0xbf5e9fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5ea000-0xbf642fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf643000-0xbf685fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xbf800000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff88013f400000 s91480 r8192 d31400 u524288
[    0.000000] pcpu-alloc: s91480 r8192 d31400 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1027440
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=d77c8aab-649e-cd01-d02c-8aab649ecd01 rw quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 4027644K/4175088K available (5611K kernel code, 922K rwdata, 1768K rodata, 1180K init, 1152K bss, 147444K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:8448 nr_irqs:456 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3093.036 MHz processor
[    0.000027] Calibrating delay loop (skipped), value calculated using timer frequency.. 6188.82 BogoMIPS (lpj=10310120)
[    0.000029] pid_max: default: 32768 minimum: 301
[    0.000033] ACPI: Core revision 20150619
[    0.003335] ACPI: All ACPI Tables successfully acquired
[    0.003350] Security Framework initialized
[    0.003352] Yama: becoming mindful.
[    0.003551] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.004193] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.004468] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.004473] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.004625] Initializing cgroup subsys blkio
[    0.004628] Initializing cgroup subsys memory
[    0.004633] Initializing cgroup subsys devices
[    0.004634] Initializing cgroup subsys freezer
[    0.004636] Initializing cgroup subsys net_cls
[    0.004652] CPU: Physical Processor ID: 0
[    0.004653] CPU: Processor Core ID: 0
[    0.004657] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.004657] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.004660] mce: CPU supports 9 MCE banks
[    0.004670] CPU0: Thermal monitoring enabled (TM1)
[    0.004677] process: using mwait in idle threads
[    0.004680] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.004681] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.004989] Freeing SMP alternatives memory: 20K (ffffffff81a0f000 - ffffffff81a14000)
[    0.017903] ftrace: allocating 22161 entries in 87 pages
[    0.026514] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.026917] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.059916] TSC deadline timer enabled
[    0.059918] smpboot: CPU0: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz (fam: 06, model: 2a, stepping: 07)
[    0.059936] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.059952] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[    0.059953] ... version:                3
[    0.059954] ... bit width:              48
[    0.059955] ... generic registers:      8
[    0.059956] ... value mask:             0000ffffffffffff
[    0.059956] ... max period:             0000ffffffffffff
[    0.059957] ... fixed-purpose events:   3
[    0.059958] ... event mask:             00000007000000ff
[    0.073326] x86: Booting SMP configuration:
[    0.073327] .... node  #0, CPUs:      #1
[    0.076509] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.076670]  #2 #3
[    0.083206] x86: Booted up 1 node, 4 CPUs
[    0.083209] smpboot: Total of 4 processors activated (24754.30 BogoMIPS)
[    0.085732] devtmpfs: initialized
[    0.087530] PM: Registering ACPI NVS region [mem 0xbf424000-0xbf479fff] (352256 bytes)
[    0.087535] PM: Registering ACPI NVS region [mem 0xbf5ad000-0xbf5bdfff] (69632 bytes)
[    0.087537] PM: Registering ACPI NVS region [mem 0xbf5e0000-0xbf5e9fff] (40960 bytes)
[    0.087538] PM: Registering ACPI NVS region [mem 0xbf643000-0xbf685fff] (274432 bytes)
[    0.087602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.087661] pinctrl core: initialized pinctrl subsystem
[    0.087699] RTC time: 18:47:59, date: 01/03/16
[    0.087786] NET: Registered protocol family 16
[    0.095599] cpuidle: using governor ladder
[    0.108933] cpuidle: using governor menu
[    0.109001] ACPI: bus type PCI registered
[    0.109002] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.109057] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.109058] PCI: not using MMCONFIG
[    0.109059] PCI: Using configuration type 1 for base access
[    0.109265] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.109283] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.119191] ACPI: Added _OSI(Module Device)
[    0.119192] ACPI: Added _OSI(Processor Device)
[    0.119193] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.119194] ACPI: Added _OSI(Processor Aggregator Device)
[    0.120771] ACPI: Executed 1 blocks of module-level executable AML code
[    0.122153] ACPI: Dynamic OEM Table Load:
[    0.122158] ACPI: SSDT 0xFFFF88013A889400 00038C (v01 AMI    IST      00000001 MSFT 03000001)
[    0.122421] ACPI: Dynamic OEM Table Load:
[    0.122423] ACPI: SSDT 0xFFFF880139E20480 000084 (v01 AMI    CST      00000001 MSFT 03000001)
[    0.122940] ACPI: Interpreter enabled
[    0.122946] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)
[    0.122955] ACPI: (supports S0 S1 S3 S4 S5)
[    0.122956] ACPI: Using IOAPIC for interrupt routing
[    0.122970] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.123010] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in ACPI motherboard resources
[    0.123014] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    0.123089] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.123275] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.126993] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.126997] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.127092] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug]
[    0.127179] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.127245] acpi PNP0A08:00: ignoring host bridge window [mem 0x000c8000-0x000dffff window] (conflicts with Video ROM [mem 0x000c0000-0x000cf3ff])
[    0.127247] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.127356] PCI host bridge to bus 0000:00
[    0.127359] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.127360] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.127362] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.127363] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.127364] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
[    0.127370] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.127434] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.127458] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.127484] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.127539] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.127568] pci 0000:00:16.0: reg 0x10: [mem 0xfe708000-0xfe70800f 64bit]
[    0.127623] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.127686] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.127712] pci 0000:00:1a.0: reg 0x10: [mem 0xfe707000-0xfe7073ff]
[    0.127776] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.127804] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.127837] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.127862] pci 0000:00:1b.0: reg 0x10: [mem 0xfe700000-0xfe703fff 64bit]
[    0.127916] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.127970] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.128036] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.128065] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.128099] pci 0000:00:1c.4: [8086:244e] type 01 class 0x060401
[    0.128165] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.128194] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.128226] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
[    0.128291] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.128320] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.128352] pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
[    0.128417] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.128447] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.128478] pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
[    0.128544] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.128573] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.128604] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.128631] pci 0000:00:1d.0: reg 0x10: [mem 0xfe706000-0xfe7063ff]
[    0.128694] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.128722] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.128754] pci 0000:00:1f.0: [8086:1c4a] type 00 class 0x060100
[    0.128895] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.128917] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[    0.128924] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[    0.128931] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[    0.128937] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[    0.128947] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    0.128954] pci 0000:00:1f.2: reg 0x24: [mem 0xfe705000-0xfe7057ff]
[    0.128979] pci 0000:00:1f.2: PME# supported from D3hot
[    0.129031] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.129047] pci 0000:00:1f.3: reg 0x10: [mem 0xfe704000-0xfe7040ff 64bit]
[    0.129066] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.129151] pci 0000:01:00.0: [1002:68be] type 00 class 0x030000
[    0.129171] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.129179] pci 0000:01:00.0: reg 0x18: [mem 0xfe620000-0xfe63ffff 64bit]
[    0.129185] pci 0000:01:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.129195] pci 0000:01:00.0: reg 0x30: [mem 0xfe600000-0xfe61ffff pref]
[    0.129212] pci 0000:01:00.0: supports D1 D2
[    0.129244] pci 0000:01:00.1: [1002:aa58] type 00 class 0x040300
[    0.129263] pci 0000:01:00.1: reg 0x10: [mem 0xfe640000-0xfe643fff 64bit]
[    0.129301] pci 0000:01:00.1: supports D1 D2
[    0.135626] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.135630] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.135634] pci 0000:00:01.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.135639] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.135695] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.135760] pci 0000:03:00.0: [1b21:1080] type 01 class 0x060401
[    0.135867] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.135894] pci 0000:00:1c.4: PCI bridge to [bus 03-04] (subtractive decode)
[    0.135903] pci 0000:00:1c.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.135905] pci 0000:00:1c.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.135906] pci 0000:00:1c.4:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.135907] pci 0000:00:1c.4:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
[    0.136017] pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
[    0.136038] pci 0000:03:00.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.136039] pci 0000:03:00.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.136041] pci 0000:03:00.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.136042] pci 0000:03:00.0:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
[    0.136108] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[    0.136154] pci 0000:05:00.0: reg 0x10: [io  0xd000-0xd0ff]
[    0.136187] pci 0000:05:00.0: reg 0x18: [mem 0xd0004000-0xd0004fff 64bit pref]
[    0.136208] pci 0000:05:00.0: reg 0x20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.136222] pci 0000:05:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.136276] pci 0000:05:00.0: supports D1 D2
[    0.136277] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.142303] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.142308] pci 0000:00:1c.5:   bridge window [io  0xd000-0xdfff]
[    0.142318] pci 0000:00:1c.5:   bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
[    0.142389] pci 0000:06:00.0: [1033:0194] type 00 class 0x0c0330
[    0.142439] pci 0000:06:00.0: reg 0x10: [mem 0xfe500000-0xfe501fff 64bit]
[    0.142547] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.148969] pci 0000:00:1c.6: PCI bridge to [bus 06]
[    0.148977] pci 0000:00:1c.6:   bridge window [mem 0xfe500000-0xfe5fffff]
[    0.149036] pci 0000:00:1c.7: PCI bridge to [bus 07]
[    0.149376] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.149411] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.149444] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 10 11 12 14 15)
[    0.149478] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.149511] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.149544] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.149577] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.149612] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.149664] ACPI: Enabled 1 GPEs in block 00 to 3F
[    0.149735] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.149736] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.149738] vgaarb: loaded
[    0.149739] vgaarb: bridge control possible 0000:01:00.0
[    0.149806] PCI: Using ACPI for IRQ routing
[    0.151177] PCI: pci_cache_line_size set to 64 bytes
[    0.151223] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.151224] e820: reserve RAM buffer [mem 0xbf424000-0xbfffffff]
[    0.151225] e820: reserve RAM buffer [mem 0xbf5d7000-0xbfffffff]
[    0.151226] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[    0.151228] e820: reserve RAM buffer [mem 0x13f800000-0x13fffffff]
[    0.151311] NetLabel: Initializing
[    0.151312] NetLabel:  domain hash size = 128
[    0.151313] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.151323] NetLabel:  unlabeled traffic allowed by default
[    0.151346] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.151350] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.153371] clocksource: Switched to clocksource hpet
[    0.157247] pnp: PnP ACPI init
[    0.157354] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
[    0.157356] system 00:00: [mem 0xe0000000-0xe3ffffff] has been reserved
[    0.157358] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.157359] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.157361] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.157364] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.157452] system 00:01: [io  0x0a00-0x0a1f] has been reserved
[    0.157453] system 00:01: [io  0x0290-0x029f] has been reserved
[    0.157455] system 00:01: [io  0x0a20-0x0a2f] has been reserved
[    0.157457] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.157564] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.157596] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.157599] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.157717] system 00:04: [io  0x0400-0x0453] could not be reserved
[    0.157718] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.157720] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.157722] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.157723] system 00:04: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.157725] system 00:04: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.157726] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    0.157728] system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.157770] system 00:05: [io  0x0454-0x0457] has been reserved
[    0.157772] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.157901] pnp: PnP ACPI: found 6 devices
[    0.163863] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.163869] pci 0000:05:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.163922] pci 0000:00:1c.5: BAR 14: assigned [mem 0xd0100000-0xd01fffff]
[    0.163924] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.163926] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.163928] pci 0000:00:01.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.163930] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.163933] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.163943] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.163962] pci 0000:00:1c.4: PCI bridge to [bus 03-04]
[    0.163973] pci 0000:05:00.0: BAR 6: assigned [mem 0xd0100000-0xd010ffff pref]
[    0.163974] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.163977] pci 0000:00:1c.5:   bridge window [io  0xd000-0xdfff]
[    0.163981] pci 0000:00:1c.5:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.163984] pci 0000:00:1c.5:   bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
[    0.163989] pci 0000:00:1c.6: PCI bridge to [bus 06]
[    0.163994] pci 0000:00:1c.6:   bridge window [mem 0xfe500000-0xfe5fffff]
[    0.164001] pci 0000:00:1c.7: PCI bridge to [bus 07]
[    0.164011] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.164013] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.164014] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.164016] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xffffffff window]
[    0.164017] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.164019] pci_bus 0000:01: resource 1 [mem 0xfe600000-0xfe6fffff]
[    0.164020] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.164022] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7 window]
[    0.164023] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff window]
[    0.164024] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.164026] pci_bus 0000:03: resource 7 [mem 0xc0000000-0xffffffff window]
[    0.164027] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
[    0.164029] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
[    0.164030] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.164031] pci_bus 0000:04: resource 7 [mem 0xc0000000-0xffffffff window]
[    0.164033] pci_bus 0000:05: resource 0 [io  0xd000-0xdfff]
[    0.164034] pci_bus 0000:05: resource 1 [mem 0xd0100000-0xd01fffff]
[    0.164035] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
[    0.164037] pci_bus 0000:06: resource 1 [mem 0xfe500000-0xfe5fffff]
[    0.164064] NET: Registered protocol family 2
[    0.164190] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.164249] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.164310] TCP: Hash tables configured (established 32768 bind 32768)
[    0.164329] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.164342] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.164376] NET: Registered protocol family 1
[    0.413400] pci 0000:01:00.0: Video device with shadowed ROM
[    0.413493] PCI: CLS 64 bytes, default 64
[    0.413533] Unpacking initramfs...
[    0.460399] Freeing initrd memory: 3476K (ffff880037926000 - ffff880037c8b000)
[    0.460408] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.460410] software IO TLB [mem 0xbb424000-0xbf424000] (64MB) mapped at [ffff8800bb424000-ffff8800bf423fff]
[    0.460455] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    0.460457] hw unit of domain pp0-core 2^-16 Joules
[    0.460458] hw unit of domain package 2^-16 Joules
[    0.460458] hw unit of domain pp1-gpu 2^-16 Joules
[    0.460551] microcode: CPU0 sig=0x206a7, pf=0x2, revision=0x14
[    0.460556] microcode: CPU1 sig=0x206a7, pf=0x2, revision=0x14
[    0.460563] microcode: CPU2 sig=0x206a7, pf=0x2, revision=0x14
[    0.460569] microcode: CPU3 sig=0x206a7, pf=0x2, revision=0x14
[    0.460610] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.460673] Scanning for low memory corruption every 60 seconds
[    0.460861] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.460874] Initialise system trusted keyring
[    0.461181] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.462332] zpool: loaded
[    0.462334] zbud: loaded
[    0.462465] VFS: Disk quotas dquot_6.6.0
[    0.462491] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.462605] Key type big_key registered
[    0.462693] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.462720] io scheduler noop registered
[    0.462722] io scheduler deadline registered
[    0.462746] io scheduler cfq registered (default)
[    0.463255] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.463257] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.463259] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.463261] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.463279] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.463282] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.463300] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
[    0.463301] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    0.463317] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
[    0.463336] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
[    0.463337] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    0.463340] pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
[    0.463358] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    0.463361] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[    0.463366] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.463371] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.463380] vesafb: mode is 1400x1050x32, linelength=5632, pages=0
[    0.463381] vesafb: scrolling: redraw
[    0.463382] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.463394] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90000800000, using 5824k, total 5824k
[    0.527414] Console: switching to colour frame buffer device 175x65
[    0.591031] fb0: VESA VGA frame buffer device
[    0.591043] intel_idle: MWAIT substates: 0x1120
[    0.591044] intel_idle: v0.4 model 0x2A
[    0.591045] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.591167] GHES: HEST is not enabled!
[    0.591219] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.591533] Linux agpgart interface v0.103
[    0.591777] rtc_cmos 00:02: RTC can wake from S4
[    0.591888] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    0.591911] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.591920] Intel P-state driver initializing.
[    0.591994] ledtrig-cpu: registered to indicate activity on CPUs
[    0.592543] NET: Registered protocol family 10
[    0.592855] NET: Registered protocol family 17
[    0.593285] Loading compiled-in X.509 certificates
[    0.593300] registered taskstats version 1
[    0.593317] zswap: loading zswap
[    0.593320] zswap: using zbud pool
[    0.593326] zswap: using lzo compressor
[    0.593934]   Magic number: 0:339:796
[    0.594047] rtc_cmos 00:02: setting system clock to 2016-01-03 18:47:59 UTC (1451846879)
[    0.594145] PM: Hibernation image not present or could not be loaded.
[    0.594596] Freeing unused kernel memory: 1180K (ffffffff818e8000 - ffffffff81a0f000)
[    0.594598] Write protecting the kernel read-only data: 8192k
[    0.595002] Freeing unused kernel memory: 520K (ffff88000157e000 - ffff880001600000)
[    0.595171] Freeing unused kernel memory: 280K (ffff8800017ba000 - ffff880001800000)
[    0.604534] random: systemd-tmpfile urandom read with 1 bits of entropy available
[    0.640622] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.641145] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.641197] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.646473] ACPI: bus type USB registered
[    0.646503] usbcore: registered new interface driver usbfs
[    0.646516] usbcore: registered new interface driver hub
[    0.646550] usbcore: registered new device driver usb
[    0.646980] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.647150] ehci-pci: EHCI PCI platform driver
[    0.647307] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.647316] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.647329] ehci-pci 0000:00:1a.0: debug port 2
[    0.648508] SCSI subsystem initialized
[    0.650052] libata version 3.00 loaded.
[    0.651234] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.651248] ehci-pci 0000:00:1a.0: irq 23, io mem 0xfe707000
[    0.659967] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.660161] hub 1-0:1.0: USB hub found
[    0.660169] hub 1-0:1.0: 2 ports detected
[    0.660305] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    0.660314] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 2
[    0.660478] xhci_hcd 0000:06:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x00000004
[    0.660769] hub 2-0:1.0: USB hub found
[    0.660780] hub 2-0:1.0: 2 ports detected
[    0.660887] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    0.660891] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 3
[    0.661055] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.661061] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    0.661073] ehci-pci 0000:00:1d.0: debug port 2
[    0.663819] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.664025] hub 3-0:1.0: USB hub found
[    0.664042] hub 3-0:1.0: 2 ports detected
[    0.664963] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.664969] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfe706000
[    0.673332] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.673645] hub 4-0:1.0: USB hub found
[    0.673655] hub 4-0:1.0: 2 ports detected
[    0.673813] ahci 0000:00:1f.2: version 3.0
[    0.686683] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
[    0.686688] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    0.694194] scsi host0: ahci
[    0.694665] scsi host1: ahci
[    0.695074] scsi host2: ahci
[    0.695404] scsi host3: ahci
[    0.695665] scsi host4: ahci
[    0.695941] scsi host5: ahci
[    0.696015] ata1: SATA max UDMA/133 abar m2048@0xfe705000 port 0xfe705100 irq 34
[    0.696017] ata2: DUMMY
[    0.696020] ata3: SATA max UDMA/133 abar m2048@0xfe705000 port 0xfe705200 irq 34
[    0.696022] ata4: DUMMY
[    0.696023] ata5: DUMMY
[    0.696024] ata6: DUMMY
[    0.966594] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.979917] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    1.013268] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.013294] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.015533] ata1.00: ATA-8: WDC WD10EALX-009BA0, 15.01H15, max UDMA/133
[    1.015546] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.017631] ata3.00: ATAPI: ATAPI   iHAS122, ZL08, max UDMA/100
[    1.017865] ata1.00: configured for UDMA/133
[    1.018168] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EALX-009 1H15 PQ: 0 ANSI: 5
[    1.018467] ata3.00: configured for UDMA/100
[    1.020678] scsi 2:0:0:0: CD-ROM            ATAPI    iHAS122          ZL08 PQ: 0 ANSI: 5
[    1.033379] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.033435] sd 0:0:0:0: [sda] Write Protect is off
[    1.033438] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.033467] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.045811] sr 2:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.045815] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.046028] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    1.084770]  sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
[    1.085801] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.090670] hub 1-1:1.0: USB hub found
[    1.090853] hub 1-1:1.0: 6 ports detected
[    1.110476] hub 4-1:1.0: USB hub found
[    1.110681] hub 4-1:1.0: 8 ports detected
[    1.356478] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[    1.379788] usb 4-1.2: new high-speed USB device number 3 using ehci-pci
[    1.459767] tsc: Refined TSC clocksource calibration: 3092.974 MHz
[    1.459772] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2c955ac38be, max_idle_ns: 440795348546 ns
[    1.518393] usb-storage 1-1.4:1.0: USB Mass Storage device detected
[    1.518567] scsi host6: usb-storage 1-1.4:1.0
[    1.518660] usbcore: registered new interface driver usb-storage
[    1.519192] usbcore: registered new interface driver uas
[    1.533088] usb 4-1.6: new low-speed USB device number 4 using ehci-pci
[    1.583124] usb 1-1.5: new full-speed USB device number 4 using ehci-pci
[    1.624915] hidraw: raw HID events driver (C) Jiri Kosina
[    1.632966] usbcore: registered new interface driver usbhid
[    1.632970] usbhid: USB HID core driver
[    1.633966] input: Logitech USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/0003:046D:C31A.0001/input/input2
[    1.678405] logitech-djreceiver 0003:046D:C52B.0005: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1a.0-1.5/input2
[    1.686586] hid-generic 0003:046D:C31A.0001: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Multimedia Keyboard] on usb-0000:00:1d.0-1.6/input0
[    1.687801] input: Logitech USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.1/0003:046D:C31A.0002/input/input3
[    1.739939] hid-generic 0003:046D:C31A.0002: input,hidraw2: USB HID v1.10 Device [Logitech USB Multimedia Keyboard] on usb-0000:00:1d.0-1.6/input1
[    1.801404] input: Logitech Performance MX as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.2/0003:046D:C52B.0005/0003:046D:101A.0006/input/input4
[    1.801540] logitech-hidpp-device 0003:046D:101A.0006: input,hidraw3: USB HID v1.11 Mouse [Logitech Performance MX] on usb-0000:00:1a.0-1.5:1
[    1.891278] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    2.459722] clocksource: Switched to clocksource tsc
[    2.524675] random: nonblocking pool is initialized
[    2.525805] scsi 6:0:0:0: Direct-Access     TEAC     USB   HS-CF Card 4.00 PQ: 0 ANSI: 0
[    2.530003] scsi 6:0:0:1: Direct-Access     TEAC     USB   HS-xD/SM   4.00 PQ: 0 ANSI: 0
[    2.533865] scsi 6:0:0:2: Direct-Access     TEAC     USB   HS-MS Card 4.00 PQ: 0 ANSI: 0
[    2.537486] scsi 6:0:0:3: Direct-Access     TEAC     USB   HS-SD Card 4.00 PQ: 0 ANSI: 0
[    2.623404] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[    2.627901] sd 6:0:0:1: [sdc] Attached SCSI removable disk
[    2.632650] sd 6:0:0:2: [sdd] Attached SCSI removable disk
[    2.636751] sd 6:0:0:3: [sde] Attached SCSI removable disk
[    2.733330] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.757318] 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)
[    2.757533] systemd[1]: Detected architecture x86-64.
[    2.762874] systemd[1]: Set hostname to <zeus>.
[    3.505554] systemd[1]: ufw.service: Cannot add dependency job, ignoring: Unit ufw.service failed to load: No such file or directory.
[    3.534892] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.534962] systemd[1]: Listening on udev Control Socket.
[    3.535002] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    3.535039] systemd[1]: Listening on LVM2 metadata daemon socket.
[    3.535072] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.535429] systemd[1]: Created slice User and Session Slice.
[    3.535447] systemd[1]: Reached target Encrypted Volumes.
[    3.535479] systemd[1]: Listening on udev Kernel Socket.
[    3.535493] systemd[1]: Reached target Remote File Systems.
[    3.535504] systemd[1]: Reached target Swap.
[    3.535544] systemd[1]: Listening on Journal Socket.
[    3.535637] systemd[1]: Created slice System Slice.
[    3.536097] systemd[1]: Mounting POSIX Message Queue File System...
[    3.536125] systemd[1]: Reached target Slices.
[    3.536679] systemd[1]: Starting Journal Service...
[    3.537205] systemd[1]: Starting Setup Virtual Console...
[    3.537355] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.537888] systemd[1]: Mounting Debug File System...
[    3.538411] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.538956] systemd[1]: Mounting Huge Pages File System...
[    3.539072] systemd[1]: Created slice system-getty.slice.
[    3.539257] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.539821] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    3.539938] systemd[1]: Created slice system-dhcpcd.slice.
[    3.539991] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.540051] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.540065] systemd[1]: Reached target Paths.
[    3.664412] EXT4-fs (sda6): re-mounted. Opts: data=ordered
[    3.724928] systemd[1]: Mounting Configuration File System...
[    3.725471] systemd[1]: Starting Apply Kernel Variables...
[    3.727156] systemd[1]: Mounted Debug File System.
[    3.727189] systemd[1]: Mounted Configuration File System.
[    3.727208] systemd[1]: Mounted POSIX Message Queue File System.
[    3.727226] systemd[1]: Mounted Huge Pages File System.
[    3.727602] systemd[1]: Started Remount Root and Kernel File Systems.
[    3.727878] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    3.738560] systemd[1]: Starting Load/Save Random Seed...
[    3.905938] systemd[1]: Starting udev Coldplug all Devices...
[    3.906572] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.965607] systemd[1]: Started Load/Save Random Seed.
[    4.830825] systemd[1]: Started udev Coldplug all Devices.
[    4.846247] systemd[1]: Started Apply Kernel Variables.
[    5.048533] systemd[1]: Started Create Static Device Nodes in /dev.
[    5.049164] systemd[1]: Starting udev Kernel Device Manager...
[    5.049190] systemd[1]: Reached target Local File Systems (Pre).
[    5.208288] systemd[1]: Mounting /tmp...
[    5.210746] systemd[1]: Mounted /tmp.
[    5.377223] systemd[1]: Started udev Kernel Device Manager.
[    5.471778] systemd[1]: Started Setup Virtual Console.
[    5.635862] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    5.635922] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
[    5.635926] ACPI: Power Button [PWRB]
[    5.635963] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[    5.635965] ACPI: Power Button [PWRF]
[    5.636194] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB_.PCI0.SBRG.GPBX) (20150619/utaddress-254)
[    5.636198] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.636200] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB_.PCI0.SBRG.GPBX) (20150619/utaddress-254)
[    5.636202] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.636203] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB_.PCI0.SBRG.GPBX) (20150619/utaddress-254)
[    5.636206] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.636207] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    5.686023] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.760462] wmi: Mapper loaded
[    5.833047] input: PC Speaker as /devices/platform/pcspkr/input/input7
[    5.969812] iTCO_vendor_support: vendor-support=0
[    5.970183] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    5.970209] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[    5.970282] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.118110] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    6.118544] r8169 0000:05:00.0 eth0: RTL8168d/8111d at 0xffffc90000746000, bc:ae:c5:c2:84:87, XID 083000c0 IRQ 36
[    6.118548] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    6.211520] asus_wmi: ASUS WMI generic driver loaded
[    6.221176] asus_wmi: Initialization: 0x0
[    6.221199] asus_wmi: BIOS WMI version: 0.9
[    6.221237] asus_wmi: SFUN value: 0x0
[    6.221518] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input9
[    6.221603] asus_wmi: Number of fans: 1
[    6.257335] [drm] Initialized drm 1.1.0 20060810
[    6.278966] AVX version of gcm_enc/dec engaged.
[    6.278969] AES CTR mode by8 optimization enabled
[    6.290303] mousedev: PS/2 mouse device common for all mice
[    6.321928] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[    6.411828] systemd[1]: Found device RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (M4A785TD Motherboard).
[    6.462096] [drm] radeon kernel modesetting enabled.
[    6.528004] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
[    6.673315] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    6.673319] AMD IOMMUv2 functionality not available on this system
[    6.687415] CRAT table not found
[    6.687419] Finished initializing topology ret=0
[    6.687457] kfd kfd: Initialized module
[    6.687715] checking generic (c0000000 5b0000) vs hw (c0000000 10000000)
[    6.687718] fb: switching to radeondrmfb from VESA VGA
[    6.687744] Console: switching to colour dummy device 80x25
[    6.688083] [drm] initializing kernel modesetting (JUNIPER 0x1002:0x68BE 0x1462:0x2081).
[    6.688096] [drm] register mmio base: 0xFE620000
[    6.688097] [drm] register mmio size: 131072
[    6.688133] ATOM BIOS: 113
[    6.688191] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    6.688194] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    6.688196] [drm] Detected VRAM RAM=1024M, BAR=256M
[    6.688197] [drm] RAM width 128bits DDR
[    6.688234] [TTM] Zone  kernel: Available graphics memory: 2016560 kiB
[    6.688236] [TTM] Initializing pool allocator
[    6.688243] [TTM] Initializing DMA pool allocator
[    6.688262] [drm] radeon: 1024M of VRAM memory ready
[    6.688263] [drm] radeon: 1024M of GTT memory ready.
[    6.688277] [drm] Loading JUNIPER Microcode
[    6.698646] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[    6.766217] systemd[1]: Reached target Sound Card.
[    6.823569] [drm] Internal thermal controller with fan control
[    6.848769] [drm] radeon: dpm initialized
[    6.862202] intel_rapl: Found RAPL domain package
[    6.862205] intel_rapl: Found RAPL domain core
[    6.862207] intel_rapl: Found RAPL domain uncore
[    6.870877] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    6.871526] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    6.882141] [drm] PCIE GART of 1024M enabled (table at 0x000000000025E000).
[    6.882238] radeon 0000:01:00.0: WB enabled
[    6.882241] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff8800b6ec9c00
[    6.882243] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff8800b6ec9c0c
[    6.882980] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc90000c1c418
[    6.882982] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    6.882983] [drm] Driver supports precise vblank timestamp query.
[    6.882985] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    6.883009] radeon 0000:01:00.0: radeon: using MSI.
[    6.883034] [drm] radeon: irq initialized.
[    6.899475] [drm] ring test on 0 succeeded in 1 usecs
[    6.899480] [drm] ring test on 3 succeeded in 2 usecs
[    7.034491] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC887: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    7.034494] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.034495] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    7.034496] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    7.034498] snd_hda_codec_realtek hdaudioC0D0:    dig-out=0x11/0x0
[    7.034499] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    7.034501] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[    7.034502] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[    7.034503] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[    7.046369] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    7.046418] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.046462] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    7.046505] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    7.046547] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    7.086539] [drm] ring test on 5 succeeded in 1 usecs
[    7.086544] [drm] UVD initialized successfully.
[    7.086723] [drm] ib test on ring 0 succeeded in 0 usecs
[    7.086746] [drm] ib test on ring 3 succeeded in 0 usecs
[    7.362148] systemd[1]: Found device WDC_WD10EALX-009BA0 7.
[    7.362781] systemd[1]: Starting File System Check on /dev/sda7...
[    7.755070] [drm] ib test on ring 5 succeeded
[    7.755872] [drm] Radeon Display Connectors
[    7.755876] [drm] Connector 0:
[    7.755877] [drm]   HDMI-A-1
[    7.755879] [drm]   HPD5
[    7.755881] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    7.755883] [drm]   Encoders:
[    7.755884] [drm]     DFP1: INTERNAL_UNIPHY1
[    7.755886] [drm] Connector 1:
[    7.755887] [drm]   DVI-I-1
[    7.755888] [drm]   HPD6
[    7.755891] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    7.755892] [drm]   Encoders:
[    7.755893] [drm]     DFP2: INTERNAL_UNIPHY
[    7.755895] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    7.755896] [drm] Connector 2:
[    7.755898] [drm]   VGA-1
[    7.755900] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    7.755901] [drm]   Encoders:
[    7.755903] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[    7.812020] [drm] fb mappable at 0xC045F000
[    7.812022] [drm] vram apper at 0xC0000000
[    7.812023] [drm] size 8294400
[    7.812024] [drm] fb depth is 24
[    7.812025] [drm]    pitch is 7680
[    7.812121] fbcon: radeondrmfb (fb0) is primary device
[    7.823074] Console: switching to colour frame buffer device 240x67
[    7.828180] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    7.828181] radeon 0000:01:00.0: registered panic notifier
[    7.841765] [drm] Initialized radeon 2.43.0 20080528 for 0000:01:00.0 on minor 0
[    7.907080] systemd[1]: Found device WDC_WD10EALX-009BA0 5.
[    7.956760] systemd[1]: Mounting /mnt/Data...
[    8.106244] fuse init (API version 7.23)
[    8.107737] systemd[1]: Mounting FUSE Control File System...
[    8.109917] systemd[1]: Mounted FUSE Control File System.
[    8.317854] systemd[1]: Started File System Check on /dev/sda7.
[    8.467426] systemd[1]: Mounting /boot...
[    9.139154] EXT4-fs (sda7): mounting ext2 file system using the ext4 subsystem
[    9.142965] EXT4-fs (sda7): mounted filesystem without journal. Opts: (null)
[    9.144156] systemd[1]: Mounted /boot.
[    9.523662] systemd[1]: Mounted /mnt/Data.
[    9.523863] systemd[1]: Reached target Local File Systems.
[    9.861426] systemd[1]: Started Journal Service.
[    9.941679] systemd-journald[163]: Received request to flush runtime journal from PID 1
[   14.794841] r8169 0000:05:00.0 eth0: link down
[   14.794878] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.794889] r8169 0000:05:00.0 eth0: link down
[   14.883094] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   16.402727] r8169 0000:05:00.0 eth0: link up
[   16.402740] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

When I re-run dmesg | grep usbcore after a reboot I don't see the driver in the list anymore. Do I have to run the modprobe-command at every boot? Is there a way to automate this?
In some articles they mention the command "insmod" instead of "modprobe". What is the difference and which one is preferred?

Does DKMS as a systemd-daemon need to run?

Thanks in advance!

Offline

#7 2016-01-03 18:17:07

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

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

        |__ Port 2: Dev 3, If 0, Class=Vendor Specific Class, Driver=, 480M

Apparently the driver does NOT bind to the device.

Btw you can check the vendor and product ids of the device with lsusb and see if it's listed in either of them:
https://github.com/abperiasamy/rtl8812A … usb_intf.c
https://github.com/Grawp/rtl8812au_rtl8 … usb_intf.c

If the driver is appropriate for the device it would probably get loaded automatically. In any case, you can use /etc/modules-load.d/ to make it load on every boot.

Last edited by tom.ty89 (2016-01-03 18:26:27)

Offline

#8 2016-01-03 18:40:00

VenomGameworld
Member
Registered: 2009-07-12
Posts: 39

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

tom.ty89 wrote:
        |__ Port 2: Dev 3, If 0, Class=Vendor Specific Class, Driver=, 480M

Apparently the driver does NOT bind to the device.

Btw you can check the vendor and product ids of the device with lsusb and see if it's listed in either of them:
https://github.com/abperiasamy/rtl8812A … usb_intf.c
https://github.com/Grawp/rtl8812au_rtl8 … usb_intf.c

I just tried executing the command without switch "-t" and now he "sees" the device.
lsusb

Bus 004 Device 004: ID 046d:c31a Logitech, Inc. Comfort Wave 450
Bus 004 Device 003: ID 7392:a812 Edimax Technology Co., Ltd 
Bus 004 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 001 Device 003: ID 0644:0200 TEAC Corp. All-In-One Multi-Card Reader CA200/B/S
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

(second line "Bus 004 Device 003: Edimax")

If the driver is appropriate for the device it would probably get loaded automatically. In any case, you can use /etc/modules-load.d/ to make it load on every boot.

According to these websites the driver from AUR should be correct:
http://www.linux-hardware-guide.com/201 … 11n-2-4ghz
https://wikidevi.com/wiki/Edimax_EW-7811UTC

Last edited by VenomGameworld (2016-01-03 18:53:42)

Offline

#9 2016-01-03 18:54:54

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

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

Grats: https://github.com/abperiasamy/rtl8812A … ntf.c#L295 , and the other fork (the one you've been trying) doesn't have this id in the file.

Yeah that's why I also suggested `lsusb.py -cui`.

Last edited by tom.ty89 (2016-01-03 18:56:20)

Offline

#10 2016-01-03 19:54:09

VenomGameworld
Member
Registered: 2009-07-12
Posts: 39

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

lsusb.py -cui

usb1             1d6b:0002 09  2.00  480MBit/s 0mA 1IF  (ehci_hcd 0000:00:1a.0) hub
 1-1             8087:0024 09  2.00  480MBit/s 0mA 1IF  (Intel Corp. Integrated Rate Matching Hub) hub
  1-1.4          0644:0200 00  2.00  480MBit/s 500mA 1IF  (TEAC CA-200 0000020AD4A3)
   1-1.4:1.0      (IF) 08:06:50 2EPs (Mass Storage:SCSI:Bulk-Only) usb-storage host6 (sdb sdc sdd sde)
  1-1.5          046d:c52b 00  2.00   12MBit/s 98mA 3IFs (Logitech USB Receiver)
   1-1.5:1.0      (IF) 03:01:01 1EP  (Human Interface Device:Boot Interface Subclass:Keyboard) usbhid 
   1-1.5:1.1      (IF) 03:01:02 1EP  (Human Interface Device:Boot Interface Subclass:Mouse) usbhid 
   1-1.5:1.2      (IF) 03:00:00 1EP  (Human Interface Device:No Subclass:None) usbhid 
usb4             1d6b:0002 09  2.00  480MBit/s 0mA 1IF  (ehci_hcd 0000:00:1d.0) hub
 4-1             8087:0024 09  2.00  480MBit/s 0mA 1IF  (Intel Corp. Integrated Rate Matching Hub) hub
  4-1.2          7392:a812 00  2.10  480MBit/s 500mA 1IF  (Realtek Edimax AC600 USB 00e04c000001)
   4-1.2:1.0      (IF) ff:ff:ff 6EPs (Vendor Specific)  
  4-1.6          046d:c31a 00  1.10  1.5MBit/s 70mA 2IFs (Logitech USB Multimedia Keyboard)
   4-1.6:1.0      (IF) 03:01:01 1EP  (Human Interface Device:Boot Interface Subclass:Keyboard) usbhid 
   4-1.6:1.1      (IF) 03:00:00 1EP  (Human Interface Device:No Subclass:None) usbhid

So you suggest I stop using this driver and add the one you mentioned earlier to DKMS?

Offline

#11 2016-01-04 03:19:28

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

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

Yeah of course. Coz it wouldn't bind without the id in the driver anyway.

Offline

#12 2016-01-05 21:47:43

VenomGameworld
Member
Registered: 2009-07-12
Posts: 39

Re: [SOLVED] USB Wireless adapter not recognized in "ip link"

Thanks. I compiled and built the driver, started the DKMS-daemon and loaded the module. After running ip link I saw my wireless interface.
Marked as solved.

Offline

Board footer

Powered by FluxBB