Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Przenośne komputery i problemy z nimi związane
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

microice pisze:Wpisalem to i dodalem wpis do GRUB i wybralem dla intel po czym uruchomilem ponownie laptopa jednak wentylator nadal "wyje"
To powinieneś wybrać z menu w NeteXt'73 ... samo wpisanie niczego nie załatwia = to aktywować. Jeśli robisz to poza NeteXt, to konieczne jest wydanie polecenia:

Kod: Zaznacz cały

sudo update-grub
Jaki profil APM ?

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

No tak tak robie wszystko po kolei z okna netext profil apm to intel-powersave
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Zatem wygeneruj i daj proszę logi z NeteXt'73.

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

Nie wiedzialem ktore logi wyslac bo wygenerowaly mi sie dwa o to system.log:

Kod: Zaznacz cały

Zainstalowane wersje kerneli:
3.9.8-ext73-f1-24.7-k8-ags-cfs	3.8.13-ext73-f1-23.8-k8-ags-cfs


#################################  microcode  ##########################################################
microcode Intel - ON
microcode AMD - ON


Informacje o systemie
Distributor ID:	Ubuntu
Description:	Ubuntu 13.04
Release:	13.04
Codename:	raring
Linux bartek-Inspiron-3521 3.9.8-ext73-f1-24.7-k8-ags-cfs #3 SMP PREEMPT Thu Jun 27 23:12:50 CEST 2013 x86_64 x86_64 x86_64 GNU/Linux


#################################  mounted-proc.conf  ###################################################
# mounted-proc - Fix perms on sensitive /proc filesystem entries
#
# Some files in /proc have sensitive contents that can be used to
# help attackers launch kernel exploits. Making these files readable
# only by root slightly reduces the chances of these kinds of attacks
# being successful.

description	"Fix-up sensitive /proc filesystem entries"

start on mounted MOUNTPOINT=/var
env MOUNTPOINT=/proc

task

script
    chmod 0400 "${MOUNTPOINT}"/slabinfo
end script


#################################  ureadahead.conf  #####################################################
# ureadahead - Read required files in advance
#
# Runs the über-readahead daemon which reads data about files required
# during boot and reads them into the page cache in advance of their
# use.

description	"Read required files in advance"

start on mounted MOUNTPOINT=/var
stop on stopped rc

# Forks into the background both when reading from disk and when profiling
# (HDD mode won't fork, but that's ok because we'll wait for it in spawned).
expect fork

# When profiling, give it three minutes after sending SIGTERM to write out
# the pack file.
kill timeout 180

# Don't treat a normal exit after reading finishes as a failure
normal exit 0

exec /sbin/ureadahead --daemon

# Normally ureadahead will exit on its own when it finishes, unless it's
# profiling - in which case we want to give the system another 45s to
# finish staring the desktop and other things.
pre-stop exec sleep 45


#################################  wersja APM  ##########################################################
advanced_power_management_by_ext73_intel-powersave_v2.6


#################################  readahead  ###########################################################
#!/bin/sh

[ -x /sbin/blockdev ] || exit $NA

# more readahead = (hopefully) less hard drive activity.
# less readahead = less trashing the page cache.

DRIVE_READAHEAD_AC=${DRIVE_READAHEAD_AC:-6144}
DRIVE_READAHEAD_AC=${DRIVE_READAHEAD_BAT:-6144}

help() {
    cat <<EOF
--------
$0: Control drive readahead.

This hook tries to trade off the number of times we spin up a drive
to read for potentially wasted cache.

Drive readahead parameters:
DRIVE_READAHEAD_AC = Number of KB to speculatively read on AC.
Defaults to 256 KB.

DRIVE_READAHEAD_BAT = Number of KB to speculatively read on battery.
Defaults to 6144 KB.

EOF
}

readahead() {
    # the intent here is to iterate through all filesystems
    # mounted on a local block device. It Works For The Maintainer(tm).
    # More sophistication in figuring out what exactly is a local block device
    # would be welcome.
    for dev in $(awk '/^\/dev\// {print $1}'</etc/mtab); do
	printf "Setting readahead for %s to %d..." "$dev" "$1"
	/sbin/blockdev --setfra $1 "$dev" && echo Done. || echo Failed.
    done
}

case $1 in
    true) readahead "$DRIVE_READAHEAD_BAT" ;;
    false) readahead "$DRIVE_READAHEAD_AC" ;;
    help) help;;
    *) exit $NA ;;
esac

exit 0


#################################  GRUB  ################################################################
GRUB_CMDLINE_LINUX="pcie_aspm=force acpi_osi=Linux acpi_enforce_resources=lax i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 i915.semaphores=1"
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Proszę sprawdź jeszcze v25.3 i daj wszystkie logi z NeteXt'73 - w tym dmesg.

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

Dmesg:

Kod: Zaznacz cały

Initializing cgroup subsys cpu
Linux version 3.9.8-ext73-f1-24.7-k8-ags-cfs (root@ext73-kernel) (gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ) #3 SMP PREEMPT Thu Jun 27 23:12:50 CEST 2013
Command line: BOOT_IMAGE=/vmlinuz-3.9.8-ext73-f1-24.7-k8-ags-cfs root=UUID=bbc0df4a-6a25-44fd-95c9-e358bfafe048 ro pcie_aspm=force acpi_osi=Linux acpi_enforce_resources=lax i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 i915.semaphores=1 quiet splash acpi=force acpi_osi=Linux pcie_aspm=force pcie_aspm=powersave vt.handoff=7
KERNEL supported cpus:
  Intel GenuineIntel
  AMD AuthenticAMD
