LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-07-2012, 03:34 PM   #16
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918

i think it worked... i think have to do this to actually load the module:
Code:
sudo modprobe rtl8723e
sudo /etc/init.d/networking restart # mite not be needed but shouldnt hurt
 
1 members found this post helpful.
Old 09-07-2012, 03:47 PM   #17
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
Alrighty, this is what went down:

Code:
 sudo modprobe rtl18723e
Code:
 me@My-Laptop:~$ sudo modprobe rtl8723e
[sudo] password for me: 
FATAL: Error inserting rtl8723e (/lib/modules/2.6.38-14-generic/kernel/drivers/net/wireless/rtlwifi/rtl8723e/rtl8723e.ko): Invalid module format
then just for "fun" I plugged the other code in while I had linux booted.
Code:
 me@My-Laptop:~$ sudo /etc/init.d/networking restart
 * Running /etc/init.d/networking restart is deprecated because it may not enable again some interfaces
 * Reconfiguring network interfaces...                                   [ OK ] 
me@My-Laptop:~$ ^C
 
Old 09-07-2012, 04:01 PM   #18
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
hmm, can you do this in one terminal session:
Code:
tail -f /var/log/messages
and open another tab and do
Code:
sudo modprobe rtl18723e
and then show us the output from /var/log/messages.

still not sure what the error is but maybe that will give us a clue.
 
Old 09-07-2012, 04:07 PM   #19
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
On my way. Quick question, don't get me wrong, I certainly want to know what is going on and how to fix it, but would it make things easier for me to go with a better known distro, and replace back box? If so, what would you recommend?

I'll get you the outputs in a moment..
 
Old 09-07-2012, 04:12 PM   #20
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
Quote:
Originally Posted by WyattEarp1 View Post
On my way. Quick question, don't get me wrong, I certainly want to know what is going on and how to fix it, but would it make things easier for me to go with a better known distro, and replace back box? If so, what would you recommend?

I'll get you the outputs in a moment..
maybe fedora live-usb mite work (fedora tends to be more bleeding-edge than redhat at least) ? i think your laptop is really new so developers havent yet had the opportunity to compile drivers for all those components ?

i did a little bit of googling
Code:
sudo modprobe -f rtl18723e
mite work but the modprobe man page doesnt recommend it since forcing modules to load could be problematic.

Last edited by schneidz; 09-07-2012 at 04:13 PM.
 
Old 09-07-2012, 04:21 PM   #21
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
Alright, sounds like I would be having this problem with any distro, so,I'll keep this one. For now.

Here's what your commands returned:
Code:
 tail -f /var/log/messages

me@My-Laptop:~$ tail -f /var/log/messages
tail: cannot open `/var/log/messages' for reading: No such file or directory
and
Code:
 sudo modprobe rtl18723e 
FATAL: Error inserting rtl8723e (/lib/modules/2.6.38-14-generic/kernel/drivers/net/wireless/rtlwifi/rtl8723e/rtl8723e.ko): Invalid module format
Then
Code:
 me@My-Laptop:~$ tail -f /var/log/messages
tail: cannot open `/var/log/messages' for reading: No such file or directory
I'll try the
Code:
 sudo modprobe -f rtl18723e
right now
 
Old 09-07-2012, 04:30 PM   #22
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
Code:
 sudo modprobe -f rtl18723e
returned
Code:
 me@My-Laptop:~$ sudo modprobe -f rtl18723e
[sudo] password for me: 
FATAL: Module rtl18723e not found.
 
Old 09-07-2012, 04:43 PM   #23
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
Quote:
Originally Posted by WyattEarp1 View Post
Alright, sounds like I would be having this problem with any distro, so,I'll keep this one. For now...
Code:
 me@My-Laptop:~$ tail -f /var/log/messages
