Kablosuz Ağ Çıktı Programı

Başlatan ct, 22 Nisan 2012 - 16:11:51

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

ct

Merhaba kablosuz ağlarla ilgili sorunların giderilmesinde verilmesi gereken çıktıları hazır hale getiren bir programcık yazdım. Gerekli komutlar için şu başlığı kullandım:

http://forum.ubuntu-tr.net/index.php?topic=28764.0

Sağolsun bytan hazırlamış hepsini. Burada değiştirdiğim sadece sudo lshw -C network yerine lshw oldu. Diğer komutlar aynı. Uçbirimi açmadan bunları hazır hale getirmek istedim. Ayrıca kendisi kopyalıyor sadece ctrl+v yapıp çıktıları foruma yapıştırmak kalıyor kullanıcıya.

Kodum ve arayüzüm biraz çirkin oldu. Arayüz olayını oldum olası sevemedim zaten :)

Görüntüsü:



package com.cagdastopcu.jlinux;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class JShell {

StringBuffer ciktiBuffer = null;

String[] strings;

String getCiktiString() {
return ciktiBuffer.toString();
}

public JShell(String[] strings) {
// TODO Auto-generated constructor stub

this.strings = strings;

}

StringBuffer Calistir() {

try {

Process process = Runtime.getRuntime().exec(strings);

BufferedReader inBufferedReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));

int read;
char[] buffer = new char[4096];
StringBuffer output = new StringBuffer();
while ((read = inBufferedReader.read(buffer)) > 0) {
ciktiBuffer = output.append(buffer, 0, read);
}
inBufferedReader.close();

process.waitFor();

System.out.println(ciktiBuffer);
return ciktiBuffer;

} catch (IOException e) {
// TODO: handle exception
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

return null;
}

}



package com.cagdastopcu.jlinux;

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.io.IOException;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class UbuntuWTGui {

private static void createJShellGui() throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException {

String[] command0 = { "/bin/bash", "-c", "cat /etc/lsb-release" };

String[] command1 = { "/bin/bash", "-c", "uname -a" };

String[] command2 = { "/bin/bash", "-c", "lspci" };

String[] command3 = { "/bin/bash", "-c", "lsusb" };

String[] command4 = { "/bin/bash", "-c", "rfkill list" };

String[] command5 = { "/bin/bash", "-c", "gksu lshw" };

String[] command6 = { "/bin/bash", "-c", "ifconfig" };

String[] command7 = { "/bin/bash", "-c", "iwconfig" };

String[] command8 = { "/bin/bash", "-c", "iwlist scanning" };

String[] command9 = { "/bin/bash", "-c", "lsmod" };

String[] command10 = { "/bin/bash", "-c", "dmesg" };

String[] command11 = { "/bin/bash", "-c", "dmesg | tail" };

JShell myJShell0 = new JShell(command0);
JShell myJShell1 = new JShell(command1);
JShell myJShell2 = new JShell(command2);
JShell myJShell3 = new JShell(command3);
JShell myJShell4 = new JShell(command4);
JShell myJShell5 = new JShell(command5);
JShell myJShell6 = new JShell(command6);
JShell myJShell7 = new JShell(command7);
JShell myJShell8 = new JShell(command8);
JShell myJShell9 = new JShell(command9);
JShell myJShell10 = new JShell(command10);
JShell myJShell11 = new JShell(command11);

JFrame frame = new JFrame("Ubuntu Wireless Test");
frame.setSize(600, 400); // default size is 0,0
frame.setLocation(500, 200); // default is 0,0 (top left corner)

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");

    JFrame.setDefaultLookAndFeelDecorated(true);
   
    JFrame.setDefaultLookAndFeelDecorated(true);

JLabel label = new JLabel();
label.setSize(20, 20);
frame.getContentPane().add(label, BorderLayout.PAGE_END);

JTextArea edi = new JTextArea();


String codeAc = "*Buraya kod açma etiketi gelecek";
String codeKapa = "*Buraya kod kapama etiketi gelecek"+"\n" + "\n";
String düzenleme = "###################################\n";

JScrollPane pScroll = new JScrollPane(edi,
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
Dimension preferredSize = new Dimension(100, 100);
pScroll.setPreferredSize(preferredSize);
edi.setSize(100, 100);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("0- cat /etc/lsb-release\n");
edi.append(düzenleme);
edi.append(myJShell0.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("1- uname -a\n");
edi.append(düzenleme);
edi.append(myJShell1.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("2- lspci\n");
edi.append(düzenleme);
edi.append(myJShell2.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("3- lsusb\n");
edi.append(düzenleme);
edi.append(myJShell3.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("4- rfkill list\n");
edi.append(düzenleme);
edi.append(myJShell4.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("5- sudo lshw\n");
edi.append(düzenleme);
edi.append(myJShell5.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("6- ifconfig\n");
edi.append(düzenleme);
edi.append(myJShell6.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("7- iwconfig\n");
edi.append(düzenleme);
edi.append(myJShell7.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("8- iwlist scanning\n");
edi.append(düzenleme);
edi.append(myJShell8.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("9- lsmod\n");
edi.append(düzenleme);
edi.append(myJShell9.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("10- cdmesg\n");
edi.append(düzenleme);
edi.append(myJShell10.Calistir().toString());
edi.append(codeKapa);

edi.append(codeAc);
edi.append(düzenleme);
edi.append("11- cdmesg | tail\n");
edi.append(düzenleme);
edi.append(myJShell11.Calistir().toString());
edi.append(düzenleme);
edi.append("Bitti...\n");
edi.append(düzenleme);
edi.append(codeKapa);

edi.setEditable(true);
edi.setEnabled(true);
edi.selectAll();
edi.copy();

frame.getContentPane().add(pScroll, BorderLayout.CENTER);

// display
// frame.pack();
frame.setVisible(true);

}

public static void main(String[] args) {

javax.swing.SwingUtilities.invokeLater(new Runnable() {

@Override
public void run() {
// TODO Auto-generated method stub
try {
try {
createJShellGui();
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (UnsupportedLookAndFeelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
}

}



Programı buraya yükledim:

http://www.cagdastopcu.com/wp-content/uploads/2012/04/UWT002.zip

Zipten çıkarıp çalıştırabilirsiniz. Sadece sudo lshw komutu kullanıldığı için kullanıcı şifrenizi istiyor. Kod çirkin olduğundan önerileriniz ve yönlendirmeleriniz benim için çok önemli. Hızlandırmak için thread kullanmam gerekirdi ama üşendim açıkçası :) Umarım işinizi kolaylaştırır.

Not: Konuyu doğru yere mi açtım bilmiyorum. Java bölümü de olabilirdi ama daha çok bu başlıkta gerekli olduğunu düşündüğümden buraya açtım.

Güncelleme: Kod etiketi ile çıktı daha düzenli hale getirilmiştir. Aşağıda örnek çıktıyı verdim.


###################################
0- cat /etc/lsb-release
###################################
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=11.10
DISTRIB_CODENAME=oneiric
DISTRIB_DESCRIPTION="Ubuntu 11.10"


###################################
1- uname -a
###################################
Linux cagdas-K53SV 3.0.0-19-generic-pae #33-Ubuntu SMP Thu Apr 19 20:59:10 UTC 2012 i686 i686 i386 GNU/Linux


###################################
2- lspci
###################################
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB Controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 (rev b5)
00:1c.1 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 (rev b5)
00:1c.5 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 6 (rev b5)
00:1d.0 USB Controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation HM65 Express Chipset Family LPC Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller (rev 05)
01:00.0 VGA compatible controller: nVidia Corporation GF106 [GeForce GT 555M] (rev a1)
03:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06)


###################################
3- lsusb
###################################
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 006: ID 0cf3:3005 Atheros Communications, Inc.
Bus 001 Device 004: ID 13d3:5710 IMC Networks
Bus 001 Device 005: ID 0bda:0139 Realtek Semiconductor Corp.
Bus 002 Device 008: ID 046d:c05a Logitech, Inc. Optical Mouse M90


###################################
4- rfkill list
###################################
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: asus-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
2: asus-bluetooth: Bluetooth
Soft blocked: yes
Hard blocked: no
3: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no


###################################
5- sudo lshw
###################################
cagdas-k53sv
    description: Laptop
    product: K53SV (To be filled by O.E.M.)
    vendor: ASUSTeK Computer Inc.
    version: 1.0
    serial: B4N0AS51395317H
    width: 32 bits
    capabilities: smbios-2.7 dmi-2.7 smp-1.4 smp
    configuration: boot=normal chassis=laptop cpus=1 family=K sku=To be filled by O.E.M. uuid=00A40DA9-5D6F-E081-38D8-F46D04321375
  *-core
       description: Motherboard
       product: K53SV
       vendor: ASUSTeK Computer Inc.
       physical id: 0
       version: 1.0
       serial: NB-1234567890
       slot: To be filled by O.E.M.
     *-firmware
          description: BIOS
          vendor: American Megatrends Inc.
          physical id: 0
          version: K53SV.308
          date: 07/17/2011
          size: 64KiB
          capacity: 1984KiB
          capabilities: pci upgrade shadowing cdboot bootselect edd int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int9keyboard int14serial int17printer acpi usb biosbootspecification
     *-cpu
          description: CPU
          product: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
          vendor: Intel Corp.
          physical id: 4
          bus info: cpu@0
          version: 6.10.7
          serial: 0002-06A7-0000-0000-0000-0000
          slot: CPU 1
          size: 800MHz
          capacity: 4GHz
          width: 64 bits
          clock: 100MHz
          capabilities: x86-64 boot fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 x2apic popcnt xsave avx lahf_lm ida arat epb xsaveopt pln pts tpr_shadow vnmi flexpriority ept vpid cpufreq
          configuration: cores=2 enabledcores=1 id=1 threads=2
        *-cache:0
             description: L1 cache
             physical id: 5
             slot: L1-Cache
             size: 32KiB
             capacity: 32KiB
             capabilities: internal write-back unified
        *-cache:1
             description: L2 cache
             physical id: 6
             slot: L2-Cache
             size: 256KiB
             capacity: 256KiB
             capabilities: internal varies unified
        *-cache:2
             description: L3 cache
             physical id: 7
             slot: L3-Cache
             size: 3MiB
             capacity: 3MiB
             capabilities: internal varies unified
        *-logicalcpu:0
             description: Logical CPU
             physical id: 1.1
             width: 64 bits
             capabilities: logical
        *-logicalcpu:1
             description: Logical CPU
             physical id: 1.2
             width: 64 bits
             capabilities: logical
        *-logicalcpu:2
             description: Logical CPU
             physical id: 1.3
             width: 64 bits
             capabilities: logical
        *-logicalcpu:3
             description: Logical CPU
             physical id: 1.4
             width: 64 bits
             capabilities: logical
        *-logicalcpu:4
             description: Logical CPU
             physical id: 1.5
             width: 64 bits
             capabilities: logical
        *-logicalcpu:5
             description: Logical CPU
             physical id: 1.6
             width: 64 bits
             capabilities: logical
        *-logicalcpu:6
             description: Logical CPU
             physical id: 1.7
             width: 64 bits
             capabilities: logical
        *-logicalcpu:7
             description: Logical CPU
             physical id: 1.8
             width: 64 bits
             capabilities: logical
        *-logicalcpu:8
             description: Logical CPU
             physical id: 1.9
             width: 64 bits
             capabilities: logical
        *-logicalcpu:9
             description: Logical CPU
             physical id: 1.a
             width: 64 bits
             capabilities: logical
        *-logicalcpu:10
             description: Logical CPU
             physical id: 1.b
             width: 64 bits
             capabilities: logical
        *-logicalcpu:11
             description: Logical CPU
             physical id: 1.c
             width: 64 bits
             capabilities: logical
        *-logicalcpu:12
             description: Logical CPU
             physical id: 1.d
             width: 64 bits
             capabilities: logical
        *-logicalcpu:13
             description: Logical CPU
             physical id: 1.e
             width: 64 bits
             capabilities: logical
        *-logicalcpu:14
             description: Logical CPU
             physical id: 1.f
             width: 64 bits
             capabilities: logical
        *-logicalcpu:15
             description: Logical CPU
             physical id: 1.10
             width: 64 bits
             capabilities: logical
     *-memory
          description: System Memory
          physical id: 3d
          slot: System board or motherboard
          size: 4GiB
        *-bank:0
             description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns)
             product: HMT325S6BFR8C-H9
             vendor: Hynix/Hyundai
             physical id: 0
             serial: 14110A1E
             slot: ChannelA-DIMM0
             size: 2GiB
             width: 64 bits
             clock: 1333MHz (0.8ns)
        *-bank:1
             description: DIMM [empty]
             product: [Empty]
             vendor: [Empty]
             physical id: 1
             serial: [Empty]
             slot: ChannelA-DIMM1
        *-bank:2
             description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns)
             product: HMT325S6BFR8C-H9
             vendor: Hynix/Hyundai
             physical id: 2
             serial: 6329989E
             slot: ChannelB-DIMM0
             size: 2GiB
             width: 64 bits
             clock: 1333MHz (0.8ns)
        *-bank:3
             description: DIMM [empty]
             product: [Empty]
             vendor: [Empty]
             physical id: 3
             serial: [Empty]
             slot: ChannelB-DIMM1
     *-pci
          description: Host bridge
          product: 2nd Generation Core Processor Family DRAM Controller
          vendor: Intel Corporation
          physical id: 100
          bus info: pci@0000:00:00.0
          version: 09
          width: 32 bits
          clock: 33MHz
          configuration: driver=agpgart-intel
          resources: irq:0
        *-pci:0
             description: PCI bridge
             product: Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port
             vendor: Intel Corporation
             physical id: 1
             bus info: pci@0000:00:01.0
             version: 09
             width: 32 bits
             clock: 33MHz
             capabilities: pci pm msi pciexpress normal_decode bus_master cap_list
             configuration: driver=pcieport
             resources: irq:40 ioport:d000(size=4096) memory:dc000000-dd0fffff ioport:c0000000(size=301989888)
           *-display
                description: VGA compatible controller
                product: GF106 [GeForce GT 555M]
                vendor: nVidia Corporation
                physical id: 0
                bus info: pci@0000:01:00.0
                version: a1
                width: 64 bits
                clock: 33MHz
                capabilities: pm msi pciexpress vga_controller bus_master cap_list rom
                configuration: driver=nvidia latency=0
                resources: irq:16 memory:dc000000-dcffffff memory:c0000000-cfffffff memory:d0000000-d1ffffff ioport:d000(size=128) memory:dd000000-dd07ffff
        *-display
             description: VGA compatible controller
             product: 2nd Generation Core Processor Family Integrated Graphics Controller
             vendor: Intel Corporation
             physical id: 2
             bus info: pci@0000:00:02.0
             version: 09
             width: 64 bits
             clock: 33MHz
             capabilities: msi pm vga_controller bus_master cap_list rom
             configuration: driver=i915 latency=0
             resources: irq:43 memory:dd400000-dd7fffff memory:b0000000-bfffffff ioport:e000(size=64)
        *-communication
             description: Communication controller
             product: 6 Series/C200 Series Chipset Family MEI Controller #1
             vendor: Intel Corporation
             physical id: 16
             bus info: pci@0000:00:16.0
             version: 04
             width: 64 bits
             clock: 33MHz
             capabilities: pm msi bus_master cap_list
             configuration: driver=mei latency=0
             resources: irq:16 memory:df60a000-df60a00f
        *-usb:0
             description: USB Controller
             product: 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2
             vendor: Intel Corporation
             physical id: 1a
             bus info: pci@0000:00:1a.0
             version: 05
             width: 32 bits
             clock: 33MHz
             capabilities: pm debug ehci bus_master cap_list
             configuration: driver=ehci_hcd latency=0
             resources: irq:16 memory:df608000-df6083ff
        *-multimedia
             description: Audio device
             product: 6 Series/C200 Series Chipset Family High Definition Audio Controller
             vendor: Intel Corporation
             physical id: 1b
             bus info: pci@0000:00:1b.0
             version: 05
             width: 64 bits
             clock: 33MHz
             capabilities: pm msi pciexpress bus_master cap_list
             configuration: driver=HDA Intel latency=0
             resources: irq:44 memory:df600000-df603fff
        *-pci:1
             description: PCI bridge
             product: 6 Series/C200 Series Chipset Family PCI Express Root Port 1
             vendor: Intel Corporation
             physical id: 1c
             bus info: pci@0000:00:1c.0
             version: b5
             width: 32 bits
             clock: 33MHz
             capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
             configuration: driver=pcieport
             resources: irq:16 ioport:c000(size=4096) memory:dec00000-df5fffff ioport:d3700000(size=10485760)
        *-pci:2
             description: PCI bridge
             product: 6 Series/C200 Series Chipset Family PCI Express Root Port 2
             vendor: Intel Corporation
             physical id: 1c.1
             bus info: pci@0000:00:1c.1
             version: b5
             width: 32 bits
             clock: 33MHz
             capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
             configuration: driver=pcieport
             resources: irq:17 ioport:b000(size=4096) memory:de200000-debfffff ioport:d2c00000(size=10485760)
           *-network
                description: Wireless interface
                product: AR9285 Wireless Network Adapter (PCI-Express)
                vendor: Atheros Communications Inc.
                physical id: 0
                bus info: pci@0000:03:00.0
                logical name: wlan0
                version: 01
                serial: e0:b9:a5:85:55:89
                width: 64 bits
                clock: 33MHz
                capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
                configuration: broadcast=yes driver=ath9k driverversion=3.0.0-19-generic-pae firmware=N/A ip=192.168.1.19 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
                resources: irq:17 memory:de200000-de20ffff
        *-pci:3
             description: PCI bridge
             product: 6 Series/C200 Series Chipset Family PCI Express Root Port 6
             vendor: Intel Corporation
             physical id: 1c.5
             bus info: pci@0000:00:1c.5
             version: b5
             width: 32 bits
             clock: 33MHz
             capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
             configuration: driver=pcieport
             resources: irq:17 ioport:a000(size=4096) memory:dd800000-de1fffff ioport:d2100000(size=10485760)
           *-network
                description: Ethernet interface
                product: RTL8111/8168B PCI Express Gigabit Ethernet controller
                vendor: Realtek Semiconductor Co., Ltd.
                physical id: 0
                bus info: pci@0000:04:00.0
                logical name: eth0
                version: 06
                serial: f4:6d:04:32:13:75
                size: 10Mbit/s
                capacity: 1Gbit/s
                width: 64 bits
                clock: 33MHz
                capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
                configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl_nic/rtl8168e-2.fw latency=0 link=no multicast=yes port=MII speed=10Mbit/s
                resources: irq:42 ioport:a000(size=256) memory:d2104000-d2104fff memory:d2100000-d2103fff
        *-usb:1
             description: USB Controller
             product: 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1
             vendor: Intel Corporation
             physical id: 1d
             bus info: pci@0000:00:1d.0
             version: 05
             width: 32 bits
             clock: 33MHz
             capabilities: pm debug ehci bus_master cap_list
             configuration: driver=ehci_hcd latency=0
             resources: irq:23 memory:df607000-df6073ff
        *-isa
             description: ISA bridge
             product: HM65 Express Chipset Family LPC Controller
             vendor: Intel Corporation
             physical id: 1f
             bus info: pci@0000:00:1f.0
             version: 05
             width: 32 bits
             clock: 33MHz
             capabilities: isa bus_master cap_list
             configuration: latency=0
        *-storage
             description: SATA controller
             product: 6 Series/C200 Series Chipset Family 6 port SATA AHCI Controller
             vendor: Intel Corporation
             physical id: 1f.2
             bus info: pci@0000:00:1f.2
             logical name: scsi0
             logical name: scsi1
             version: 05
             width: 32 bits
             clock: 66MHz
             capabilities: storage msi pm ahci_1.0 bus_master cap_list emulated
             configuration: driver=ahci latency=0
             resources: irq:41 ioport:e0b0(size=8) ioport:e0a0(size=4) ioport:e090(size=8) ioport:e080(size=4) ioport:e060(size=32) memory:df606000-df6067ff
           *-disk
                description: ATA Disk
                product: ST9500325AS
                vendor: Seagate
                physical id: 0
                bus info: scsi@0:0.0.0
                logical name: /dev/sda
                version: 0003
                serial: 6VER91K2
                size: 465GiB (500GB)
                capabilities: partitioned partitioned:dos
                configuration: ansiversion=5 signature=98b324f9
              *-volume:0
                   description: Windows FAT volume
                   vendor: MSDOS5.0
                   physical id: 1
                   bus info: scsi@0:0.0.0,1
                   logical name: /dev/sda1
                   version: FAT32
                   serial: 04b7-09c4
                   size: 21GiB
                   capacity: 21GiB
                   capabilities: primary hidden fat initialized
                   configuration: FATs=2 filesystem=fat
              *-volume:1
                   description: Windows NTFS volume
                   physical id: 2
                   bus info: scsi@0:0.0.0,2
                   logical name: /dev/sda2
                   version: 3.1
                   serial: d027d078-2130-8044-88c2-126716eae9f5
                   size: 116GiB
                   capacity: 116GiB
                   capabilities: primary bootable ntfs initialized
                   configuration: clustersize=4096 created=2011-04-25 19:25:43 filesystem=ntfs label=OS modified_by_chkdsk=true mounted_on_nt4=true resize_log_file=true state=dirty upgrade_on_mount=true
              *-volume:2
                   description: Extended partition
                   physical id: 3
                   bus info: scsi@0:0.0.0,3
                   logical name: /dev/sda3
                   size: 327GiB
                   capacity: 327GiB
                   capabilities: primary extended partitioned partitioned:extended
                 *-logicalvolume:0
                      description: Linux filesystem partition
                      physical id: 5
                      logical name: /dev/sda5
                      logical name: /
                      capacity: 130GiB
                      configuration: mount.fstype=ext3 mount.options=rw,relatime,errors=remount-ro,commit=5,barrier=0,data=ordered state=mounted
                 *-logicalvolume:1
                      description: HPFS/NTFS partition
                      physical id: 6
                      logical name: /dev/sda6
                      capacity: 195GiB
                 *-logicalvolume:2
                      description: Linux swap / Solaris partition
                      physical id: 7
                      logical name: /dev/sda7
                      capacity: 2180MiB
                      capabilities: nofs
           *-cdrom
                description: DVD-RAM writer
                product: DVD-RAM UJ8A0ASW
                vendor: MATSHITA
                physical id: 1
                bus info: scsi@1:0.0.0
                logical name: /dev/cdrom
                logical name: /dev/cdrw
                logical name: /dev/dvd
                logical name: /dev/dvdrw
                logical name: /dev/scd0
                logical name: /dev/sr0
                version: 1.01
                capabilities: removable audio cd-r cd-rw dvd dvd-r dvd-ram
                configuration: ansiversion=5 status=nodisc
        *-serial UNCLAIMED
             description: SMBus
             product: 6 Series/C200 Series Chipset Family SMBus Controller
             vendor: Intel Corporation
             physical id: 1f.3
             bus info: pci@0000:00:1f.3
             version: 05
             width: 64 bits
             clock: 33MHz
             configuration: latency=0
             resources: memory:df605000-df6050ff ioport:e040(size=32)
     *-scsi
          physical id: 1
          bus info: usb@1:1.4
          logical name: scsi6
          capabilities: emulated scsi-host
          configuration: driver=rts5139
        *-disk
             description: SCSI Disk
             product: xD/SD/M.S.
             vendor: Generic-
             physical id: 0.0.0
             bus info: scsi@6:0.0.0
             logical name: /dev/sdb
             version: 1.00
             serial: 3
             capabilities: removable
           *-medium
                physical id: 0
                logical name: /dev/sdb
  *-battery:0
       description: Lithium Ion Battery
       product: MOLICEL
       vendor: E-One Moli Energy
       physical id: 1
       version: 10/31/2006
       serial: FSPK50074
       slot: Real 1
  *-battery:1
       description: Lithium Ion Battery
       product: MOLICEL
       vendor: E-One Moli Energy
       physical id: 2
       version: 10/31/2006
       serial: FSPK50074
       slot: Real 2
  *-battery:2
       description: Lithium Ion Battery
       product: CRB Battery 0
       vendor: -Virtual Battery 0-
       physical id: 3
       version: 10/31/2006
       serial: Battery 0
       slot: Fake
  *-battery:3
       description: Nickel Cadmium Battery
       product: Battery Name
       vendor: Battery Manufacturer
       physical id: 4
       version: 01/01/2007
       serial: Serial Number
       slot: Location of the battery
  *-power UNCLAIMED
       description: To Be Filled By O.E.M.
       product: To Be Filled By O.E.M.
       vendor: To Be Filled By O.E.M.
       physical id: 5
       version: To Be Filled By O.E.M.
       serial: To Be Filled By O.E.M.
       capacity: 32768mWh


###################################
6- ifconfig
###################################
eth0      Link encap:Ethernet  HWaddr f4:6d:04:32:13:75 
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:42 Base address:0xe000

lo        Link encap:Local Loopback 
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:13462 errors:0 dropped:0 overruns:0 frame:0
          TX packets:13462 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:1591141 (1.5 MB)  TX bytes:1591141 (1.5 MB)

wlan0     Link encap:Ethernet  HWaddr e0:b9:a5:85:55:89 
          inet addr:192.168.1.19  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::e2b9:a5ff:fe85:5589/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3236014 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2989802 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3148033739 (3.1 GB)  TX bytes:1901946970 (1.9 GB)



###################################
7- iwconfig
###################################
wlan0     IEEE 802.11bgn  ESSID:"NETGEAR" 
          Mode:Managed  Frequency:2.437 GHz  Access Point: 00:1E:2A:D9:1B:77   
          Bit Rate=54 Mb/s   Tx-Power=15 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=40/70  Signal level=-70 dBm 
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:213  Invalid misc:14620   Missed beacon:0



###################################
8- iwlist scanning
###################################
wlan0     Scan completed :
          Cell 01 - Address: 00:1E:2A:D9:1B:77
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=45/70  Signal level=-65 dBm 
                    Encryption key:on
                    ESSID:"NETGEAR"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000067537c2b68
                    Extra: Last beacon: 1060836ms ago
                    IE: Unknown: 00074E455447454152
                    IE: Unknown: 010882848B0C12961824
                    IE: Unknown: 030106
                    IE: Unknown: 0706444520010D14
                    IE: Unknown: 200100
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: DD0900037F01010035FF7F



###################################
9- lsmod
###################################
Module                  Size  Used by
nvidia              10390874  32
bnep                   17923  2
rfcomm                 38408  0
pci_stub               12550  1
vboxpci                22882  0
vboxnetadp             13328  0
vboxnetflt             27211  0
vboxdrv               252188  3 vboxpci,vboxnetadp,vboxnetflt
acpi_call              12551  0
kvm_intel              55857  0
kvm                   337036  1 kvm_intel
parport_pc             32114  0
ppdev                  12849  0
binfmt_misc            17292  1
snd_hda_codec_hdmi     31426  1
snd_hda_codec_realtek   254163  1
joydev                 17393  0
rts5139               279517  0
uvcvideo               67271  0
videodev               85626  1 uvcvideo
btusb                  18214  1
bluetooth             148869  13 bnep,rfcomm,btusb
fwload                 12799  1 btusb
ath3k                  13011  0
snd_hda_intel          28358  2
snd_hda_codec          91888  3 snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_intel
snd_hwdep              13276  1 snd_hda_codec
snd_pcm                80435  3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
asus_nb_wmi            12469  0
asus_wmi               19333  1 asus_nb_wmi
sparse_keymap          13658  1 asus_wmi
mxm_wmi                12859  0
snd_seq_midi           13132  0
snd_rawmidi            25241  1 snd_seq_midi
snd_seq_midi_event     14475  1 snd_seq_midi
snd_seq                51567  2 snd_seq_midi,snd_seq_midi_event
wmi                    18744  2 asus_wmi,mxm_wmi
arc4                   12473  2
snd_timer              28932  2 snd_pcm,snd_seq
snd_seq_device         14172  3 snd_seq_midi,snd_rawmidi,snd_seq
ath9k                 112612  0
psmouse                71486  0
serio_raw              12990  0
snd                    55902  14 snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
mac80211              393421  1 ath9k
ath9k_common           13599  1 ath9k
ath9k_hw              293933  2 ath9k,ath9k_common
ath                    19387  2 ath9k,ath9k_hw
cfg80211              172427  3 ath9k,mac80211,ath
i915                  509594  2
mei                    36466  0
drm_kms_helper         32889  1 i915
soundcore              12600  1 snd
snd_page_alloc         14108  2 snd_hda_intel,snd_pcm
drm                   196290  3 i915,drm_kms_helper
i2c_algo_bit           13199  1 i915
video                  19069  1 i915
lp                     17455  0
parport                40930  3 parport_pc,ppdev,lp
usbhid                 41905  0
hid                    77367  1 usbhid
r8169                  47200  0
ahci                   21634  2
libahci                25761  1 ahci


###################################
10- cdmesg
###################################
re(TM) i5-2410M CPU @ 2.30GHz stepping 07
[    0.168710] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver.
[    0.168716] ... version:                3
[    0.168717] ... bit width:              48
[    0.168718] ... generic registers:      4
[    0.168720] ... value mask:             0000ffffffffffff
[    0.168721] ... max period:             000000007fffffff
[    0.168723] ... fixed-purpose events:   3
[    0.168724] ... event mask:             000000070000000f
[    0.169058] CPU 1 irqstacks, hard=f74d6000 soft=f74e0000
[    0.169059] Booting Node   0, Processors  #1
[    0.169061] smpboot cpu 1: start_ip = 9a000
[    0.189819] Initializing CPU#1
[    0.288817] CPU 2 irqstacks, hard=f74ea000 soft=f74ec000
[    0.288819]  #2
[    0.288820] smpboot cpu 2: start_ip = 9a000
[    0.299093] Initializing CPU#2
[    0.396782] CPU 3 irqstacks, hard=f7516000 soft=f7518000
[    0.396784]  #3
[    0.396785] smpboot cpu 3: start_ip = 9a000
[    0.417665] Initializing CPU#3
[    0.516616] Brought up 4 CPUs
[    0.516618] Total of 4 processors activated (18357.74 BogoMIPS).
[    0.519266] devtmpfs: initialized
[    0.519390] PM: Registering ACPI NVS region at aaf19000 (847872 bytes)
[    0.520954] print_constraints: dummy:
[    0.520981] Time:  0:06:01  Date: 04/24/12
[    0.521013] NET: Registered protocol family 16
[    0.521099] Trying to unpack rootfs image as initramfs...
[    0.521106] EISA bus registered
[    0.521121] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.521123] ACPI: bus type pci registered
[    0.521180] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.521183] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
[    0.521185] PCI: Using MMCONFIG for extended config space
[    0.521187] PCI: Using configuration type 1 for base access
[    0.521956] bio: create slab <bio-0> at 0
[    0.524222] ACPI: EC: EC description table is found, configuring boot EC
[    0.524227] ACPI: EC: Look up EC in DSDT
[    0.526531] ACPI: Executed 1 blocks of module-level executable AML code
[    0.556670] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.652925] ACPI: SSDT aadbc718 00694 (v01  PmRef  Cpu0Cst 00003001 INTL 20091112)
[    0.653492] ACPI: Dynamic OEM Table Load:
[    0.653495] ACPI: SSDT   (null) 00694 (v01  PmRef  Cpu0Cst 00003001 INTL 20091112)
[    0.668825] ACPI: SSDT aadbda98 00303 (v01  PmRef    ApIst 00003000 INTL 20091112)
[    0.669425] ACPI: Dynamic OEM Table Load:
[    0.669427] ACPI: SSDT   (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20091112)
[    0.700674] ACPI: SSDT aadbbd98 00119 (v01  PmRef    ApCst 00003000 INTL 20091112)
[    0.701241] ACPI: Dynamic OEM Table Load:
[    0.701243] ACPI: SSDT   (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20091112)
[    0.764715] ACPI: Interpreter enabled
[    0.764724] ACPI: (supports S0 S1 S3 S4 S5)
[    0.764749] ACPI: Using IOAPIC for interrupt routing
[    0.781599] Freeing initrd memory: 13320k freed
[    0.874922] ACPI: EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
[    0.875148] ACPI: No dock devices found.
[    0.875150] HEST: Table not found.
[    0.875154] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.875417] \_SB_.PCI0:_OSC invalid UUID
[    0.875418] _OSC request data:1 8 1f
[    0.875422] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.875860] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.875862] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.875864] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.875867] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
[    0.875869] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[    0.875871] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[    0.875873] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
[    0.875875] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[    0.875877] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
[    0.875879] pci_root PNP0A08:00: host bridge window [mem 0xafa00000-0xfeafffff]
[    0.875881] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
[    0.875895] pci 0000:00:00.0: [8086:0104] type 0 class 0x000600
[    0.875935] pci 0000:00:01.0: [8086:0101] type 1 class 0x000604
[    0.875970] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.875973] pci 0000:00:01.0: PME# disabled
[    0.875994] pci 0000:00:02.0: [8086:0116] type 0 class 0x000300
[    0.876005] pci 0000:00:02.0: reg 10: [mem 0xdd400000-0xdd7fffff 64bit]
[    0.876012] pci 0000:00:02.0: reg 18: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.876017] pci 0000:00:02.0: reg 20: [io  0xe000-0xe03f]
[    0.876075] pci 0000:00:16.0: [8086:1c3a] type 0 class 0x000780
[    0.876099] pci 0000:00:16.0: reg 10: [mem 0xdf60a000-0xdf60a00f 64bit]
[    0.876180] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.876184] pci 0000:00:16.0: PME# disabled
[    0.876219] pci 0000:00:1a.0: [8086:1c2d] type 0 class 0x000c03
[    0.876241] pci 0000:00:1a.0: reg 10: [mem 0xdf608000-0xdf6083ff]
[    0.876338] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.876343] pci 0000:00:1a.0: PME# disabled
[    0.876368] pci 0000:00:1b.0: [8086:1c20] type 0 class 0x000403
[    0.876385] pci 0000:00:1b.0: reg 10: [mem 0xdf600000-0xdf603fff 64bit]
[    0.876462] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.876466] pci 0000:00:1b.0: PME# disabled
[    0.876488] pci 0000:00:1c.0: [8086:1c10] type 1 class 0x000604
[    0.876573] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.876577] pci 0000:00:1c.0: PME# disabled
[    0.876602] pci 0000:00:1c.1: [8086:1c12] type 1 class 0x000604
[    0.876686] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.876691] pci 0000:00:1c.1: PME# disabled
[    0.876718] pci 0000:00:1c.5: [8086:1c1a] type 1 class 0x000604
[    0.876802] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.876807] pci 0000:00:1c.5: PME# disabled
[    0.876838] pci 0000:00:1d.0: [8086:1c26] type 0 class 0x000c03
[    0.876861] pci 0000:00:1d.0: reg 10: [mem 0xdf607000-0xdf6073ff]
[    0.876956] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.876961] pci 0000:00:1d.0: PME# disabled
[    0.876986] pci 0000:00:1f.0: [8086:1c49] type 0 class 0x000601
[    0.877118] pci 0000:00:1f.2: [8086:1c03] type 0 class 0x000106
[    0.877138] pci 0000:00:1f.2: reg 10: [io  0xe0b0-0xe0b7]
[    0.877146] pci 0000:00:1f.2: reg 14: [io  0xe0a0-0xe0a3]
[    0.877155] pci 0000:00:1f.2: reg 18: [io  0xe090-0xe097]
[    0.877164] pci 0000:00:1f.2: reg 1c: [io  0xe080-0xe083]
[    0.877173] pci 0000:00:1f.2: reg 20: [io  0xe060-0xe07f]
[    0.877182] pci 0000:00:1f.2: reg 24: [mem 0xdf606000-0xdf6067ff]
[    0.877230] pci 0000:00:1f.2: PME# supported from D3hot
[    0.877234] pci 0000:00:1f.2: PME# disabled
[    0.877253] pci 0000:00:1f.3: [8086:1c22] type 0 class 0x000c05
[    0.877269] pci 0000:00:1f.3: reg 10: [mem 0xdf605000-0xdf6050ff 64bit]
[    0.877292] pci 0000:00:1f.3: reg 20: [io  0xe040-0xe05f]
[    0.877350] pci 0000:01:00.0: [10de:0df4] type 0 class 0x000300
[    0.877359] pci 0000:01:00.0: reg 10: [mem 0xdc000000-0xdcffffff]
[    0.877368] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.877378] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.877385] pci 0000:01:00.0: reg 24: [io  0xd000-0xd07f]
[    0.877391] pci 0000:01:00.0: reg 30: [mem 0xdd000000-0xdd07ffff pref]
[    0.884470] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.884478] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.884486] pci 0000:00:01.0:   bridge window [mem 0xdc000000-0xdd0fffff]
[    0.884497] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.884604] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.884608] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.884613] pci 0000:00:1c.0:   bridge window [mem 0xdec00000-0xdf5fffff]
[    0.884620] pci 0000:00:1c.0:   bridge window [mem 0xd3700000-0xd40fffff 64bit pref]
[    0.884691] pci 0000:03:00.0: [168c:002b] type 0 class 0x000280
[    0.884720] pci 0000:03:00.0: reg 10: [mem 0xde200000-0xde20ffff 64bit]
[    0.884856] pci 0000:03:00.0: supports D1
[    0.884857] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
[    0.884863] pci 0000:03:00.0: PME# disabled
[    0.892469] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[    0.892478] pci 0000:00:1c.1:   bridge window [io  0xb000-0xbfff]
[    0.892489] pci 0000:00:1c.1:   bridge window [mem 0xde200000-0xdebfffff]
[    0.892504] pci 0000:00:1c.1:   bridge window [mem 0xd2c00000-0xd35fffff 64bit pref]
[    0.892625] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
[    0.892647] pci 0000:04:00.0: reg 10: [io  0xa000-0xa0ff]
[    0.892683] pci 0000:04:00.0: reg 18: [mem 0xd2104000-0xd2104fff 64bit pref]
[    0.892706] pci 0000:04:00.0: reg 20: [mem 0xd2100000-0xd2103fff 64bit pref]
[    0.892802] pci 0000:04:00.0: supports D1 D2
[    0.892803] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.892809] pci 0000:04:00.0: PME# disabled
[    0.900466] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
[    0.900476] pci 0000:00:1c.5:   bridge window [io  0xa000-0xafff]
[    0.900486] pci 0000:00:1c.5:   bridge window [mem 0xdd800000-0xde1fffff]
[    0.900502] pci 0000:00:1c.5:   bridge window [mem 0xd2100000-0xd2afffff 64bit pref]
[    0.900545] pci_bus 0000:00: on NUMA node 0
[    0.900553] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.900788] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.900828] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.900873] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
[    0.900916] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGR._PRT]
[    0.900998] \_SB_.PCI0:_OSC invalid UUID
[    0.900999] _OSC request data:1 1f 1f
[    0.901003]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.901034] \_SB_.PCI0:_OSC invalid UUID
[    0.901035] _OSC request data:1 0 1d
[    0.901039]  pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
[    0.901040] ACPI _OSC control for PCIe not granted, disabling ASPM
[    1.576463] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    1.576511] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    1.576556] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    1.576601] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 10 11 12 14 15)
[    1.576645] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.576693] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.576738] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 10 11 12 14 15)
[    1.576783] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 *4 5 6 10 11 12 14 15)
[    1.576876] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    1.576884] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    1.576886] vgaarb: loaded
[    1.576887] vgaarb: bridge control possible 0000:01:00.0
[    1.576889] vgaarb: bridge control possible 0000:00:02.0
[    1.577056] SCSI subsystem initialized
[    1.577100] libata version 3.00 loaded.
[    1.577136] usbcore: registered new interface driver usbfs
[    1.577145] usbcore: registered new interface driver hub
[    1.577165] usbcore: registered new device driver usb
[    1.577233] PCI: Using ACPI for IRQ routing
[    1.578807] PCI: pci_cache_line_size set to 64 bytes
[    1.578881] reserve RAM buffer: 000000000009e800 - 000000000009ffff
[    1.578883] reserve RAM buffer: 00000000aace0000 - 00000000abffffff
[    1.578887] reserve RAM buffer: 00000000aacf6000 - 00000000abffffff
[    1.578890] reserve RAM buffer: 00000000aaf19000 - 00000000abffffff
[    1.578892] reserve RAM buffer: 00000000aaffd000 - 00000000abffffff
[    1.578894] reserve RAM buffer: 000000014fe00000 - 000000014fffffff
[    1.578972] NetLabel: Initializing
[    1.578973] NetLabel:  domain hash size = 128
[    1.578975] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.578983] NetLabel:  unlabeled traffic allowed by default
[    1.579021] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.579027] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.581044] Switching to clocksource hpet
[    1.583920] Switched to NOHz mode on CPU #0
[    1.584019] Switched to NOHz mode on CPU #3
[    1.584031] Switched to NOHz mode on CPU #1
[    1.584053] Switched to NOHz mode on CPU #2
[    1.586700] AppArmor: AppArmor Filesystem Enabled
[    1.586719] pnp: PnP ACPI init
[    1.586733] ACPI: bus type pnp registered
[    1.586979] pnp 00:00: [bus 00-3e]
[    1.586982] pnp 00:00: [io  0x0000-0x0cf7 window]
[    1.586984] pnp 00:00: [io  0x0cf8-0x0cff]
[    1.586986] pnp 00:00: [io  0x0d00-0xffff window]
[    1.586988] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    1.586990] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    1.586992] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    1.586994] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    1.586996] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    1.586997] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    1.586999] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    1.587001] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    1.587003] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    1.587005] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    1.587007] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    1.587009] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    1.587011] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    1.587013] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    1.587015] pnp 00:00: [mem 0xafa00000-0xfeafffff window]
[    1.587017] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[    1.587086] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.587099] pnp 00:01: [io  0x0000-0x001f]
[    1.587101] pnp 00:01: [io  0x0081-0x0091]
[    1.587103] pnp 00:01: [io  0x0093-0x009f]
[    1.587104] pnp 00:01: [io  0x00c0-0x00df]
[    1.587106] pnp 00:01: [dma 4]
[    1.587125] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.587132] pnp 00:02: [mem 0xff000000-0xffffffff]
[    1.587153] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    1.587220] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    1.587239] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.587248] pnp 00:04: [io  0x00f0]
[    1.587257] pnp 00:04: [irq 13]
[    1.587276] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.587286] pnp 00:05: [io  0x002e-0x002f]
[    1.587288] pnp 00:05: [io  0x004e-0x004f]
[    1.587289] pnp 00:05: [io  0x0061]
[    1.587291] pnp 00:05: [io  0x0063]
[    1.587292] pnp 00:05: [io  0x0065]
[    1.587294] pnp 00:05: [io  0x0067]
[    1.587295] pnp 00:05: [io  0x0070]
[    1.587297] pnp 00:05: [io  0x0080]
[    1.587298] pnp 00:05: [io  0x0092]
[    1.587300] pnp 00:05: [io  0x00b2-0x00b3]
[    1.587302] pnp 00:05: [io  0x0680-0x069f]
[    1.587303] pnp 00:05: [io  0x1000-0x100f]
[    1.587305] pnp 00:05: [io  0xffff]
[    1.587306] pnp 00:05: [io  0xffff]
[    1.587308] pnp 00:05: [io  0x0400-0x0453]
[    1.587310] pnp 00:05: [io  0x0458-0x047f]
[    1.587311] pnp 00:05: [io  0x0500-0x057f]
[    1.587313] pnp 00:05: [io  0x164e-0x164f]
[    1.587354] system 00:05: [io  0x0680-0x069f] has been reserved
[    1.587357] system 00:05: [io  0x1000-0x100f] has been reserved
[    1.587359] system 00:05: [io  0xffff] has been reserved
[    1.587362] system 00:05: [io  0xffff] has been reserved
[    1.587364] system 00:05: [io  0x0400-0x0453] has been reserved
[    1.587366] system 00:05: [io  0x0458-0x047f] has been reserved
[    1.587368] system 00:05: [io  0x0500-0x057f] has been reserved
[    1.587370] system 00:05: [io  0x164e-0x164f] has been reserved
[    1.587373] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.587380] pnp 00:06: [io  0x0070-0x0077]
[    1.587385] pnp 00:06: [irq 8]
[    1.587404] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.587422] pnp 00:07: [io  0x0454-0x0457]
[    1.587452] system 00:07: [io  0x0454-0x0457] has been reserved
[    1.587455] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.587479] pnp 00:08: [io  0x0060]
[    1.587480] pnp 00:08: [io  0x0064]
[    1.587485] pnp 00:08: [irq 1]
[    1.587507] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    1.587544] pnp 00:09: [irq 12]
[    1.587568] pnp 00:09: Plug and Play ACPI device, IDs ETD0101 PNP0f0e PNP0f03 PNP0f12 PNP0f0b (active)
[    1.637188] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[    1.637190] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[    1.637192] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[    1.637194] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[    1.637196] pnp 00:0a: [mem 0xe0000000-0xe3ffffff]
[    1.637197] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[    1.637199] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[    1.637201] pnp 00:0a: [mem 0xfed45000-0xfed8ffff]
[    1.637203] pnp 00:0a: [mem 0xff000000-0xffffffff]
[    1.637204] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[    1.637206] pnp 00:0a: [mem 0xafa00000-0xafa00fff]
[    1.637269] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.637272] system 00:0a: [mem 0xfed10000-0xfed17fff] could not be reserved
[    1.637274] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.637276] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.637279] system 00:0a: [mem 0xe0000000-0xe3ffffff] has been reserved
[    1.637281] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.637283] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[    1.637286] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[    1.637288] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
[    1.637290] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.637293] system 00:0a: [mem 0xafa00000-0xafa00fff] has been reserved
[    1.637295] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.637323] pnp 00:0b: [mem 0xafa00000-0xafa00fff]
[    1.637378] system 00:0b: [mem 0xafa00000-0xafa00fff] has been reserved
[    1.637381] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.637489] pnp 00:0c: [mem 0x20000000-0x201fffff]
[    1.637491] pnp 00:0c: [mem 0x40000000-0x401fffff]
[    1.637550] system 00:0c: [mem 0x20000000-0x201fffff] has been reserved
[    1.637553] system 00:0c: [mem 0x40000000-0x401fffff] has been reserved
[    1.637555] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.637566] pnp: PnP ACPI: found 13 devices
[    1.637568] ACPI: ACPI bus type pnp unregistered
[    1.637570] PnPBIOS: Disabled by ACPI PNP
[    1.673179] PCI: max bus depth: 1 pci_try_num: 2
[    1.673210] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    1.673213] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    1.673216] pci 0000:00:01.0:   bridge window [mem 0xdc000000-0xdd0fffff]
[    1.673219] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    1.673223] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    1.673226] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    1.673232] pci 0000:00:1c.0:   bridge window [mem 0xdec00000-0xdf5fffff]
[    1.673237] pci 0000:00:1c.0:   bridge window [mem 0xd3700000-0xd40fffff 64bit pref]
[    1.673244] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[    1.673247] pci 0000:00:1c.1:   bridge window [io  0xb000-0xbfff]
[    1.673253] pci 0000:00:1c.1:   bridge window [mem 0xde200000-0xdebfffff]
[    1.673258] pci 0000:00:1c.1:   bridge window [mem 0xd2c00000-0xd35fffff 64bit pref]
[    1.673265] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
[    1.673268] pci 0000:00:1c.5:   bridge window [io  0xa000-0xafff]
[    1.673273] pci 0000:00:1c.5:   bridge window [mem 0xdd800000-0xde1fffff]
[    1.673278] pci 0000:00:1c.5:   bridge window [mem 0xd2100000-0xd2afffff 64bit pref]
[    1.673295] pci 0000:00:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.673298] pci 0000:00:01.0: setting latency timer to 64
[    1.673308] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.673312] pci 0000:00:1c.0: setting latency timer to 64
[    1.673320] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.673324] pci 0000:00:1c.1: setting latency timer to 64
[    1.673331] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.673336] pci 0000:00:1c.5: setting latency timer to 64
[    1.673340] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.673342] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.673344] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.673346] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[    1.673348] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[    1.673350] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[    1.673352] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
[    1.673354] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
[    1.673356] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
[    1.673358] pci_bus 0000:00: resource 13 [mem 0xafa00000-0xfeafffff]
[    1.673360] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
[    1.673362] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    1.673364] pci_bus 0000:01: resource 1 [mem 0xdc000000-0xdd0fffff]
[    1.673366] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    1.673368] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    1.673370] pci_bus 0000:02: resource 1 [mem 0xdec00000-0xdf5fffff]
[    1.673372] pci_bus 0000:02: resource 2 [mem 0xd3700000-0xd40fffff 64bit pref]
[    1.673374] pci_bus 0000:03: resource 0 [io  0xb000-0xbfff]
[    1.673376] pci_bus 0000:03: resource 1 [mem 0xde200000-0xdebfffff]
[    1.673378] pci_bus 0000:03: resource 2 [mem 0xd2c00000-0xd35fffff 64bit pref]
[    1.673380] pci_bus 0000:04: resource 0 [io  0xa000-0xafff]
[    1.673382] pci_bus 0000:04: resource 1 [mem 0xdd800000-0xde1fffff]
[    1.673384] pci_bus 0000:04: resource 2 [mem 0xd2100000-0xd2afffff 64bit pref]
[    1.673411] NET: Registered protocol family 2
[    1.673456] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    1.673586] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.673798] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    1.673892] TCP: Hash tables configured (established 131072 bind 65536)
[    1.673894] TCP reno registered
[    1.673897] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    1.673901] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    1.673967] NET: Registered protocol family 1
[    1.673980] pci 0000:00:02.0: Boot video device
[    1.673991] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.800898] pci 0000:00:1a.0: PCI INT A disabled
[    1.800950] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.928824] pci 0000:00:1d.0: PCI INT A disabled
[    1.928877] PCI: CLS 64 bytes, default 64
[    1.929305] audit: initializing netlink socket (disabled)
[    1.929311] type=2000 audit(1335225962.772:1): initialized
[    1.951249] highmem bounce pool size: 64 pages
[    1.951254] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.957146] VFS: Disk quotas dquot_6.5.2
[    1.957201] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.957724] fuse init (API version 7.16)
[    1.957799] msgmni has been set to 1631
[    1.958144] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.958172] io scheduler noop registered
[    1.958174] io scheduler deadline registered
[    1.958185] io scheduler cfq registered (default)
[    1.958263] pcieport 0000:00:01.0: setting latency timer to 64
[    1.958290] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    1.958473] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.958492] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.958549] intel_idle: MWAIT substates: 0x21120
[    1.958551] intel_idle: v0.4 model 0x2A
[    1.958552] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.958603] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    1.958635] ACPI: AC Adapter [AC0] (on-line)
[    1.958728] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    1.960466] ACPI: Lid Switch [LID]
[    1.960505] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
[    1.960509] ACPI: Sleep Button [SLPB]
[    1.960542] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.960544] ACPI: Power Button [PWRF]
[    1.960571] ACPI: acpi_idle yielding to intel_idle
[    2.013740] thermal LNXTHERM:00: registered as thermal_zone0
[    2.013742] ACPI: Thermal Zone [TZ00] (64 C)
[    2.013757] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    2.013782] ERST: Table is not found!
[    2.013836] isapnp: Scanning for PnP cards...
[    2.013877] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.014382] ACPI: Battery Slot [BAT0] (battery present)
[    2.368357] isapnp: No Plug & Play device found
[    2.416979] Linux agpgart interface v0.103
[    2.417060] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset
[    2.417138] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    2.418135] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
[    2.418231] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xb0000000
[    2.419205] brd: module loaded
[    2.419665] loop: module loaded
[    2.420045] Fixed MDIO Bus: probed
[    2.420063] PPP generic driver version 2.4.2
[    2.420090] tun: Universal TUN/TAP device driver, 1.6
[    2.420091] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    2.420154] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.420170] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.420188] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    2.420192] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    2.420217] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    2.420241] ehci_hcd 0000:00:1a.0: debug port 2
[    2.424124] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    2.424141] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xdf608000
[    2.436555] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.436724] hub 1-0:1.0: USB hub found
[    2.436727] hub 1-0:1.0: 2 ports detected
[    2.436776] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    2.436789] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    2.436792] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    2.436816] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.436838] ehci_hcd 0000:00:1d.0: debug port 2
[    2.440718] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    2.440731] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xdf607000
[    2.456543] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.456703] hub 2-0:1.0: USB hub found
[    2.456706] hub 2-0:1.0: 2 ports detected
[    2.456752] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.456761] uhci_hcd: USB Universal Host Controller Interface driver
[    2.456819] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    2.458310] i8042: Detected active multiplexing controller, rev 1.1
[    2.459126] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.459131] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    2.459140] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    2.459142] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    2.459144] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    2.459267] mousedev: PS/2 mouse device common for all mice
[    2.459384] rtc_cmos 00:06: RTC can wake from S4
[    2.459476] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    2.459503] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    2.459565] device-mapper: uevent: version 1.0.3
[    2.459628] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
[    2.459650] EISA: Probing bus 0 at eisa.0
[    2.459652] EISA: Cannot allocate resource for mainboard
[    2.459654] Cannot allocate resource for EISA slot 1
[    2.459655] Cannot allocate resource for EISA slot 2
[    2.459657] Cannot allocate resource for EISA slot 3
[    2.459658] Cannot allocate resource for EISA slot 4
[    2.459659] Cannot allocate resource for EISA slot 5
[    2.459661] Cannot allocate resource for EISA slot 6
[    2.459662] Cannot allocate resource for EISA slot 7
[    2.459664] Cannot allocate resource for EISA slot 8
[    2.459665] EISA: Detected 0 cards.
[    2.459672] cpufreq-nforce2: No nForce2 chipset.
[    2.459776] cpuidle: using governor ladder
[    2.459945] cpuidle: using governor menu
[    2.459947] EFI Variables Facility v0.08 2004-May-17
[    2.460132] TCP cubic registered
[    2.460237] NET: Registered protocol family 10
[    2.460632] NET: Registered protocol family 17
[    2.460643] Registering the dns_resolver key type
[    2.460656] Using IPI No-Shortcut mode
[    2.460718] PM: Hibernation image not present or could not be loaded.
[    2.460726] registered taskstats version 1
[    2.468857]   Magic number: 8:850:102
[    2.468958] rtc_cmos 00:06: setting system clock to 2012-04-24 00:06:03 UTC (1335225963)
[    2.469683] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.469685] EDD information not available.
[    2.469862] Freeing unused kernel memory: 720k freed
[    2.470025] Write protecting the kernel text: 5536k
[    2.470120] Write protecting the kernel read-only data: 2244k
[    2.470121] NX-protecting the kernel data: 4704k
[    2.481803] udevd[89]: starting version 173
[    2.492981] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.521959] ahci 0000:00:1f.2: version 3.0
[    2.521981] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    2.522034] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    2.522094] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[    2.522098] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    2.522105] ahci 0000:00:1f.2: setting latency timer to 64
[    2.524063] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.524082] r8169 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    2.524127] r8169 0000:04:00.0: setting latency timer to 64
[    2.524201] r8169 0000:04:00.0: irq 42 for MSI/MSI-X
[    2.526187] r8169 0000:04:00.0: eth0: RTL8168e/8111e at 0xf841e000, f4:6d:04:32:13:75, XID 0c200000 IRQ 42
[    2.529067] scsi0 : ahci
[    2.529193] scsi1 : ahci
[    2.529251] scsi2 : ahci
[    2.529380] scsi3 : ahci
[    2.529435] scsi4 : ahci
[    2.529569] scsi5 : ahci
[    2.529959] ata1: SATA max UDMA/133 abar m2048@0xdf606000 port 0xdf606100 irq 41
[    2.529963] ata2: SATA max UDMA/133 abar m2048@0xdf606000 port 0xdf606180 irq 41
[    2.529964] ata3: DUMMY
[    2.529965] ata4: DUMMY
[    2.529966] ata5: DUMMY
[    2.529967] ata6: DUMMY
[    2.748488] usb 1-1: new high speed USB device number 2 using ehci_hcd
[    2.848437] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.848486] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.849813] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    2.849825] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.849834] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.851057] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    2.851068] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.851077] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.852734] ata2.00: ATAPI: MATSHITADVD-RAM UJ8A0ASW, 1.01, max UDMA/100
[    2.856357] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    2.856370] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.856378] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.858008] ata2.00: configured for UDMA/100
[    2.881148] hub 1-1:1.0: USB hub found
[    2.881205] hub 1-1:1.0: 6 ports detected
[    2.902852] ata1.00: ATA-8: ST9500325AS, 0003SDM1, max UDMA/133
[    2.902862] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.905313] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    2.905325] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.905333] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.907274] ata1.00: configured for UDMA/133
[    2.907482] scsi 0:0:0:0: Direct-Access     ATA      ST9500325AS      0003 PQ: 0 ANSI: 5
[    2.907624] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.907658] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    2.907738] sd 0:0:0:0: [sda] Write Protect is off
[    2.907741] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.907772] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.910703] scsi 1:0:0:0: CD-ROM            MATSHITA DVD-RAM UJ8A0ASW 1.01 PQ: 0 ANSI: 5
[    2.914020] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.914030] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.914199] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.914255] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.928381] Refined TSC clocksource calibration: 2294.786 MHz.
[    2.928396] Switching to clocksource tsc
[    2.969514]  sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
[    2.969948] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.000358] usb 2-1: new high speed USB device number 2 using ehci_hcd
[    3.136866] hub 2-1:1.0: USB hub found
[    3.136967] hub 2-1:1.0: 6 ports detected
[    3.208304] usb 1-1.1: new full speed USB device number 3 using ehci_hcd
[    3.388211] usb 1-1.2: new high speed USB device number 4 using ehci_hcd
[    3.620101] usb 1-1.4: new high speed USB device number 5 using ehci_hcd
[    3.784014] usb 2-1.1: new low speed USB device number 3 using ehci_hcd
[    3.885268] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input4
[    3.885364] generic-usb 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0
[    3.885378] usbcore: registered new interface driver usbhid
[    3.885380] usbhid: USB HID core driver
[    3.932286] EXT3-fs (sda5): recovery required on readonly filesystem
[    3.932289] EXT3-fs (sda5): write access will be enabled during recovery
[    3.942589] EXT3-fs: barriers not enabled
[    5.588059] kjournald starting.  Commit interval 5 seconds
[    5.588163] EXT3-fs (sda5): recovery complete
[    5.593836] EXT3-fs (sda5): mounted filesystem with ordered data mode
[   46.202021] Adding 2232316k swap on /dev/sda7.  Priority:-1 extents:1 across:2232316k
[   46.235691] udevd[461]: starting version 173
[   46.345760] lp: driver loaded but no devices found
[   46.618888] EXT3-fs (sda5): using internal journal
[   47.195034] [drm] Initialized drm 1.1.0 20060810
[   47.196935] mei: module is from the staging directory, the quality is unknown, you have been warned.
[   47.199616] nvidia: module license 'NVIDIA' taints kernel.
[   47.199619] Disabling lock debugging due to kernel taint
[   47.201577] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   47.201585] mei 0000:00:16.0: setting latency timer to 64
[   47.202849] cfg80211: Calling CRDA to update world regulatory domain
[   47.214697] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   47.214703] i915 0000:00:02.0: setting latency timer to 64
[   47.405169] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[   47.405197] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   47.405200] [drm] Driver supports precise vblank timestamp query.
[   47.405300] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[   47.405350] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[   47.405370] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   47.405373] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[   47.436022] ath9k 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[   47.436036] ath9k 0000:03:00.0: setting latency timer to 64
[   47.488012] ath: EEPROM regdomain: 0x60
[   47.488015] ath: EEPROM indicates we should expect a direct regpair map
[   47.488018] ath: Country alpha2 being used: 00
[   47.488020] ath: Regpair used: 0x60
[   47.488023] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   47.488026] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488028] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   47.488031] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488033] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   47.488036] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488038] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   47.488040] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488043] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   47.488045] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488047] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   47.488050] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488053] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   47.488055] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488057] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   47.488060] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488062] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   47.488065] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488067] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   47.488070] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488072] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   47.488075] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488077] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   47.488080] cfg80211: 2457000 KHz - 2482000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488082] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   47.488085] cfg80211: 2457000 KHz - 2482000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.488087] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[   47.488089] cfg80211: 2474000 KHz - 2494000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   47.489503] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[   47.518070] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[   47.518877] Registered led device: ath9k-phy0
[   47.518886] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xf8880000, irq=17
[   47.532591] wmi: Mapper loaded
[   47.574616] 2.6.2X-Elan-touchpad-2011-04-12
[   47.582451] asus_wmi: ASUS WMI generic driver loaded
[   47.582982] asus_wmi: Initialization: 0x1
[   47.583698] asus_wmi: SFUN value: 0x1a0af7
[   47.584356] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input5
[   47.600951] asus_wmi: Backlight controlled by ACPI video driver
[   47.612401] Bluetooth: Atheros AR30xx firmware driver ver 1.0
[   47.636788] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[   47.636792] cfg80211: World regulatory domain updated:
[   47.636794] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   47.636797] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   47.636800] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   47.636802] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   47.636805] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   47.636808] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   47.654087] fbcon: inteldrmfb (fb0) is primary device
[   47.654167] Console: switching to colour frame buffer device 170x48
[   47.654197] fb0: inteldrmfb frame buffer device
[   47.654199] drm: registered panic notifier
[   47.655333] ACPI Warning: _BQC returned an invalid level (20110413/video-481)
[   47.655613] acpi device:51: registered as cooling_device4
[   47.655702] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:4d/LNXVIDEO:00/input/input6
[   47.655754] ACPI: Video Device [GFX0] (multi-head: yes  rom: yes  post: no)
[   47.655843] nvidia 0000:01:00.0: power state changed by ACPI to D0
[   47.655848] nvidia 0000:01:00.0: power state changed by ACPI to D0
[   47.655853] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
[   47.655859] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   47.655867] nvidia 0000:01:00.0: setting latency timer to 64
[   47.655872] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
[   47.655966] NVRM: loading NVIDIA UNIX x86 Kernel Module  280.13  Wed Jul 27 16:55:43 PDT 2011
[   47.657307] ACPI Warning: _BQC returned an invalid level (20110413/video-481)
[   47.659438] acpi device:53: registered as cooling_device5
[   47.659773] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input7
[   47.659856] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   47.659922] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   47.659967] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   47.660033] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[   47.660062] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   47.674229] type=1400 audit(1335215208.723:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=816 comm="apparmor_parser"
[   47.674454] type=1400 audit(1335215208.723:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=804 comm="apparmor_parser"
[   47.674463] type=1400 audit(1335215208.723:4): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=788 comm="apparmor_parser"
[   47.674547] type=1400 audit(1335215208.723:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=816 comm="apparmor_parser"
[   47.674746] type=1400 audit(1335215208.723:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=816 comm="apparmor_parser"
[   47.674873] type=1400 audit(1335215208.723:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=804 comm="apparmor_parser"
[   47.674881] type=1400 audit(1335215208.723:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=788 comm="apparmor_parser"
[   47.675141] type=1400 audit(1335215208.723:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=804 comm="apparmor_parser"
[   47.675153] type=1400 audit(1335215208.723:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=788 comm="apparmor_parser"
[   47.959228] usbcore: registered new interface driver ath3k
[   47.959540] Bluetooth: Firmware load driver init. Version:1.0
[   47.960791] Bluetooth: Core ver 2.16
[   47.960812] NET: Registered protocol family 31
[   47.960814] Bluetooth: HCI device and connection manager initialized
[   47.960816] Bluetooth: HCI socket layer initialized
[   47.960817] Bluetooth: L2CAP socket layer initialized
[   47.961305] Bluetooth: SCO socket layer initialized
[   47.961561] Bluetooth: Generic Bluetooth USB driver ver 0.6.1
[   47.961598] usbcore: registered new interface driver btusb
[   47.975119] elantech.c: PSMOUSE_CMD_RESET_BAT  param[0]=aa param[1]=0 param[2]=0
[   47.975132] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
[   47.975387] Linux video capture interface: v2.00
[   47.975995] uvcvideo: Found UVC 1.00 device USB 2.0 UVC VGA WebCam (13d3:5710)
[   47.976290] Initializing rts5139 USB card reader driver...
[   47.982116] input: USB 2.0 UVC VGA WebCam as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input8
[   47.982195] usbcore: registered new interface driver uvcvideo
[   47.982197] USB Video Class driver (v1.1.0)
[   47.983923] scsi6 : SCSI emulation for RTS5139 USB card reader
[   47.984151] scsi 6:0:0:0: Direct-Access     Generic- xD/SD/M.S.       1.00 PQ: 0 ANSI: 0 CCS
[   47.984221] usbcore: registered new interface driver rts5139
[   47.984225] Realtek rts5139 USB card reader support registered.
[   48.022318] elantech.c: Elantech version query result 0x45, 0x0f, 0x01.
[   48.047706] param[0] = 45 param[1] = f param[2] = 1
[   48.047717] elantech.c: assuming hardware version 9, firmware version 0x45.0x0f.0x01
[   48.082755] val = 0x03
[   48.107726] input: ETPS/2 Elantech ETF1059 Click-Pad as /devices/platform/i8042/serio4/input/input9
[   48.195896] hda_codec: ALC269VB: BIOS auto-probing.
[   48.201681] HDMI status: Pin=6 Presence_Detect=0 ELD_Valid=0
[   48.201835] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   48.201963] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   48.202006] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   48.205241] sd 6:0:0:0: Attached scsi generic sg2 type 0
[   48.206522] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[   48.229514] usb 1-1.1: USB disconnect, device number 3
[   48.528987] usb 1-1.1: new full speed USB device number 6 using ehci_hcd
[   50.889296] type=1400 audit(1335215211.939:11): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1101 comm="apparmor_parser"
[   50.988910] ppdev: user-space parallel port driver
[   50.990211] init: failsafe main process (1040) killed by TERM signal
[   50.999220] init: apport pre-start process (1148) terminated with status 1
[   51.015356] init: apport post-stop process (1219) terminated with status 1
[   51.024189] init: gdm main process (1216) killed by TERM signal
[   51.100938] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   51.247267] r8169 0000:04:00.0: eth0: link down
[   51.247410] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   52.703542] show_signal_msg: 48 callbacks suppressed
[   52.703545] unity_support_t[1444]: segfault at 3 ip 08048ed2 sp bfab9b20 error 4 in unity_support_test[8048000+3000]
[   52.756161] cfg80211: Found new beacon on frequency: 2472 MHz (Ch 13) on phy0
[   53.508417] acpi_call: Module loaded successfully
[   53.510095] acpi_call: Calling \_SB.PCI0.PEGR.GFX0._PS0
[   53.510140] acpi_call: Call successful: 0x0
[   53.511587] acpi_call: Calling \_SB.PCI0.PEGR.GFX0.DGPS
[   53.511595] acpi_call: Call successful: 0x0
[   53.669532] nvidia 0000:01:00.0: PCI INT A disabled
[   53.673595] acpi_call: Calling \_SB.PCI0.PEGR.GFX0._DSM
[   53.673716] acpi_call: Call successful: {0x59, 0x00, 0x00, 0x01}
[   53.675239] acpi_call: Calling \_SB.PCI0.PEGR.GFX0._PS3
[   53.750313] acpi_call: Call successful: 0x3
[   53.752016] acpi_call: Calling \_SB.PCI0.PEGR.GFX0.DGPS
[   53.752025] acpi_call: Call successful: 0x1
[   54.084880] wlan0: authenticate with 00:1e:2a:d9:1b:77 (try 1)
[   54.086866] wlan0: authenticated
[   54.116395] wlan0: associate with 00:1e:2a:d9:1b:77 (try 1)
[   54.119414] wlan0: RX AssocResp from 00:1e:2a:d9:1b:77 (capab=0x431 status=0 aid=5)
[   54.119422] wlan0: associated
[   54.119773] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   54.119854] cfg80211: Calling CRDA for country: DE
[   54.122355] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   54.122358] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122360] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   54.122362] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122363] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   54.122365] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122366] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   54.122368] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122369] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   54.122371] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122372] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   54.122374] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122375] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   54.122377] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122379] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   54.122380] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122382] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   54.122383] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122385] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   54.122386] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122388] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   54.122389] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122391] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   54.122392] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122394] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   54.122396] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[   54.122397] cfg80211: Disabling freq 2484 MHz
[   54.122401] cfg80211: Regulatory domain changed to country: DE
[   54.122402] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   54.122404] cfg80211:     (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   54.122405] cfg80211:     (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   54.122407] cfg80211:     (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   54.122408] cfg80211:     (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[   55.678724] vboxdrv: Found 4 processor cores.
[   55.679215] vboxdrv: fAsync=0 offMin=0x367 offMax=0xbe4
[   55.679623] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[   55.679626] vboxdrv: Successfully loaded version 4.1.12 (interface 0x00190000).
[   55.886051] vboxpci: IOMMU not found (not registered)
[   55.946869] Bluetooth: RFCOMM TTY layer initialized
[   55.946874] Bluetooth: RFCOMM socket layer initialized
[   55.946876] Bluetooth: RFCOMM ver 1.11
[   55.950736] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   55.950740] Bluetooth: BNEP filters: protocol multicast
[   56.220898] init: plymouth-stop pre-start process (1817) terminated with status 1
[   58.251652] unity_support_t[1902]: segfault at 3 ip 08048ed2 sp bf9bb840 error 4 in unity_support_test[8048000+3000]
[   58.375077] unity_support_t[1944]: segfault at 3 ip 08048ed2 sp bfac25a0 error 4 in unity_support_test[8048000+3000]
[   60.313945] acpi_call: Calling \_SB.PCI0.PEGR.GFX0._PS0
[   60.808507] acpi_call: Call successful: 0x1
[   60.814401] acpi_call: Calling \_SB.PCI0.PEGR.GFX0.DGPS
[   60.814415] acpi_call: Call successful: 0x0
[   61.258406] nvidia 0000:01:00.0: power state changed by ACPI to D0
[   61.258413] nvidia 0000:01:00.0: power state changed by ACPI to D0
[   61.258423] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   61.258433] nvidia 0000:01:00.0: setting latency timer to 64
[   61.258438] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=none,decodes=none:owns=none
[   61.258568] NVRM: loading NVIDIA UNIX x86 Kernel Module  280.13  Wed Jul 27 16:55:43 PDT 2011
[   65.128378] wlan0: no IPv6 routers present
[ 3772.902129] usb 2-1.1: USB disconnect, device number 3
[ 3773.105150] usb 2-1.1: new low speed USB device number 4 using ehci_hcd
[ 3773.203920] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input13
[ 3773.204103] generic-usb 0003:046D:C05A.0002: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0
[ 6675.260581] wlan0: deauthenticating from 00:1e:2a:d9:1b:77 by local choice (reason=3)
[ 6675.354059] cfg80211: All devices are disconnected, going to restore regulatory settings
[ 6675.354075] cfg80211: Restoring regulatory settings
[ 6675.354106] cfg80211: Calling CRDA to update world regulatory domain
[ 6676.116489] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[ 6676.116498] cfg80211: World regulatory domain updated:
[ 6676.116502] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 6676.116508] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6676.116513] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 6676.116518] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 6676.116523] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6676.116528] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6679.853653] PM: Syncing filesystems ... done.
[ 6679.862319] PM: Preparing system for mem sleep
[ 6680.324736] Freezing user space processes ... (elapsed 0.01 seconds) done.
[ 6680.340759] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[ 6680.356699] PM: Entering mem sleep
[ 6680.356778] Suspending console(s) (use no_console_suspend to debug)
[ 6680.357346] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 6680.358152] sd 0:0:0:0: [sda] Stopping disk
[ 6680.404585] ehci_hcd 0000:00:1a.0: PCI INT A disabled
[ 6680.404602] ehci_hcd 0000:00:1d.0: PCI INT A disabled
[ 6680.580818] HDA Intel 0000:00:1b.0: PCI INT A disabled
[ 6680.596521] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 221.824 msecs
[ 6680.624731] asus_wmi: Unknown key 57 pressed
[ 6680.734737] PM: suspend of drv:sd dev:0:0:0:0 complete after 377.583 msecs
[ 6680.734774] PM: suspend of drv:scsi dev:target0:0:0 complete after 377.600 msecs
[ 6680.734803] PM: suspend of drv:scsi dev:host0 complete after 377.466 msecs
[ 6680.756439] PM: suspend of drv:ahci dev:0000:00:1f.2 complete after 381.908 msecs
[ 6680.756551] PM: suspend of drv: dev:pci0000:00 complete after 380.095 msecs
[ 6680.756558] PM: suspend of devices complete after 399.758 msecs
[ 6680.756560] PM: suspend devices took 0.400 seconds
[ 6680.756758] r8169 0000:04:00.0: PME# enabled
[ 6680.756766] r8169 0000:04:00.0: wake-up capability enabled by ACPI
[ 6680.836497] PM: late suspend of devices complete after 79.974 msecs
[ 6680.836730] ACPI: Preparing to enter system sleep state S3
[ 6680.844495] PM: Saving platform NVS memory
[ 6680.845345] Disabling non-boot CPUs ...
[ 6680.948350] CPU 1 is now offline
[ 6681.052286] CPU 2 is now offline
[ 6681.053136] Broke affinity for irq 1
[ 6681.156220] CPU 3 is now offline
[ 6681.156565] Extended CMOS year: 2000
[ 6681.156878] ACPI: Low-level resume complete
[ 6681.156919] PM: Restoring platform NVS memory
[ 6681.157333] Extended CMOS year: 2000
[ 6681.157369] Enabling non-boot CPUs ...
[ 6681.157443] Booting Node 0 Processor 1 APIC 0x2
[ 6681.157445] smpboot cpu 1: start_ip = 9a000
[ 6681.167701] Initializing CPU#1
[ 6681.265412] CPU1 is up
[ 6681.265495] Booting Node 0 Processor 2 APIC 0x1
[ 6681.265497] smpboot cpu 2: start_ip = 9a000
[ 6681.268891] Switched to NOHz mode on CPU #1
[ 6681.275744] Initializing CPU#2
[ 6681.373557] CPU2 is up
[ 6681.373650] Booting Node 0 Processor 3 APIC 0x3
[ 6681.373652] smpboot cpu 3: start_ip = 9a000
[ 6681.376836] Switched to NOHz mode on CPU #2
[ 6681.383897] Initializing CPU#3
[ 6681.481557] CPU3 is up
[ 6681.484279] ACPI: Waking up from system sleep state S3
[ 6681.484796] Switched to NOHz mode on CPU #3
[ 6681.684994] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x180100, writing 0x10010b)
[ 6681.685002] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xd1f1c001)
[ 6681.685007] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xdd00dc00)
[ 6681.685011] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0xf0, writing 0xd0d0)
[ 6681.685024] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[ 6681.685028] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 6681.685058] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[ 6681.685086] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[ 6681.685107] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfedb0004, writing 0xdf60a004)
[ 6681.685153] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[ 6681.685180] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf608000)
[ 6681.685190] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 6681.685228] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x103)
[ 6681.685247] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[ 6681.685254] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[ 6681.685285] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x10010a)
[ 6681.685301] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[ 6681.685307] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 6681.685341] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[ 6681.685358] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[ 6681.685363] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 6681.685397] pcieport 0000:00:1c.5: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[ 6681.685413] pcieport 0000:00:1c.5: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[ 6681.685446] ehci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x100, writing 0x104)
[ 6681.685463] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf607000)
[ 6681.685470] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 6681.685545] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[ 6681.685600] nvidia 0000:01:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[ 6681.685606] nvidia 0000:01:00.0: restoring config space at offset 0x9 (was 0x1, writing 0xd001)
[ 6681.685610] nvidia 0000:01:00.0: restoring config space at offset 0x7 (was 0xc, writing 0xd000000c)
[ 6681.685614] nvidia 0000:01:00.0: restoring config space at offset 0x5 (was 0xc, writing 0xc000000c)
[ 6681.685618] nvidia 0000:01:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xdc000000)
[ 6681.685622] nvidia 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 6681.685674] ath9k 0000:03:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[ 6681.685699] ath9k 0000:03:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xde200004)
[ 6681.685705] ath9k 0000:03:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[ 6681.685713] ath9k 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 6681.685794] r8169 0000:04:00.0: restoring config space at offset 0x1 (was 0x100007, writing 0x100407)
[ 6681.685933] PM: early resume of devices complete after 1.015 msecs
[ 6681.686021] i915 0000:00:02.0: setting latency timer to 64
[ 6681.686034] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 6681.686045] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 6681.686047] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[ 6681.686054] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 6681.686079] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 6681.686087] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[ 6681.686108] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[ 6681.686121] ahci 0000:00:1f.2: setting latency timer to 64
[ 6681.686242] r8169 0000:04:00.0: wake-up capability disabled by ACPI
[ 6681.686252] r8169 0000:04:00.0: PME# disabled
[ 6681.701227] sd 0:0:0:0: [sda] Starting disk
[ 6681.704236] Extended CMOS year: 2000
[ 6681.825564] PM: resume of drv:r8169 dev:0000:04:00.0 complete after 139.400 msecs
[ 6681.825603] PM: resume of drv:net dev:eth0 complete after 121.414 msecs
[ 6681.876743] PM: resume of drv: dev:ep_00 complete after 174.876 msecs
[ 6681.876749] PM: resume of drv:hub dev:2-1:1.0 complete after 175.098 msecs
[ 6681.876758] PM: resume of drv: dev:ep_81 complete after 175.030 msecs
[ 6681.876761] PM: resume of drv: dev:ep_00 complete after 175.750 msecs
[ 6681.876769] PM: resume of drv:hub dev:1-1:1.0 complete after 175.799 msecs
[ 6681.876781] PM: resume of drv: dev:ep_81 complete after 175.803 msecs
[ 6681.877006] PM: resume of drv: dev:ep_00 complete after 172.274 msecs
[ 6681.877014] PM: resume of drv:usbhid dev:2-1.1:1.0 complete after 172.323 msecs
[ 6681.877023] PM: resume of drv: dev:ep_81 complete after 172.313 msecs
[ 6681.899628] 2.6.2X-Elan-touchpad-2011-04-12
[ 6681.925556] PM: resume of drv: dev:ep_00 complete after 220.930 msecs
[ 6681.925578] PM: resume of drv:btusb dev:1-1.1:1.1 complete after 221.023 msecs
[ 6681.925586] PM: resume of drv:btusb dev:1-1.1:1.0 complete after 221.151 msecs
[ 6681.925593] PM: resume of drv: dev:ep_83 complete after 221.046 msecs
[ 6681.925597] PM: resume of drv: dev:ep_81 complete after 221.140 msecs
[ 6681.925600] PM: resume of drv: dev:ep_03 complete after 221.002 msecs
[ 6681.925602] PM: resume of drv: dev:ep_82 complete after 221.122 msecs
[ 6681.925609] PM: resume of drv: dev:ep_02 complete after 221.104 msecs
[ 6681.948880] usb 1-1.4: reset high speed USB device number 5 using ehci_hcd
[ 6681.994846] PM: resume of drv:i915 dev:0000:00:02.0 complete after 308.988 msecs
[ 6682.016579] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 6682.020572] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[ 6682.020582] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 6682.020590] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 6682.031732] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[ 6682.031743] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 6682.031750] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 6682.034875] ata2.00: configured for UDMA/100
[ 6682.045896] PM: resume of drv: dev:ep_00 complete after 341.678 msecs
[ 6682.045910] PM: resume of drv:rts5139 dev:1-1.4:1.0 complete after 341.782 msecs
[ 6682.045968] PM: resume of drv: dev:ep_01 complete after 341.805 msecs
[ 6682.045971] PM: resume of drv:scsi dev:host6 complete after 341.718 msecs
[ 6682.045974] PM: resume of drv: dev:ep_83 complete after 341.784 msecs
[ 6682.045979] PM: resume of drv: dev:ep_82 complete after 341.808 msecs
[ 6682.045982] PM: resume of drv:scsi_host dev:host6 complete after 341.722 msecs
[ 6682.045989] PM: resume of drv:scsi dev:target6:0:0 complete after 341.709 msecs
[ 6682.046000] PM: resume of drv:sd dev:6:0:0:0 complete after 341.698 msecs
[ 6682.046008] PM: resume of drv:scsi_device dev:6:0:0:0 complete after 341.683 msecs
[ 6682.112630] usb 1-1.2: reset high speed USB device number 4 using ehci_hcd
[ 6682.250887] PM: resume of drv: dev:ep_00 complete after 548.794 msecs
[ 6682.250908] PM: resume of drv:uvcvideo dev:1-1.2:1.1 complete after 548.874 msecs
[ 6682.250911] PM: resume of drv:uvcvideo dev:1-1.2:1.0 complete after 549.069 msecs
[ 6682.250918] PM: resume of drv: dev:ep_83 complete after 548.963 msecs
[ 6682.297686] elantech.c: PSMOUSE_CMD_RESET_BAT  param[0]=aa param[1]=0 param[2]=0
[ 6682.363396] val = 0x03
[ 6683.691715] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 6683.693824] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[ 6683.693834] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 6683.693842] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 6683.698254] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[ 6683.698264] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 6683.698272] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 6683.700176] ata1.00: configured for UDMA/133
[ 6683.747824] PM: resume of drv:sd dev:0:0:0:0 complete after 2047.670 msecs
[ 6683.747864] PM: resume of drv:scsi_disk dev:0:0:0:0 complete after 1923.220 msecs
[ 6683.750827] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 2050.375 msecs
[ 6683.750837] PM: resume of devices complete after 2065.936 msecs
[ 6683.750922] PM: resume devices took 2.064 seconds
[ 6683.750947] PM: Finishing wakeup.
[ 6683.750948] Restarting tasks ...
[ 6683.751087] usb 2-1.1: USB disconnect, device number 4
[ 6683.751714] done.
[ 6683.752141] video LNXVIDEO:00: Restoring backlight state
[ 6683.752395] video LNXVIDEO:01: Restoring backlight state
[ 6683.816151] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[ 6684.433921] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 00002394 00000000 00000000
[ 6684.812492] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 00000c04 00400000 00000000
[ 6684.846166] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 000012e0 00000001 00000000
[ 6684.853241] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 000012e0 00000001 00000000
[ 6684.902549] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 00000c04 00400000 00000000
[ 6684.935319] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 000012e0 00000001 00000000
[ 6685.749252] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6685.894331] r8169 0000:04:00.0: eth0: link down
[ 6685.894618] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6689.624670] wlan0: authenticate with 00:1e:2a:d9:1b:77 (try 1)
[ 6689.626651] wlan0: authenticated
[ 6689.646665] wlan0: associate with 00:1e:2a:d9:1b:77 (try 1)
[ 6689.649997] wlan0: RX AssocResp from 00:1e:2a:d9:1b:77 (capab=0x431 status=0 aid=2)
[ 6689.650001] wlan0: associated
[ 6689.650315] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 6689.650415] cfg80211: Calling CRDA for country: DE
[ 6689.653808] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653813] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653816] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653820] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653823] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653826] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653829] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653833] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653836] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653838] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653841] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653843] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653846] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653848] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653851] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653854] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653856] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653859] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653861] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653864] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653867] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653870] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653872] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653875] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653877] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[ 6689.653880] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[ 6689.653883] cfg80211: Disabling freq 2484 MHz
[ 6689.653888] cfg80211: Regulatory domain changed to country: DE
[ 6689.653891] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 6689.653894] cfg80211:     (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 6689.653897] cfg80211:     (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 6689.653900] cfg80211:     (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 6689.653903] cfg80211:     (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[ 6693.897647] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 000012e0 00000001 00000000
[ 6694.880900] NVRM: Xid (0000:01:00): 13, 0004 00000000 00009197 000012e0 00000001 00000000
[ 6700.339131] wlan0: no IPv6 routers present
[ 8814.947547] keyboard: can't emulate rawmode for keycode 240
[ 8814.947557] keyboard: can't emulate rawmode for keycode 240
[ 8814.947560] asus_wmi: Unknown key 58 pressed
[11629.994206] usb 2-1.1: new low speed USB device number 5 using ehci_hcd
[11630.092648] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input14
[11630.092776] generic-usb 0003:046D:C05A.0003: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0
[27807.823914] wlan0: deauthenticating from 00:1e:2a:d9:1b:77 by local choice (reason=3)
[27807.868322] cfg80211: All devices are disconnected, going to restore regulatory settings
[27807.868330] cfg80211: Restoring regulatory settings
[27807.868344] cfg80211: Calling CRDA to update world regulatory domain
[27810.741519] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[27810.741523] cfg80211: World regulatory domain updated:
[27810.741525] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[27810.741528] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[27810.741531] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[27810.741534] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[27810.741537] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[27810.741539] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[27814.544180] PM: Syncing filesystems ... done.
[27814.546859] PM: Preparing system for mem sleep
[27815.077971] Freezing user space processes ... (elapsed 0.01 seconds) done.
[27815.093871] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[27815.109856] PM: Entering mem sleep
[27815.109943] Suspending console(s) (use no_console_suspend to debug)
[27815.110570] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[27815.157785] ehci_hcd 0000:00:1d.0: PCI INT A disabled
[27815.157797] ehci_hcd 0000:00:1a.0: PCI INT A disabled
[27815.225172] sd 0:0:0:0: [sda] Stopping disk
[27815.229910] HDA Intel 0000:00:1b.0: PCI INT A disabled
[27815.245729] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 117.915 msecs
[27815.609971] PM: suspend of drv:sd dev:0:0:0:0 complete after 499.654 msecs
[27815.610009] PM: suspend of drv:scsi dev:target0:0:0 complete after 499.617 msecs
[27815.610036] PM: suspend of drv:scsi dev:host0 complete after 499.363 msecs
[27815.633534] PM: suspend of drv:ahci dev:0000:00:1f.2 complete after 506.033 msecs
[27815.633666] PM: suspend of drv: dev:pci0000:00 complete after 505.208 msecs
[27815.633677] PM: suspend of devices complete after 523.812 msecs
[27815.633680] PM: suspend devices took 0.524 seconds
[27815.633854] r8169 0000:04:00.0: PME# enabled
[27815.633861] r8169 0000:04:00.0: wake-up capability enabled by ACPI
[27815.713616] PM: late suspend of devices complete after 79.974 msecs
[27815.713801] ACPI: Preparing to enter system sleep state S3
[27815.721575] PM: Saving platform NVS memory
[27815.722279] Disabling non-boot CPUs ...
[27815.825432] CPU 1 is now offline
[27815.929371] CPU 2 is now offline
[27816.033307] CPU 3 is now offline
[27816.033660] Extended CMOS year: 2000
[27816.033923] ACPI: Low-level resume complete
[27816.033964] PM: Restoring platform NVS memory
[27816.034382] Extended CMOS year: 2000
[27816.034418] Enabling non-boot CPUs ...
[27816.034491] Booting Node 0 Processor 1 APIC 0x2
[27816.034492] smpboot cpu 1: start_ip = 9a000
[27816.044748] Initializing CPU#1
[27816.142456] CPU1 is up
[27816.142540] Booting Node 0 Processor 2 APIC 0x1
[27816.142542] smpboot cpu 2: start_ip = 9a000
[27816.145931] Switched to NOHz mode on CPU #1
[27816.152789] Initializing CPU#2
[27816.250610] CPU2 is up
[27816.250706] Booting Node 0 Processor 3 APIC 0x3
[27816.250708] smpboot cpu 3: start_ip = 9a000
[27816.253876] Switched to NOHz mode on CPU #2
[27816.260954] Initializing CPU#3
[27816.358681] CPU3 is up
[27816.361360] ACPI: Waking up from system sleep state S3
[27816.361845] Switched to NOHz mode on CPU #3
[27816.562027] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x180100, writing 0x10010b)
[27816.562035] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xd1f1c001)
[27816.562040] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xdd00dc00)
[27816.562044] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0xf0, writing 0xd0d0)
[27816.562055] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[27816.562060] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[27816.562088] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[27816.562114] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[27816.562132] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfedb0004, writing 0xdf60a004)
[27816.562163] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[27816.562190] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf608000)
[27816.562198] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[27816.562239] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x103)
[27816.562257] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[27816.562265] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[27816.562295] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x10010a)
[27816.562314] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[27816.562320] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[27816.562353] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[27816.562369] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[27816.562375] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[27816.562406] pcieport 0000:00:1c.5: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[27816.562422] pcieport 0000:00:1c.5: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[27816.562453] ehci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x100, writing 0x104)
[27816.562469] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf607000)
[27816.562475] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[27816.562548] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[27816.562601] nvidia 0000:01:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[27816.562607] nvidia 0000:01:00.0: restoring config space at offset 0x9 (was 0x1, writing 0xd001)
[27816.562611] nvidia 0000:01:00.0: restoring config space at offset 0x7 (was 0xc, writing 0xd000000c)
[27816.562615] nvidia 0000:01:00.0: restoring config space at offset 0x5 (was 0xc, writing 0xc000000c)
[27816.562618] nvidia 0000:01:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xdc000000)
[27816.562623] nvidia 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[27816.562673] ath9k 0000:03:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[27816.562697] ath9k 0000:03:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xde200004)
[27816.562703] ath9k 0000:03:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[27816.562710] ath9k 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[27816.562789] r8169 0000:04:00.0: restoring config space at offset 0x1 (was 0x100007, writing 0x100407)
[27816.562923] PM: early resume of devices complete after 0.969 msecs
[27816.563010] i915 0000:00:02.0: setting latency timer to 64
[27816.563024] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[27816.563027] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[27816.563032] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[27816.563035] HDA Intel 0000:00:1b.0: setting latency timer to 64
[27816.563064] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[27816.563070] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[27816.563080] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[27816.563101] ahci 0000:00:1f.2: setting latency timer to 64
[27816.565808] r8169 0000:04:00.0: wake-up capability disabled by ACPI
[27816.565816] r8169 0000:04:00.0: PME# disabled
[27816.577850] sd 0:0:0:0: [sda] Starting disk
[27816.581572] Extended CMOS year: 2000
[27816.698262] PM: resume of drv: dev:ep_00 complete after 116.658 msecs
[27816.698268] PM: resume of drv:usbhid dev:2-1.1:1.0 complete after 116.715 msecs
[27816.698277] PM: resume of drv: dev:ep_81 complete after 116.699 msecs
[27816.706606] PM: resume of drv:r8169 dev:0000:04:00.0 complete after 140.876 msecs
[27816.706644] PM: resume of drv:net dev:eth0 complete after 125.120 msecs
[27816.753718] PM: resume of drv: dev:ep_00 complete after 176.005 msecs
[27816.753743] PM: resume of drv:hub dev:1-1:1.0 complete after 176.040 msecs
[27816.753778] PM: resume of drv: dev:ep_81 complete after 176.061 msecs
[27816.777266] 2.6.2X-Elan-touchpad-2011-04-12
[27816.802306] PM: resume of drv:btusb dev:1-1.1:1.1 complete after 223.144 msecs
[27816.802317] PM: resume of drv: dev:ep_00 complete after 222.824 msecs
[27816.802341] PM: resume of drv: dev:ep_83 complete after 223.036 msecs
[27816.802343] PM: resume of drv:btusb dev:1-1.1:1.0 complete after 223.552 msecs
[27816.802351] PM: resume of drv: dev:ep_03 complete after 222.929 msecs
[27816.802355] PM: resume of drv: dev:ep_81 complete after 223.455 msecs
[27816.802361] PM: resume of drv: dev:ep_02 complete after 223.282 msecs
[27816.802365] PM: resume of drv: dev:ep_82 complete after 223.370 msecs
[27816.825868] usb 1-1.2: reset high speed USB device number 4 using ehci_hcd
[27816.859350] PM: resume of drv:i915 dev:0000:00:02.0 complete after 296.497 msecs
[27816.885633] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[27816.893919] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[27816.893929] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[27816.893938] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[27816.914214] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[27816.914224] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[27816.914232] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[27816.917356] ata2.00: configured for UDMA/100
[27816.964096] PM: resume of drv:uvcvideo dev:1-1.2:1.1 complete after 386.221 msecs
[27816.964108] PM: resume of drv: dev:ep_00 complete after 386.196 msecs
[27816.964134] PM: resume of drv:uvcvideo dev:1-1.2:1.0 complete after 386.306 msecs
[27816.964143] PM: resume of drv: dev:ep_83 complete after 386.296 msecs
[27816.989804] usb 1-1.4: reset high speed USB device number 5 using ehci_hcd
[27817.086689] PM: resume of drv: dev:ep_00 complete after 508.720 msecs
[27817.086703] PM: resume of drv:rts5139 dev:1-1.4:1.0 complete after 508.827 msecs
[27817.086731] PM: resume of drv: dev:ep_01 complete after 508.827 msecs
[27817.086756] PM: resume of drv: dev:ep_83 complete after 508.814 msecs
[27817.086773] PM: resume of drv:scsi dev:host6 complete after 508.711 msecs
[27817.086779] PM: resume of drv: dev:ep_82 complete after 508.859 msecs
[27817.086781] PM: resume of drv:scsi_host dev:host6 complete after 508.656 msecs
[27817.086788] PM: resume of drv:scsi dev:target6:0:0 complete after 508.611 msecs
[27817.086797] PM: resume of drv:sd dev:6:0:0:0 complete after 508.505 msecs
[27817.086804] PM: resume of drv:scsi_device dev:6:0:0:0 complete after 508.427 msecs
[27817.176540] elantech.c: PSMOUSE_CMD_RESET_BAT  param[0]=aa param[1]=0 param[2]=0
[27817.242949] val = 0x03
[27818.628722] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[27818.630850] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[27818.630860] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[27818.630868] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[27818.635284] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[27818.635294] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[27818.635302] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[27818.637245] ata1.00: configured for UDMA/133
[27818.682879] PM: resume of drv:sd dev:0:0:0:0 complete after 2106.105 msecs
[27818.682918] PM: resume of drv:scsi_disk dev:0:0:0:0 complete after 1977.262 msecs
[27818.685893] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 2109.088 msecs
[27818.685903] PM: resume of devices complete after 2124.042 msecs
[27818.685970] PM: resume devices took 2.124 seconds
[27818.685989] PM: Finishing wakeup.
[27818.685990] Restarting tasks ... done.
[27818.688444] video LNXVIDEO:00: Restoring backlight state
[27818.688736] video LNXVIDEO:01: Restoring backlight state
[27818.805118] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[27822.707030] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[27822.850363] r8169 0000:04:00.0: eth0: link down
[27822.850539] ADDRCONF(NETDEV_UP): eth0: link is not ready
[27825.955410] wlan0: authenticate with 00:1e:2a:d9:1b:77 (try 1)
[27825.960626] wlan0: authenticated
[27825.980334] wlan0: associate with 00:1e:2a:d9:1b:77 (try 1)
[27825.983659] wlan0: RX AssocResp from 00:1e:2a:d9:1b:77 (capab=0x431 status=0 aid=2)
[27825.983668] wlan0: associated
[27825.984125] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[27825.984214] cfg80211: Calling CRDA for country: DE
[27826.020528] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[27826.020533] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020535] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[27826.020537] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020539] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[27826.020542] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020544] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[27826.020547] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020549] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[27826.020552] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020554] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[27826.020556] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020558] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[27826.020561] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020563] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[27826.020565] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020567] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[27826.020570] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020572] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[27826.020574] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020577] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[27826.020579] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020582] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[27826.020584] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020586] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[27826.020589] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[27826.020591] cfg80211: Disabling freq 2484 MHz
[27826.020596] cfg80211: Regulatory domain changed to country: DE
[27826.020598] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[27826.020601] cfg80211:     (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[27826.020604] cfg80211:     (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[27826.020606] cfg80211:     (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[27826.020609] cfg80211:     (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[27837.027274] wlan0: no IPv6 routers present
[45379.288354] usb 2-1.1: USB disconnect, device number 5
[45403.713214] usb 2-1.2: new low speed USB device number 6 using ehci_hcd
[45403.812641] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input15
[45403.813120] generic-usb 0003:046D:C05A.0004: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.2/input0
[66921.229212] wlan0: deauthenticating from 00:1e:2a:d9:1b:77 by local choice (reason=3)
[66921.434237] cfg80211: All devices are disconnected, going to restore regulatory settings
[66921.434252] cfg80211: Restoring regulatory settings
[66921.434266] cfg80211: Calling CRDA to update world regulatory domain
[66921.997223] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[66921.997228] cfg80211: World regulatory domain updated:
[66921.997230] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[66921.997233] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[66921.997236] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[66921.997239] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[66921.997242] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[66921.997245] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[66925.292804] init: anacron main process (13599) killed by TERM signal
[66925.457549] keyboard: can't emulate rawmode for keycode 240
[66925.457559] keyboard: can't emulate rawmode for keycode 240
[66925.457562] asus_wmi: Unknown key 57 pressed
[66925.519249] PM: Syncing filesystems ... done.
[66925.522820] PM: Preparing system for mem sleep
[66926.461132] Freezing user space processes ... (elapsed 0.01 seconds) done.
[66926.476876] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[66926.492854] PM: Entering mem sleep
[66926.493023] Suspending console(s) (use no_console_suspend to debug)
[66926.494441] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[66926.495272] sd 0:0:0:0: [sda] Stopping disk
[66926.540821] ehci_hcd 0000:00:1d.0: PCI INT A disabled
[66926.540836] ehci_hcd 0000:00:1a.0: PCI INT A disabled
[66926.612877] HDA Intel 0000:00:1b.0: PCI INT A disabled
[66926.656710] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 145.103 msecs
[66926.878280] PM: suspend of drv:sd dev:0:0:0:0 complete after 384.043 msecs
[66926.878361] PM: suspend of drv:scsi dev:target0:0:0 complete after 383.966 msecs
[66926.878398] PM: suspend of drv:scsi dev:host0 complete after 383.817 msecs
[66926.892600] PM: suspend of drv:ahci dev:0000:00:1f.2 complete after 381.271 msecs
[66926.892648] PM: suspend of drv: dev:pci0000:00 complete after 378.567 msecs
[66926.892675] PM: suspend of devices complete after 399.141 msecs
[66926.892682] PM: suspend devices took 0.400 seconds
[66926.893093] r8169 0000:04:00.0: PME# enabled
[66926.893115] r8169 0000:04:00.0: wake-up capability enabled by ACPI
[66926.972688] PM: late suspend of devices complete after 80.036 msecs
[66926.973352] ACPI: Preparing to enter system sleep state S3
[66926.980643] PM: Saving platform NVS memory
[66926.982909] Disabling non-boot CPUs ...
[66926.985898] CPU 1 is now offline
[66926.989306] CPU 2 is now offline
[66927.092481] CPU 3 is now offline
[66927.093165] Extended CMOS year: 2000
[66927.093930] ACPI: Low-level resume complete
[66927.094011] PM: Restoring platform NVS memory
[66927.094668] Extended CMOS year: 2000
[66927.094748] Enabling non-boot CPUs ...
[66927.094917] Booting Node 0 Processor 1 APIC 0x2
[66927.094921] smpboot cpu 1: start_ip = 9a000
[66927.105624] Initializing CPU#1
[66927.207177] CPU1 is up
[66927.207405] Booting Node 0 Processor 2 APIC 0x1
[66927.207410] smpboot cpu 2: start_ip = 9a000
[66927.209892] Switched to NOHz mode on CPU #1
[66927.218110] Initializing CPU#2
[66927.319615] CPU2 is up
[66927.319860] Booting Node 0 Processor 3 APIC 0x3
[66927.319868] smpboot cpu 3: start_ip = 9a000
[66927.321837] Switched to NOHz mode on CPU #2
[66927.330566] Initializing CPU#3
[66927.431752] CPU3 is up
[66927.437902] Switched to NOHz mode on CPU #3
[66927.438686] ACPI: Waking up from system sleep state S3
[66927.626200] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x180100, writing 0x10010b)
[66927.626224] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xd1f1c001)
[66927.626238] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xdd00dc00)
[66927.626251] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0xf0, writing 0xd0d0)
[66927.626270] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[66927.626283] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[66927.626367] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[66927.626431] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[66927.626473] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfedb0004, writing 0xdf60a004)
[66927.626547] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[66927.626590] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf608000)
[66927.626611] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[66927.626688] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x103)
[66927.626734] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[66927.626751] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[66927.626826] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x10010a)
[66927.626869] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[66927.626886] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[66927.626963] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[66927.627000] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[66927.627013] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[66927.627086] pcieport 0000:00:1c.5: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[66927.627123] pcieport 0000:00:1c.5: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[66927.627193] ehci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x100, writing 0x104)
[66927.627228] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf607000)
[66927.627244] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[66927.627406] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[66927.627536] nvidia 0000:01:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[66927.627551] nvidia 0000:01:00.0: restoring config space at offset 0x9 (was 0x1, writing 0xd001)
[66927.627562] nvidia 0000:01:00.0: restoring config space at offset 0x7 (was 0xc, writing 0xd000000c)
[66927.627571] nvidia 0000:01:00.0: restoring config space at offset 0x5 (was 0xc, writing 0xc000000c)
[66927.627580] nvidia 0000:01:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xdc000000)
[66927.627591] nvidia 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[66927.627685] ath9k 0000:03:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[66927.627727] ath9k 0000:03:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xde200004)
[66927.627739] ath9k 0000:03:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[66927.627754] ath9k 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[66927.627888] r8169 0000:04:00.0: restoring config space at offset 0x1 (was 0x100007, writing 0x100407)
[66927.628180] PM: early resume of devices complete after 2.167 msecs
[66927.628369] i915 0000:00:02.0: setting latency timer to 64
[66927.628435] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[66927.628450] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[66927.628515] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[66927.628534] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[66927.628543] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[66927.628556] HDA Intel 0000:00:1b.0: setting latency timer to 64
[66927.628619] ahci 0000:00:1f.2: setting latency timer to 64
[66927.628682] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[66927.630649] r8169 0000:04:00.0: wake-up capability disabled by ACPI
[66927.630666] r8169 0000:04:00.0: PME# disabled
[66927.643221] sd 0:0:0:0: [sda] Starting disk
[66927.647637] Extended CMOS year: 2000
[66927.767765] PM: resume of drv:r8169 dev:0000:04:00.0 complete after 137.199 msecs
[66927.767794] PM: resume of drv:net dev:eth0 complete after 120.162 msecs
[66927.813697] PM: resume of drv: dev:ep_00 complete after 170.819 msecs
[66927.813716] PM: resume of drv:hub dev:1-1:1.0 complete after 171.010 msecs
[66927.813739] PM: resume of drv: dev:ep_81 complete after 170.961 msecs
[66927.821661] PM: resume of drv: dev:ep_00 complete after 177.168 msecs
[66927.821683] PM: resume of drv:hub dev:2-1:1.0 complete after 177.610 msecs
[66927.821710] PM: resume of drv: dev:ep_81 complete after 177.418 msecs
[66927.822022] PM: resume of drv:usbhid dev:2-1.2:1.0 complete after 173.010 msecs
[66927.822034] PM: resume of drv: dev:ep_00 complete after 172.896 msecs
[66927.822043] PM: resume of drv: dev:ep_81 complete after 172.978 msecs
[66927.843389] 2.6.2X-Elan-touchpad-2011-04-12
[66927.862166] PM: resume of drv: dev:ep_00 complete after 213.291 msecs
[66927.862178] PM: resume of drv:btusb dev:1-1.1:1.1 complete after 213.462 msecs
[66927.862186] PM: resume of drv:btusb dev:1-1.1:1.0 complete after 213.708 msecs
[66927.862221] PM: resume of drv: dev:ep_83 complete after 213.464 msecs
[66927.862231] PM: resume of drv: dev:ep_03 complete after 213.418 msecs
[66927.862246] PM: resume of drv: dev:ep_02 complete after 213.604 msecs
[66927.862253] PM: resume of drv: dev:ep_81 complete after 213.718 msecs
[66927.862260] PM: resume of drv: dev:ep_82 complete after 213.672 msecs
[66927.885853] usb 1-1.2: reset high speed USB device number 4 using ehci_hcd
[66927.953570] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[66927.957562] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[66927.957572] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[66927.957580] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[66927.968722] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[66927.968732] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[66927.968740] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[66927.971410] ata2.00: configured for UDMA/100
[66928.024081] PM: resume of drv:uvcvideo dev:1-1.2:1.1 complete after 376.491 msecs
[66928.024092] PM: resume of drv: dev:ep_00 complete after 376.432 msecs
[66928.024119] PM: resume of drv:uvcvideo dev:1-1.2:1.0 complete after 379.371 msecs
[66928.024144] PM: resume of drv: dev:ep_83 complete after 376.603 msecs
[66928.049784] usb 1-1.4: reset high speed USB device number 5 using ehci_hcd
[66928.086274] PM: resume of drv:i915 dev:0000:00:02.0 complete after 458.157 msecs
[66928.146671] PM: resume of drv: dev:ep_00 complete after 498.741 msecs
[66928.146685] PM: resume of drv:rts5139 dev:1-1.4:1.0 complete after 498.988 msecs
[66928.146712] PM: resume of drv: dev:ep_01 complete after 498.955 msecs
[66928.146733] PM: resume of drv: dev:ep_82 complete after 498.921 msecs
[66928.146741] PM: resume of drv:scsi dev:host6 complete after 498.752 msecs
[66928.146747] PM: resume of drv: dev:ep_83 complete after 498.875 msecs
[66928.146762] PM: resume of drv:scsi_host dev:host6 complete after 498.719 msecs
[66928.146780] PM: resume of drv:scsi dev:target6:0:0 complete after 498.680 msecs
[66928.146806] PM: resume of drv:sd dev:6:0:0:0 complete after 498.650 msecs
[66928.146826] PM: resume of drv:scsi_device dev:6:0:0:0 complete after 498.615 msecs
[66928.241139] elantech.c: PSMOUSE_CMD_RESET_BAT  param[0]=aa param[1]=0 param[2]=0
[66928.306877] val = 0x03
[66929.640696] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[66929.643042] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[66929.643052] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[66929.643060] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[66929.647699] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[66929.647709] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[66929.647717] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[66929.649612] ata1.00: configured for UDMA/133
[66929.697984] PM: resume of drv:sd dev:0:0:0:0 complete after 2055.818 msecs
[66929.698023] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 2055.361 msecs
[66929.698038] PM: resume of drv:scsi_disk dev:0:0:0:0 complete after 1930.915 msecs
[66929.701213] PM: resume of devices complete after 2074.042 msecs
[66929.701409] PM: resume devices took 2.076 seconds
[66929.701479] PM: Finishing wakeup.
[66929.701482] Restarting tasks ...
[66929.704822] usb 2-1.2: USB disconnect, device number 6
[66929.713799] done.
[66929.724663] video LNXVIDEO:00: Restoring backlight state
[66929.725634] video LNXVIDEO:01: Restoring backlight state
[66930.248186] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[66932.415352] init: anacron main process (14034) killed by TERM signal
[66933.106978] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[66933.254575] r8169 0000:04:00.0: eth0: link down
[66933.254795] ADDRCONF(NETDEV_UP): eth0: link is not ready
[66936.259695] wlan0: authenticate with 00:1e:2a:d9:1b:77 (try 1)
[66936.261743] wlan0: authenticated
[66936.281552] wlan0: associate with 00:1e:2a:d9:1b:77 (try 1)
[66936.284755] wlan0: RX AssocResp from 00:1e:2a:d9:1b:77 (capab=0x431 status=0 aid=2)
[66936.284764] wlan0: associated
[66936.285272] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[66936.285364] cfg80211: Calling CRDA for country: DE
[66936.289293] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[66936.289298] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289301] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[66936.289305] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289307] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[66936.289311] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289314] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[66936.289317] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289319] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[66936.289323] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289325] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[66936.289329] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289331] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[66936.289335] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289337] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[66936.289341] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289343] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[66936.289347] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289349] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[66936.289352] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289355] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[66936.289358] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289361] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[66936.289364] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289367] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[66936.289370] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[66936.289373] cfg80211: Disabling freq 2484 MHz
[66936.289379] cfg80211: Regulatory domain changed to country: DE
[66936.289381] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[66936.289384] cfg80211:     (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[66936.289387] cfg80211:     (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[66936.289390] cfg80211:     (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[66936.289393] cfg80211:     (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[66946.456026] wlan0: no IPv6 routers present
[68674.761184] keyboard: can't emulate rawmode for keycode 240
[68674.761197] keyboard: can't emulate rawmode for keycode 240
[68674.761201] asus_wmi: Unknown key 58 pressed
[68830.649011] usb 2-1.1: new low speed USB device number 7 using ehci_hcd
[68830.748625] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input16
[68830.749001] generic-usb 0003:046D:C05A.0005: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0
[79844.100518] usb 2-1.1: USB disconnect, device number 7
[79845.551791] wlan0: deauthenticating from 00:1e:2a:d9:1b:77 by local choice (reason=3)
[79845.633334] cfg80211: All devices are disconnected, going to restore regulatory settings
[79845.633344] cfg80211: Restoring regulatory settings
[79845.633369] cfg80211: Calling CRDA to update world regulatory domain
[79847.597561] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[79847.597566] cfg80211: World regulatory domain updated:
[79847.597567] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[79847.597570] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[79847.597572] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[79847.597574] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[79847.597576] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[79847.597578] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[79847.645992] keyboard: can't emulate rawmode for keycode 240
[79847.646012] keyboard: can't emulate rawmode for keycode 240
[79847.646023] asus_wmi: Unknown key 57 pressed
[79854.670450] PM: Syncing filesystems ... done.
[79854.678594] PM: Preparing system for mem sleep
[79855.082015] Freezing user space processes ... (elapsed 0.01 seconds) done.
[79855.097795] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[79855.113804] PM: Entering mem sleep
[79855.113869] Suspending console(s) (use no_console_suspend to debug)
[79855.114398] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[79855.161671] ehci_hcd 0000:00:1a.0: PCI INT A disabled
[79855.211383] sd 0:0:0:0: [sda] Stopping disk
[79855.221676] ehci_hcd 0000:00:1d.0: PCI INT A disabled
[79855.233815] HDA Intel 0000:00:1b.0: PCI INT A disabled
[79855.249658] PM: suspend of drv:HDA Intel dev:0000:00:1b.0 complete after 117.799 msecs
[79855.590629] PM: suspend of drv:sd dev:0:0:0:0 complete after 476.471 msecs
[79855.590756] PM: suspend of drv:scsi dev:target0:0:0 complete after 476.484 msecs
[79855.590797] PM: suspend of drv:scsi dev:host0 complete after 476.212 msecs
[79855.613480] PM: suspend of drv:ahci dev:0000:00:1f.2 complete after 481.888 msecs
[79855.613587] PM: suspend of drv: dev:pci0000:00 complete after 481.056 msecs
[79855.613625] PM: suspend of devices complete after 499.789 msecs
[79855.613628] PM: suspend devices took 0.500 seconds
[79855.613824] r8169 0000:04:00.0: PME# enabled
[79855.613832] r8169 0000:04:00.0: wake-up capability enabled by ACPI
[79855.693538] PM: late suspend of devices complete after 79.947 msecs
[79855.693771] ACPI: Preparing to enter system sleep state S3
[79855.701517] PM: Saving platform NVS memory
[79855.702355] Disabling non-boot CPUs ...
[79855.805357] CPU 1 is now offline
[79855.909311] CPU 2 is now offline
[79855.909980] Broke affinity for irq 23
[79856.013265] CPU 3 is now offline
[79856.013613] Extended CMOS year: 2000
[79856.013925] ACPI: Low-level resume complete
[79856.013966] PM: Restoring platform NVS memory
[79856.014380] Extended CMOS year: 2000
[79856.014416] Enabling non-boot CPUs ...
[79856.014485] Booting Node 0 Processor 1 APIC 0x2
[79856.014487] smpboot cpu 1: start_ip = 9a000
[79856.024744] Initializing CPU#1
[79856.122468] CPU1 is up
[79856.122546] Booting Node 0 Processor 2 APIC 0x1
[79856.122548] smpboot cpu 2: start_ip = 9a000
[79856.125911] Switched to NOHz mode on CPU #1
[79856.132796] Initializing CPU#2
[79856.230622] CPU2 is up
[79856.230713] Booting Node 0 Processor 3 APIC 0x3
[79856.230715] smpboot cpu 3: start_ip = 9a000
[79856.233856] Switched to NOHz mode on CPU #2
[79856.240961] Initializing CPU#3
[79856.338562] CPU3 is up
[79856.341236] ACPI: Waking up from system sleep state S3
[79856.341813] Switched to NOHz mode on CPU #3
[79856.542003] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x180100, writing 0x10010b)
[79856.542012] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xd1f1c001)
[79856.542017] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xdd00dc00)
[79856.542022] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0xf0, writing 0xd0d0)
[79856.542031] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[79856.542036] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[79856.542067] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[79856.542096] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[79856.542114] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfedb0004, writing 0xdf60a004)
[79856.542158] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[79856.542179] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf608000)
[79856.542194] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[79856.542235] HDA Intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x103)
[79856.542254] HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[79856.542262] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
[79856.542295] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x10010a)
[79856.542312] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[79856.542318] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[79856.542352] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[79856.542368] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[79856.542374] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[79856.542409] pcieport 0000:00:1c.5: restoring config space at offset 0xf (was 0x200, writing 0x10020b)
[79856.542425] pcieport 0000:00:1c.5: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[79856.542459] ehci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x100, writing 0x104)
[79856.542475] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x4 (was 0x0, writing 0xdf607000)
[79856.542483] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[79856.542558] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[79856.542613] nvidia 0000:01:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10a)
[79856.542619] nvidia 0000:01:00.0: restoring config space at offset 0x9 (was 0x1, writing 0xd001)
[79856.542623] nvidia 0000:01:00.0: restoring config space at offset 0x7 (was 0xc, writing 0xd000000c)
[79856.542628] nvidia 0000:01:00.0: restoring config space at offset 0x5 (was 0xc, writing 0xc000000c)
[79856.542631] nvidia 0000:01:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xdc000000)
[79856.542636] nvidia 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[79856.542687] ath9k 0000:03:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[79856.542712] ath9k 0000:03:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xde200004)
[79856.542718] ath9k 0000:03:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x10)
[79856.542727] ath9k 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[79856.542806] r8169 0000:04:00.0: restoring config space at offset 0x1 (was 0x100007, writing 0x100407)
[79856.542940] PM: early resume of devices complete after 1.013 msecs
[79856.543026] i915 0000:00:02.0: setting latency timer to 64
[79856.543040] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[79856.543051] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[79856.543055] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[79856.543062] HDA Intel 0000:00:1b.0: setting latency timer to 64
[79856.543094] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[79856.543109] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[79856.543122] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[79856.543149] ahci 0000:00:1f.2: setting latency timer to 64
[79856.544025] r8169 0000:04:00.0: wake-up capability disabled by ACPI
[79856.544035] r8169 0000:04:00.0: PME# disabled
[79856.557090] sd 0:0:0:0: [sda] Starting disk
[79856.560552] Extended CMOS year: 2000
[79856.686585] PM: resume of drv:r8169 dev:0000:04:00.0 complete after 142.636 msecs
[79856.686597] PM: resume of drv:net dev:eth0 complete after 126.095 msecs
[79856.733691] PM: resume of drv: dev:ep_00 complete after 176.689 msecs
[79856.733747] PM: resume of drv:hub dev:1-1:1.0 complete after 176.757 msecs
[79856.733757] PM: resume of drv: dev:ep_81 complete after 176.765 msecs
[79856.756209] 2.6.2X-Elan-touchpad-2011-04-12
[79856.782330] PM: resume of drv:btusb dev:1-1.1:1.0 complete after 221.654 msecs
[79856.782347] PM: resume of drv:btusb dev:1-1.1:1.1 complete after 221.580 msecs
[79856.782354] PM: resume of drv: dev:ep_81 complete after 221.667 msecs
[79856.782357] PM: resume of drv: dev:ep_83 complete after 221.596 msecs
[79856.782359] PM: resume of drv: dev:ep_82 complete after 221.654 msecs
[79856.782362] PM: resume of drv: dev:ep_03 complete after 221.581 msecs
[79856.782364] PM: resume of drv: dev:ep_02 complete after 221.640 msecs
[79856.782374] PM: resume of drv: dev:ep_00 complete after 221.576 msecs
[79856.805889] usb 1-1.2: reset high speed USB device number 4 using ehci_hcd
[79856.859833] PM: resume of drv:i915 dev:0000:00:02.0 complete after 316.975 msecs
[79856.865596] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[79856.869650] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[79856.869660] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[79856.869668] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[79856.880825] ata2.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[79856.880835] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[79856.880844] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[79856.883968] ata2.00: configured for UDMA/100
[79856.944122] PM: resume of drv: dev:ep_00 complete after 386.086 msecs
[79856.944141] PM: resume of drv:uvcvideo dev:1-1.2:1.1 complete after 386.204 msecs
[79856.944144] PM: resume of drv:uvcvideo dev:1-1.2:1.0 complete after 386.405 msecs
[79856.944153] PM: resume of drv: dev:ep_83 complete after 386.326 msecs
[79856.969668] usb 1-1.4: reset high speed USB device number 5 using ehci_hcd
[79857.066463] PM: resume of drv: dev:ep_00 complete after 506.065 msecs
[79857.066476] PM: resume of drv:rts5139 dev:1-1.4:1.0 complete after 508.372 msecs
[79857.066503] PM: resume of drv: dev:ep_82 complete after 506.147 msecs
[79857.066533] PM: resume of drv: dev:ep_83 complete after 506.161 msecs
[79857.066536] PM: resume of drv: dev:ep_01 complete after 506.204 msecs
[79857.066539] PM: resume of drv:scsi dev:host6 complete after 506.129 msecs
[79857.066548] PM: resume of drv:scsi_host dev:host6 complete after 506.120 msecs
[79857.066552] PM: resume of drv:scsi dev:target6:0:0 complete after 506.107 msecs
[79857.066563] PM: resume of drv:sd dev:6:0:0:0 complete after 506.098 msecs
[79857.066570] PM: resume of drv:scsi_device dev:6:0:0:0 complete after 506.087 msecs
[79857.154274] elantech.c: PSMOUSE_CMD_RESET_BAT  param[0]=aa param[1]=0 param[2]=0
[79857.220022] val = 0x03
[79858.552726] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[79858.569882] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[79858.569893] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[79858.569901] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[79858.574349] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[79858.574359] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[79858.574368] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[79858.576270] ata1.00: configured for UDMA/133
[79858.623209] PM: resume of drv:sd dev:0:0:0:0 complete after 2067.175 msecs
[79858.623251] PM: resume of drv:scsi_disk dev:0:0:0:0 complete after 1937.620 msecs
[79858.624730] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 2068.570 msecs
[79858.626206] PM: resume of devices complete after 2084.309 msecs
[79858.626281] PM: resume devices took 2.084 seconds
[79858.626304] PM: Finishing wakeup.
[79858.626306] Restarting tasks ... done.
[79858.641882] video LNXVIDEO:00: Restoring backlight state
[79858.642174] video LNXVIDEO:01: Restoring backlight state
[79858.675036] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[79860.575283] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[79860.719373] r8169 0000:04:00.0: eth0: link down
[79860.719641] ADDRCONF(NETDEV_UP): eth0: link is not ready
[79863.812272] wlan0: authenticate with 00:1e:2a:d9:1b:77 (try 1)
[79863.814268] wlan0: authenticated
[79863.833966] wlan0: associate with 00:1e:2a:d9:1b:77 (try 1)
[79863.837464] wlan0: RX AssocResp from 00:1e:2a:d9:1b:77 (capab=0x431 status=0 aid=2)
[79863.837468] wlan0: associated
[79863.837816] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[79863.837935] cfg80211: Calling CRDA for country: DE
[79863.841667] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[79863.841672] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841674] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[79863.841678] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841680] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[79863.841683] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841686] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[79863.841689] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841692] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[79863.841695] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841697] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[79863.841701] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841703] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[79863.841706] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841709] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[79863.841712] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841714] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[79863.841717] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841719] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[79863.841722] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841725] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[79863.841728] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841731] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[79863.841734] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841736] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[79863.841740] cfg80211: 2400000 KHz - 2483500 KHz @  KHz), (N/A mBi, 2000 mBm)
[79863.841742] cfg80211: Disabling freq 2484 MHz
[79863.841748] cfg80211: Regulatory domain changed to country: DE
[79863.841750] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[79863.841753] cfg80211:     (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[79863.841756] cfg80211:     (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[79863.841758] cfg80211:     (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[79863.841761] cfg80211:     (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[79874.388552] wlan0: no IPv6 routers present
[81151.517286] keyboard: can't emulate rawmode for keycode 240
[81151.517294] keyboard: can't emulate rawmode for keycode 240
[81151.517297] asus_wmi: Unknown key 58 pressed
[81163.171127] usb 2-1.1: new low speed USB device number 8 using ehci_hcd
[81163.270359] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input17
[81163.270681] generic-usb 0003:046D:C05A.0006: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0


###################################
11- cdmesg | tail
###################################
[79863.841756] cfg80211:     (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[79863.841758] cfg80211:     (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[79863.841761] cfg80211:     (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[79874.388552] wlan0: no IPv6 routers present
[81151.517286] keyboard: can't emulate rawmode for keycode 240
[81151.517294] keyboard: can't emulate rawmode for keycode 240
[81151.517297] asus_wmi: Unknown key 58 pressed
[81163.171127] usb 2-1.1: new low speed USB device number 8 using ehci_hcd
[81163.270359] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input17
[81163.270681] generic-usb 0003:046D:C05A.0006: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0
###################################
Bitti...
###################################


if


ct

Teşekkürler if. Çalıştı mı acaba başka bilgisayarlarda çok merak ediyorum :) Kodu root izniyle yazdığımdan sorun olabilir belki.

heartsmagic

Eline sağlık @ct. Uygulamayı çift tıklayarak çalıştırmak isteyen olursa şaşırabilir ama :) Bende örneğin arşiv yöneticisi açıyor kendisini ön tanımlı olarak. Sağ tıklayıp "Java ile aç" demem gerekiyor. Tabi uçbirimden de olur ama acemi arkadaşlara onu yaptırmak biraz daha zor olacaktır.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

ct

Teşekkürler heartsmagic. Evet ona bir çözüm bulamadım. En basit çözüm kabuk koducuğuyla çalıştırmak ve /usr/bin dizininin içine atmakmış. Yoksa sıkıştırma programlarıyla açıyor. Bu da terminali açmakla aynı şey gibi. Platform bağımsızlığı da bir yere kadarmış :)

furkankalkan

benim bildiğim kadarıyla program alt+f2 java -jar prg.jar şeklinde çalışması lazım. Programın root şifresiz çalışması için de lshw komutuna suid biti (ammaaan dikkaaat !) koyabilirsiniz. Ama bana kalırsa java programı değil de bir kabuk betiği yazsaydınız daha güvenilir (Buradan yadığınız programın güvensiz olduğunu kastetmiyorum ama sonuçta root şifresi istiyor ) olabilirdi. (Sonuçta herkes java dilini biliyor olamaz değil mi ?) Asıl amacınız grafiksel arayüz ise zenity kullanabilirsiniz. (Bir tavsiye daha: Çıktılara forum etiketlerini de eklerseni daha kullanışlı olacağını düşünüyorum. )
Bunların dışında bir emek harcadığın ve kullanışlı bir program yazdığın için seni tebrik eder bol kodlamalı günler dilerim.
Lover
twitter.com/furkan_kalkan1

ct

Merhaba,

@dewilman önerileriniz için çok teşekkür ederim. Kabuk programlamayı bilmediğim için javada yazdım. Asıl amacım hem Ubuntu'yu hem javayı öğrenmekti. Bunun dışında komut satırına ihtiyaç olmadan kullanıcıların bunu rapor halinde elde edebilmeleriydi. Root olayında ilk başta şifreyi menü yardımıyla isteyip daha sonradan ekleyecektim ancak pek güvenilir olmadığı yazdığı için gksu komutunu kullandım. Bu anladığım kadarıyla gksu nautilus'taki gibi programa yönetici haklarını veriyor. Eğer sorunlu olsaydı Synaptic ve Nautilus için kullanılmazdı diye düşünüyorum. Ama araştıracağım bunu. Zenity ile Java baülantısının nasıl olacağını anlamadım ancak kabuk için çok güzel örnekler varmış sitesinde. Bunu öğrendiğim çok iyi oldu :) Söylediğiniz kod etiketini yaptım. Başlıktaki yazıda gerekli değişiklikleri yapıyorum hemen.