e820: BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
BIOS-e820: [mem 0x0000000040005000-0x000000008ffaffff] usable
BIOS-e820: [mem 0x000000008ffb0000-0x00000000913affff] reserved
BIOS-e820: [mem 0x00000000913b0000-0x0000000099dbefff] usable
BIOS-e820: [mem 0x0000000099dbf000-0x000000009aebefff] reserved
BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
BIOS-e820: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
BIOS-e820: [mem 0x0000000100000000-0x000000025f5fffff] usable
NX (Execute Disable) protection: active
efi: EFI v2.31 by INSYDE Corp.
efi:  ACPI=0x9affe000  ACPI 2.0=0x9affe014  SMBIOS=0x9aebef98 
efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
efi: mem02: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
efi: mem05: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001073000) (15MB)
efi: mem06: type=7, attr=0xf, range=[0x0000000001073000-0x0000000020000000) (495MB)
efi: mem07: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
efi: mem08: type=7, attr=0xf, range=[0x0000000020200000-0x00000000362b0000) (352MB)
efi: mem09: type=2, attr=0xf, range=[0x00000000362b0000-0x0000000037150000) (14MB)
efi: mem10: type=7, attr=0xf, range=[0x0000000037150000-0x0000000040004000) (142MB)
efi: mem11: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
efi: mem12: type=7, attr=0xf, range=[0x0000000040005000-0x000000006935d000) (659MB)
efi: mem13: type=2, attr=0xf, range=[0x000000006935d000-0x000000008e3c0000) (592MB)
efi: mem14: type=4, attr=0xf, range=[0x000000008e3c0000-0x000000008e3e0000) (0MB)
efi: mem15: type=7, attr=0xf, range=[0x000000008e3e0000-0x000000008efd4000) (11MB)
efi: mem16: type=4, attr=0xf, range=[0x000000008efd4000-0x000000008ffb0000) (15MB)
efi: mem17: type=0, attr=0xf, range=[0x000000008ffb0000-0x00000000913b0000) (20MB)
efi: mem18: type=7, attr=0xf, range=[0x00000000913b0000-0x00000000915a1000) (1MB)
efi: mem19: type=1, attr=0xf, range=[0x00000000915a1000-0x00000000915bf000) (0MB)
efi: mem20: type=7, attr=0xf, range=[0x00000000915bf000-0x000000009642f000) (78MB)
efi: mem21: type=4, attr=0xf, range=[0x000000009642f000-0x000000009645c000) (0MB)
efi: mem22: type=7, attr=0xf, range=[0x000000009645c000-0x0000000096470000) (0MB)
efi: mem23: type=4, attr=0xf, range=[0x0000000096470000-0x0000000097346000) (14MB)
efi: mem24: type=7, attr=0xf, range=[0x0000000097346000-0x000000009734d000) (0MB)
efi: mem25: type=4, attr=0xf, range=[0x000000009734d000-0x0000000097481000) (1MB)
efi: mem26: type=7, attr=0xf, range=[0x0000000097481000-0x0000000097482000) (0MB)
efi: mem27: type=4, attr=0xf, range=[0x0000000097482000-0x0000000097484000) (0MB)
efi: mem28: type=7, attr=0xf, range=[0x0000000097484000-0x0000000097485000) (0MB)
efi: mem29: type=4, attr=0xf, range=[0x0000000097485000-0x00000000974bf000) (0MB)
efi: mem30: type=7, attr=0xf, range=[0x00000000974bf000-0x00000000974c3000) (0MB)
efi: mem31: type=4, attr=0xf, range=[0x00000000974c3000-0x00000000974c6000) (0MB)
efi: mem32: type=7, attr=0xf, range=[0x00000000974c6000-0x00000000974c7000) (0MB)
efi: mem33: type=4, attr=0xf, range=[0x00000000974c7000-0x0000000097901000) (4MB)
efi: mem34: type=7, attr=0xf, range=[0x0000000097901000-0x0000000097902000) (0MB)
efi: mem35: type=4, attr=0xf, range=[0x0000000097902000-0x0000000097919000) (0MB)
efi: mem36: type=7, attr=0xf, range=[0x0000000097919000-0x000000009791d000) (0MB)
efi: mem37: type=4, attr=0xf, range=[0x000000009791d000-0x0000000097e0f000) (4MB)
efi: mem38: type=7, attr=0xf, range=[0x0000000097e0f000-0x0000000097e13000) (0MB)
efi: mem39: type=4, attr=0xf, range=[0x0000000097e13000-0x0000000097e14000) (0MB)
efi: mem40: type=7, attr=0xf, range=[0x0000000097e14000-0x0000000097e16000) (0MB)
efi: mem41: type=4, attr=0xf, range=[0x0000000097e16000-0x00000000995bf000) (23MB)
efi: mem42: type=7, attr=0xf, range=[0x00000000995bf000-0x0000000099a06000) (4MB)
efi: mem43: type=2, attr=0xf, range=[0x0000000099a06000-0x0000000099a10000) (0MB)
efi: mem44: type=3, attr=0xf, range=[0x0000000099a10000-0x0000000099dbf000) (3MB)
efi: mem45: type=5, attr=0x800000000000000f, range=[0x0000000099dbf000-0x0000000099f2c000) (1MB)
efi: mem46: type=5, attr=0x800000000000000f, range=[0x0000000099f2c000-0x0000000099f2f000) (0MB)
efi: mem47: type=6, attr=0x800000000000000f, range=[0x0000000099f2f000-0x000000009a0b5000) (1MB)
efi: mem48: type=5, attr=0x800000000000000f, range=[0x000000009a0b5000-0x000000009a1bf000) (1MB)
efi: mem49: type=6, attr=0x800000000000000f, range=[0x000000009a1bf000-0x000000009a2ae000) (0MB)
efi: mem50: type=6, attr=0x800000000000000f, range=[0x000000009a2ae000-0x000000009a3bf000) (1MB)
efi: mem51: type=0, attr=0xf, range=[0x000000009a3bf000-0x000000009adf3000) (10MB)
efi: mem52: type=0, attr=0xf, range=[0x000000009adf3000-0x000000009aebf000) (0MB)
efi: mem53: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009af91000) (0MB)
efi: mem54: type=10, attr=0xf, range=[0x000000009af91000-0x000000009afbf000) (0MB)
efi: mem55: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afdd000) (0MB)
efi: mem56: type=9, attr=0xf, range=[0x000000009afdd000-0x000000009afff000) (0MB)
efi: mem57: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
efi: mem58: type=7, attr=0xf, range=[0x0000000100000000-0x000000025f600000) (5622MB)
efi: mem59: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
efi: mem60: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
efi: mem61: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
efi: mem62: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
efi: mem63: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
efi: mem64: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
efi: mem65: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
efi: mem66: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
efi: mem67: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x00000000fff00000) (3MB)
efi: mem68: type=11, attr=0x8000000000000000, range=[0x00000000fff00000-0x00000000fff40000) (0MB)
efi: mem69: type=11, attr=0x8000000000000000, range=[0x00000000fff40000-0x0000000100000000) (0MB)
SMBIOS 2.7 present.
DMI: Dell Inc. Inspiron 3521/02XR30, BIOS A02 09/26/2012
e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
e820: remove [mem 0x000a0000-0x000fffff] usable
No AGP bridge found
e820: last_pfn = 0x25f600 max_arch_pfn = 0x400000000
MTRR default type: uncachable
MTRR fixed ranges enabled:
  00000-9FFFF write-back
  A0000-BFFFF uncachable
  C0000-E7FFF write-protect
  E8000-EFFFF write-combining
  F0000-FFFFF write-protect
MTRR variable ranges enabled:
  0 base 000000000 mask F80000000 write-back
  1 base 080000000 mask FE0000000 write-back
  2 base 09B000000 mask FFF000000 uncachable
  3 base 09C000000 mask FFC000000 uncachable
  4 base 0FFA00000 mask FFFE00000 write-protect
  5 base 0FFC00000 mask FFFC00000 write-protect
  6 base 100000000 mask F00000000 write-back
  7 base 200000000 mask F80000000 write-back
  8 base 25F600000 mask FFFE00000 uncachable
  9 base 25F800000 mask FFF800000 uncachable
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
Scanning 1 areas for low memory corruption
Base memory trampoline at [ffff88000007e000] 7e000 size 24576
init_memory_mapping: [mem 0x00000000-0x000fffff]
 [mem 0x00000000-0x000fffff] page 4k
BRK [0x01beb000, 0x01bebfff] PGTABLE
BRK [0x01bec000, 0x01becfff] PGTABLE
BRK [0x01bed000, 0x01bedfff] PGTABLE
init_memory_mapping: [mem 0x25f400000-0x25f5fffff]
 [mem 0x25f400000-0x25f5fffff] page 2M
BRK [0x01bee000, 0x01beefff] PGTABLE
init_memory_mapping: [mem 0x25c000000-0x25f3fffff]
 [mem 0x25c000000-0x25f3fffff] page 2M
init_memory_mapping: [mem 0x200000000-0x25bffffff]
 [mem 0x200000000-0x25bffffff] page 2M
BRK [0x01bef000, 0x01beffff] PGTABLE
init_memory_mapping: [mem 0x00100000-0x1fffffff]
 [mem 0x00100000-0x001fffff] page 4k
 [mem 0x00200000-0x1fffffff] page 2M
init_memory_mapping: [mem 0x20200000-0x40003fff]
 [mem 0x20200000-0x3fffffff] page 2M
 [mem 0x40000000-0x40003fff] page 4k
init_memory_mapping: [mem 0x40005000-0x8ffaffff]
 [mem 0x40005000-0x401fffff] page 4k
 [mem 0x40200000-0x8fdfffff] page 2M
 [mem 0x8fe00000-0x8ffaffff] page 4k
init_memory_mapping: [mem 0x913b0000-0x99dbefff]
 [mem 0x913b0000-0x913fffff] page 4k
 [mem 0x91400000-0x99bfffff] page 2M
 [mem 0x99c00000-0x99dbefff] page 4k
init_memory_mapping: [mem 0x9afff000-0x9affffff]
 [mem 0x9afff000-0x9affffff] page 4k
init_memory_mapping: [mem 0x100000000-0x1ffffffff]
 [mem 0x100000000-0x1ffffffff] page 2M
RAMDISK: [mem 0x362b0000-0x3714ffff]
ACPI: RSDP 000000009affe014 00024 (v02 DELL  )
ACPI: XSDT 000000009affe210 000BC (v01 DELL    CL09    00000001      01000013)
ACPI: FACP 000000009affa000 0010C (v05 DELL    CL09    00000001 ASL  00040000)
ACPI: DSDT 000000009afed000 092DA (v01 DELL    CL09    00000000 ASL  00040000)
ACPI: FACS 000000009afb9000 00040
ACPI: SLIC 000000009affd000 00176 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: UEFI 000000009affc000 00236 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: ASF! 000000009affb000 000A5 (v32 DELL    CL09    00000001 ASL  00040000)
ACPI: HPET 000000009aff9000 00038 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: APIC 000000009aff8000 0008C (v03 DELL    CL09    00000001 ASL  00040000)
ACPI: MCFG 000000009aff7000 0003C (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: SLIC 000000009afec000 00176 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: SSDT 000000009afeb000 006FE (v01 COMPAL CRV ORB  00001000 ACPI 00040000)
ACPI: BOOT 000000009afe9000 00028 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: ASPT 000000009afe7000 00034 (v07 DELL    CL09    00000001 ASL  00040000)
ACPI: DBGP 000000009afe6000 00034 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: FPDT 000000009afe4000 00044 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: MSDM 000000009afe3000 00055 (v03 DELL    CL09    00000001 ASL  00040000)
ACPI: SSDT 000000009afe2000 008A2 (v01 COMPAL CRV ORB  00003000 ACPI 00040000)
ACPI: SSDT 000000009afe1000 00A92 (v01 COMPAL CRV ORB  00003000 ACPI 00040000)
ACPI: DMAR 000000009afe0000 000B8 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: SSDT 000000009afdd000 01EED (v01 COMPAL CRV ORB  00001000 ACPI 00040000)
ACPI: BGRT 000000009afdf000 00038 (v01 DELL    CL09    00000001 ASL  00040000)
ACPI: Local APIC address 0xfee00000
 [ffffea0000000000-ffffea00097fffff] PMD -> [ffff880256c00000-ffff88025ebfffff] on node 0
Zone ranges:
  DMA      [mem 0x00001000-0x00ffffff]
  DMA32    [mem 0x01000000-0xffffffff]
  Normal   [mem 0x100000000-0x25f5fffff]
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x00001000-0x00087fff]
  node   0: [mem 0x00100000-0x1fffffff]
  node   0: [mem 0x20200000-0x40003fff]
  node   0: [mem 0x40005000-0x8ffaffff]
  node   0: [mem 0x913b0000-0x99dbefff]
  node   0: [mem 0x9afff000-0x9affffff]
  node   0: [mem 0x100000000-0x25f5fffff]
On node 0 totalpages: 2063686
  DMA zone: 64 pages used for memmap
  DMA zone: 23 pages reserved
  DMA zone: 3975 pages, LIFO batch:0
  DMA32 zone: 9695 pages used for memmap
  DMA32 zone: 620479 pages, LIFO batch:31
  Normal zone: 22488 pages used for memmap
  Normal zone: 1439232 pages, LIFO batch:31
ACPI: PM-Timer IO Port: 0x408
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
smpboot: Allowing 8 CPUs, 4 hotplug CPUs
nr_irqs_gsi: 40
PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
PM: Registered nosave memory: 0000000020000000 - 0000000020200000
PM: Registered nosave memory: 0000000040004000 - 0000000040005000
PM: Registered nosave memory: 000000008ffb0000 - 00000000913b0000
PM: Registered nosave memory: 0000000099dbf000 - 000000009aebf000
PM: Registered nosave memory: 000000009aebf000 - 000000009afbf000
PM: Registered nosave memory: 000000009afbf000 - 000000009afff000
PM: Registered nosave memory: 000000009b000000 - 000000009fa00000
PM: Registered nosave memory: 000000009fa00000 - 00000000e0000000
PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
PM: Registered nosave memory: 00000000f0000000 - 00000000feb00000
PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
PERCPU: Embedded 26 pages/cpu @ffff88025f200000 s75072 r8192 d23232 u262144
pcpu-alloc: s75072 r8192 d23232 u262144 alloc=1*2097152
pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2031416
Kernel command line: BOOT_IMAGE=/vmlinuz-3.9.8-ext73-f1-24.7-k8-ags-cfs root=UUID=bbc0df4a-6a25-44fd-95c9-e358bfafe048 ro pcie_aspm=force acpi_osi=Linux acpi_enforce_resources=lax i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 i915.semaphores=1 quiet splash acpi=force acpi_osi=Linux pcie_aspm=force pcie_aspm=powersave vt.handoff=7
PCIe ASPM is forcibly enabled
PCIe ASPM is forcibly enabled
PID hash table entries: 4096 (order: 3, 32768 bytes)
Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
__ex_table already sorted, skipping sort
xsave: enabled xstate_bv 0x7, cntxt size 0x340
Checking aperture...
No AGP bridge found
Memory: 7946292k/9951232k available (6514k kernel code, 1696488k absent, 308452k reserved, 4181k data, 832k init)
SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Preemptible hierarchical RCU implementation.
	RCU dyntick-idle grace-period acceleration is enabled.
	Dump stacks of tasks blocking RCU-preempt GP.
NR_IRQS:4352 nr_irqs:744 16
Console: colour dummy device 80x25
console [tty0] enabled
hpet clockevent registered
tsc: Fast TSC calibration using PIT
tsc: Detected 1696.043 MHz processor
Calibrating delay loop (skipped), value calculated using timer frequency.. 3392.08 BogoMIPS (lpj=1696043)
pid_max: default: 32768 minimum: 301
init_memory_mapping: [mem 0x99dbf000-0x99f2efff]
 [mem 0x99dbf000-0x99f2efff] page 4k
init_memory_mapping: [mem 0x99f2f000-0x9a0b4fff]
 [mem 0x99f2f000-0x9a0b4fff] page 4k
init_memory_mapping: [mem 0x9a0b5000-0x9a1befff]
 [mem 0x9a0b5000-0x9a1befff] page 4k
init_memory_mapping: [mem 0x9a1bf000-0x9a3befff]
 [mem 0x9a1bf000-0x9a3befff] page 4k
Security Framework initialized
AppArmor: AppArmor initialized
Mount-cache hash table entries: 256
Initializing cgroup subsys blkio
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
mce: CPU supports 7 MCE banks
CPU0: Thermal monitoring enabled (TM1)
Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
Freeing SMP alternatives: 24k freed
ACPI: Core revision 20130117
ACPI: All ACPI Tables successfully acquired
dmar: Host address width 36
dmar: DRHD base: 0x000000fed90000 flags: 0x0
dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
dmar: DRHD base: 0x000000fed91000 flags: 0x1
dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
dmar: RMRR base: 0x0000009ae8c000 end: 0x0000009aeabfff
dmar: RMRR base: 0x0000009b800000 end: 0x0000009f9fffff
IOAPIC id 0 under DRHD base  0xfed91000 IOMMU 1
HPET id 0 under DRHD base 0xfed91000
Enabled IRQ remapping in xapic mode
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
smpboot: CPU0: Intel(R) Core(TM) i5-3317U CPU @ 1.70GHz (fam: 06, model: 3a, stepping: 09)
TSC deadline timer enabled
Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
... version:                3
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             000000007fffffff
... fixed-purpose events:   3
... event mask:             000000070000000f
smpboot: Booting Node   0, Processors  #1 #2 #3
Brought up 4 CPUs
smpboot: Total of 4 processors activated (13568.34 BogoMIPS)
devtmpfs: initialized
PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
regulator-dummy: no parameters
NET: Registered protocol family 16
ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
ACPI: bus type PCI registered
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
PCI: Using configuration type 1 for base access
dmi type 0xB1 record - unknown flag
bio: create slab <bio-0> at 0
ACPI: Added _OSI(Module Device)
ACPI: Added _OSI(Processor Device)
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
ACPI: Added _OSI(Linux)
ACPI: EC: Look up EC in DSDT
ACPI: Executed 1 blocks of module-level executable AML code
ACPI: SSDT 000000009ae17018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20111123)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20111123)
ACPI: SSDT 000000009ae18a98 00303 (v01  PmRef    ApIst 00003000 INTL 20111123)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20111123)
ACPI: SSDT 000000009ae16d98 00119 (v01  PmRef    ApCst 00003000 INTL 20111123)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20111123)
ACPI: Interpreter enabled
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
\_SB_.PCI0:_OSC invalid UUID
_OSC request data:1 8 0 
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [bus 00-fe]
pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
pci 0000:00:01.0: System wakeup disabled by ACPI
pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
pci 0000:00:02.0: reg 10: [mem 0xc1000000-0xc13fffff 64bit]
pci 0000:00:02.0: reg 18: [mem 0xb0000000-0xbfffffff 64bit pref]
pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
pci 0000:00:14.0: reg 10: [mem 0xc1600000-0xc160ffff 64bit]
pci 0000:00:14.0: PME# supported from D3hot D3cold
pci 0000:00:14.0: System wakeup disabled by ACPI
pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
pci 0000:00:16.0: reg 10: [mem 0xc1614000-0xc161400f 64bit]
pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
pci 0000:00:1a.0: reg 10: [mem 0xc1619000-0xc16193ff]
pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
pci 0000:00:1b.0: reg 10: [mem 0xc1610000-0xc1613fff 64bit]
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.0: System wakeup disabled by ACPI
pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.1: System wakeup disabled by ACPI
pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
pci 0000:00:1d.0: reg 10: [mem 0xc1618000-0xc16183ff]
pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1d.0: System wakeup disabled by ACPI
pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
pci 0000:00:1f.2: reg 24: [mem 0xc1617000-0xc16177ff]
pci 0000:00:1f.2: PME# supported from D3hot
pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
pci 0000:00:1f.3: reg 10: [mem 0xc1615000-0xc16150ff 64bit]
pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
pci 0000:01:00.0: [1002:6601] type 00 class 0x030000
pci 0000:01:00.0: reg 10: [mem 0xa0000000-0xafffffff 64bit pref]
pci 0000:01:00.0: reg 18: [mem 0xc0000000-0xc003ffff 64bit]
pci 0000:01:00.0: reg 20: [io  0x3000-0x30ff]
pci 0000:01:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref]
pci 0000:01:00.0: supports D1 D2
pci 0000:01:00.0: PME# supported from D1 D2 D3hot
pci 0000:01:00.0: System wakeup disabled by ACPI
pci 0000:00:01.0: PCI bridge to [bus 01-06]
pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xc0ffffff]
pci 0000:00:01.0:   bridge window [mem 0xa0000000-0xafffffff 64bit pref]
pci 0000:07:00.0: [10ec:8136] type 00 class 0x020000
pci 0000:07:00.0: reg 10: [io  0x2000-0x20ff]
pci 0000:07:00.0: reg 18: [mem 0xc1404000-0xc1404fff 64bit pref]
pci 0000:07:00.0: reg 20: [mem 0xc1400000-0xc1403fff 64bit pref]
pci 0000:07:00.0: supports D1 D2
pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:1c.0: PCI bridge to [bus 07]
pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
pci 0000:00:1c.0:   bridge window [mem 0xc1400000-0xc14fffff 64bit pref]
pci 0000:08:00.0: [168c:0032] type 00 class 0x028000
pci 0000:08:00.0: reg 10: [mem 0xc1500000-0xc157ffff 64bit]
pci 0000:08:00.0: reg 30: [mem 0xffff0000-0xffffffff pref]
pci 0000:08:00.0: supports D1 D2
pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:1c.1: PCI bridge to [bus 08]
pci 0000:00:1c.1:   bridge window [mem 0xc1500000-0xc15fffff]
pci_bus 0000:00: on NUMA node 0
\_SB_.PCI0:_OSC invalid UUID
_OSC request data:1 1f 0 
acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
ACPI: Enabled 5 GPEs in block 00 to 3F
acpi root: \_SB_.PCI0 notify handler is installed
Found 1 acpi root devices
ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
ACPI: No dock devices found.
vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
vgaarb: loaded
vgaarb: bridge control possible 0000:01:00.0
vgaarb: no bridge control possible 0000:00:02.0
SCSI subsystem initialized
ACPI: bus type ATA registered
libata version 3.00 loaded.
ACPI: bus type USB registered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
wmi: Mapper loaded
Advanced Linux Sound Architecture Driver Initialized.
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
e820: reserve RAM buffer [mem 0x8ffb0000-0x8fffffff]
e820: reserve RAM buffer [mem 0x99dbf000-0x9bffffff]
e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
e820: reserve RAM buffer [mem 0x25f600000-0x25fffffff]
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Switching to clocksource hpet
AppArmor: AppArmor Filesystem Enabled
pnp: PnP ACPI init
ACPI: bus type PNP registered
pnp 00:00: [dma 4]
pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
system 00:04: [io  0x0680-0x069f] has been reserved
system 00:04: [io  0x1000-0x100f] has been reserved
system 00:04: [io  0xffff] has been reserved
system 00:04: [io  0xffff] has been reserved
system 00:04: [io  0x0400-0x0453] has been reserved
system 00:04: [io  0x0458-0x047f] has been reserved
system 00:04: [io  0x0500-0x057f] has been reserved
system 00:04: [io  0x164e-0x164f] has been reserved
system 00:04: [io  0xfd60-0xfd63] has been reserved
system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
system 00:06: [io  0x0454-0x0457] has been reserved
system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
pnp 00:08: Plug and Play ACPI device, IDs DLL05b8 PNP0f13 (active)
system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
system 00:09: [mem 0xfed90000-0xfed93fff] could not be reserved
system 00:09: [mem 0xff000000-0xff000fff] has been reserved
system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
system 00:09: [mem 0x9fa00000-0x9fa00fff] has been reserved
system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
pnp: PnP ACPI: found 11 devices
ACPI: bus type PNP unregistered
pci 0000:01:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
pci 0000:08:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
pci 0000:00:1c.1: BAR 9: assigned [mem 0x9fb00000-0x9fbfffff pref]
pci 0000:01:00.0: BAR 6: assigned [mem 0xc0040000-0xc005ffff pref]
pci 0000:00:01.0: PCI bridge to [bus 01-06]
pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xc0ffffff]
pci 0000:00:01.0:   bridge window [mem 0xa0000000-0xafffffff 64bit pref]
pci 0000:00:1c.0: PCI bridge to [bus 07]
pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
pci 0000:00:1c.0:   bridge window [mem 0xc1400000-0xc14fffff 64bit pref]
pci 0000:08:00.0: BAR 6: assigned [mem 0x9fb00000-0x9fb0ffff pref]
pci 0000:00:1c.1: PCI bridge to [bus 08]
pci 0000:00:1c.1:   bridge window [mem 0xc1500000-0xc15fffff]
pci 0000:00:1c.1:   bridge window [mem 0x9fb00000-0x9fbfffff pref]
pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
pci_bus 0000:01: resource 1 [mem 0xc0000000-0xc0ffffff]
pci_bus 0000:01: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
pci_bus 0000:07: resource 0 [io  0x2000-0x2fff]
pci_bus 0000:07: resource 2 [mem 0xc1400000-0xc14fffff 64bit pref]
pci_bus 0000:08: resource 1 [mem 0xc1500000-0xc15fffff]
pci_bus 0000:08: resource 2 [mem 0x9fb00000-0x9fbfffff pref]
NET: Registered protocol family 2
TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 65536 bind 65536)
TCP: reno registered
UDP hash table entries: 4096 (order: 5, 131072 bytes)
UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
NET: Registered protocol family 1
pci 0000:00:02.0: Boot video device
PCI: CLS 64 bytes, default 64
Unpacking initramfs...
Freeing initrd memory: 14976k freed
PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
software IO TLB [mem 0x9242f000-0x9642f000] (64MB) mapped at [ffff88009242f000-ffff88009642efff]
Simple Boot Flag at 0x44 set to 0x1
microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Scanning for low memory corruption every 60 seconds
audit: initializing netlink socket (disabled)
type=2000 audit(1376053592.898:1): initialized
bounce pool size: 64 pages
HugeTLB registered 2 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
fuse init (API version 7.21)
msgmni has been set to 15687
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
pcieport 0000:00:01.0: irq 42 for MSI/MSI-X
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.4
efifb: probing for efifb
efifb: framebuffer at 0xb0000000, mapped to 0xffffc90020680000, using 4160k, total 4160k
efifb: mode is 1366x768x32, linelength=5504, pages=1
efifb: scrolling: redraw
efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Console: switching to colour frame buffer device 170x48
fb0: EFI VGA frame buffer device
intel_idle: MWAIT substates: 0x21120
intel_idle: v0.4 model 0x3A
intel_idle: lapic_timer_reliable_states 0xffffffff
ACPI: AC Adapter [ACAD] (on-line)
input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
ACPI: Power Button [PWRB]
input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
ACPI: Lid Switch [LID0]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
ACPI: Power Button [PWRF]
ACPI: Requesting acpi_cpufreq
Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
ACPI: Battery Slot [BAT1] (battery present)
Linux agpgart interface v0.103
loop: module loaded
ahci 0000:00:1f.2: version 3.0
ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
ahci 0000:00:1f.2: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
ata1: SATA max UDMA/133 abar m2048@0xc1617000 port 0xc1617100 irq 43
ata2: DUMMY
ata3: SATA max UDMA/133 abar m2048@0xc1617000 port 0xc1617200 irq 43
ata4: DUMMY
ata5: DUMMY
ata6: DUMMY
libphy: Fixed MDIO Bus: probed
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci-pci: EHCI PCI platform driver
ehci-pci 0000:00:1a.0: setting latency timer to 64
ehci-pci 0000:00:1a.0: EHCI Host Controller
ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
ehci-pci 0000:00:1a.0: debug port 2
ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
ehci-pci 0000:00:1a.0: irq 16, io mem 0xc1619000
ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
ehci-pci 0000:00:1d.0: setting latency timer to 64
ehci-pci 0000:00:1d.0: EHCI Host Controller
ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
ehci-pci 0000:00:1d.0: debug port 2
ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
ehci-pci 0000:00:1d.0: irq 23, io mem 0xc1618000
ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ehci-platform: EHCI generic platform driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
xhci_hcd 0000:00:14.0: setting latency timer to 64
xhci_hcd 0000:00:14.0: xHCI Host Controller
xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
xhci_hcd 0000:00:14.0: irq 44 for MSI/MSI-X
xHCI xhci_add_endpoint called for root hub
xHCI xhci_check_bandwidth called for root hub
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 4 ports detected
xhci_hcd 0000:00:14.0: xHCI Host Controller
xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
xHCI xhci_add_endpoint called for root hub
xHCI xhci_check_bandwidth called for root hub
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 4 ports detected
i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mousedev: PS/2 mouse device common for all mice
rtc_cmos 00:05: RTC can wake from S4
rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
rtc_cmos 00:05: alarms up to one month, 242 bytes nvram, hpet irqs
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
cpuidle: using governor ladder
cpuidle: using governor menu
ledtrig-cpu: registered to indicate activity on CPUs
hidraw: raw HID events driver (C) Jiri Kosina
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
NET: Registered protocol family 10
NET: Registered protocol family 17
Key type dns_resolver registered
registered taskstats version 1
Key type trusted registered
Key type encrypted registered
rtc_cmos 00:05: setting system clock to 2013-08-09 13:06:33 UTC (1376053593)
ALSA device list:
  No soundcards found.
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3.00: ATAPI: HL-DT-ST DVD+/-RW GU70N, A102, max UDMA/100
ata3.00: configured for UDMA/100
usb 1-1: new high-speed USB device number 2 using ehci-pci
ata1.00: ATA-8: WDC WD10JPVT-75A1YT0, 01.01A01, max UDMA/133
ata1.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access     ATA      WDC WD10JPVT-75A 01.0 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 0:0:0:0: [sda] 4096-byte physical blocks
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
scsi 2:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GU70N    A102 PQ: 0 ANSI: 5
scsi 2:0:0:0: Attached scsi generic sg1 type 5
 sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10
sd 0:0:0:0: [sda] Attached SCSI disk
Freeing unused kernel memory: 832k freed
Write protecting the kernel read-only data: 10240k
Freeing unused kernel memory: 1668k freed
Freeing unused kernel memory: 428k freed
udevd[113]: starting version 175
microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU0 updated to revision 0x17, date = 2013-01-09
microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU1 updated to revision 0x17, date = 2013-01-09
microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU2 updated to revision 0x17, date = 2013-01-09
microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
microcode: CPU3 updated to revision 0x17, date = 2013-01-09
r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
r8169 0000:07:00.0: irq 45 for MSI/MSI-X
r8169 0000:07:00.0 eth0: RTL8105e at 0xffffc90000042000, e0:db:55:d9:7f:96, XID 00c00000 IRQ 45
hub 1-1:1.0: USB hub found
hub 1-1:1.0: 6 ports detected
usb 2-1: new high-speed USB device number 2 using ehci-pci
hub 2-1:1.0: USB hub found
hub 2-1:1.0: 6 ports detected
tsc: Refined TSC clocksource calibration: 1696.147 MHz
Switching to clocksource tsc
usb 3-4: new full-speed USB device number 2 using xhci_hcd
input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/input/input4
hid-generic 0003:046D:C52F.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-4/input0
input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.1/input/input5
hid-generic 0003:046D:C52F.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-4/input1
usb 1-1.1: new full-speed USB device number 3 using ehci-pci
psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x26c00, board id: 2382, fw id: 1238635
input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
usb 1-1.3: new high-speed USB device number 4 using ehci-pci
usb 1-1.4: new high-speed USB device number 5 using ehci-pci
EXT4-fs (sda7): INFO: recovery required on readonly filesystem
EXT4-fs (sda7): write access will be enabled during recovery
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 2:0:0:0: Attached scsi CD-ROM sr0
EXT4-fs (sda7): recovery complete
EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
Adding 12284k swap on /dev/sda10.  Priority:-1 extents:1 across:12284k 
udevd[383]: starting version 175
dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
input: Dell WMI hotkeys as /devices/virtual/input/input7
ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130117/utaddress-251)
ACPI: This conflict may cause random problems and system instability
ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 1 (20130117/utaddress-251)
ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 2 (20130117/utaddress-251)
ACPI: This conflict may cause random problems and system instability
ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 1 (20130117/utaddress-251)
ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 2 (20130117/utaddress-251)
ACPI: This conflict may cause random problems and system instability
ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
mei 0000:00:16.0: setting latency timer to 64
mei 0000:00:16.0: irq 46 for MSI/MSI-X
cfg80211: Calling CRDA to update world regulatory domain
[drm] Initialized drm 1.1.0 20060810
[drm] Memory usable by graphics device = 2048M
checking generic (b0000000 410000) vs hw (b0000000 10000000)
fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
Console: switching to colour dummy device 80x25
i915 0000:00:02.0: setting latency timer to 64
i915 0000:00:02.0: irq 47 for MSI/MSI-X
[drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[drm] Driver supports precise vblank timestamp query.
vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
fbcon: inteldrmfb (fb0) is primary device
type=1400 audit(1376053603.320:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=583 comm="apparmor_parser"
type=1400 audit(1376053603.320:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=542 comm="apparmor_parser"
type=1400 audit(1376053603.320:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=583 comm="apparmor_parser"
type=1400 audit(1376053603.320:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=542 comm="apparmor_parser"
type=1400 audit(1376053603.321:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=583 comm="apparmor_parser"
type=1400 audit(1376053603.321:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=542 comm="apparmor_parser"
ath: phy0: ASPM enabled: 0x43
ath: EEPROM regdomain: 0x60
ath: EEPROM indicates we should expect a direct regpair map
ath: Country alpha2 being used: 00
ath: Regpair used: 0x60
[drm] radeon kernel modesetting enabled.
VGA switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
Console: switching to colour frame buffer device 170x48
i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
i915 0000:00:02.0: registered panic notifier
radeon 0000:01:00.0: enabling device (0000 -> 0003)
[Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20130117/psargs-359)
ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node ffff8802560fc988), AE_NOT_FOUND (20130117/psparse-537)
ACPI: Video Device [PEGP] (multi-head: yes  rom: no  post: no)
input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2b/LNXVIDEO:00/input/input8
acpi device:39: registered as cooling_device5
ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
[drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[drm] initializing kernel modesetting (OLAND 0x1002:0x6601 0x1028:0x05B8).
snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[drm] register mmio base: 0xC0000000
[drm] register mmio size: 262144
vga_switcheroo: enabled
ATPX version 1
ATOM BIOS: Dell/Compal
[drm] GPU not posted. posting now...
radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
radeon 0000:01:00.0: GTT: 512M 0x0000000080000000 - 0x000000009FFFFFFF
mtrr: no more MTRRs available
[drm] Detected VRAM RAM=2048M, BAR=256M
[drm] RAM width 128bits DDR
[TTM] Zone  kernel: Available graphics memory: 4017470 kiB
[TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[TTM] Initializing pool allocator
[TTM] Initializing DMA pool allocator
[drm] radeon: 2048M of VRAM memory ready
[drm] radeon: 512M of GTT memory ready.
[drm] GART: num cpu pages 131072, num gpu pages 131072
[drm] Loading OLAND Microcode
cfg80211: World regulatory domain updated:
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
ieee80211 phy0: Atheros AR9485 Rev:1 mem=0xffffc90020b00000, irq=17
hda_codec: ALC282: SKU not ready 0x598301f0
input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
Bluetooth: Core ver 2.16
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP socket layer initialized
Bluetooth: SCO socket layer initialized
usbcore: registered new interface driver btusb
[drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
radeon 0000:01:00.0: WB enabled
radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0xffff8802556acc00
radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0xffff8802556acc04
radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0xffff8802556acc08
radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0xffff8802556acc0c
radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0xffff8802556acc10
[drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[drm] Driver supports precise vblank timestamp query.
radeon 0000:01:00.0: irq 49 for MSI/MSI-X
radeon 0000:01:00.0: radeon: using MSI.
[drm] radeon: irq initialized.
[drm] ring test on 0 succeeded in 2 usecs
[drm] ring test on 1 succeeded in 1 usecs
[drm] ring test on 2 succeeded in 1 usecs
[drm] ring test on 3 succeeded in 2 usecs
[drm] ring test on 4 succeeded in 1 usecs
[drm] ib test on ring 0 succeeded in 0 usecs
[drm] ib test on ring 1 succeeded in 0 usecs
[drm] ib test on ring 2 succeeded in 0 usecs
[drm] ib test on ring 3 succeeded in 0 usecs
[drm] ib test on ring 4 succeeded in 1 usecs
[drm] Radeon Display Connectors
[drm] Internal thermal controller without fan control
[drm] radeon: power management initialized
radeon 0000:01:00.0: No connectors reported connected with modes
[drm] Cannot find any crtc or sizes - going 1024x768
[drm] fb mappable at 0xA114B000
[drm] vram apper at 0xA0000000
[drm] size 3145728
[drm] fb depth is 24
[drm]    pitch is 4096
radeon 0000:01:00.0: fb1: radeondrmfb frame buffer device
[drm] Initialized radeon 2.30.0 20080528 for 0000:01:00.0 on minor 1
usbcore: registered new interface driver ath3k
usb 1-1.1: USB disconnect, device number 3
usb 1-1.1: new full-speed USB device number 6 using ehci-pci
Linux video capture interface: v2.00
uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_HD (0c45:64ad)
rts5139: module is from the staging directory, the quality is unknown, you have been warned.
input: Laptop_Integrated_Webcam_HD as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input13
usbcore: registered new interface driver uvcvideo
USB Video Class driver (1.1.1)
scsi6 : SCSI emulation for RTS5139 USB card reader
usbcore: registered new interface driver rts5139
scsi 6:0:0:0: Direct-Access     Generic- xD/SD/M.S.       1.00 PQ: 0 ANSI: 0 CCS
sd 6:0:0:0: Attached scsi generic sg2 type 0
sd 6:0:0:0: [sdb] Attached SCSI removable disk
EXT4-fs (sda7): re-mounted. Opts: errors=remount-ro
init: failsafe main process (1018) killed by TERM signal
type=1400 audit(1376053610.971:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1128 comm="apparmor_parser"
type=1400 audit(1376053610.971:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1128 comm="apparmor_parser"
type=1400 audit(1376053610.972:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1128 comm="apparmor_parser"
type=1400 audit(1376053611.072:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-freerdp/freerdp-session-wrapper" pid=1126 comm="apparmor_parser"
type=1400 audit(1376053611.072:12): apparmor="STATUS" operation="profile_load" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-freerdp/freerdp-session-wrapper//chromium_browser" pid=1126 comm="apparmor_parser"
type=1400 audit(1376053611.073:13): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=1125 comm="apparmor_parser"
type=1400 audit(1376053611.073:14): apparmor="STATUS" operation="profile_load" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-uccsconfigure/uccsconfigure-session-wrapper" pid=1127 comm="apparmor_parser"
type=1400 audit(1376053611.073:15): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper//chromium_browser" pid=1125 comm="apparmor_parser"
type=1400 audit(1376053611.073:16): apparmor="STATUS" operation="profile_load" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-uccsconfigure/uccsconfigure-session-wrapper//chromium_browser" pid=1127 comm="apparmor_parser"
type=1400 audit(1376053611.100:17): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1139 comm="apparmor_parser"
Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Bluetooth: BNEP filters: protocol multicast
Bluetooth: BNEP socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
init: avahi-cups-reload main process (1158) terminated with status 1
init: apport pre-start process (1228) terminated with status 2
init: apport post-stop process (1387) terminated with status 1
r8169 0000:07:00.0 eth0: link down
IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Non-volatile memory driver v1.3
thinkpad_ec: no ThinkPad embedded controller!
wlan0: authenticate with dc:02:8e:79:67:76
wlan0: send auth to dc:02:8e:79:67:76 (try 1/3)
wlan0: authenticated
wlan0: associate with dc:02:8e:79:67:76 (try 1/3)
wlan0: RX AssocResp from dc:02:8e:79:67:76 (capab=0x431 status=0 aid=1)
IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
wlan0: associated
cfg80211: Calling CRDA for country: PL
ath: regdomain 0x8268 updated by CountryIE
ath: EEPROM regdomain: 0x8268
ath: EEPROM indicates we should expect a country code
ath: doing EEPROM country->regdmn map search
ath: country maps to regdmn code: 0x37
ath: Country alpha2 being used: PL
ath: Regpair used: 0x37
cfg80211: Regulatory domain changed to country: PL
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)


Co to jest v25.3?

-- 10 sie 2013, o 00:12 --

Nie wyslalem koncowki bo za dluga odpowiedz by byla ;/

-- 10 sie 2013, o 00:12 --

Nie wyslalem koncowki bo za dluga odpowiedz by byla ;/
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

No tak by można było dywagować, jak nie napisałeś, że masz 2 karty graficzne: Intel HD oraz Radeona. To już nie ma się co dziwić = radek działa na otwartych sterownikach, co jeszcze przez miesiąc = grzałka. Tu konieczna jest instalacja catalystów + odnowienia konfiguracja xorg.conf. Potem się do tego odniosę.

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

Czyli moge dalej liczyc na twoja pomoc? + sam nie wiedzialem ze mam 2 karty graficzne myslalem ze tylko radeon
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Zatem co do v25.3 = moje nowe kernele. Co do grafiki zainstaluj udostępnione przeze mnie w NeteXt'73 catalysty 13.3 beta3 v4. Po instalacji wykonaj w konsoli:

Kod: Zaznacz cały

sudo aticonfig --initial -f
Następnie wybierza tzw. discret card:

Kod: Zaznacz cały

sudo aticonfig --px-dgpu
Przestartuj i daj wynik fglrxinfo. Powinien działać Radeon i można przełączać Radeon/Intel w Catalyst CC

CCC przełączanie

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

Zainstalowlem ten now kernel + te sterownik jak powiedziales jednak nie dziala mi ta komenda: sudo aticonfig --initial -f wyskakuje mi "aticonfig: No supported adapters detected".
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Bardzo dziwne ... tam masz Radeona 5470 ?

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

Taka mam karte graficzna : Radeon HD 8500/8700M Series
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

microice pisze:Taka mam karte graficzna : Radeon HD 8500/8700M Series
To w końcu jaką 8500, czy 8700 ? Jak 8700 to rzeczywiście catalysty 13.3 beta3 mogą mieć problem, ale nie proponuje na razie nowszych [13.4, 13.6 beta, 13.15 = wstępne i nie udostępnione "oficjalnie" OGL4.3 oraz ostatnie 13.8 beta1] bo maja bugi - wszystkie zostały zgłoszone [w tym kilka moich zgłoszeń] i teraz nad tym pracują.

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

uzylem tej komendy: sudo lshw -c display
a to jest wynik:

Kod: Zaznacz cały

  *-display               
       description: VGA compatible controller
       product: Mars [Radeon HD 8500/8700M Series]
       vendor: Advanced Micro Devices [AMD] nee ATI
       physical id: 0
       bus info: pci@0000:01:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
       configuration: driver=radeon latency=0
       resources: irq:49 memory:a0000000-afffffff memory:c0000000-c003ffff ioport:3000(size=256) memory:c0040000-c005ffff
  *-display
       description: VGA compatible controller
       product: 3rd Gen Core processor 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:47 memory:c1000000-c13fffff memory:b0000000-bfffffff ioport:4000(size=64)
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Catalysty się zainstalowały poprawnie ? Widać, że Radeon używa otwartego sterownika, jak włączasz CCC to co pokazuje ?
Jaki wyniki dają:

Kod: Zaznacz cały

fglrxinfo

Kod: Zaznacz cały

modinfo fglrx
Pozdarwiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

Catalsyt nie chce sie wlaczyc bo wyskakuje ze nie zainstalowalem sterownikow, mimo ze instalowalem juz 2 razy.
fglrxinfo:

Kod: Zaznacz cały

display: :0  screen: 0
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile 
OpenGL version string: 1.4 (3.0 Mesa 9.1.3)
modinfo fglrx:

Kod: Zaznacz cały

filename:       /lib/modules/3.10.5-ext73-f1-25.3-k8-ags-cfs/updates/dkms/fglrx.ko
license:        Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY
description:    ATI Fire GL
author:         Fire GL - ATI Research GmbH, Germany
alias:          pci:v00001002d000068F2sv*sd*bc*sc*i*
alias:          pci:v00001002d0000678Asv*sd*bc*sc*i*
alias:          pci:v00001002d00006788sv*sd*bc*sc*i*
alias:          pci:v00001002d00006784sv*sd*bc*sc*i*
alias:          pci:v00001002d00006780sv*sd*bc*sc*i*
alias:          pci:v00001002d00006809sv*sd*bc*sc*i*
alias:          pci:v00001002d0000684Csv*sd*bc*sc*i*
alias:          pci:v00001002d00006808sv*sd*bc*sc*i*
alias:          pci:v00001002d00006828sv*sd*bc*sc*i*
alias:          pci:v00001002d00006749sv*sd*bc*sc*i*
alias:          pci:v00001002d00006748sv*sd*bc*sc*i*
alias:          pci:v00001002d00006747sv*sd*bc*sc*i*
alias:          pci:v00001002d00006746sv*sd*bc*sc*i*
alias:          pci:v00001002d0000674Asv*sd*bc*sc*i*
alias:          pci:v00001002d00006709sv*sd*bc*sc*i*
alias:          pci:v00001002d00006708sv*sd*bc*sc*i*
alias:          pci:v00001002d00006707sv*sd*bc*sc*i*
alias:          pci:v00001002d00006706sv*sd*bc*sc*i*
alias:          pci:v00001002d00006705sv*sd*bc*sc*i*
alias:          pci:v00001002d00006704sv*sd*bc*sc*i*
alias:          pci:v00001002d00006703sv*sd*bc*sc*i*
alias:          pci:v00001002d00006702sv*sd*bc*sc*i*
alias:          pci:v00001002d00006701sv*sd*bc*sc*i*
alias:          pci:v00001002d00006700sv*sd*bc*sc*i*
alias:          pci:v00001002d00006762sv*sd*bc*sc*i*
alias:          pci:v00001002d00006768sv*sd*bc*sc*i*
alias:          pci:v00001002d00006767sv*sd*bc*sc*i*
alias:          pci:v00001002d00006766sv*sd*bc*sc*i*
alias:          pci:v00001002d00006727sv*sd*bc*sc*i*
alias:          pci:v00001002d00006726sv*sd*bc*sc*i*
alias:          pci:v00001002d00006723sv*sd*bc*sc*i*
alias:          pci:v00001002d00006722sv*sd*bc*sc*i*
alias:          pci:v00001002d00006729sv*sd*bc*sc*i*
alias:          pci:v00001002d00006728sv*sd*bc*sc*i*
alias:          pci:v00001002d000068C9sv*sd*bc*sc*i*
alias:          pci:v00001002d000068C8sv*sd*bc*sc*i*
alias:          pci:v00001002d00006880sv*sd*bc*sc*i*
alias:          pci:v00001002d000068A9sv*sd*bc*sc*i*
alias:          pci:v00001002d0000688Csv*sd*bc*sc*i*
alias:          pci:v00001002d0000688Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000688Asv*sd*bc*sc*i*
alias:          pci:v00001002d00006889sv*sd*bc*sc*i*
alias:          pci:v00001002d00006888sv*sd*bc*sc*i*
alias:          pci:v00001002d000068E9sv*sd*bc*sc*i*
alias:          pci:v00001002d000068E8sv*sd*bc*sc*i*
alias:          pci:v00001002d000068F1sv*sd*bc*sc*i*
alias:          pci:v00001002d00006801sv*sd*bc*sc*i*
alias:          pci:v00001002d00006800sv*sd*bc*sc*i*
alias:          pci:v00001002d00006842sv*sd*bc*sc*i*
alias:          pci:v00001002d00006841sv*sd*bc*sc*i*
alias:          pci:v00001002d00006840sv*sd*bc*sc*i*
alias:          pci:v00001002d00006843sv*sd*bc*sc*i*
alias:          pci:v00001002d00006826sv*sd*bc*sc*i*
alias:          pci:v00001002d00006823sv*sd*bc*sc*i*
alias:          pci:v00001002d0000682Bsv*sd*bc*sc*i*
alias:          pci:v00001002d00006831sv*sd*bc*sc*i*
alias:          pci:v00001002d0000682Fsv*sd*bc*sc*i*
alias:          pci:v00001002d0000682Dsv*sd*bc*sc*i*
alias:          pci:v00001002d00006827sv*sd*bc*sc*i*
alias:          pci:v00001002d00006830sv*sd*bc*sc*i*
alias:          pci:v00001002d00006825sv*sd*bc*sc*i*
alias:          pci:v00001002d00006824sv*sd*bc*sc*i*
alias:          pci:v00001002d00006821sv*sd*bc*sc*i*
alias:          pci:v00001002d00006820sv*sd*bc*sc*i*
alias:          pci:v00001002d00006740sv*sd*bc*sc*i*
alias:          pci:v00001002d00006741sv*sd*bc*sc*i*
alias:          pci:v00001002d00006743sv*sd*bc*sc*i*
alias:          pci:v00001002d00006742sv*sd*bc*sc*i*
alias:          pci:v00001002d00006745sv*sd*bc*sc*i*
alias:          pci:v00001002d00006744sv*sd*bc*sc*i*
alias:          pci:v00001002d00006760sv*sd*bc*sc*i*
alias:          pci:v00001002d00006761sv*sd*bc*sc*i*
alias:          pci:v00001002d00006763sv*sd*bc*sc*i*
alias:          pci:v00001002d00006765sv*sd*bc*sc*i*
alias:          pci:v00001002d00006764sv*sd*bc*sc*i*
alias:          pci:v00001002d00006725sv*sd*bc*sc*i*
alias:          pci:v00001002d00006724sv*sd*bc*sc*i*
alias:          pci:v00001002d00006721sv*sd*bc*sc*i*
alias:          pci:v00001002d00006720sv*sd*bc*sc*i*
alias:          pci:v00001002d000068E5sv*sd*bc*sc*i*
alias:          pci:v00001002d000068E4sv*sd*bc*sc*i*
alias:          pci:v00001002d000068F1sv*sd*bc*sc*i*
alias:          pci:v00001002d000068F0sv*sd*bc*sc*i*
alias:          pci:v00001002d000068E1sv*sd*bc*sc*i*
alias:          pci:v00001002d000068E0sv*sd*bc*sc*i*
alias:          pci:v00001002d000068C7sv*sd*bc*sc*i*
alias:          pci:v00001002d000068D1sv*sd*bc*sc*i*
alias:          pci:v00001002d000068D0sv*sd*bc*sc*i*
alias:          pci:v00001002d000068C1sv*sd*bc*sc*i*
alias:          pci:v00001002d000068C0sv*sd*bc*sc*i*
alias:          pci:v00001002d00006890sv*sd*bc*sc*i*
alias:          pci:v00001002d000068A8sv*sd*bc*sc*i*
alias:          pci:v00001002d000068A1sv*sd*bc*sc*i*
alias:          pci:v00001002d000068B1sv*sd*bc*sc*i*
alias:          pci:v00001002d000068B0sv*sd*bc*sc*i*
alias:          pci:v00001002d000068A0sv*sd*bc*sc*i*
alias:          pci:v00001002d0000666Fsv*sd*bc*sc*i*
alias:          pci:v00001002d00006667sv*sd*bc*sc*i*
alias:          pci:v00001002d00006663sv*sd*bc*sc*i*
alias:          pci:v00001002d00006660sv*sd*bc*sc*i*
alias:          pci:v00001002d00006641sv*sd*bc*sc*i*
alias:          pci:v00001002d00006640sv*sd*bc*sc*i*
alias:          pci:v00001002d00006623sv*sd*bc*sc*i*
alias:          pci:v00001002d00006621sv*sd*bc*sc*i*
alias:          pci:v00001002d00006620sv*sd*bc*sc*i*
alias:          pci:v00001002d00006607sv*sd*bc*sc*i*
alias:          pci:v00001002d00006606sv*sd*bc*sc*i*
alias:          pci:v00001002d00006603sv*sd*bc*sc*i*
alias:          pci:v00001002d00006602sv*sd*bc*sc*i*
alias:          pci:v00001002d00006601sv*sd*bc*sc*i*
alias:          pci:v00001002d00006600sv*sd*bc*sc*i*
alias:          pci:v00001002d00006792sv*sd*bc*sc*i*
alias:          pci:v00001002d00006791sv*sd*bc*sc*i*
alias:          pci:v00001002d00006790sv*sd*bc*sc*i*
alias:          pci:v00001002d0000679Esv*sd*bc*sc*i*
alias:          pci:v00001002d00006799sv*sd*bc*sc*i*
alias:          pci:v00001002d0000679Asv*sd*bc*sc*i*
alias:          pci:v00001002d00006798sv*sd*bc*sc*i*
alias:          pci:v00001002d00006806sv*sd*bc*sc*i*
alias:          pci:v00001002d00006811sv*sd*bc*sc*i*
alias:          pci:v00001002d00006810sv*sd*bc*sc*i*
alias:          pci:v00001002d00006819sv*sd*bc*sc*i*
alias:          pci:v00001002d00006818sv*sd*bc*sc*i*
alias:          pci:v00001002d0000683Fsv*sd*bc*sc*i*
alias:          pci:v00001002d0000683Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000683Bsv*sd*bc*sc*i*
alias:          pci:v00001002d00006839sv*sd*bc*sc*i*
alias:          pci:v00001002d00006838sv*sd*bc*sc*i*
alias:          pci:v00001002d00006837sv*sd*bc*sc*i*
alias:          pci:v00001002d00006750sv*sd*bc*sc*i*
alias:          pci:v00001002d00006759sv*sd*bc*sc*i*
alias:          pci:v00001002d00006758sv*sd*bc*sc*i*
alias:          pci:v00001002d0000675Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000675Bsv*sd*bc*sc*i*
alias:          pci:v00001002d00006751sv*sd*bc*sc*i*
alias:          pci:v00001002d0000675Fsv*sd*bc*sc*i*
alias:          pci:v00001002d00006850sv*sd*bc*sc*i*
alias:          pci:v00001002d00006849sv*sd*bc*sc*i*
alias:          pci:v00001002d00006859sv*sd*bc*sc*i*
alias:          pci:v00001002d00006858sv*sd*bc*sc*i*
alias:          pci:v00001002d0000671Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000671Csv*sd*bc*sc*i*
alias:          pci:v00001002d00006719sv*sd*bc*sc*i*
alias:          pci:v00001002d00006718sv*sd*bc*sc*i*
alias:          pci:v00001002d0000671Fsv*sd*bc*sc*i*
alias:          pci:v00001002d00006770sv*sd*bc*sc*i*
alias:          pci:v00001002d00006779sv*sd*bc*sc*i*
alias:          pci:v00001002d00006771sv*sd*bc*sc*i*
alias:          pci:v00001002d00006772sv*sd*bc*sc*i*
alias:          pci:v00001002d0000677Bsv*sd*bc*sc*i*
alias:          pci:v00001002d00006778sv*sd*bc*sc*i*
alias:          pci:v00001002d0000673Esv*sd*bc*sc*i*
alias:          pci:v00001002d00006739sv*sd*bc*sc*i*
alias:          pci:v00001002d00006738sv*sd*bc*sc*i*
alias:          pci:v00001002d000068DEsv*sd*bc*sc*i*
alias:          pci:v00001002d000068D9sv*sd*bc*sc*i*
alias:          pci:v00001002d000068D8sv*sd*bc*sc*i*
alias:          pci:v00001002d000068DAsv*sd*bc*sc*i*
alias:          pci:v00001002d000068BFsv*sd*bc*sc*i*
alias:          pci:v00001002d000068BAsv*sd*bc*sc*i*
alias:          pci:v00001002d000068BEsv*sd*bc*sc*i*
alias:          pci:v00001002d000068B9sv*sd*bc*sc*i*
alias:          pci:v00001002d000068B8sv*sd*bc*sc*i*
alias:          pci:v00001002d0000689Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000689Csv*sd*bc*sc*i*
alias:          pci:v00001002d0000689Bsv*sd*bc*sc*i*
alias:          pci:v00001002d00006899sv*sd*bc*sc*i*
alias:          pci:v00001002d00006898sv*sd*bc*sc*i*
alias:          pci:v00001002d0000689Esv*sd*bc*sc*i*
alias:          pci:v00001002d000068FEsv*sd*bc*sc*i*
alias:          pci:v00001002d000068F9sv*sd*bc*sc*i*
alias:          pci:v00001002d000068F8sv*sd*bc*sc*i*
alias:          pci:v00001002d000068FAsv*sd*bc*sc*i*
alias:          pci:v00001002d00006613sv*sd*bc*sc*i*
alias:          pci:v00001002d00006631sv*sd*bc*sc*i*
alias:          pci:v00001002d00006611sv*sd*bc*sc*i*
alias:          pci:v00001002d00006610sv*sd*bc*sc*i*
alias:          pci:v00001002d00006651sv*sd*bc*sc*i*
alias:          pci:v00001002d00006650sv*sd*bc*sc*i*
alias:          pci:v00001002d00006649sv*sd*bc*sc*i*
alias:          pci:v00001002d00009807sv*sd*bc*sc*i*
alias:          pci:v00001002d00009806sv*sd*bc*sc*i*
alias:          pci:v00001002d00009809sv*sd*bc*sc*i*
alias:          pci:v00001002d00009808sv*sd*bc*sc*i*
alias:          pci:v00001002d0000980Asv*sd*bc*sc*i*
alias:          pci:v00001002d00009802sv*sd*bc*sc*i*
alias:          pci:v00001002d00009805sv*sd*bc*sc*i*
alias:          pci:v00001002d00009804sv*sd*bc*sc*i*
alias:          pci:v00001002d00009803sv*sd*bc*sc*i*
alias:          pci:v00001002d00009991sv*sd*bc*sc*i*
alias:          pci:v00001002d00009990sv*sd*bc*sc*i*
alias:          pci:v00001002d00009901sv*sd*bc*sc*i*
alias:          pci:v00001002d00009900sv*sd*bc*sc*i*
alias:          pci:v00001002d0000990Asv*sd*bc*sc*i*
alias:          pci:v00001002d00009904sv*sd*bc*sc*i*
alias:          pci:v00001002d00009903sv*sd*bc*sc*i*
alias:          pci:v00001002d00009994sv*sd*bc*sc*i*
alias:          pci:v00001002d00009993sv*sd*bc*sc*i*
alias:          pci:v00001002d00009992sv*sd*bc*sc*i*
alias:          pci:v00001002d00009909sv*sd*bc*sc*i*
alias:          pci:v00001002d00009908sv*sd*bc*sc*i*
alias:          pci:v00001002d00009907sv*sd*bc*sc*i*
alias:          pci:v00001002d00009906sv*sd*bc*sc*i*
alias:          pci:v00001002d00009905sv*sd*bc*sc*i*
alias:          pci:v00001002d00009910sv*sd*bc*sc*i*
alias:          pci:v00001002d00009913sv*sd*bc*sc*i*
alias:          pci:v00001002d000099A0sv*sd*bc*sc*i*
alias:          pci:v00001002d000099A2sv*sd*bc*sc*i*
alias:          pci:v00001002d00009917sv*sd*bc*sc*i*
alias:          pci:v00001002d00009918sv*sd*bc*sc*i*
alias:          pci:v00001002d00009919sv*sd*bc*sc*i*
alias:          pci:v00001002d000099A4sv*sd*bc*sc*i*
alias:          pci:v00001002d00009645sv*sd*bc*sc*i*
alias:          pci:v00001002d00009644sv*sd*bc*sc*i*
alias:          pci:v00001002d00009643sv*sd*bc*sc*i*
alias:          pci:v00001002d00009642sv*sd*bc*sc*i*
alias:          pci:v00001002d00009641sv*sd*bc*sc*i*
alias:          pci:v00001002d00009640sv*sd*bc*sc*i*
alias:          pci:v00001002d0000964Fsv*sd*bc*sc*i*
alias:          pci:v00001002d0000964Esv*sd*bc*sc*i*
alias:          pci:v00001002d0000964Csv*sd*bc*sc*i*
alias:          pci:v00001002d0000964Bsv*sd*bc*sc*i*
alias:          pci:v00001002d0000964Asv*sd*bc*sc*i*
alias:          pci:v00001002d00009649sv*sd*bc*sc*i*
alias:          pci:v00001002d00009648sv*sd*bc*sc*i*
alias:          pci:v00001002d00009647sv*sd*bc*sc*i*
alias:          pci:v00001002d0000999Bsv*sd*bc*sc*i*
alias:          pci:v00001002d0000999Asv*sd*bc*sc*i*
alias:          pci:v00001002d00009999sv*sd*bc*sc*i*
alias:          pci:v00001002d0000990Fsv*sd*bc*sc*i*
alias:          pci:v00001002d00009998sv*sd*bc*sc*i*
alias:          pci:v00001002d00009996sv*sd*bc*sc*i*
alias:          pci:v00001002d0000990Esv*sd*bc*sc*i*
alias:          pci:v00001002d0000990Csv*sd*bc*sc*i*
alias:          pci:v00001002d00009997sv*sd*bc*sc*i*
alias:          pci:v00001002d00009995sv*sd*bc*sc*i*
alias:          pci:v00001002d0000990Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000990Bsv*sd*bc*sc*i*
alias:          pci:v00001002d00001307sv*sd*bc*sc*i*
alias:          pci:v00001002d00001306sv*sd*bc*sc*i*
alias:          pci:v00001002d00001305sv*sd*bc*sc*i*
alias:          pci:v00001002d00001304sv*sd*bc*sc*i*
alias:          pci:v00001002d0000983Fsv*sd*bc*sc*i*
alias:          pci:v00001002d0000983Esv*sd*bc*sc*i*
alias:          pci:v00001002d0000983Dsv*sd*bc*sc*i*
alias:          pci:v00001002d0000983Csv*sd*bc*sc*i*
alias:          pci:v00001002d0000983Bsv*sd*bc*sc*i*
alias:          pci:v00001002d0000983Asv*sd*bc*sc*i*
alias:          pci:v00001002d00009839sv*sd*bc*sc*i*
alias:          pci:v00001002d00009838sv*sd*bc*sc*i*
alias:          pci:v00001002d00009837sv*sd*bc*sc*i*
alias:          pci:v00001002d00009836sv*sd*bc*sc*i*
alias:          pci:v00001002d00009835sv*sd*bc*sc*i*
alias:          pci:v00001002d00009834sv*sd*bc*sc*i*
alias:          pci:v00001002d00009833sv*sd*bc*sc*i*
alias:          pci:v00001002d00009832sv*sd*bc*sc*i*
alias:          pci:v00001002d00009831sv*sd*bc*sc*i*
alias:          pci:v00001002d00009830sv*sd*bc*sc*i*
depends:        
vermagic:       3.10.5-ext73-f1-25.3-k8-ags-cfs SMP preempt mod_unload 
parm:           firegl:charp
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Dziwne ... masz załadowany i moduł radeon i fglrx :P ... ale działa jedynie otwarty sterownik raedon. Zatem catalysty się zainstalowały [masz moduł fglrx], ale widać dziłają sterowniki otwarte. Co pokazuje CCC [Catalyst Control Center] ?

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

nie moge wlaczyc CCC
Awatar użytkownika
e X t 7 3
Przyjaciel
Przyjaciel
Posty: 4943
Rejestracja: 07 maja 2009, 23:34
Płeć: Mężczyzna
Wersja Ubuntu: 21.10
Środowisko graficzne: KDE Plasma
Architektura: x86_64
Lokalizacja: Kraków
Kontakt:

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: e X t 7 3 »

Widać sterowniki uznają, że nie są zgodne z chipem [co jest dziwne bo powinny obsługiwać 7800]. Prośba jeszcze o wynik komendy: amdccle. Pokaż mi jeszcze co masz w pliku 10fglrx, znajdującym się w katalogu /etc/X11/Xsession.d/ oraz to co znajduje się w /etc/X11/xorg.conf, a także wartość pliku fglrx.conf z /etc/modprobe.d.

Pozdrawiam
Nie ma rzeczy niemożliwych ... są tylko trudne do zrobienia ;)

Moje kernele oraz skrypty:

NeteXt'73 - instalator kerneli i skryptów oraz optymalizator systemu w jednym > netext73.pl
microice
Serdeczny Borsuk
Serdeczny Borsuk
Posty: 118
Rejestracja: 12 maja 2013, 23:24
Wersja Ubuntu: 13.04
Środowisko graficzne: KDE Plasma
Architektura: x86_64

Re: Dell inspirion 15 intel i5-przy korzystaniu glosna praca wentylatora+wyzsza temperatura

Post autor: microice »

amdccle: nie znaleziono polecenia

plik 10fglrx:

Kod: Zaznacz cały

LIBGL_DRIVERS_PATH=/usr/lib/fglrx/dri:/usr/lib/x86_64-linux-gnu/dri:/usr/lib/dri
if [ `uname -m` = 'x86_64' ]; then
  if [ -d /usr/lib32/fglrx/dri ]; then
    LIBGL_DRIVERS_PATH=${LIBGL_DRIVERS_PATH}:/usr/lib32/fglrx/dri:/usr/lib/i386-linux-gnu/dri
    if [ ! -z $LD_LIBRARY_PATH ]; then
	LD_LIBRARY_PATH=$LD_LIBRARY_PATH:
    fi
    LD_LIBRARY_PATH=${LD_LIBRARY_PATH}/usr/lib32
    export LD_LIBRARY_PATH
  fi
fi
export LIBGL_DRIVERS_PATH

nie mam pliku xorg.conf;/


a to plik fglrx.conf:

Kod: Zaznacz cały

# This file was installed by fglrx
# Do not edit this file manually

blacklist radeon
alias fglrx fglrx
alias radeon off
alias lbm-radeon off
ODPOWIEDZ

Wróć do „Laptopy”

Kto jest online

Użytkownicy przeglądający to forum: Obecnie na forum nie ma żadnego zarejestrowanego użytkownika i 6 gości