tail: cannot open `/var/log/messages' for reading: No such file or directory
thats weird... does your distro have
Code:
dmesg
what does this show
Code:
ll /lib/modules/2.6.38-14-generic/kernel/drivers/net/wireless/rtlwifi/rtl8723e/rtl8723e.ko
probably wouldnt hurt to try another live-usb real quick.
 
Old 09-07-2012, 04:46 PM   #24
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
Quote:
thats weird... does your distro have
Code:
dmesg
Sorry, but I figure this out by...?

Quote:
probably wouldnt hurt to try another live-usb real quick.
Would ubuntu precise work? I have the ISO already dl'ed so, I could make a live usb out of it

I'll be right back with the outcome of the command..
 
Old 09-07-2012, 04:56 PM   #25
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
Code:
 me@My-Laptop:~$ ll /lib/modules/2.6.38-14-generic/kernel/drivers/net/wireless/rtlwifi/rtl8723e/rtl8723e.ko
-rw-r--r-- 1 root root 206338 2012-09-07 15:43 /lib/modules/2.6.38-14-generic/kernel/drivers/net/wireless/rtlwifi/rtl8723e/rtl8723e.ko
 
Old 09-07-2012, 05:53 PM   #26
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
Quote:
Originally Posted by WyattEarp1 View Post
Sorry, but I figure this out by...?
i'm sorry just run dmesg.

all (most) linux distros have it but i assumed the same was true for /var/log/messages.
 
Old 09-07-2012, 06:39 PM   #27
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
alright, it seems dmesg works..
here is what it returned
Code:
 
me@My-Laptop:~$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.38-14-generic (buildd@roseapple) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) ) #58-Ubuntu SMP Tue Mar 27 18:48:46 UTC 2012 (Ubuntu 2.6.38-14.58-generic 2.6.38.8)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
[    0.000000]  BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
[    0.000000]  BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
[    0.000000]  BIOS-e820: 0000000020200000 - 0000000040004000 (usable)
[    0.000000]  BIOS-e820: 0000000040004000 - 0000000040005000 (reserved)
[    0.000000]  BIOS-e820: 0000000040005000 - 00000000a79ee000 (usable)
[    0.000000]  BIOS-e820: 00000000a79ee000 - 00000000a8177000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000a8177000 - 00000000a819a000 (usable)
[    0.000000]  BIOS-e820: 00000000a819a000 - 00000000a819f000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000a819f000 - 00000000acabf000 (usable)
[    0.000000]  BIOS-e820: 00000000acabf000 - 00000000acebf000 (reserved)
[    0.000000]  BIOS-e820: 00000000acebf000 - 00000000acfbf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000acfbf000 - 00000000acfff000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000acfff000 - 00000000ad000000 (usable)
[    0.000000]  BIOS-e820: 00000000ad000000 - 00000000afa00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed10000 - 00000000fed1a000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffd80000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 000000024f600000 (usable)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled in hardware: non-PAE kernel!
[    0.000000] NX (Execute Disable) protection: approximated by x86 segment limits
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: TOSHIBA Satellite S855/Portable PC, BIOS 1.60 04/20/2012
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0xad000 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FE0000000 write-back
[    0.000000]   2 base 0A0000000 mask FF8000000 write-back
[    0.000000]   3 base 0A8000000 mask FFC000000 write-back
[    0.000000]   4 base 0AC000000 mask FFF000000 write-back
[    0.000000]   5 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   6 base 100000000 mask F00000000 write-back
[    0.000000]   7 base 200000000 mask F80000000 write-back
[    0.000000]   8 base 24F600000 mask FFFE00000 uncachable
[    0.000000]   9 base 24F800000 mask FFF800000 uncachable
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] found SMP MP-table at [c00fe1b0] fe1b0
[    0.000000] initial memory mapped : 0 - 01c00000
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
[    0.000000] RAMDISK: 365d2000 - 372e1000
[    0.000000] ACPI: RSDP 000fe020 00024 (v02 TOSINV)
[    0.000000] ACPI: XSDT acffe210 0009C (v01 TOSINV TOSINV00 00000001      01000013)
[    0.000000] ACPI: FACP acffb000 0010C (v05 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI Warning: FADT (revision 5) is longer than ACPI 2.0 version, truncating length 268 to 244 (20110112/tbfadt-288)
[    0.000000] ACPI: DSDT acff0000 07F66 (v01 TOSINV TOSINV00 00000000 ACPI 00040000)
[    0.000000] ACPI: FACS acfbb000 00040
[    0.000000] ACPI: UEFI acffd000 00236 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! acffc000 000A5 (v32 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: HPET acffa000 00038 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: APIC acff9000 0008C (v03 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG acff8000 0003C (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: SLIC acfef000 00176 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: WDAT acfee000 00224 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT acfec000 01068 (v01 INSYDE CR CRB   00001000 ACPI 00040000)
[    0.000000] ACPI: BOOT acfea000 00028 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT acfe6000 00034 (v07 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT acfe1000 047DF (v01 TOSINV   TsbOdm 00001000 ACPI 00040000)
[    0.000000] ACPI: FPDT acfdf000 00044 (v01 TOSINV TOSINV00 00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT acfde000 008D6 (v01 INSYDE CR CRB   00003000 ACPI 00040000)
[    0.000000] ACPI: SSDT acfdd000 00A92 (v01 INSYDE CR CRB   00003000 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1880MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x000ad000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[7] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x00020000
[    0.000000]     0: 0x00020200 -> 0x00040004
[    0.000000]     0: 0x00040005 -> 0x000a79ee
[    0.000000]     0: 0x000a8177 -> 0x000a819a
[    0.000000]     0: 0x000a819f -> 0x000acabf
[    0.000000]     0: 0x000acfff -> 0x000ad000
[    0.000000] On node 0 totalpages: 704702
[    0.000000] free_area_init_node: node 0, pgdat c1784140, node_mem_map dea5f200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3949 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 220974 pages, LIFO batch:31
[    0.000000]   HighMem zone: 3761 pages used for memmap
[    0.000000]   HighMem zone: 474242 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] Allocating PCI resources starting at afa00000 (gap: afa00000:30600000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @de400000 s28800 r0 d24448 u524288
[    0.000000] pcpu-alloc: s28800 r0 d24448 u524288 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 699165
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-14-generic root=UUID=472158f6-9c1e-4f96-9728-db6d309800b9 ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] allocated 14171840 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:000ad000)
[    0.000000] Memory: 2758820k/2834432k available (5191k kernel code, 59988k reserved, 2537k data, 700k init, 1912012k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc178d000 - 0xc183c000   ( 700 kB)
[    0.000000]       .data : 0xc1511f21 - 0xc178c4c0   (2537 kB)
[    0.000000]       .text : 0xc1000000 - 0xc1511f21   (5191 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:744 16
[    0.000000] CPU 0 irqstacks, hard=f600a000 soft=f600c000
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.004000] Detected 2294.517 MHz processor.
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4589.03 BogoMIPS (lpj=9178068)
[    0.000005] pid_max: default: 32768 minimum: 301
[    0.000022] Security Framework initialized
[    0.000032] AppArmor: AppArmor initialized
[    0.000034] Yama: becoming mindful.
[    0.000075] Mount-cache hash table entries: 512
[    0.000161] Initializing cgroup subsys ns
[    0.000163] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[    0.000175] Initializing cgroup subsys cpuacct
[    0.000179] Initializing cgroup subsys memory
[    0.000184] Initializing cgroup subsys devices
[    0.000186] Initializing cgroup subsys freezer
[    0.000188] Initializing cgroup subsys net_cls
[    0.000189] Initializing cgroup subsys blkio
[    0.000215] CPU: Physical Processor ID: 0
[    0.000216] CPU: Processor Core ID: 0
[    0.000221] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.000222] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.000224] mce: CPU supports 9 MCE banks
[    0.000235] CPU0: Thermal monitoring handled by SMI
[    0.000243] using mwait in idle threads.
[    0.002681] ACPI: Core revision 20110112
[    0.002683] TOSHIBA Satellite detected - force copy of DSDT to local memory
[    0.002738] ACPI: Forced DSDT copy: length 0x07F66 copied locally, original unmapped
[    0.019720] ftrace: allocating 23656 entries in 47 pages
[    0.027923] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.028271] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.067933] CPU0: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz stepping 09
[    0.172080] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
[    0.172087] ... version:                3
[    0.172088] ... bit width:              48
[    0.172089] ... generic registers:      4
[    0.172090] ... value mask:             0000ffffffffffff
[    0.172091] ... max period:             000000007fffffff
[    0.172093] ... fixed-purpose events:   3
[    0.172094] ... event mask:             000000070000000f
[    0.172433] CPU 1 irqstacks, hard=f60de000 soft=f60e8000
[    0.172436] Booting Node   0, Processors  #1
[    0.182843] Initializing CPU#1
[    0.260055] CPU1: Thermal monitoring handled by SMI
[    0.280216] CPU 2 irqstacks, hard=f60f2000 soft=f60f4000
[    0.280219]  #2
[    0.290512] Initializing CPU#2
[    0.367992] CPU2: Thermal monitoring handled by SMI
[    0.388094] CPU 3 irqstacks, hard=f60fe000 soft=f6100000
[    0.388097]  #3
[    0.398390] Initializing CPU#3
[    0.475930] CPU3: Thermal monitoring handled by SMI
[    0.496074] CPU 4 irqstacks, hard=f6130000 soft=f6132000
[    0.496076]  #4
[    0.506370] Initializing CPU#4
[    0.583870] CPU4: Thermal monitoring handled by SMI
[    0.603953] CPU 5 irqstacks, hard=f6150000 soft=f6152000
[    0.603956]  #5
[    0.614248] Initializing CPU#5
[    0.691808] CPU5: Thermal monitoring handled by SMI
[    0.711933] CPU 6 irqstacks, hard=f615c000 soft=f615e000
[    0.711935]  #6
[    0.722228] Initializing CPU#6
[    0.799748] CPU6: Thermal monitoring handled by SMI
[    0.819909] CPU 7 irqstacks, hard=f6170000 soft=f6172000
[    0.819912]  #7 Ok.
[    0.830205] Initializing CPU#7
[    0.907686] CPU7: Thermal monitoring handled by SMI
[    0.927735] Brought up 8 CPUs
[    0.927737] Total of 8 processors activated (36714.63 BogoMIPS).
[    0.933555] devtmpfs: initialized
[    0.934658] print_constraints: dummy: 
[    0.934684] Time: 19:33:40  Date: 09/07/12
[    0.934713] NET: Registered protocol family 16
[    0.934789] EISA bus registered
[    0.934791] Trying to unpack rootfs image as initramfs...
[    0.934795] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.934796] ACPI: bus type pci registered
[    0.934849] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.934852] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.934854] PCI: Using MMCONFIG for extended config space
[    0.934855] PCI: Using configuration type 1 for base access
[    0.935523] bio: create slab <bio-0> at 0
[    0.937394] ACPI: EC: Look up EC in DSDT
[    0.939240] ACPI: Executed 1 blocks of module-level executable AML code
[    0.975186] ACPI: SSDT acdf9018 0080E (v01  PmRef  Cpu0Cst 00003001 INTL 20120215)
[    0.975646] ACPI: Dynamic OEM Table Load:
[    0.975648] ACPI: SSDT   (null) 0080E (v01  PmRef  Cpu0Cst 00003001 INTL 20120215)
[    1.019824] ACPI: SSDT acdfaa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120215)
[    1.020308] ACPI: Dynamic OEM Table Load:
[    1.020311] ACPI: SSDT   (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120215)
[    1.051668] ACPI: SSDT acdf8d98 00119 (v01  PmRef    ApCst 00003000 INTL 20120215)
[    1.052120] ACPI: Dynamic OEM Table Load:
[    1.052122] ACPI: SSDT   (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120215)
[    1.080673] ACPI: Interpreter enabled
[    1.080678] ACPI: (supports S0 S3 S4 S5)
[    1.080698] ACPI: Using IOAPIC for interrupt routing
[    1.106075] ACPI: Power Resource [FN00] (on)
[    1.127924] ACPI: ACPI Dock Station Driver: 1 docks/bays found
[    1.127926] HEST: Table not found.
[    1.127929] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.128241] \_SB_.PCI0:_OSC invalid UUID
[    1.128242] _OSC request data:1 8 1f 
[    1.128246] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    1.128753] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    1.128756] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    1.128758] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    1.128760] pci_root PNP0A08:00: host bridge window [mem 0xafa00000-0xfeafffff]
[    1.128770] pci 0000:00:00.0: [8086:0154] type 0 class 0x000600
[    1.128807] pci 0000:00:02.0: [8086:0166] type 0 class 0x000300
[    1.128819] pci 0000:00:02.0: reg 10: [mem 0xb8000000-0xb83fffff 64bit]
[    1.128826] pci 0000:00:02.0: reg 18: [mem 0xb0000000-0xb7ffffff 64bit pref]
[    1.128832] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    1.128884] pci 0000:00:14.0: [8086:1e31] type 0 class 0x000c03
[    1.128909] pci 0000:00:14.0: reg 10: [mem 0xb8600000-0xb860ffff 64bit]
[    1.128970] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    1.128975] pci 0000:00:14.0: PME# disabled
[    1.128997] pci 0000:00:16.0: [8086:1e3a] type 0 class 0x000780
[    1.129022] pci 0000:00:16.0: reg 10: [mem 0xb8614000-0xb861400f 64bit]
[    1.129087] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    1.129091] pci 0000:00:16.0: PME# disabled
[    1.129125] pci 0000:00:1a.0: [8086:1e2d] type 0 class 0x000c03
[    1.129435] pci 0000:00:1a.0: reg 10: [mem 0xb8619000-0xb86193ff]
[    1.131193] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.131197] pci 0000:00:1a.0: PME# disabled
[    1.131223] pci 0000:00:1b.0: [8086:1e20] type 0 class 0x000403
[    1.131240] pci 0000:00:1b.0: reg 10: [mem 0xb8610000-0xb8613fff 64bit]
[    1.131298] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    1.131302] pci 0000:00:1b.0: PME# disabled
[    1.131325] pci 0000:00:1c.0: [8086:1e10] type 1 class 0x000604
[    1.131391] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.131395] pci 0000:00:1c.0: PME# disabled
[    1.131420] pci 0000:00:1c.1: [8086:1e12] type 1 class 0x000604
[    1.131485] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    1.131490] pci 0000:00:1c.1: PME# disabled
[    1.131524] pci 0000:00:1d.0: [8086:1e26] type 0 class 0x000c03
[    1.131830] pci 0000:00:1d.0: reg 10: [mem 0xb8618000-0xb86183ff]
[    1.133596] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.133600] pci 0000:00:1d.0: PME# disabled
[    1.133626] pci 0000:00:1f.0: [8086:1e59] type 0 class 0x000601
[    1.133744] pci 0000:00:1f.2: [8086:1e03] type 0 class 0x000106
[    1.133764] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    1.133773] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    1.133782] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    1.133791] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    1.133800] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    1.133809] pci 0000:00:1f.2: reg 24: [mem 0xb8617000-0xb86177ff]
[    1.133843] pci 0000:00:1f.2: PME# supported from D3hot
[    1.133847] pci 0000:00:1f.2: PME# disabled
[    1.133866] pci 0000:00:1f.3: [8086:1e22] type 0 class 0x000c05
[    1.133883] pci 0000:00:1f.3: reg 10: [mem 0xb8615000-0xb86150ff 64bit]
[    1.133906] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    1.133999] pci 0000:01:00.0: [1969:1091] type 0 class 0x000200
[    1.134028] pci 0000:01:00.0: reg 10: [mem 0xb8500000-0xb853ffff 64bit]
[    1.134044] pci 0000:01:00.0: reg 18: [io  0x3000-0x307f]
[    1.134141] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.134147] pci 0000:01:00.0: PME# disabled
[    1.134191] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    1.134196] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    1.134200] pci 0000:00:1c.0:   bridge window [mem 0xb8500000-0xb85fffff]
[    1.134208] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.134284] pci 0000:02:00.0: [10ec:8723] type 0 class 0x000280
[    1.134311] pci 0000:02:00.0: reg 10: [io  0x2000-0x20ff]
[    1.134360] pci 0000:02:00.0: reg 18: [mem 0xb8400000-0xb8403fff 64bit]
[    1.134475] pci 0000:02:00.0: supports D1 D2
[    1.134476] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.134483] pci 0000:02:00.0: PME# disabled
[    1.134538] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    1.134543] pci 0000:00:1c.1:   bridge window [io  0x2000-0x2fff]
[    1.134547] pci 0000:00:1c.1:   bridge window [mem 0xb8400000-0xb84fffff]
[    1.134554] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.134568] pci_bus 0000:00: on NUMA node 0
[    1.134570] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.134714] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    1.134745] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    1.134843] \_SB_.PCI0:_OSC invalid UUID
[    1.134844] _OSC request data:1 1f 1f 
[    1.134848]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    1.134888] \_SB_.PCI0:_OSC invalid UUID
[    1.134889] _OSC request data:1 0 1d 
[    1.137736] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    1.137781] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    1.137822] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.137863] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    1.137903] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.137944] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    1.137984] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    1.138024] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    1.138092] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    1.138098] vgaarb: loaded
[    1.138246] SCSI subsystem initialized
[    1.138285] libata version 3.00 loaded.
[    1.138317] usbcore: registered new interface driver usbfs
[    1.138326] usbcore: registered new interface driver hub
[    1.138344] usbcore: registered new device driver usb
[    1.138420] wmi: Mapper loaded
[    1.138421] PCI: Using ACPI for IRQ routing
[    1.138423] PCI: pci_cache_line_size set to 64 bytes
[    1.138489] reserve RAM buffer: 000000000009d800 - 000000000009ffff 
[    1.138491] reserve RAM buffer: 0000000040004000 - 0000000043ffffff 
[    1.138493] reserve RAM buffer: 00000000a79ee000 - 00000000a7ffffff 
[    1.138495] reserve RAM buffer: 00000000a819a000 - 00000000abffffff 
[    1.138497] reserve RAM buffer: 00000000acabf000 - 00000000afffffff 
[    1.138499] reserve RAM buffer: 00000000ad000000 - 00000000afffffff 
[    1.138572] NetLabel: Initializing
[    1.138574] NetLabel:  domain hash size = 128
[    1.138575] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.138583] NetLabel:  unlabeled traffic allowed by default
[    1.138616] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.138621] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.140639] Switching to clocksource hpet
[    1.143538] Switched to NOHz mode on CPU #0
[    1.143597] Switched to NOHz mode on CPU #4
[    1.143614] Switched to NOHz mode on CPU #2
[    1.143617] Switched to NOHz mode on CPU #7
[    1.143635] Switched to NOHz mode on CPU #5
[    1.143656] Switched to NOHz mode on CPU #3
[    1.143674] Switched to NOHz mode on CPU #1
[    1.143678] Switched to NOHz mode on CPU #6
continued in next reply
 
Old 09-07-2012, 06:39 PM   #28
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
Code:
[    1.146496] AppArmor: AppArmor Filesystem Enabled
[    1.146510] pnp: PnP ACPI init
[    1.146520] ACPI: bus type pnp registered
[    1.146785] pnp 00:00: [bus 00-fe]
[    1.146787] pnp 00:00: [io  0x0000-0x0cf7 window]
[    1.146789] pnp 00:00: [io  0x0cf8-0x0cff]
[    1.146791] pnp 00:00: [io  0x0d00-0xffff window]
[    1.146793] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    1.146795] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    1.146797] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    1.146799] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    1.146801] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    1.146803] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    1.146804] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    1.146806] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    1.146808] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    1.146810] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    1.146811] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    1.146813] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    1.146815] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    1.146817] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    1.146819] pnp 00:00: [mem 0xafa00000-0xfeafffff window]
[    1.146821] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[    1.146874] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.146886] pnp 00:01: [io  0x0000-0x001f]
[    1.146887] pnp 00:01: [io  0x0081-0x0091]
[    1.146889] pnp 00:01: [io  0x0093-0x009f]
[    1.146890] pnp 00:01: [io  0x00c0-0x00df]
[    1.146892] pnp 00:01: [dma 4]
[    1.146912] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.146919] pnp 00:02: [mem 0xff000000-0xffffffff]
[    1.146938] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    1.147006] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    1.147026] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.147034] pnp 00:04: [io  0x00f0]
[    1.147043] pnp 00:04: [irq 13]
[    1.147062] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.147072] pnp 00:05: [io  0x002e-0x002f]
[    1.147073] pnp 00:05: [io  0x004e-0x004f]
[    1.147075] pnp 00:05: [io  0x0061]
[    1.147076] pnp 00:05: [io  0x0063]
[    1.147077] pnp 00:05: [io  0x0062]
[    1.147079] pnp 00:05: [io  0x0065]
[    1.147080] pnp 00:05: [io  0x0066]
[    1.147082] pnp 00:05: [io  0x0067]
[    1.147083] pnp 00:05: [io  0x0068]
[    1.147085] pnp 00:05: [io  0x006c]
[    1.147086] pnp 00:05: [io  0x0070]
[    1.147087] pnp 00:05: [io  0x0080]
[    1.147089] pnp 00:05: [io  0x0092]
[    1.147090] pnp 00:05: [io  0x00b2-0x00b3]
[    1.147092] pnp 00:05: [io  0x0680-0x069f]
[    1.147093] pnp 00:05: [io  0x1000-0x100f]
[    1.147095] pnp 00:05: [io  0xffff]
[    1.147096] pnp 00:05: [io  0xffff]
[    1.147098] pnp 00:05: [io  0x0400-0x0453]
[    1.147099] pnp 00:05: [io  0x0458-0x047f]
[    1.147101] pnp 00:05: [io  0x0500-0x057f]
[    1.147104] pnp 00:05: [io  0x164e-0x164f]
[    1.147144] system 00:05: [io  0x0680-0x069f] has been reserved
[    1.147146] system 00:05: [io  0x1000-0x100f] has been reserved
[    1.147148] system 00:05: [io  0xffff] has been reserved
[    1.147150] system 00:05: [io  0xffff] has been reserved
[    1.147152] system 00:05: [io  0x0400-0x0453] has been reserved
[    1.147154] system 00:05: [io  0x0458-0x047f] has been reserved
[    1.147157] system 00:05: [io  0x0500-0x057f] has been reserved
[    1.147159] system 00:05: [io  0x164e-0x164f] has been reserved
[    1.147161] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.147168] pnp 00:06: [io  0x0070-0x0077]
[    1.147173] pnp 00:06: [irq 8]
[    1.147194] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.147210] pnp 00:07: [io  0x0454-0x0457]
[    1.147243] system 00:07: [io  0x0454-0x0457] has been reserved
[    1.147246] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.147254] pnp 00:08: [io  0x0060]
[    1.147256] pnp 00:08: [io  0x0064]
[    1.147260] pnp 00:08: [irq 1]
[    1.147280] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    1.147290] pnp 00:09: [irq 12]
[    1.147313] pnp 00:09: Plug and Play ACPI device, IDs TOS0310 SYN1900 SYN0002 PNP0f13 (active)
[    1.147465] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[    1.147467] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[    1.147469] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[    1.147470] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[    1.147472] pnp 00:0a: [mem 0xe0000000-0xefffffff]
[    1.147474] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[    1.147475] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[    1.147477] pnp 00:0a: [mem 0xff000000-0xffffffff]
[    1.147479] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[    1.147480] pnp 00:0a: [mem 0xafa00000-0xafa00fff]
[    1.147482] pnp 00:0a: [mem 0xff800000-0xff8001ff]
[    1.147517] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.147519] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.147522] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.147524] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.147526] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
[    1.147528] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.147530] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[    1.147533] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
[    1.147535] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.147537] system 00:0a: [mem 0xafa00000-0xafa00fff] has been reserved
[    1.147539] system 00:0a: [mem 0xff800000-0xff8001ff] has been reserved
[    1.147542] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.147764] pnp 00:0b: [mem 0x20000000-0x201fffff]
[    1.147766] pnp 00:0b: [mem 0x40004000-0x40004fff]
[    1.147816] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
[    1.147818] system 00:0b: [mem 0x40004000-0x40004fff] has been reserved
[    1.147820] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.147869] pnp: PnP ACPI: found 12 devices
[    1.147870] ACPI: ACPI bus type pnp unregistered
[    1.147873] PnPBIOS: Disabled by ACPI PNP
[    1.184817] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    1.184822] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    1.184828] pci 0000:00:1c.0:   bridge window [mem 0xb8500000-0xb85fffff]
[    1.184832] pci 0000:00:1c.0:   bridge window [mem pref disabled]
[    1.184839] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    1.184842] pci 0000:00:1c.1:   bridge window [io  0x2000-0x2fff]
[    1.184848] pci 0000:00:1c.1:   bridge window [mem 0xb8400000-0xb84fffff]
[    1.184852] pci 0000:00:1c.1:   bridge window [mem pref disabled]
[    1.184871] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.184877] pci 0000:00:1c.0: setting latency timer to 64
[    1.184887] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    1.184892] pci 0000:00:1c.1: setting latency timer to 64
[    1.184896] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.184898] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.184900] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.184902] pci_bus 0000:00: resource 7 [mem 0xafa00000-0xfeafffff]
[    1.184904] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    1.184905] pci_bus 0000:01: resource 1 [mem 0xb8500000-0xb85fffff]
[    1.184907] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    1.184909] pci_bus 0000:02: resource 1 [mem 0xb8400000-0xb84fffff]
[    1.184932] NET: Registered protocol family 2
[    1.184975] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    1.185097] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.185275] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    1.185363] TCP: Hash tables configured (established 131072 bind 65536)
[    1.185365] TCP reno registered
[    1.185367] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    1.185371] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    1.185425] NET: Registered protocol family 1
[    1.185435] pci 0000:00:02.0: Boot video device
[    1.191482] Freeing initrd memory: 13372k freed
[    1.216611] PCI: CLS 64 bytes, default 64
[    1.216629] Simple Boot Flag at 0x44 set to 0x1
[    1.216992] cpufreq-nforce2: No nForce2 chipset.
[    1.217131] audit: initializing netlink socket (disabled)
[    1.217137] type=2000 audit(1347046419.992:1): initialized
[    1.226045] highmem bounce pool size: 64 pages
[    1.226049] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    1.227306] VFS: Disk quotas dquot_6.5.2
[    1.227349] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.227830] fuse init (API version 7.16)
[    1.227901] msgmni has been set to 1680
[    1.228094] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.228117] io scheduler noop registered
[    1.228119] io scheduler deadline registered
[    1.228131] io scheduler cfq registered (default)
[    1.228298] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.228315] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.228357] intel_idle: MWAIT substates: 0x21120
[    1.228359] intel_idle: does not run on family 6 model 58
[    1.228401] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    1.228441] ACPI: AC Adapter [ADP0] (off-line)
[    1.228501] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    1.228505] ACPI: Power Button [PWRB]
[    1.228535] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[    1.288531] ACPI: Lid Switch [LID0]
[    1.288589] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.288592] ACPI: Power Button [PWRF]
[    1.288637] ACPI: Fan [FAN] (on)
[    1.288750] ACPI: acpi_idle registered with cpuidle
[    1.320800] Monitor-Mwait will be used to enter C-1 state
[    1.320826] Monitor-Mwait will be used to enter C-2 state
[    1.320851] Monitor-Mwait will be used to enter C-3 state
[    1.324426] thermal LNXTHERM:00: registered as thermal_zone0
[    1.324429] ACPI: Thermal Zone [THRM] (52 C)
[    1.324465] ERST: Table is not found!
[    1.324536] isapnp: Scanning for PnP cards...
[    1.324547] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.325265] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    1.325272] ACPI: Battery Slot [BAT0] (battery present)
[    1.678590] isapnp: No Plug & Play device found
[    1.681955] Linux agpgart interface v0.103
[    1.682846] brd: module loaded
[    1.683247] loop: module loaded
[    1.683308] i2c-core: driver [adp5520] using legacy suspend method
[    1.683309] i2c-core: driver [adp5520] using legacy resume method
[    1.683602] Fixed MDIO Bus: probed
[    1.683628] PPP generic driver version 2.4.2
[    1.683656] tun: Universal TUN/TAP device driver, 1.6
[    1.683657] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.683716] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.683730] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.683740] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    1.683744] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    1.683773] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.683816] ehci_hcd 0000:00:1a.0: debug port 2
[    1.687709] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    1.687724] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xb8619000
[    1.700329] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.700445] hub 1-0:1.0: USB hub found
[    1.700448] hub 1-0:1.0: 2 ports detected
[    1.700502] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.700512] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.700516] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    1.700546] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.700589] ehci_hcd 0000:00:1d.0: debug port 2
[    1.704485] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    1.704498] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xb8618000
[    1.720317] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.720415] hub 2-0:1.0: USB hub found
[    1.720417] hub 2-0:1.0: 2 ports detected
[    1.720462] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.720471] uhci_hcd: USB Universal Host Controller Interface driver
[    1.720537] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
[    1.722705] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.722710] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.722809] mousedev: PS/2 mouse device common for all mice
[    1.722918] rtc_cmos 00:06: RTC can wake from S4
[    1.722967] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    1.722995] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.723054] device-mapper: uevent: version 1.0.3
[    1.723112] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com
[    1.723155] device-mapper: multipath: version 1.2.0 loaded
[    1.723157] device-mapper: multipath round-robin: version 1.0.0 loaded
[    1.723205] EISA: Probing bus 0 at eisa.0
[    1.723206] EISA: Cannot allocate resource for mainboard
[    1.723208] Cannot allocate resource for EISA slot 1
[    1.723209] Cannot allocate resource for EISA slot 2
[    1.723211] Cannot allocate resource for EISA slot 3
[    1.723212] Cannot allocate resource for EISA slot 4
[    1.723213] Cannot allocate resource for EISA slot 5
[    1.723214] Cannot allocate resource for EISA slot 6
[    1.723216] Cannot allocate resource for EISA slot 7
[    1.723217] Cannot allocate resource for EISA slot 8
[    1.723218] EISA: Detected 0 cards.
[    1.723410] cpuidle: using governor ladder
[    1.723671] cpuidle: using governor menu
[    1.723854] TCP cubic registered
[    1.723952] NET: Registered protocol family 10
[    1.724333] NET: Registered protocol family 17
[    1.724343] Registering the dns_resolver key type
[    1.725574] Using IPI No-Shortcut mode
[    1.725635] PM: Hibernation image not present or could not be loaded.
[    1.725642] registered taskstats version 1
[    1.725850]   Magic number: 12:588:596
[    1.725941] rtc_cmos 00:06: setting system clock to 2012-09-07 19:33:41 UTC (1347046421)
[    1.725943] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.725944] EDD information not available.
[    1.726088] Freeing unused kernel memory: 700k freed
[    1.726216] Write protecting the kernel text: 5192k
[    1.726272] Write protecting the kernel read-only data: 2152k
[    1.738035] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.739274] <30>udev[107]: starting version 167
[    1.758615] xhci_hcd 0000:00:14.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    1.758635] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    1.758639] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.758683] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.772455] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.772472] xhci_hcd 0000:00:14.0: irq 21, io mem 0xb8600000
[    1.772487] xhci_hcd 0000:00:14.0: Failed to enable MSI-X
[    1.772523] xhci_hcd 0000:00:14.0: irq 40 for MSI/MSI-X
[    1.772568] usb usb3: No SuperSpeed endpoint companion for config 1  interface 0 altsetting 0 ep 129: using minimum values
[    1.772624] xHCI xhci_add_endpoint called for root hub
[    1.772625] xHCI xhci_check_bandwidth called for root hub
[    1.772644] hub 3-0:1.0: USB hub found
[    1.772646] hub 3-0:1.0: 8 ports detected
[    1.772712] ahci 0000:00:1f.2: version 3.0
[    1.772729] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.772765] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    1.772790] ahci: SSS flag set, parallel bus scan disabled
[    1.788340] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x39 impl SATA mode
[    1.788347] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems sxs apst 
[    1.788369] ahci 0000:00:1f.2: setting latency timer to 64
[    1.812736] scsi0 : ahci
[    1.812882] scsi1 : ahci
[    1.813017] scsi2 : ahci
[    1.813152] scsi3 : ahci
[    1.813259] scsi4 : ahci
[    1.813367] scsi5 : ahci
[    1.813467] ata1: SATA max UDMA/133 abar m2048@0xb8617000 port 0xb8617100 irq 41
[    1.813468] ata2: DUMMY
[    1.813469] ata3: DUMMY
[    1.813471] ata4: SATA max UDMA/133 abar m2048@0xb8617000 port 0xb8617280 irq 41
[    1.813474] ata5: SATA max UDMA/133 abar m2048@0xb8617000 port 0xb8617300 irq 41
[    1.813477] ata6: SATA max UDMA/133 abar m2048@0xb8617000 port 0xb8617380 irq 41
[    2.012193] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    2.132136] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.133292] ata1.00: ATA-8: Hitachi HTS547575A9E384, JE4OA60B, max UDMA/133
[    2.133298] ata1.00: 1465149168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    2.134539] ata1.00: configured for UDMA/133
[    2.134736] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54757 JE4O PQ: 0 ANSI: 5
[    2.134850] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.134897] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
[    2.134912] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    2.135014] sd 0:0:0:0: [sda] Write Protect is off
[    2.135028] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.135065] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.144811] hub 1-1:1.0: USB hub found
[    2.144918] hub 1-1:1.0: 6 ports detected
[    2.206915]  sda: sda1 sda2 sda3 < sda5 sda6 >
[    2.207273] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.216082] Refined TSC clocksource calibration: 2294.783 MHz.
[    2.216091] Switching to clocksource tsc
[    2.256065] usb 2-1: new high speed USB device using ehci_hcd and address 2
[    2.388557] hub 2-1:1.0: USB hub found
[    2.388673] hub 2-1:1.0: 6 ports detected
[    2.451963] ata4: SATA link down (SStatus 0 SControl 300)
[    2.460038] usb 1-1.1: new high speed USB device using ehci_hcd and address 3
[    2.623955] usb 1-1.3: new high speed USB device using ehci_hcd and address 4
[    2.771796] ata5: SATA link down (SStatus 0 SControl 300)
[    2.875821] usb 2-1.1: new full speed USB device using ehci_hcd and address 3
[    3.007255] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input4
[    3.007335] generic-usb 0003:046D:C52F.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1.1/input0
[    3.009225] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/input/input5
[    3.009350] generic-usb 0003:046D:C52F.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.1/input1
[    3.009361] usbcore: registered new interface driver usbhid
[    3.009363] usbhid: USB HID core driver
[    3.043738] usb 2-1.3: new high speed USB device using ehci_hcd and address 4
[    3.091635] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.092646] ata6.00: ATAPI: MATSHITADVD-RAM UJ8C0, 1.00, max UDMA/133
[    3.097767] ata6.00: configured for UDMA/133
[    3.111280] scsi 5:0:0:0: CD-ROM            MATSHITA DVD-RAM UJ8C0    1.00 PQ: 0 ANSI: 5
[    3.119119] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.119125] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.119260] sr 5:0:0:0: Attached scsi CD-ROM sr0
[    3.119319] sr 5:0:0:0: Attached scsi generic sg1 type 5
[    3.139507] usbcore: registered new interface driver uas
[    3.142323] Initializing USB Mass Storage driver...
[    3.142478] scsi6 : usb-storage 2-1.3:1.0
[    3.142581] usbcore: registered new interface driver usb-storage
[    3.142582] USB Mass Storage support registered.
[    3.703584] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[    4.141874] scsi 6:0:0:0: Direct-Access     WD       My Passport 071A 2011 PQ: 0 ANSI: 4
[    4.144006] scsi 6:0:0:1: Enclosure         WD       SES Device       2011 PQ: 0 ANSI: 4
[    4.144882] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    4.144946] scsi 6:0:0:1: Attached scsi generic sg3 type 13
[    4.145779] sd 6:0:0:0: [sdb] 1465092096 512-byte logical blocks: (750 GB/698 GiB)
[    4.147772] sd 6:0:0:0: [sdb] Write Protect is off
[    4.147778] sd 6:0:0:0: [sdb] Mode Sense: 2b 00 10 08
[    4.147782] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[    4.150643] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[    5.651353]  sdb: sdb1
[    5.654502] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[    5.654518] sd 6:0:0:0: [sdb] Attached SCSI disk
[   14.386822] <30>udev[332]: starting version 167
[   14.407053] Detected Toshiba ACPI Bluetooth device - installing RFKill handler
[   14.407093] toshiba_bluetooth: Re-enabling Toshiba Bluetooth
[   14.476673] Linux video capture interface: v2.00
[   14.478565] uvcvideo: Found UVC 1.00 device TOSHIBA Web Camera - HD (10f1:1a43)
[   14.494610] lp: driver loaded but no devices found
[   14.496282] input: TOSHIBA Web Camera - HD as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input6
[   14.496360] usbcore: registered new interface driver uvcvideo
[   14.496362] USB Video Class driver (v1.0.0)
[   14.576072] Adding 8312828k swap on /dev/sda6.  Priority:-1 extents:1 across:8312828k 
[   14.603744] type=1400 audit(1347046434.381:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=526 comm="apparmor_parser"
[   14.604406] type=1400 audit(1347046434.381:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=526 comm="apparmor_parser"
[   14.604825] type=1400 audit(1347046434.381:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=526 comm="apparmor_parser"
[   14.625367] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   14.625406] HDA Intel 0000:00:1b.0: irq 42 for MSI/MSI-X
[   14.625424] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   14.697772] usb 1-1.2: new full speed USB device using ehci_hcd and address 5
[   14.739602] cfg80211: Calling CRDA to update world regulatory domain
[   14.801006] Bluetooth: Core ver 2.16
[   14.801018] NET: Registered protocol family 31
[   14.801019] Bluetooth: HCI device and connection manager initialized
[   14.801020] Bluetooth: HCI socket layer initialized
[   14.801021] Bluetooth: L2CAP socket layer initialized
[   14.801063] Bluetooth: SCO socket layer initialized
[   14.802360] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   14.802501] usbcore: registered new interface driver btusb
[   15.086486] rtl8723e: disagrees about version of symbol module_layout
[   15.171389] hda_codec: ALC269VB: BIOS auto-probing.
[   15.176653] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   15.176694] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   15.263128] ses 6:0:0:1: Attached Enclosure device
[   15.283139] cfg80211: World regulatory domain updated:
[   15.283140] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   15.283142] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.283144] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.283145] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.283146] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.283147] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.286331] Synaptics Touchpad, model: 1, fw: 7.5, id: 0x1e0b1, caps: 0xd00073/0x240000/0xa0400
[   15.286339] synaptics: Toshiba Satellite S855 detected, limiting rate to 40pps.
[   15.319982] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
[   15.320386] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
[   15.708947] type=1400 audit(1347046435.485:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=781 comm="apparmor_parser"
[   15.709285] type=1400 audit(1347046435.489:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=784 comm="apparmor_parser"
[   15.709504] type=1400 audit(1347046435.489:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=781 comm="apparmor_parser"
[   15.709846] type=1400 audit(1347046435.489:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=781 comm="apparmor_parser"
[   15.709963] type=1400 audit(1347046435.489:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=784 comm="apparmor_parser"
[   15.711766] type=1400 audit(1347046435.489:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=782 comm="apparmor_parser"
[   15.718926] type=1400 audit(1347046435.497:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=782 comm="apparmor_parser"
[   16.431594] ppdev: user-space parallel port driver
[   16.460386] vesafb: framebuffer at 0xb0000000, mapped to 0xf8e00000, using 4160k, total 4160k
[   16.460388] vesafb: mode is 1366x768x32, linelength=5504, pages=0
[   16.460389] vesafb: scrolling: redraw
[   16.460391] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[   16.460476] Console: switching to colour frame buffer device 170x48
[   16.460497] fb0: VESA VGA frame buffer device
[   17.384438] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=600
[   19.570398] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
[   19.903401] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=600
 
Old 09-07-2012, 08:24 PM   #29
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
this is the reason why:
Code:
[   15.086486] rtl8723e: disagrees about version of symbol module_layout
not sure how to get it to load ?
 
Old 09-07-2012, 08:57 PM   #30
WyattEarp1
LQ Newbie
 
Registered: Sep 2012
Location: Florida
Distribution: BackBox 2.5
Posts: 24

Original Poster
Rep: Reputation: 0
No, I'm not sure how to get that to load.. Much less what it means by "disagrees about version of symbol module_layout"
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Using 2 network cards (wireless & ethernet) under SuSE 10.0 solar_neutrino Linux - Wireless Networking 1 09-17-2006 11:56 PM
wifi drivers with other ethernet cards sardok Linux - Wireless Networking 1 01-02-2006 06:49 AM
Fedora Core 1 as router but realtek ethernet cards don't activate Agapito Linux - Networking 0 02-03-2005 06:22 AM
Ethernet cards gone after dist-upgrade Cyrus XIII Debian 1 04-12-2004 02:19 AM
problem with two realtek 8139 ethernet cards w3bbuilder Linux - Newbie 1 08-15-2003 03:46 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:54 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration