You are not logged in.

#26 2010-12-07 16:03:48

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,896
Website

Re: Can't install Nvidia driver.

It may be the case that 20-nvidia.conf is needed, hopefully someone will jump in and confirm this.

MrG


Mr Green

Offline

#27 2010-12-08 10:18:42

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

Mr Green wrote:

It may be the case that 20-nvidia.conf is needed, hopefully someone will jump in and confirm this.

MrG

20-nvidia.conf was created by the official nvidia installer. And if it was needed, (I believe) nvidia-xconfig would create it.

Offline

#28 2010-12-12 21:01:56

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

I removed nvidia-173xx and installed nvidia-96xx instead. I commanded nvidia-xconfig and the results:

## 20-nvidia.conf
Section "Device"
        Identifier "Default nvidia Device"
        Driver "nvidia"
        Option "NoLogo" "True" 
EndSection

and

## xorg.conf
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder75)  Wed Oct 27 19:20:23 PDT 2010

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       30.0 - 95.0
    VertRefresh     62.0 - 75.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1600x1200" "1680x1050"  "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

I also have a 10-monitor.conf from my last config.

## 10-monitor.conf.backup
Section "Monitor"
    Identifier    "Monitor0"
EndSection

Section "Device"
    Identifier    "Device0"
    Driver        "nvidia" #Choose the driver used for this monitor
EndSection

Section "Screen"
    Identifier    "Screen0"  #Collapse Monitor and Device section to Screen section
    Device        "Device0"
    Monitor       "Monitor0"
    DefaultDepth  16 #Choose the depth (16||24)
    SubSection "Display"
        Depth     16
        Modes     "1680x1050_75.00" #Choose the resolution
    EndSubSection
EndSection

Will it work?

Last edited by erkin (2010-12-12 21:05:25)

Offline

#29 2010-12-12 21:28:13

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

No it didn't. Even nvidia-173xx didn't work, I could at least make it to GDM. nvidia-96xx crashed before I reached to GDM. Any other ideas?

Offline

#30 2010-12-12 22:20:20

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

xorg.conf is read last, so it overwrites anything you put nvidia.conf and monitor.conf, try deleting both of those and just using this as xorg.conf:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       30.0 - 95.0
    VertRefresh     62.0 - 75.0
    Option         "DPMS" "1"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    Option "NoLogo" "True" 
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1680x1050"
    EndSubSection
EndSection

If that doesn't work, just use nouveau.

Last edited by thestinger (2010-12-12 22:21:58)

Offline

#31 2010-12-13 15:35:47

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

It's the same. No matter what, it's always H: 96 (or 95) V: 60. I'll try nouveau...

Offline

#32 2010-12-13 16:23:36

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

I installed nouveau-drm-lts package. I still can't configure my screen resolution and stuff. Also screen twitches every 5-6 seconds.

Offline

#33 2010-12-13 17:09:15

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,896
Website

Re: Can't install Nvidia driver.

can you post output of

lspci | grep VGA

Mr Green

Offline

#34 2010-12-13 17:12:16

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

Mr Green wrote:

can you post output of

lspci | grep VGA
01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] (rev a1)

Offline

#35 2010-12-13 17:43:59

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

erkin wrote:

I installed nouveau-drm-lts package. I still can't configure my screen resolution and stuff. Also screen twitches every 5-6 seconds.

Follow the wiki page for nouveau, you just need xf86-video-nouveau and nouveau-dri. Try with no xorg.conf first and just the 20-nouveau.conf. If that doesn't work, try adding the 10-monitor.conf.

Offline

#36 2010-12-13 18:09:37

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,896
Website

Re: Can't install Nvidia driver.


Mr Green

Offline

#37 2010-12-13 18:41:31

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

thestinger wrote:
erkin wrote:

I installed nouveau-drm-lts package. I still can't configure my screen resolution and stuff. Also screen twitches every 5-6 seconds.

Follow the wiki page for nouveau, you just need xf86-video-nouveau and nouveau-dri. Try with no xorg.conf first and just the 20-nouveau.conf. If that doesn't work, try adding the 10-monitor.conf.

Installed them but no 20-nouveau.conf was created.

Offline

#38 2010-12-13 18:43:55

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

You need to create it yourself, see here.

Also, you should remove nouveau-drm-lts and nouveau-firmware if you installed those because they aren't needed.

Offline

#39 2010-12-13 18:52:36

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

Okay, I have done everything on the wiki page. I hope it works well now...

Offline

#40 2010-12-13 18:57:30

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

It didn't. Actually it has absolutely no difference from here.

Offline

#41 2010-12-13 19:04:38

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

can you post /var/log/dmesg.log and /var/log/Xorg.0.log after starting xorg

Offline

#42 2010-12-13 19:21:47

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

Here:

#dmesg
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.36-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 20101125 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Dec 10 20:01:53 UTC 2010
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
 BIOS-e820: 000000001fff0000 - 000000001fff3000 (ACPI NVS)
 BIOS-e820: 000000001fff3000 - 0000000020000000 (ACPI data)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
 BIOS-e820: 00000000fefffc00 - 00000000ff000000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
DMI 2.2 present.
Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
last_pfn = 0x1fff0 max_arch_pfn = 0x100000
MTRR default type: uncachable
MTRR fixed ranges enabled:
  00000-9FFFF write-back
  A0000-BFFFF uncachable
  C0000-C7FFF write-protect
  C8000-FFFFF uncachable
MTRR variable ranges enabled:
  0 base 0000000000 mask FFE0000000 write-back
  1 base 00F0000000 mask FFF8000000 write-combining
  2 disabled
  3 disabled
  4 disabled
  5 disabled
  6 disabled
  7 disabled
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Scanning 0 areas for low memory corruption
modified physical RAM map:
 modified: 0000000000000000 - 0000000000010000 (reserved)
 modified: 0000000000010000 - 000000000009f800 (usable)
 modified: 000000000009f800 - 00000000000a0000 (reserved)
 modified: 00000000000f0000 - 0000000000100000 (reserved)
 modified: 0000000000100000 - 000000001fff0000 (usable)
 modified: 000000001fff0000 - 000000001fff3000 (ACPI NVS)
 modified: 000000001fff3000 - 0000000020000000 (ACPI data)
 modified: 00000000fec00000 - 00000000fec01000 (reserved)
 modified: 00000000fee00000 - 00000000fef00000 (reserved)
 modified: 00000000fefffc00 - 00000000ff000000 (reserved)
 modified: 00000000ffff0000 - 0000000100000000 (reserved)
initial memory mapped : 0 - 01800000
found SMP MP-table at [c00f4d80] f4d80
init_memory_mapping: 0000000000000000-000000001fff0000
 0000000000 - 0000400000 page 4k
 0000400000 - 001fc00000 page 2M
 001fc00000 - 001fff0000 page 4k
kernel direct mapping tables up to 1fff0000 @ 15000-1a000
RAMDISK: 1fdf4000 - 1ffe0000
ACPI: RSDP 000f8e70 00014 (v00 Nvidia)
ACPI: RSDT 1fff3040 0002C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
ACPI: FACP 1fff30c0 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
ACPI: DSDT 1fff3180 04AAD (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E)
ACPI: FACS 1fff0000 00040
ACPI: APIC 1fff7c80 0006E (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
ACPI: Local APIC address 0xfee00000
0MB HIGHMEM available.
511MB LOWMEM available.
  mapped low ram: 0 - 1fff0000
  low ram: 0 - 1fff0000
Zone PFN ranges:
  DMA      0x00000010 -> 0x00001000
  Normal   0x00001000 -> 0x0001fff0
  HighMem  empty
Movable zone start PFN for each node
early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0001fff0
On node 0 totalpages: 130943
free_area_init_node: node 0, pgdat c142d600, node_mem_map c1598200
  DMA zone: 32 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 3951 pages, LIFO batch:0
  Normal zone: 992 pages used for memmap
  Normal zone: 125968 pages, LIFO batch:31
Using APIC driver default
Nvidia board detected. Ignoring ACPI timer override.
If you got timer trouble try acpi_use_timer_override
ACPI: PM-Timer IO Port: 0x4008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: BIOS IRQ0 pin2 override ignored.
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Using ACPI (MADT) for SMP configuration information
SMP: Allowing 1 CPUs, 0 hotplug CPUs
nr_irqs_gsi: 40
early_res array is doubled to 64 at [16000 - 167ff]
PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
Allocating PCI resources starting at 20000000 (gap: 20000000:dec00000)
Booting paravirtualized kernel on bare hardware
setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
PERCPU: Embedded 13 pages/cpu @c1c00000 s31488 r0 d21760 u4194304
pcpu-alloc: s31488 r0 d21760 u4194304 alloc=1*4194304
pcpu-alloc: [0] 0 
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 129919
Kernel command line: root=/dev/disk/by-uuid/4796d6f3-9c81-40db-9218-70186e20e11e ro
PID hash table entries: 2048 (order: 1, 8192 bytes)
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
allocated 2620800 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
Subtract (45 early reservations)
  #1 [0000001000 - 0000002000]   EX TRAMPOLINE
  #2 [0001000000 - 000158fe8c]   TEXT DATA BSS
  #3 [001fdf4000 - 001ffe0000]         RAMDISK
  #4 [0001590000 - 0001596076]             BRK
  #5 [00000f4d90 - 0000100000]   BIOS reserved
  #6 [00000f4d80 - 00000f4d90]    MP-table mpf
  #7 [000009f800 - 00000f0c00]   BIOS reserved
  #8 [00000f0d38 - 00000f4d80]   BIOS reserved
  #9 [00000f0c00 - 00000f0d38]    MP-table mpc
  #10 [0000010000 - 0000011000]      TRAMPOLINE
  #11 [0000011000 - 0000015000]     ACPI WAKEUP
  #12 [0000015000 - 0000016000]         PGTABLE
  #13 [0001597000 - 0001598000]         BOOTMEM
  #14 [0001598000 - 0001998000]         BOOTMEM
  #15 [000158fec0 - 000158fec4]         BOOTMEM
  #16 [000158ff00 - 000158ffc0]         BOOTMEM
  #17 [000158ffc0 - 000158fff0]         BOOTMEM
  #18 [0001998000 - 0001999800]         BOOTMEM
  #19 [0001596080 - 00015960a7]         BOOTMEM
  #20 [00015960c0 - 00015961f4]         BOOTMEM
  #21 [0001596200 - 0001596240]         BOOTMEM
  #22 [0001596240 - 0001596280]         BOOTMEM
  #23 [0001596280 - 00015962c0]         BOOTMEM
  #24 [00015962c0 - 0001596300]         BOOTMEM
  #25 [0001596300 - 0001596340]         BOOTMEM
  #26 [0001596340 - 0001596380]         BOOTMEM
  #27 [0001596380 - 00015963c0]         BOOTMEM
  #28 [00015963c0 - 0001596400]         BOOTMEM
  #29 [0001596400 - 0001596440]         BOOTMEM
  #30 [0001596440 - 0001596480]         BOOTMEM
  #31 [0001596480 - 0001596490]         BOOTMEM
  #32 [00015964c0 - 00015964ff]         BOOTMEM
  #33 [0001596500 - 000159653f]         BOOTMEM
  #34 [0001c00000 - 0001c0d000]         BOOTMEM
  #35 [0001596540 - 0001596544]         BOOTMEM
  #36 [0001596580 - 0001596584]         BOOTMEM
  #37 [00015965c0 - 00015965c4]         BOOTMEM
  #38 [0001596600 - 0001596604]         BOOTMEM
  #39 [0001596640 - 00015966f0]         BOOTMEM
  #40 [0001596700 - 00015967a8]         BOOTMEM
  #41 [0001999800 - 000199b800]         BOOTMEM
  #42 [000199b800 - 00019db800]         BOOTMEM
  #43 [00019db800 - 00019fb800]         BOOTMEM
  #44 [0001c0d000 - 0001e8cd80]         BOOTMEM
Initializing HighMem for node 0 (00000000:00000000)
Memory: 508944k/524224k available (3104k kernel code, 14828k reserved, 1205k data, 428k init, 0k highmem)
virtual kernel memory layout:
    fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
    pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    vmalloc : 0xe07f0000 - 0xff7fe000   ( 496 MB)
    lowmem  : 0xc0000000 - 0xdfff0000   ( 511 MB)
      .init : 0xc1436000 - 0xc14a1000   ( 428 kB)
      .data : 0xc1308056 - 0xc1435820   (1205 kB)
      .text : 0xc1000000 - 0xc1308056   (3104 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
NR_IRQS:512
spurious 8259A interrupt: IRQ7.
Console: colour VGA+ 80x25
console [tty0] enabled
Fast TSC calibration using PIT
Detected 1607.410 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 3216.77 BogoMIPS (lpj=5358033)
pid_max: default: 32768 minimum: 301
Security Framework initialized
TOMOYO Linux initialized
AppArmor: AppArmor disabled by boot time parameter
Mount-cache hash table entries: 512
Initializing cgroup subsys ns
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
Initializing cgroup subsys blkio
mce: CPU supports 5 MCE banks
Performance Events: AMD PMU driver.
... version:                0
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             00007fffffffffff
... fixed-purpose events:   0
... event mask:             000000000000000f
SMP alternatives: switching to UP code
Freeing SMP alternatives: 16k freed
ACPI: Core revision 20100702
Enabling APIC mode:  Flat.  Using 1 I/O APICs
..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
CPU0: AMD Sempron(tm) Processor 2600+ stepping 00
NMI watchdog enabled, takes one hw-pmu counter.
Brought up 1 CPUs
Total of 1 processors activated (3216.77 BogoMIPS).
devtmpfs: initialized
NET: Registered protocol family 16
TOM: 0000000020000000 aka 512M
node 0 link 0: mmio [a0000, bffff]
bus: [00, ff] on node 0 link 0
bus: 00 index 0 [io  0x0000-0xffff]
bus: 00 index 1 [mem 0x000a0000-0x000bffff]
bus: 00 index 2 [mem 0x20000000-0xffffffff]
ACPI: bus type pci registered
PCI: PCI BIOS revision 2.10 entry at 0xfb760, last bus=2
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: Power Resource [ISAV] (on)
ACPI: No dock devices found.
PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
pci_root PNP0A03:00: host bridge window [mem 0x20000000-0xfebfffff] (ignored)
pci 0000:00:00.0: reg 10: [mem 0xf0000000-0xf7ffffff pref]
pci 0000:00:01.1: reg 10: [io  0xff00-0xff1f]
pci 0000:00:01.1: reg 20: [io  0x4c00-0x4c3f]
pci 0000:00:01.1: reg 24: [io  0x4d00-0x4d3f]
pci 0000:00:01.1: PME# supported from D3hot D3cold
pci 0000:00:01.1: PME# disabled
pci 0000:00:02.0: reg 10: [mem 0xfdfff000-0xfdffffff]
pci 0000:00:02.0: supports D1 D2
pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:02.0: PME# disabled
pci 0000:00:02.1: reg 10: [mem 0xfdffe000-0xfdffefff]
pci 0000:00:02.1: supports D1 D2
pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:02.1: PME# disabled
pci 0000:00:02.2: reg 10: [mem 0xfdffd000-0xfdffd0ff]
pci 0000:00:02.2: supports D1 D2
pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:02.2: PME# disabled
pci 0000:00:05.0: reg 10: [mem 0xfdffc000-0xfdffcfff]
pci 0000:00:05.0: reg 14: [io  0xfc00-0xfc07]
pci 0000:00:05.0: supports D1 D2
pci 0000:00:05.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:05.0: PME# disabled
pci 0000:00:06.0: reg 10: [io  0xfb00-0xfbff]
pci 0000:00:06.0: reg 14: [io  0xfa00-0xfa7f]
pci 0000:00:06.0: reg 18: [mem 0xfdffb000-0xfdffbfff]
pci 0000:00:06.0: supports D1 D2
pci 0000:00:08.0: reg 20: [io  0xf700-0xf70f]
pci 0000:00:0a.0: reg 10: [io  0x09f0-0x09f7]
pci 0000:00:0a.0: reg 14: [io  0x0bf0-0x0bf3]
pci 0000:00:0a.0: reg 18: [io  0x0970-0x0977]
pci 0000:00:0a.0: reg 1c: [io  0x0b70-0x0b73]
pci 0000:00:0a.0: reg 20: [io  0xf200-0xf20f]
pci 0000:00:0a.0: reg 24: [io  0xf100-0xf17f]
PCI: peer root bus 00 res updated from pci conf
pci 0000:01:00.0: reg 10: [mem 0xfb000000-0xfbffffff]
pci 0000:01:00.0: reg 14: [mem 0xe8000000-0xefffffff pref]
pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
pci 0000:00:0b.0: PCI bridge to [bus 01-01]
pci 0000:00:0b.0:   bridge window [io  0xc000-0xdfff]
pci 0000:00:0b.0:   bridge window [mem 0xfb000000-0xfcffffff]
pci 0000:00:0b.0:   bridge window [mem 0xe8000000-0xefffffff pref]
pci 0000:02:08.0: reg 10: [mem 0xfddff000-0xfddfffff pref]
pci 0000:02:08.1: reg 10: [mem 0xfddfe000-0xfddfefff pref]
pci 0000:00:0e.0: PCI bridge to [bus 02-02]
pci 0000:00:0e.0:   bridge window [io  0xa000-0xbfff]
pci 0000:00:0e.0:   bridge window [mem 0xfde00000-0xfdefffff]
pci 0000:00:0e.0:   bridge window [mem 0xfdd00000-0xfddfffff pref]
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 10 11 *12 14 15)
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 6 7 10 11 *12 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0
ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
ACPI: PCI Interrupt Link [APC5] (IRQs *16)
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
HEST: Table is not found!
vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
reserve RAM buffer: 000000000009f800 - 000000000009ffff 
reserve RAM buffer: 000000001fff0000 - 000000001fffffff 
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
Switching to clocksource tsc
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
system 00:00: [io  0x4000-0x407f] has been reserved
system 00:00: [io  0x4080-0x40ff] has been reserved
system 00:00: [io  0x4400-0x447f] has been reserved
system 00:00: [io  0x4480-0x44ff] has been reserved
system 00:00: [io  0x4800-0x487f] has been reserved
system 00:00: [io  0x4880-0x48ff] has been reserved
system 00:01: [mem 0x000d0000-0x000d3fff] has been reserved
system 00:01: [mem 0x000d5800-0x000d7fff] has been reserved
system 00:01: [mem 0x000f0000-0x000fbfff] could not be reserved
system 00:01: [mem 0x000fc000-0x000fffff] could not be reserved
system 00:01: [mem 0x1fff0000-0x1fffffff] could not be reserved
system 00:01: [mem 0xffff0000-0xffffffff] has been reserved
system 00:01: [mem 0x00000000-0x0009ffff] could not be reserved
system 00:01: [mem 0x00100000-0x1ffeffff] could not be reserved
system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
system 00:01: [mem 0xfefff000-0xfeffffff] could not be reserved
system 00:01: [mem 0xfff80000-0xfff80fff] has been reserved
system 00:01: [mem 0xfff90000-0xfffbffff] has been reserved
system 00:01: [mem 0xfffed000-0xfffeffff] has been reserved
system 00:03: [io  0x04d0-0x04d1] has been reserved
system 00:03: [io  0x0800-0x0805] has been reserved
system 00:03: [io  0x0290-0x0297] has been reserved
pci 0000:01:00.0: BAR 6: assigned [mem 0xfc000000-0xfc01ffff pref]
pci 0000:00:0b.0: PCI bridge to [bus 01-01]
pci 0000:00:0b.0:   bridge window [io  0xc000-0xdfff]
pci 0000:00:0b.0:   bridge window [mem 0xfb000000-0xfcffffff]
pci 0000:00:0b.0:   bridge window [mem 0xe8000000-0xefffffff pref]
pci 0000:00:0e.0: PCI bridge to [bus 02-02]
pci 0000:00:0e.0:   bridge window [io  0xa000-0xbfff]
pci 0000:00:0e.0:   bridge window [mem 0xfde00000-0xfdefffff]
pci 0000:00:0e.0:   bridge window [mem 0xfdd00000-0xfddfffff pref]
pci 0000:00:0e.0: setting latency timer to 64
pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 6 [mem 0x20000000-0xffffffff]
pci_bus 0000:01: resource 0 [io  0xc000-0xdfff]
pci_bus 0000:01: resource 1 [mem 0xfb000000-0xfcffffff]
pci_bus 0000:01: resource 2 [mem 0xe8000000-0xefffffff pref]
pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
pci_bus 0000:02: resource 1 [mem 0xfde00000-0xfdefffff]
pci_bus 0000:02: resource 2 [mem 0xfdd00000-0xfddfffff pref]
NET: Registered protocol family 2
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 5, 131072 bytes)
TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
TCP: Hash tables configured (established 16384 bind 16384)
TCP reno registered
UDP hash table entries: 256 (order: 1, 8192 bytes)
UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
NET: Registered protocol family 1
pci 0000:01:00.0: Boot video device
PCI: CLS 0 bytes, default 64
Unpacking initramfs...
Freeing initrd memory: 1968k freed
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
apm: overridden by ACPI.
Scanning for low memory corruption every 60 seconds
audit: initializing netlink socket (disabled)
type=2000 audit(1292267735.319:1): initialized
HugeTLB registered 4 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
msgmni has been set to 997
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
ERST: Table is not found!
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: 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
rtc0: alarms up to one year, y3k, 242 bytes nvram
cpuidle: using governor ladder
cpuidle: using governor menu
TCP cubic registered
NET: Registered protocol family 17
Registering the dns_resolver key type
Using IPI No-Shortcut mode
PM: Resume from disk failed.
registered taskstats version 1
rtc_cmos 00:05: setting system clock to 2010-12-13 19:15:37 UTC (1292267737)
Initalizing network drop monitor service
Freeing unused kernel memory: 428k freed
udev[33]: starting version 164
input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
ACPI: Power Button [PWRB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
ACPI: Power Button [PWRF]
Linux agpgart interface v0.103
[drm] Initialized drm 1.1.0 20060810
ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
nouveau 0000:01:00.0: PCI INT A -> Link[APC5] -> GSI 16 (level, low) -> IRQ 16
[drm] nouveau 0000:01:00.0: Detected an NV30 generation card (0x034200b1)
[drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
[drm] nouveau 0000:01:00.0: ... appears to be valid
[drm] nouveau 0000:01:00.0: BMP BIOS found
[drm] nouveau 0000:01:00.0: BMP version 5.40
[drm] nouveau 0000:01:00.0: Bios version 04.34.20.42
[drm] nouveau 0000:01:00.0: Found Display Configuration Block version 2.2
[drm] nouveau 0000:01:00.0: Raw DCB entry 0: 01000300 000088b8
[drm] nouveau 0000:01:00.0: Raw DCB entry 1: 01010302 00000000
[drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02020321 00000733
[drm] nouveau 0000:01:00.0: Loading NV17 power sequencing microcode
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xEF68
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xF1D8
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xF31E
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xF4B0
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xF4CD
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 5 at offset 0xF4EA
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 6 at offset 0xF66E
[drm] nouveau 0000:01:00.0: Detected 128MiB VRAM
[TTM] Zone  kernel: Available graphics memory: 255678 kiB.
[TTM] Initializing pool allocator.
[drm] nouveau 0000:01:00.0: 64 MiB GART (aperture)
[drm] nouveau 0000:01:00.0: Saving VGA fonts
[drm] nouveau 0000:01:00.0: Allocating FIFO number 0
[drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 0
[drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 0)
[drm] nouveau 0000:01:00.0: Setting dpms mode 3 on tmds encoder (output 1)
[drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV encoder (output 2)
[drm] nouveau 0000:01:00.0: allocated 1680x1050 fb: 0x48000, bo dedb4c00
[drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 0)
[drm] nouveau 0000:01:00.0: Output DVI-I-1 is running on CRTC 0 using output A
Console: switching to colour frame buffer device 210x65
fb0: nouveaufb frame buffer device
drm: registered panic notifier
[drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0
SCSI subsystem initialized
FDC 0 is a post-1991 82077
libata version 3.00 loaded.
pata_amd 0000:00:08.0: version 0.4.1
pata_amd 0000:00:08.0: power state changed by ACPI to D0
pata_amd 0000:00:08.0: power state changed by ACPI to D0
pata_amd 0000:00:08.0: setting latency timer to 64
scsi0 : pata_amd
scsi1 : pata_amd
ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf700 irq 14
ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf708 irq 15
sata_nv 0000:00:0a.0: version 3.5
ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 23
sata_nv 0000:00:0a.0: PCI INT A -> Link[APSJ] -> GSI 23 (level, high) -> IRQ 23
sata_nv 0000:00:0a.0: setting latency timer to 64
scsi2 : sata_nv
scsi3 : sata_nv
ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf200 irq 23
ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf208 irq 23
ata1.00: ATA-7: SAMSUNG SP0822N, WA100-10, max UDMA/133
ata1.00: 156368016 sectors, multi 1: LBA48 
ata1.01: native sectors (19541087) is smaller than sectors (19541088)
ata1.01: ATA-4: ST310211A, 3.39, max UDMA/100
ata1.01: 19541088 sectors, multi 1: LBA 
ata1: nv_mode_filter: 0x7f39f&0x739f->0x739f, BIOS=0x0 (0x0) ACPI=0x39f (120:120:0x1a)
ata1: nv_mode_filter: 0x3f39f&0x739f->0x739f, BIOS=0x0 (0x0) ACPI=0x39f (120:120:0x1a)
ata1.00: configured for UDMA/33
ata1.01: configured for UDMA/33
scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG SP0822N  WA10 PQ: 0 ANSI: 5
scsi 0:0:1:0: Direct-Access     ATA      ST310211A        3.39 PQ: 0 ANSI: 5
ata3: SATA link down (SStatus 0 SControl 300)
ata2.00: ATAPI: _NEC DVD_RW ND-3570A, 1.11, max UDMA/33
ata2: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x0 (0x0) ACPI=0x39f (120:600:0x12)
ata2.00: configured for UDMA/33
scsi 1:0:0:0: CD-ROM            _NEC     DVD_RW ND-3570A  1.11 PQ: 0 ANSI: 5
ata4: SATA link down (SStatus 0 SControl 300)
sd 0:0:0:0: [sda] 156368016 512-byte logical blocks: (80.0 GB/74.5 GiB)
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
sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi CD-ROM sr0
 sda: sda1 sda2 sda3 sda4
sd 0:0:1:0: [sdb] 19541088 512-byte logical blocks: (10.0 GB/9.31 GiB)
sd 0:0:1:0: [sdb] Write Protect is off
sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Attached SCSI disk
sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdb: sdb1
sd 0:0:1:0: [sdb] Attached SCSI disk
EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Not activating Mandatory Access Control now since /sbin/tomoyo-init doesn't exist.
udev[680]: starting version 164
ACPI: acpi_idle registered with cpuidle
thermal LNXTHERM:01: registered as thermal_zone0
ACPI: Thermal Zone [THRM] (40 C)
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 0:0:1:0: Attached scsi generic sg1 type 0
sr 1:0:0:0: Attached scsi generic sg2 type 5
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
i2c i2c-1: nForce2 SMBus adapter at 0x4c00
i2c i2c-2: nForce2 SMBus adapter at 0x4d00
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1]
agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB
agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP
agpgart-amd64 0000:00:00.0: AGP aperture is 128M @ 0xf0000000
ACPI: Fan [FAN] (on)
forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
forcedeth 0000:00:05.0: PCI INT A -> Link[APCH] -> GSI 22 (level, high) -> IRQ 22
forcedeth 0000:00:05.0: setting latency timer to 64
nv_probe: set workaround bit for reversed mac addr
IT8712 SuperIO detected.
parport_pc 00:0b: reported by Plug and Play ACPI
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
input: PC Speaker as /devices/platform/pcspkr/input/input2
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
ppdev: user-space parallel port driver
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
lp0: using parport0 (interrupt-driven).
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
forcedeth 0000:00:05.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:01:6c:ae:2c:2f
forcedeth 0000:00:05.0: csum timirq lnktim desc-v2
ACPI: PCI Interrupt Link [APCL] enabled at IRQ 21
ehci_hcd 0000:00:02.2: PCI INT C -> Link[APCL] -> GSI 21 (level, high) -> IRQ 21
ehci_hcd 0000:00:02.2: setting latency timer to 64
ehci_hcd 0000:00:02.2: EHCI Host Controller
ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:02.2: debug port 1
ehci_hcd 0000:00:02.2: cache line size of 64 is not supported
ehci_hcd 0000:00:02.2: irq 21, io mem 0xfdffd000
ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
ACPI: PCI Interrupt Link [APCF] enabled at IRQ 20
ohci_hcd 0000:00:02.0: PCI INT A -> Link[APCF] -> GSI 20 (level, high) -> IRQ 20
ohci_hcd 0000:00:02.0: setting latency timer to 64
ohci_hcd 0000:00:02.0: OHCI Host Controller
ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:02.0: irq 20, io mem 0xfdfff000
IR RC6 protocol handler initialized
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 4 ports detected
ACPI: PCI Interrupt Link [APCG] enabled at IRQ 23
ohci_hcd 0000:00:02.1: PCI INT B -> Link[APCG] -> GSI 23 (level, high) -> IRQ 23
ohci_hcd 0000:00:02.1: setting latency timer to 64
ohci_hcd 0000:00:02.1: OHCI Host Controller
ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 3
ohci_hcd 0000:00:02.1: irq 23, io mem 0xfdffe000
IR JVC protocol handler initialized
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 4 ports detected
Linux video capture interface: v2.00
IR Sony protocol handler initialized
usb 1-4: new high speed USB device using ehci_hcd and address 2
hub 1-4:1.0: USB hub found
hub 1-4:1.0: 4 ports detected
ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 22
Intel ICH 0000:00:06.0: PCI INT A -> Link[APCJ] -> GSI 22 (level, high) -> IRQ 22
Intel ICH 0000:00:06.0: setting latency timer to 64
lirc_dev: IR Remote Control driver registered, major 252 
IR LIRC bridge handler initialized
usb 1-4.1: new low speed USB device using ehci_hcd and address 3
bttv: driver version 0.9.18 loaded
bttv: using 8 buffers with 2080k (520 pages) each for capture
bttv: Bt8xx card found (0).
ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
bttv 0000:02:08.0: PCI INT A -> Link[APC1] -> GSI 16 (level, low) -> IRQ 16
bttv0: Bt878 (rev 17) at 0000:02:08.0, irq: 16, latency: 32, mmio: 0xfddff000
bttv0: using:  *** UNKNOWN/GENERIC ***  [card=0,autodetected]
bttv0: gpio: en=00000000, out=00000000 in=00f4ff00 [init]
tveeprom 3-0050: Huh, no eeprom present (err=-6)?
bttv0: tuner type unset
bttv0: registered device video0
bttv0: registered device vbi0
intel8x0_measure_ac97_clock: measured 52340 usecs (2576 samples)
intel8x0: clocking to 46814
usb 1-4.2: new high speed USB device using ehci_hcd and address 4
hub 1-4.2:1.0: USB hub found
hub 1-4.2:1.0: 4 ports detected
usb 1-4.4: new high speed USB device using ehci_hcd and address 5
usbcore: registered new interface driver hiddev
input: USB Optical Mouse as /devices/pci0000:00/0000:00:02.2/usb1/1-4/1-4.1/1-4.1:1.0/input/input3
generic-usb 0003:1BCF:0007.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:00:02.2-4.1/input0
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
Initializing USB Mass Storage driver...
usb-storage 1-4.4:1.0: Quirks match for vid 05e3 pid 0723: 8000
scsi4 : usb-storage 1-4.4:1.0
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
usb 1-4.2.2: new low speed USB device using ehci_hcd and address 6
input:   USB Keyboard as /devices/pci0000:00/0000:00:02.2/usb1/1-4/1-4.2/1-4.2.2/1-4.2.2:1.0/input/input4
generic-usb 0003:04D9:1503.0002: input,hidraw1: USB HID v1.10 Keyboard [  USB Keyboard] on usb-0000:00:02.2-4.2.2/input0
input:   USB Keyboard as /devices/pci0000:00/0000:00:02.2/usb1/1-4/1-4.2/1-4.2.2/1-4.2.2:1.1/input/input5
generic-usb 0003:04D9:1503.0003: input,hidraw2: USB HID v1.10 Device [  USB Keyboard] on usb-0000:00:02.2-4.2.2/input1
EXT4-fs (sda3): re-mounted. Opts: (null)
scsi 4:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9451 PQ: 0 ANSI: 0
sd 4:0:0:0: Attached scsi generic sg3 type 0
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
EXT4-fs (sda3): re-mounted. Opts: (null)
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
sd 4:0:0:0: [sdc] Attached SCSI removable disk
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
Adding 530140k swap on /dev/sda2.  Priority:-1 extents:1 across:530140k 
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5

and

#xorg
[    73.387] 
X.Org X Server 1.9.2
Release Date: 2010-10-30
[    73.387] X Protocol Version 11, Revision 0
[    73.387] Build Operating System: Linux 2.6.35-ARCH i686 
[    73.387] Current Operating System: Linux rick 2.6.36-ARCH #1 SMP PREEMPT Fri Dec 10 20:01:53 UTC 2010 i686
[    73.387] Kernel command line: root=/dev/disk/by-uuid/4796d6f3-9c81-40db-9218-70186e20e11e ro
[    73.387] Build Date: 01 November 2010  10:35:30PM
[    73.387]  
[    73.387] Current version of pixman: 0.20.0
[    73.387]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    73.387] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    73.387] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 21:16:49 2010
[    73.437] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    73.465] (==) No Layout section.  Using the first Screen section.
[    73.465] (==) No screen section available. Using defaults.
[    73.465] (**) |-->Screen "Default Screen Section" (0)
[    73.465] (**) |   |-->Monitor "<default monitor>"
[    73.466] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[    73.466] (==) Automatically adding devices
[    73.466] (==) Automatically enabling devices
[    73.520] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    73.530]     Entry deleted from font path.
[    73.611] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
[    73.611] (==) ModulePath set to "/usr/lib/xorg/modules"
[    73.611] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[    73.611] (II) Loader magic: 0x81f1f80
[    73.611] (II) Module ABI versions:
[    73.611]     X.Org ANSI C Emulation: 0.4
[    73.611]     X.Org Video Driver: 8.0
[    73.611]     X.Org XInput driver : 11.0
[    73.611]     X.Org Server Extension : 4.0
[    73.612] (--) PCI:*(0:1:0:0) 10de:0322:107d:290f rev 161, Mem @ 0xfb000000/16777216, 0xe8000000/134217728, BIOS @ 0x????????/131072
[    73.612] (--) PCI: (0:2:8:0) 109e:036e:0000:0000 rev 17, Mem @ 0xfddff000/4096
[    73.612] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    73.612] (II) LoadModule: "extmod"
[    73.648] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    73.661] (II) Module extmod: vendor="X.Org Foundation"
[    73.661]     compiled for 1.9.2, module version = 1.0.0
[    73.661]     Module class: X.Org Server Extension
[    73.661]     ABI class: X.Org Server Extension, version 4.0
[    73.661] (II) Loading extension MIT-SCREEN-SAVER
[    73.661] (II) Loading extension XFree86-VidModeExtension
[    73.661] (II) Loading extension XFree86-DGA
[    73.661] (II) Loading extension DPMS
[    73.661] (II) Loading extension XVideo
[    73.661] (II) Loading extension XVideo-MotionCompensation
[    73.661] (II) Loading extension X-Resource
[    73.661] (II) LoadModule: "dbe"
[    73.662] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    73.668] (II) Module dbe: vendor="X.Org Foundation"
[    73.668]     compiled for 1.9.2, module version = 1.0.0
[    73.668]     Module class: X.Org Server Extension
[    73.668]     ABI class: X.Org Server Extension, version 4.0
[    73.668] (II) Loading extension DOUBLE-BUFFER
[    73.668] (II) LoadModule: "glx"
[    73.668] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    73.668] dlopen: /usr/lib/xorg/modules/extensions/libglx.so: cannot open shared object file: No such file or directory
[    73.668] (EE) Failed to load /usr/lib/xorg/modules/extensions/libglx.so
[    73.668] (II) UnloadModule: "glx"
[    73.668] (EE) Failed to load module "glx" (loader failed, 7)
[    73.668] (II) LoadModule: "record"
[    73.668] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    73.669] (II) Module record: vendor="X.Org Foundation"
[    73.670]     compiled for 1.9.2, module version = 1.13.0
[    73.670]     Module class: X.Org Server Extension
[    73.670]     ABI class: X.Org Server Extension, version 4.0
[    73.670] (II) Loading extension RECORD
[    73.670] (II) LoadModule: "dri"
[    73.670] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    73.683] (II) Module dri: vendor="X.Org Foundation"
[    73.683]     compiled for 1.9.2, module version = 1.0.0
[    73.683]     ABI class: X.Org Server Extension, version 4.0
[    73.683] (II) Loading extension XFree86-DRI
[    73.683] (II) LoadModule: "dri2"
[    73.683] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    73.685] (II) Module dri2: vendor="X.Org Foundation"
[    73.685]     compiled for 1.9.2, module version = 1.2.0
[    73.685]     ABI class: X.Org Server Extension, version 4.0
[    73.685] (II) Loading extension DRI2
[    73.685] (==) Matched nv as autoconfigured driver 0
[    73.685] (==) Matched vesa as autoconfigured driver 1
[    73.685] (==) Matched fbdev as autoconfigured driver 2
[    73.685] (==) Assigned the driver to the xf86ConfigLayout
[    73.685] (II) LoadModule: "nv"
[    73.720] (WW) Warning, couldn't open module nv
[    73.720] (II) UnloadModule: "nv"
[    73.720] (EE) Failed to load module "nv" (module does not exist, 0)
[    73.720] (II) LoadModule: "vesa"
[    73.721] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    73.729] (II) Module vesa: vendor="X.Org Foundation"
[    73.729]     compiled for 1.9.0, module version = 2.3.0
[    73.729]     Module class: X.Org Video Driver
[    73.729]     ABI class: X.Org Video Driver, version 8.0
[    73.729] (II) LoadModule: "fbdev"
[    73.730] (WW) Warning, couldn't open module fbdev
[    73.730] (II) UnloadModule: "fbdev"
[    73.730] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    73.730] (II) VESA: driver for VESA chipsets: vesa
[    73.730] (++) using VT number 7

[    73.733] (II) Loading sub module "vbe"
[    73.733] (II) LoadModule: "vbe"
[    73.733] (II) Loading /usr/lib/xorg/modules/libvbe.so
[    73.742] (II) Module vbe: vendor="X.Org Foundation"
[    73.742]     compiled for 1.9.2, module version = 1.1.0
[    73.742]     ABI class: X.Org Video Driver, version 8.0
[    73.742] (II) Loading sub module "int10"
[    73.742] (II) LoadModule: "int10"
[    73.742] (II) Loading /usr/lib/xorg/modules/libint10.so
[    73.754] (II) Module int10: vendor="X.Org Foundation"
[    73.755]     compiled for 1.9.2, module version = 1.0.0
[    73.755]     ABI class: X.Org Video Driver, version 8.0
[    73.756] (II) VESA(0): initializing int10
[    73.759] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[    73.771] (II) VESA(0): VESA BIOS detected
[    73.771] (II) VESA(0): VESA VBE Version 3.0
[    73.771] (II) VESA(0): VESA VBE Total Mem: 131072 kB
[    73.771] (II) VESA(0): VESA VBE OEM: WinFast
[    73.771] (II) VESA(0): VESA VBE OEM Software Rev: 4.52
[    73.771] (II) VESA(0): VESA VBE OEM Vendor: Leadtek Research Inc.
[    73.771] (II) VESA(0): VESA VBE OEM Product: NV34 Board - 16222967
[    73.771] (II) VESA(0): VESA VBE OEM Product Rev: Chip Rev   
[    73.806] (II) VESA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[    73.806] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
[    73.806] (==) VESA(0): RGB weight 888
[    73.806] (==) VESA(0): Default visual is TrueColor
[    73.806] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[    73.806] (II) Loading sub module "ddc"
[    73.806] (II) LoadModule: "ddc"
[    73.806] (II) Module "ddc" already built-in
[    73.810] (II) VESA(0): VESA VBE DDC supported
[    73.810] (II) VESA(0): VESA VBE DDC Level 2
[    73.810] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
[    73.907] (II) VESA(0): VESA VBE DDC read successfully
[    73.907] (II) VESA(0): Manufacturer: KTC  Model: 2002  Serial#: 254
[    73.907] (II) VESA(0): Year: 2007  Week: 39
[    73.907] (II) VESA(0): EDID Version: 1.3
[    73.907] (II) VESA(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[    73.907] (II) VESA(0): Sync:  Separate
[    73.907] (II) VESA(0): Max Image Size [cm]: horiz.: 43  vert.: 27
[    73.907] (II) VESA(0): Gamma: 2.20
[    73.907] (II) VESA(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
[    73.907] (II) VESA(0): First detailed timing is preferred mode
[    73.907] (II) VESA(0): redX: 0.597 redY: 0.343   greenX: 0.316 greenY: 0.566
[    73.907] (II) VESA(0): blueX: 0.153 blueY: 0.131   whiteX: 0.313 whiteY: 0.329
[    73.907] (II) VESA(0): Supported established timings:
[    73.907] (II) VESA(0): 720x400@70Hz
[    73.907] (II) VESA(0): 640x480@60Hz
[    73.908] (II) VESA(0): 640x480@67Hz
[    73.908] (II) VESA(0): 640x480@72Hz
[    73.908] (II) VESA(0): 640x480@75Hz
[    73.908] (II) VESA(0): 800x600@56Hz
[    73.908] (II) VESA(0): 800x600@60Hz
[    73.908] (II) VESA(0): 800x600@72Hz
[    73.908] (II) VESA(0): 800x600@75Hz
[    73.908] (II) VESA(0): 832x624@75Hz
[    73.908] (II) VESA(0): 1024x768@60Hz
[    73.908] (II) VESA(0): 1024x768@70Hz
[    73.908] (II) VESA(0): 1024x768@75Hz
[    73.908] (II) VESA(0): 1280x1024@75Hz
[    73.908] (II) VESA(0): 1152x864@75Hz
[    73.908] (II) VESA(0): Manufacturer's mask: 0
[    73.908] (II) VESA(0): Supported standard timings:
[    73.908] (II) VESA(0): #0: hsize: 1152  vsize 864  refresh: 70  vid: 19057
[    73.908] (II) VESA(0): #1: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    73.908] (II) VESA(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    73.908] (II) VESA(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    73.908] (II) VESA(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    73.908] (II) VESA(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    73.908] (II) VESA(0): #6: hsize: 1680  vsize 1050  refresh: 75  vid: 4019
[    73.908] (II) VESA(0): #7: hsize: 1600  vsize 1200  refresh: 75  vid: 20393
[    73.908] (II) VESA(0): Supported detailed timing:
[    73.908] (II) VESA(0): clock: 146.0 MHz   Image Size:  433 x 270 mm
[    73.908] (II) VESA(0): h_active: 1680  h_sync: 1784  h_sync_end 1960 h_blank_end 2240 h_border: 0
[    73.908] (II) VESA(0): v_active: 1050  v_sync: 1053  v_sync_end 1059 v_blanking: 1089 v_border: 0
[    73.908] (II) VESA(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 96 kHz, PixClock max 215 MHz
[    73.908] (II) VESA(0): Monitor name: IL820 INCA
[    73.908] (II) VESA(0):  
[    73.908] (II) VESA(0): EDID (in hex):
[    73.908] (II) VESA(0):     00ffffffffffff002e830220fe000000
[    73.908] (II) VESA(0):     27110103682b1b78eaf0659857519127
[    73.908] (II) VESA(0):     215054bfef80714a714f81408180a940
[    73.908] (II) VESA(0):     b300b30fa94f08399030621a274068b0
[    73.908] (II) VESA(0):     3600b10e1100001c000000fd00384c1f
[    73.908] (II) VESA(0):     6015000a202020202020000000fc0049
[    73.908] (II) VESA(0):     4c38323020494e43410a2020000000fe
[    73.908] (II) VESA(0):     000a20202020202020202020202000e1
[    73.908] (II) VESA(0): EDID vendor "KTC", prod id 8194
[    73.916] (II) VESA(0): Using EDID range info for horizontal sync
[    73.916] (II) VESA(0): Using EDID range info for vertical refresh
[    73.917] (II) VESA(0): Printing DDC gathered Modelines:
[    73.917] (II) VESA(0): Modeline "1680x1050"x0.0  146.00  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.2 kHz)
[    73.917] (II) VESA(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    73.917] (II) VESA(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    73.917] (II) VESA(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[    73.917] (II) VESA(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[    73.917] (II) VESA(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[    73.917] (II) VESA(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    73.917] (II) VESA(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[    73.917] (II) VESA(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[    73.917] (II) VESA(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[    73.917] (II) VESA(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[    73.917] (II) VESA(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    73.917] (II) VESA(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[    73.917] (II) VESA(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[    73.917] (II) VESA(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[    73.917] (II) VESA(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[    73.917] (II) VESA(0): Modeline "1152x864"x70.0   96.77  1152 1224 1344 1536  864 865 868 900 -hsync +vsync (63.0 kHz)
[    73.917] (II) VESA(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[    73.917] (II) VESA(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[    73.917] (II) VESA(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[    73.917] (II) VESA(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
[    73.917] (II) VESA(0): Modeline "1680x1050"x0.0  187.00  1680 1800 1976 2272  1050 1053 1059 1099 -hsync +vsync (82.3 kHz)
[    73.917] (II) VESA(0): Modeline "1600x1200"x0.0  202.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (93.8 kHz)
[    73.917] (II) VESA(0): Searching for matching VESA mode(s):
[    73.918] Mode: 100 (640x400)
[    73.918]     ModeAttributes: 0x39f
[    73.918]     WinAAttributes: 0x7
[    73.918]     WinBAttributes: 0x0
[    73.918]     WinGranularity: 64
[    73.918]     WinSize: 64
[    73.918]     WinASegment: 0xa000
[    73.918]     WinBSegment: 0x0
[    73.918]     WinFuncPtr: 0xc000b4fb
[    73.918]     BytesPerScanline: 640
[    73.918]     XResolution: 640
[    73.918]     YResolution: 400
[    73.918]     XCharSize: 8
[    73.918]     YCharSize: 16
[    73.918]     NumberOfPlanes: 1
[    73.918]     BitsPerPixel: 8
[    73.918]     NumberOfBanks: 1
[    73.918]     MemoryModel: 4
[    73.918]     BankSize: 0
[    73.918]     NumberOfImages: 14
[    73.918]     RedMaskSize: 0
[    73.918]     RedFieldPosition: 0
[    73.918]     GreenMaskSize: 0
[    73.918]     GreenFieldPosition: 0
[    73.918]     BlueMaskSize: 0
[    73.918]     BlueFieldPosition: 0
[    73.918]     RsvdMaskSize: 0
[    73.918]     RsvdFieldPosition: 0
[    73.918]     DirectColorModeInfo: 0
[    73.918]     PhysBasePtr: 0xe8000000
[    73.918]     LinBytesPerScanLine: 640
[    73.918]     BnkNumberOfImagePages: 14
[    73.918]     LinNumberOfImagePages: 14
[    73.918]     LinRedMaskSize: 0
[    73.918]     LinRedFieldPosition: 0
[    73.918]     LinGreenMaskSize: 0
[    73.918]     LinGreenFieldPosition: 0
[    73.918]     LinBlueMaskSize: 0
[    73.918]     LinBlueFieldPosition: 0
[    73.918]     LinRsvdMaskSize: 0
[    73.918]     LinRsvdFieldPosition: 0
[    73.918]     MaxPixelClock: 229500000
[    73.919] Mode: 101 (640x480)
[    73.919]     ModeAttributes: 0x39f
[    73.919]     WinAAttributes: 0x7
[    73.919]     WinBAttributes: 0x0
[    73.919]     WinGranularity: 64
[    73.919]     WinSize: 64
[    73.919]     WinASegment: 0xa000
[    73.919]     WinBSegment: 0x0
[    73.919]     WinFuncPtr: 0xc000b4fb
[    73.919]     BytesPerScanline: 640
[    73.919]     XResolution: 640
[    73.919]     YResolution: 480
[    73.919]     XCharSize: 8
[    73.919]     YCharSize: 16
[    73.919]     NumberOfPlanes: 1
[    73.919]     BitsPerPixel: 8
[    73.919]     NumberOfBanks: 1
[    73.919]     MemoryModel: 4
[    73.919]     BankSize: 0
[    73.919]     NumberOfImages: 10
[    73.919]     RedMaskSize: 0
[    73.919]     RedFieldPosition: 0
[    73.919]     GreenMaskSize: 0
[    73.919]     GreenFieldPosition: 0
[    73.919]     BlueMaskSize: 0
[    73.919]     BlueFieldPosition: 0
[    73.919]     RsvdMaskSize: 0
[    73.919]     RsvdFieldPosition: 0
[    73.919]     DirectColorModeInfo: 0
[    73.919]     PhysBasePtr: 0xe8000000
[    73.919]     LinBytesPerScanLine: 640
[    73.919]     BnkNumberOfImagePages: 10
[    73.919]     LinNumberOfImagePages: 10
[    73.920]     LinRedMaskSize: 0
[    73.920]     LinRedFieldPosition: 0
[    73.920]     LinGreenMaskSize: 0
[    73.920]     LinGreenFieldPosition: 0
[    73.920]     LinBlueMaskSize: 0
[    73.920]     LinBlueFieldPosition: 0
[    73.920]     LinRsvdMaskSize: 0
[    73.920]     LinRsvdFieldPosition: 0
[    73.920]     MaxPixelClock: 229500000
[    73.920] Mode: 102 (800x600)
[    73.920]     ModeAttributes: 0x31f
[    73.920]     WinAAttributes: 0x7
[    73.920]     WinBAttributes: 0x0
[    73.920]     WinGranularity: 64
[    73.920]     WinSize: 64
[    73.920]     WinASegment: 0xa000
[    73.920]     WinBSegment: 0x0
[    73.920]     WinFuncPtr: 0xc000b4fb
[    73.920]     BytesPerScanline: 100
[    73.921]     XResolution: 800
[    73.921]     YResolution: 600
[    73.921]     XCharSize: 8
[    73.921]     YCharSize: 16
[    73.921]     NumberOfPlanes: 4
[    73.921]     BitsPerPixel: 4
[    73.921]     NumberOfBanks: 1
[    73.921]     MemoryModel: 3
[    73.921]     BankSize: 0
[    73.921]     NumberOfImages: 14
[    73.921]     RedMaskSize: 0
[    73.921]     RedFieldPosition: 0
[    73.921]     GreenMaskSize: 0
[    73.921]     GreenFieldPosition: 0
[    73.921]     BlueMaskSize: 0
[    73.921]     BlueFieldPosition: 0
[    73.921]     RsvdMaskSize: 0
[    73.921]     RsvdFieldPosition: 0
[    73.921]     DirectColorModeInfo: 0
[    73.921]     PhysBasePtr: 0x0
[    73.921]     LinBytesPerScanLine: 100
[    73.921]     BnkNumberOfImagePages: 14
[    73.921]     LinNumberOfImagePages: 14
[    73.921]     LinRedMaskSize: 0
[    73.921]     LinRedFieldPosition: 0
[    73.921]     LinGreenMaskSize: 0
[    73.921]     LinGreenFieldPosition: 0
[    73.921]     LinBlueMaskSize: 0
[    73.921]     LinBlueFieldPosition: 0
[    73.921]     LinRsvdMaskSize: 0
[    73.921]     LinRsvdFieldPosition: 0
[    73.921]     MaxPixelClock: 108500000
[    73.922] Mode: 103 (800x600)
[    73.922]     ModeAttributes: 0x39f
[    73.922]     WinAAttributes: 0x7
[    73.922]     WinBAttributes: 0x0
[    73.922]     WinGranularity: 64
[    73.922]     WinSize: 64
[    73.922]     WinASegment: 0xa000
[    73.922]     WinBSegment: 0x0
[    73.922]     WinFuncPtr: 0xc000b4fb
[    73.922]     BytesPerScanline: 800
[    73.922]     XResolution: 800
[    73.922]     YResolution: 600
[    73.922]     XCharSize: 8
[    73.922]     YCharSize: 16
[    73.922]     NumberOfPlanes: 1
[    73.922]     BitsPerPixel: 8
[    73.922]     NumberOfBanks: 1
[    73.922]     MemoryModel: 4
[    73.922]     BankSize: 0
[    73.922]     NumberOfImages: 6
[    73.922]     RedMaskSize: 0
[    73.922]     RedFieldPosition: 0
[    73.922]     GreenMaskSize: 0
[    73.922]     GreenFieldPosition: 0
[    73.922]     BlueMaskSize: 0
[    73.922]     BlueFieldPosition: 0
[    73.922]     RsvdMaskSize: 0
[    73.922]     RsvdFieldPosition: 0
[    73.922]     DirectColorModeInfo: 0
[    73.922]     PhysBasePtr: 0xe8000000
[    73.922]     LinBytesPerScanLine: 800
[    73.922]     BnkNumberOfImagePages: 6
[    73.922]     LinNumberOfImagePages: 6
[    73.922]     LinRedMaskSize: 0
[    73.922]     LinRedFieldPosition: 0
[    73.922]     LinGreenMaskSize: 0
[    73.922]     LinGreenFieldPosition: 0
[    73.922]     LinBlueMaskSize: 0
[    73.922]     LinBlueFieldPosition: 0
[    73.922]     LinRsvdMaskSize: 0
[    73.922]     LinRsvdFieldPosition: 0
[    73.922]     MaxPixelClock: 229500000
[    73.923] Mode: 104 (1024x768)
[    73.923]     ModeAttributes: 0x31f
[    73.923]     WinAAttributes: 0x7
[    73.923]     WinBAttributes: 0x0
[    73.923]     WinGranularity: 64
[    73.923]     WinSize: 64
[    73.923]     WinASegment: 0xa000
[    73.923]     WinBSegment: 0x0
[    73.923]     WinFuncPtr: 0xc000b4fb
[    73.923]     BytesPerScanline: 128
[    73.923]     XResolution: 1024
[    73.923]     YResolution: 768
[    73.923]     XCharSize: 8
[    73.923]     YCharSize: 16
[    73.923]     NumberOfPlanes: 4
[    73.923]     BitsPerPixel: 4
[    73.923]     NumberOfBanks: 1
[    73.923]     MemoryModel: 3
[    73.923]     BankSize: 0
[    73.923]     NumberOfImages: 6
[    73.923]     RedMaskSize: 0
[    73.923]     RedFieldPosition: 0
[    73.923]     GreenMaskSize: 0
[    73.923]     GreenFieldPosition: 0
[    73.923]     BlueMaskSize: 0
[    73.923]     BlueFieldPosition: 0
[    73.923]     RsvdMaskSize: 0
[    73.923]     RsvdFieldPosition: 0
[    73.923]     DirectColorModeInfo: 0
[    73.923]     PhysBasePtr: 0x0
[    73.923]     LinBytesPerScanLine: 128
[    73.923]     BnkNumberOfImagePages: 6
[    73.923]     LinNumberOfImagePages: 6
[    73.923]     LinRedMaskSize: 0
[    73.923]     LinRedFieldPosition: 0
[    73.923]     LinGreenMaskSize: 0
[    73.923]     LinGreenFieldPosition: 0
[    73.923]     LinBlueMaskSize: 0
[    73.923]     LinBlueFieldPosition: 0
[    73.923]     LinRsvdMaskSize: 0
[    73.923]     LinRsvdFieldPosition: 0
[    73.923]     MaxPixelClock: 108500000
[    73.924] Mode: 105 (1024x768)
[    73.924]     ModeAttributes: 0x39f
[    73.924]     WinAAttributes: 0x7
[    73.924]     WinBAttributes: 0x0
[    73.924]     WinGranularity: 64
[    73.924]     WinSize: 64
[    73.924]     WinASegment: 0xa000
[    73.924]     WinBSegment: 0x0
[    73.924]     WinFuncPtr: 0xc000b4fb
[    73.924]     BytesPerScanline: 1024
[    73.924]     XResolution: 1024
[    73.924]     YResolution: 768
[    73.924]     XCharSize: 8
[    73.924]     YCharSize: 16
[    73.924]     NumberOfPlanes: 1
[    73.924]     BitsPerPixel: 8
[    73.924]     NumberOfBanks: 1
[    73.924]     MemoryModel: 4
[    73.924]     BankSize: 0
[    73.924]     NumberOfImages: 3
[    73.924]     RedMaskSize: 0
[    73.924]     RedFieldPosition: 0
[    73.924]     GreenMaskSize: 0
[    73.924]     GreenFieldPosition: 0
[    73.924]     BlueMaskSize: 0
[    73.924]     BlueFieldPosition: 0
[    73.924]     RsvdMaskSize: 0
[    73.924]     RsvdFieldPosition: 0
[    73.924]     DirectColorModeInfo: 0
[    73.924]     PhysBasePtr: 0xe8000000
[    73.924]     LinBytesPerScanLine: 1024
[    73.924]     BnkNumberOfImagePages: 3
[    73.924]     LinNumberOfImagePages: 3
[    73.924]     LinRedMaskSize: 0
[    73.924]     LinRedFieldPosition: 0
[    73.924]     LinGreenMaskSize: 0
[    73.924]     LinGreenFieldPosition: 0
[    73.924]     LinBlueMaskSize: 0
[    73.924]     LinBlueFieldPosition: 0
[    73.924]     LinRsvdMaskSize: 0
[    73.924]     LinRsvdFieldPosition: 0
[    73.925]     MaxPixelClock: 229500000
[    73.925] Mode: 106 (1280x1024)
[    73.925]     ModeAttributes: 0x31f
[    73.925]     WinAAttributes: 0x7
[    73.925]     WinBAttributes: 0x0
[    73.925]     WinGranularity: 64
[    73.925]     WinSize: 64
[    73.925]     WinASegment: 0xa000
[    73.925]     WinBSegment: 0x0
[    73.925]     WinFuncPtr: 0xc000b4fb
[    73.925]     BytesPerScanline: 160
[    73.925]     XResolution: 1280
[    73.925]     YResolution: 1024
[    73.925]     XCharSize: 8
[    73.925]     YCharSize: 16
[    73.925]     NumberOfPlanes: 4
[    73.925]     BitsPerPixel: 4
[    73.925]     NumberOfBanks: 1
[    73.925]     MemoryModel: 3
[    73.925]     BankSize: 0
[    73.925]     NumberOfImages: 3
[    73.925]     RedMaskSize: 0
[    73.925]     RedFieldPosition: 0
[    73.925]     GreenMaskSize: 0
[    73.926]     GreenFieldPosition: 0
[    73.926]     BlueMaskSize: 0
[    73.926]     BlueFieldPosition: 0
[    73.926]     RsvdMaskSize: 0
[    73.926]     RsvdFieldPosition: 0
[    73.926]     DirectColorModeInfo: 0
[    73.926]     PhysBasePtr: 0x0
[    73.926]     LinBytesPerScanLine: 160
[    73.926]     BnkNumberOfImagePages: 3
[    73.926]     LinNumberOfImagePages: 3
[    73.926]     LinRedMaskSize: 0
[    73.926]     LinRedFieldPosition: 0
[    73.926]     LinGreenMaskSize: 0
[    73.926]     LinGreenFieldPosition: 0
[    73.926]     LinBlueMaskSize: 0
[    73.926]     LinBlueFieldPosition: 0
[    73.926]     LinRsvdMaskSize: 0
[    73.926]     LinRsvdFieldPosition: 0
[    73.926]     MaxPixelClock: 108500000
[    73.927] Mode: 107 (1280x1024)
[    73.927]     ModeAttributes: 0x39f
[    73.927]     WinAAttributes: 0x7
[    73.927]     WinBAttributes: 0x0
[    73.927]     WinGranularity: 64
[    73.927]     WinSize: 64
[    73.927]     WinASegment: 0xa000
[    73.927]     WinBSegment: 0x0
[    73.927]     WinFuncPtr: 0xc000b4fb
[    73.927]     BytesPerScanline: 1280
[    73.927]     XResolution: 1280
[    73.927]     YResolution: 1024
[    73.927]     XCharSize: 8
[    73.927]     YCharSize: 16
[    73.927]     NumberOfPlanes: 1
[    73.927]     BitsPerPixel: 8
[    73.927]     NumberOfBanks: 1
[    73.927]     MemoryModel: 4
[    73.927]     BankSize: 0
[    73.927]     NumberOfImages: 1
[    73.927]     RedMaskSize: 0
[    73.927]     RedFieldPosition: 0
[    73.927]     GreenMaskSize: 0
[    73.927]     GreenFieldPosition: 0
[    73.927]     BlueMaskSize: 0
[    73.927]     BlueFieldPosition: 0
[    73.927]     RsvdMaskSize: 0
[    73.927]     RsvdFieldPosition: 0
[    73.927]     DirectColorModeInfo: 0
[    73.927]     PhysBasePtr: 0xe8000000
[    73.927]     LinBytesPerScanLine: 1280
[    73.927]     BnkNumberOfImagePages: 1
[    73.927]     LinNumberOfImagePages: 1
[    73.927]     LinRedMaskSize: 0
[    73.927]     LinRedFieldPosition: 0
[    73.927]     LinGreenMaskSize: 0
[    73.927]     LinGreenFieldPosition: 0
[    73.927]     LinBlueMaskSize: 0
[    73.927]     LinBlueFieldPosition: 0
[    73.927]     LinRsvdMaskSize: 0
[    73.927]     LinRsvdFieldPosition: 0
[    73.927]     MaxPixelClock: 229500000
[    73.928] Mode: 10e (320x200)
[    73.928]     ModeAttributes: 0x39f
[    73.928]     WinAAttributes: 0x7
[    73.928]     WinBAttributes: 0x0
[    73.928]     WinGranularity: 64
[    73.928]     WinSize: 64
[    73.928]     WinASegment: 0xa000
[    73.928]     WinBSegment: 0x0
[    73.928]     WinFuncPtr: 0xc000b4fb
[    73.928]     BytesPerScanline: 640
[    73.928]     XResolution: 320
[    73.928]     YResolution: 200
[    73.928]     XCharSize: 8
[    73.928]     YCharSize: 8
[    73.928]     NumberOfPlanes: 1
[    73.928]     BitsPerPixel: 16
[    73.928]     NumberOfBanks: 1
[    73.928]     MemoryModel: 6
[    73.928]     BankSize: 0
[    73.928]     NumberOfImages: 30
[    73.928]     RedMaskSize: 5
[    73.928]     RedFieldPosition: 11
[    73.928]     GreenMaskSize: 6
[    73.928]     GreenFieldPosition: 5
[    73.928]     BlueMaskSize: 5
[    73.928]     BlueFieldPosition: 0
[    73.928]     RsvdMaskSize: 0
[    73.928]     RsvdFieldPosition: 0
[    73.928]     DirectColorModeInfo: 0
[    73.928]     PhysBasePtr: 0xe8000000
[    73.928]     LinBytesPerScanLine: 640
[    73.928]     BnkNumberOfImagePages: 30
[    73.928]     LinNumberOfImagePages: 30
[    73.928]     LinRedMaskSize: 5
[    73.928]     LinRedFieldPosition: 11
[    73.928]     LinGreenMaskSize: 6
[    73.928]     LinGreenFieldPosition: 5
[    73.928]     LinBlueMaskSize: 5
[    73.928]     LinBlueFieldPosition: 0
[    73.928]     LinRsvdMaskSize: 0
[    73.928]     LinRsvdFieldPosition: 0
[    73.928]     MaxPixelClock: 229500000
[    73.929] *Mode: 10f (320x200)
[    73.929]     ModeAttributes: 0x39f
[    73.929]     WinAAttributes: 0x7
[    73.929]     WinBAttributes: 0x0
[    73.929]     WinGranularity: 64
[    73.929]     WinSize: 64
[    73.929]     WinASegment: 0xa000
[    73.929]     WinBSegment: 0x0
[    73.929]     WinFuncPtr: 0xc000b4fb
[    73.929]     BytesPerScanline: 1280
[    73.929]     XResolution: 320
[    73.929]     YResolution: 200
[    73.929]     XCharSize: 8
[    73.929]     YCharSize: 8
[    73.929]     NumberOfPlanes: 1
[    73.929]     BitsPerPixel: 32
[    73.929]     NumberOfBanks: 1
[    73.929]     MemoryModel: 6
[    73.929]     BankSize: 0
[    73.929]     NumberOfImages: 14
[    73.929]     RedMaskSize: 8
[    73.929]     RedFieldPosition: 16
[    73.929]     GreenMaskSize: 8
[    73.929]     GreenFieldPosition: 8
[    73.929]     BlueMaskSize: 8
[    73.929]     BlueFieldPosition: 0
[    73.929]     RsvdMaskSize: 8
[    73.929]     RsvdFieldPosition: 24
[    73.929]     DirectColorModeInfo: 0
[    73.929]     PhysBasePtr: 0xe8000000
[    73.929]     LinBytesPerScanLine: 1280
[    73.929]     BnkNumberOfImagePages: 14
[    73.929]     LinNumberOfImagePages: 14
[    73.929]     LinRedMaskSize: 8
[    73.929]     LinRedFieldPosition: 16
[    73.929]     LinGreenMaskSize: 8
[    73.929]     LinGreenFieldPosition: 8
[    73.929]     LinBlueMaskSize: 8
[    73.929]     LinBlueFieldPosition: 0
[    73.929]     LinRsvdMaskSize: 8
[    73.929]     LinRsvdFieldPosition: 24
[    73.929]     MaxPixelClock: 229500000
[    73.930] Mode: 111 (640x480)
[    73.930]     ModeAttributes: 0x39f
[    73.930]     WinAAttributes: 0x7
[    73.930]     WinBAttributes: 0x0
[    73.930]     WinGranularity: 64
[    73.930]     WinSize: 64
[    73.930]     WinASegment: 0xa000
[    73.930]     WinBSegment: 0x0
[    73.930]     WinFuncPtr: 0xc000b4fb
[    73.930]     BytesPerScanline: 1280
[    73.930]     XResolution: 640
[    73.930]     YResolution: 480
[    73.930]     XCharSize: 8
[    73.930]     YCharSize: 16
[    73.930]     NumberOfPlanes: 1
[    73.930]     BitsPerPixel: 16
[    73.930]     NumberOfBanks: 1
[    73.930]     MemoryModel: 6
[    73.930]     BankSize: 0
[    73.930]     NumberOfImages: 4
[    73.930]     RedMaskSize: 5
[    73.930]     RedFieldPosition: 11
[    73.930]     GreenMaskSize: 6
[    73.930]     GreenFieldPosition: 5
[    73.930]     BlueMaskSize: 5
[    73.930]     BlueFieldPosition: 0
[    73.930]     RsvdMaskSize: 0
[    73.930]     RsvdFieldPosition: 0
[    73.931]     DirectColorModeInfo: 0
[    73.931]     PhysBasePtr: 0xe8000000
[    73.931]     LinBytesPerScanLine: 1280
[    73.931]     BnkNumberOfImagePages: 4
[    73.931]     LinNumberOfImagePages: 4
[    73.931]     LinRedMaskSize: 5
[    73.931]     LinRedFieldPosition: 11
[    73.931]     LinGreenMaskSize: 6
[    73.931]     LinGreenFieldPosition: 5
[    73.931]     LinBlueMaskSize: 5
[    73.931]     LinBlueFieldPosition: 0
[    73.931]     LinRsvdMaskSize: 0
[    73.931]     LinRsvdFieldPosition: 0
[    73.931]     MaxPixelClock: 229500000
[    73.931] *Mode: 112 (640x480)
[    73.931]     ModeAttributes: 0x39f
[    73.931]     WinAAttributes: 0x7
[    73.931]     WinBAttributes: 0x0
[    73.931]     WinGranularity: 64
[    73.931]     WinSize: 64
[    73.931]     WinASegment: 0xa000
[    73.931]     WinBSegment: 0x0
[    73.931]     WinFuncPtr: 0xc000b4fb
[    73.931]     BytesPerScanline: 2560
[    73.931]     XResolution: 640
[    73.931]     YResolution: 480
[    73.931]     XCharSize: 8
[    73.931]     YCharSize: 16
[    73.931]     NumberOfPlanes: 1
[    73.932]     BitsPerPixel: 32
[    73.932]     NumberOfBanks: 1
[    73.932]     MemoryModel: 6
[    73.932]     BankSize: 0
[    73.932]     NumberOfImages: 1
[    73.932]     RedMaskSize: 8
[    73.932]     RedFieldPosition: 16
[    73.932]     GreenMaskSize: 8
[    73.932]     GreenFieldPosition: 8
[    73.932]     BlueMaskSize: 8
[    73.932]     BlueFieldPosition: 0
[    73.932]     RsvdMaskSize: 8
[    73.932]     RsvdFieldPosition: 24
[    73.932]     DirectColorModeInfo: 0
[    73.932]     PhysBasePtr: 0xe8000000
[    73.932]     LinBytesPerScanLine: 2560
[    73.932]     BnkNumberOfImagePages: 1
[    73.932]     LinNumberOfImagePages: 1
[    73.932]     LinRedMaskSize: 8
[    73.932]     LinRedFieldPosition: 16
[    73.932]     LinGreenMaskSize: 8
[    73.932]     LinGreenFieldPosition: 8
[    73.932]     LinBlueMaskSize: 8
[    73.932]     LinBlueFieldPosition: 0
[    73.932]     LinRsvdMaskSize: 8
[    73.932]     LinRsvdFieldPosition: 24
[    73.932]     MaxPixelClock: 229500000
[    73.933] Mode: 114 (800x600)
[    73.933]     ModeAttributes: 0x39f
[    73.933]     WinAAttributes: 0x7
[    73.933]     WinBAttributes: 0x0
[    73.933]     WinGranularity: 64
[    73.933]     WinSize: 64
[    73.933]     WinASegment: 0xa000
[    73.933]     WinBSegment: 0x0
[    73.933]     WinFuncPtr: 0xc000b4fb
[    73.933]     BytesPerScanline: 1600
[    73.933]     XResolution: 800
[    73.933]     YResolution: 600
[    73.933]     XCharSize: 8
[    73.933]     YCharSize: 16
[    73.933]     NumberOfPlanes: 1
[    73.933]     BitsPerPixel: 16
[    73.933]     NumberOfBanks: 1
[    73.933]     MemoryModel: 6
[    73.933]     BankSize: 0
[    73.933]     NumberOfImages: 2
[    73.933]     RedMaskSize: 5
[    73.933]     RedFieldPosition: 11
[    73.933]     GreenMaskSize: 6
[    73.933]     GreenFieldPosition: 5
[    73.933]     BlueMaskSize: 5
[    73.933]     BlueFieldPosition: 0
[    73.933]     RsvdMaskSize: 0
[    73.933]     RsvdFieldPosition: 0
[    73.933]     DirectColorModeInfo: 0
[    73.933]     PhysBasePtr: 0xe8000000
[    73.933]     LinBytesPerScanLine: 1600
[    73.933]     BnkNumberOfImagePages: 2
[    73.933]     LinNumberOfImagePages: 2
[    73.933]     LinRedMaskSize: 5
[    73.933]     LinRedFieldPosition: 11
[    73.933]     LinGreenMaskSize: 6
[    73.933]     LinGreenFieldPosition: 5
[    73.933]     LinBlueMaskSize: 5
[    73.933]     LinBlueFieldPosition: 0
[    73.933]     LinRsvdMaskSize: 0
[    73.933]     LinRsvdFieldPosition: 0
[    73.933]     MaxPixelClock: 229500000
[    73.934] *Mode: 115 (800x600)
[    73.934]     ModeAttributes: 0x39f
[    73.934]     WinAAttributes: 0x7
[    73.934]     WinBAttributes: 0x0
[    73.934]     WinGranularity: 64
[    73.934]     WinSize: 64
[    73.934]     WinASegment: 0xa000
[    73.934]     WinBSegment: 0x0
[    73.934]     WinFuncPtr: 0xc000b4fb
[    73.934]     BytesPerScanline: 3200
[    73.934]     XResolution: 800
[    73.934]     YResolution: 600
[    73.934]     XCharSize: 8
[    73.934]     YCharSize: 16
[    73.934]     NumberOfPlanes: 1
[    73.934]     BitsPerPixel: 32
[    73.934]     NumberOfBanks: 1
[    73.934]     MemoryModel: 6
[    73.934]     BankSize: 0
[    73.934]     NumberOfImages: 1
[    73.934]     RedMaskSize: 8
[    73.934]     RedFieldPosition: 16
[    73.934]     GreenMaskSize: 8
[    73.934]     GreenFieldPosition: 8
[    73.934]     BlueMaskSize: 8
[    73.934]     BlueFieldPosition: 0
[    73.934]     RsvdMaskSize: 8
[    73.934]     RsvdFieldPosition: 24
[    73.934]     DirectColorModeInfo: 0
[    73.934]     PhysBasePtr: 0xe8000000
[    73.934]     LinBytesPerScanLine: 3200
[    73.934]     BnkNumberOfImagePages: 1
[    73.934]     LinNumberOfImagePages: 1
[    73.934]     LinRedMaskSize: 8
[    73.934]     LinRedFieldPosition: 16
[    73.934]     LinGreenMaskSize: 8
[    73.934]     LinGreenFieldPosition: 8
[    73.934]     LinBlueMaskSize: 8
[    73.934]     LinBlueFieldPosition: 0
[    73.934]     LinRsvdMaskSize: 8
[    73.934]     LinRsvdFieldPosition: 24
[    73.934]     MaxPixelClock: 229500000
[    73.935] Mode: 117 (1024x768)
[    73.935]     ModeAttributes: 0x39f
[    73.935]     WinAAttributes: 0x7
[    73.935]     WinBAttributes: 0x0
[    73.935]     WinGranularity: 64
[    73.935]     WinSize: 64
[    73.935]     WinASegment: 0xa000
[    73.935]     WinBSegment: 0x0
[    73.935]     WinFuncPtr: 0xc000b4fb
[    73.935]     BytesPerScanline: 2048
[    73.935]     XResolution: 1024
[    73.935]     YResolution: 768
[    73.935]     XCharSize: 8
[    73.935]     YCharSize: 16
[    73.935]     NumberOfPlanes: 1
[    73.935]     BitsPerPixel: 16
[    73.935]     NumberOfBanks: 1
[    73.935]     MemoryModel: 6
[    73.935]     BankSize: 0
[    73.935]     NumberOfImages: 1
[    73.935]     RedMaskSize: 5
[    73.935]     RedFieldPosition: 11
[    73.935]     GreenMaskSize: 6
[    73.935]     GreenFieldPosition: 5
[    73.935]     BlueMaskSize: 5
[    73.935]     BlueFieldPosition: 0
[    73.935]     RsvdMaskSize: 0
[    73.935]     RsvdFieldPosition: 0
[    73.935]     DirectColorModeInfo: 0
[    73.935]     PhysBasePtr: 0xe8000000
[    73.935]     LinBytesPerScanLine: 2048
[    73.935]     BnkNumberOfImagePages: 1
[    73.935]     LinNumberOfImagePages: 1
[    73.935]     LinRedMaskSize: 5
[    73.935]     LinRedFieldPosition: 11
[    73.935]     LinGreenMaskSize: 6
[    73.935]     LinGreenFieldPosition: 5
[    73.935]     LinBlueMaskSize: 5
[    73.935]     LinBlueFieldPosition: 0
[    73.935]     LinRsvdMaskSize: 0
[    73.935]     LinRsvdFieldPosition: 0
[    73.935]     MaxPixelClock: 229500000
[    73.936] *Mode: 118 (1024x768)
[    73.936]     ModeAttributes: 0x39f
[    73.936]     WinAAttributes: 0x7
[    73.936]     WinBAttributes: 0x0
[    73.936]     WinGranularity: 64
[    73.936]     WinSize: 64
[    73.936]     WinASegment: 0xa000
[    73.936]     WinBSegment: 0x0
[    73.936]     WinFuncPtr: 0xc000b4fb
[    73.936]     BytesPerScanline: 4096
[    73.936]     XResolution: 1024
[    73.936]     YResolution: 768
[    73.936]     XCharSize: 8
[    73.936]     YCharSize: 16
[    73.936]     NumberOfPlanes: 1
[    73.936]     BitsPerPixel: 32
[    73.936]     NumberOfBanks: 1
[    73.936]     MemoryModel: 6
[    73.936]     BankSize: 0
[    73.936]     NumberOfImages: 1
[    73.936]     RedMaskSize: 8
[    73.936]     RedFieldPosition: 16
[    73.936]     GreenMaskSize: 8
[    73.936]     GreenFieldPosition: 8
[    73.936]     BlueMaskSize: 8
[    73.936]     BlueFieldPosition: 0
[    73.936]     RsvdMaskSize: 8
[    73.936]     RsvdFieldPosition: 24
[    73.936]     DirectColorModeInfo: 0
[    73.936]     PhysBasePtr: 0xe8000000
[    73.937]     LinBytesPerScanLine: 4096
[    73.937]     BnkNumberOfImagePages: 1
[    73.937]     LinNumberOfImagePages: 1
[    73.937]     LinRedMaskSize: 8
[    73.937]     LinRedFieldPosition: 16
[    73.937]     LinGreenMaskSize: 8
[    73.937]     LinGreenFieldPosition: 8
[    73.937]     LinBlueMaskSize: 8
[    73.937]     LinBlueFieldPosition: 0
[    73.937]     LinRsvdMaskSize: 8
[    73.937]     LinRsvdFieldPosition: 24
[    73.937]     MaxPixelClock: 229500000
[    73.937] Mode: 11a (1280x1024)
[    73.937]     ModeAttributes: 0x39f
[    73.937]     WinAAttributes: 0x7
[    73.937]     WinBAttributes: 0x0
[    73.937]     WinGranularity: 64
[    73.937]     WinSize: 64
[    73.937]     WinASegment: 0xa000
[    73.937]     WinBSegment: 0x0
[    73.937]     WinFuncPtr: 0xc000b4fb
[    73.937]     BytesPerScanline: 2560
[    73.937]     XResolution: 1280
[    73.938]     YResolution: 1024
[    73.938]     XCharSize: 8
[    73.938]     YCharSize: 16
[    73.938]     NumberOfPlanes: 1
[    73.938]     BitsPerPixel: 16
[    73.938]     NumberOfBanks: 1
[    73.938]     MemoryModel: 6
[    73.938]     BankSize: 0
[    73.938]     NumberOfImages: 1
[    73.938]     RedMaskSize: 5
[    73.938]     RedFieldPosition: 11
[    73.938]     GreenMaskSize: 6
[    73.938]     GreenFieldPosition: 5
[    73.938]     BlueMaskSize: 5
[    73.938]     BlueFieldPosition: 0
[    73.938]     RsvdMaskSize: 0
[    73.938]     RsvdFieldPosition: 0
[    73.938]     DirectColorModeInfo: 0
[    73.938]     PhysBasePtr: 0xe8000000
[    73.938]     LinBytesPerScanLine: 2560
[    73.938]     BnkNumberOfImagePages: 1
[    73.938]     LinNumberOfImagePages: 1
[    73.938]     LinRedMaskSize: 5
[    73.938]     LinRedFieldPosition: 11
[    73.938]     LinGreenMaskSize: 6
[    73.938]     LinGreenFieldPosition: 5
[    73.938]     LinBlueMaskSize: 5
[    73.938]     LinBlueFieldPosition: 0
[    73.938]     LinRsvdMaskSize: 0
[    73.938]     LinRsvdFieldPosition: 0
[    73.938]     MaxPixelClock: 229500000
[    73.939] *Mode: 11b (1280x1024)
[    73.939]     ModeAttributes: 0x39f
[    73.939]     WinAAttributes: 0x7
[    73.939]     WinBAttributes: 0x0
[    73.939]     WinGranularity: 64
[    73.939]     WinSize: 64
[    73.939]     WinASegment: 0xa000
[    73.939]     WinBSegment: 0x0
[    73.939]     WinFuncPtr: 0xc000b4fb
[    73.939]     BytesPerScanline: 5120
[    73.939]     XResolution: 1280
[    73.939]     YResolution: 1024
[    73.939]     XCharSize: 8
[    73.939]     YCharSize: 16
[    73.939]     NumberOfPlanes: 1
[    73.939]     BitsPerPixel: 32
[    73.939]     NumberOfBanks: 1
[    73.939]     MemoryModel: 6
[    73.939]     BankSize: 0
[    73.939]     NumberOfImages: 0
[    73.939]     RedMaskSize: 8
[    73.939]     RedFieldPosition: 16
[    73.939]     GreenMaskSize: 8
[    73.939]     GreenFieldPosition: 8
[    73.939]     BlueMaskSize: 8
[    73.939]     BlueFieldPosition: 0
[    73.939]     RsvdMaskSize: 8
[    73.939]     RsvdFieldPosition: 24
[    73.939]     DirectColorModeInfo: 0
[    73.939]     PhysBasePtr: 0xe8000000
[    73.939]     LinBytesPerScanLine: 5120
[    73.939]     BnkNumberOfImagePages: 0
[    73.939]     LinNumberOfImagePages: 0
[    73.939]     LinRedMaskSize: 8
[    73.939]     LinRedFieldPosition: 16
[    73.939]     LinGreenMaskSize: 8
[    73.939]     LinGreenFieldPosition: 8
[    73.939]     LinBlueMaskSize: 8
[    73.939]     LinBlueFieldPosition: 0
[    73.939]     LinRsvdMaskSize: 8
[    73.939]     LinRsvdFieldPosition: 24
[    73.939]     MaxPixelClock: 229500000
[    73.940] Mode: 130 (320x200)
[    73.940]     ModeAttributes: 0x39f
[    73.940]     WinAAttributes: 0x7
[    73.940]     WinBAttributes: 0x0
[    73.940]     WinGranularity: 64
[    73.940]     WinSize: 64
[    73.940]     WinASegment: 0xa000
[    73.940]     WinBSegment: 0x0
[    73.940]     WinFuncPtr: 0xc000b4fb
[    73.940]     BytesPerScanline: 320
[    73.940]     XResolution: 320
[    73.940]     YResolution: 200
[    73.940]     XCharSize: 8
[    73.940]     YCharSize: 8
[    73.940]     NumberOfPlanes: 1
[    73.940]     BitsPerPixel: 8
[    73.940]     NumberOfBanks: 1
[    73.940]     MemoryModel: 4
[    73.940]     BankSize: 0
[    73.940]     NumberOfImages: 62
[    73.940]     RedMaskSize: 0
[    73.940]     RedFieldPosition: 0
[    73.940]     GreenMaskSize: 0
[    73.940]     GreenFieldPosition: 0
[    73.940]     BlueMaskSize: 0
[    73.940]     BlueFieldPosition: 0
[    73.940]     RsvdMaskSize: 0
[    73.940]     RsvdFieldPosition: 0
[    73.940]     DirectColorModeInfo: 0
[    73.940]     PhysBasePtr: 0xe8000000
[    73.940]     LinBytesPerScanLine: 320
[    73.940]     BnkNumberOfImagePages: 62
[    73.940]     LinNumberOfImagePages: 62
[    73.940]     LinRedMaskSize: 0
[    73.940]     LinRedFieldPosition: 0
[    73.940]     LinGreenMaskSize: 0
[    73.940]     LinGreenFieldPosition: 0
[    73.940]     LinBlueMaskSize: 0
[    73.940]     LinBlueFieldPosition: 0
[    73.940]     LinRsvdMaskSize: 0
[    73.940]     LinRsvdFieldPosition: 0
[    73.940]     MaxPixelClock: 229500000
[    73.941] Mode: 131 (320x400)
[    73.941]     ModeAttributes: 0x39f
[    73.941]     WinAAttributes: 0x7
[    73.941]     WinBAttributes: 0x0
[    73.941]     WinGranularity: 64
[    73.941]     WinSize: 64
[    73.941]     WinASegment: 0xa000
[    73.941]     WinBSegment: 0x0
[    73.941]     WinFuncPtr: 0xc000b4fb
[    73.941]     BytesPerScanline: 320
[    73.941]     XResolution: 320
[    73.941]     YResolution: 400
[    73.941]     XCharSize: 8
[    73.941]     YCharSize: 16
[    73.941]     NumberOfPlanes: 1
[    73.941]     BitsPerPixel: 8
[    73.941]     NumberOfBanks: 1
[    73.941]     MemoryModel: 4
[    73.941]     BankSize: 0
[    73.941]     NumberOfImages: 30
[    73.941]     RedMaskSize: 0
[    73.941]     RedFieldPosition: 0
[    73.941]     GreenMaskSize: 0
[    73.941]     GreenFieldPosition: 0
[    73.941]     BlueMaskSize: 0
[    73.941]     BlueFieldPosition: 0
[    73.941]     RsvdMaskSize: 0
[    73.941]     RsvdFieldPosition: 0
[    73.941]     DirectColorModeInfo: 0
[    73.941]     PhysBasePtr: 0xe8000000
[    73.941]     LinBytesPerScanLine: 320
[    73.941]     BnkNumberOfImagePages: 30
[    73.941]     LinNumberOfImagePages: 30
[    73.941]     LinRedMaskSize: 0
[    73.941]     LinRedFieldPosition: 0
[    73.941]     LinGreenMaskSize: 0
[    73.941]     LinGreenFieldPosition: 0
[    73.941]     LinBlueMaskSize: 0
[    73.941]     LinBlueFieldPosition: 0
[    73.941]     LinRsvdMaskSize: 0
[    73.941]     LinRsvdFieldPosition: 0
[    73.941]     MaxPixelClock: 229500000
[    73.942] Mode: 132 (320x400)
[    73.942]     ModeAttributes: 0x39f
[    73.942]     WinAAttributes: 0x7
[    73.942]     WinBAttributes: 0x0
[    73.942]     WinGranularity: 64
[    73.942]     WinSize: 64
[    73.942]     WinASegment: 0xa000
[    73.942]     WinBSegment: 0x0
[    73.942]     WinFuncPtr: 0xc000b4fb
[    73.942]     BytesPerScanline: 640
[    73.942]     XResolution: 320
[    73.942]     YResolution: 400
[    73.942]     XCharSize: 8
[    73.942]     YCharSize: 16
[    73.942]     NumberOfPlanes: 1
[    73.942]     BitsPerPixel: 16
[    73.942]     NumberOfBanks: 1
[    73.942]     MemoryModel: 6
[    73.942]     BankSize: 0
[    73.942]     NumberOfImages: 14
[    73.942]     RedMaskSize: 5
[    73.942]     RedFieldPosition: 11
[    73.942]     GreenMaskSize: 6
[    73.942]     GreenFieldPosition: 5
[    73.942]     BlueMaskSize: 5
[    73.942]     BlueFieldPosition: 0
[    73.942]     RsvdMaskSize: 0
[    73.942]     RsvdFieldPosition: 0
[    73.942]     DirectColorModeInfo: 0
[    73.942]     PhysBasePtr: 0xe8000000
[    73.942]     LinBytesPerScanLine: 640
[    73.942]     BnkNumberOfImagePages: 14
[    73.942]     LinNumberOfImagePages: 14
[    73.942]     LinRedMaskSize: 5
[    73.942]     LinRedFieldPosition: 11
[    73.942]     LinGreenMaskSize: 6
[    73.942]     LinGreenFieldPosition: 5
[    73.942]     LinBlueMaskSize: 5
[    73.942]     LinBlueFieldPosition: 0
[    73.942]     LinRsvdMaskSize: 0
[    73.942]     LinRsvdFieldPosition: 0
[    73.942]     MaxPixelClock: 229500000
[    73.943] *Mode: 133 (320x400)
[    73.943]     ModeAttributes: 0x39f
[    73.943]     WinAAttributes: 0x7
[    73.943]     WinBAttributes: 0x0
[    73.943]     WinGranularity: 64
[    73.943]     WinSize: 64
[    73.943]     WinASegment: 0xa000
[    73.943]     WinBSegment: 0x0
[    73.943]     WinFuncPtr: 0xc000b4fb
[    73.943]     BytesPerScanline: 1280
[    73.943]     XResolution: 320
[    73.943]     YResolution: 400
[    73.943]     XCharSize: 8
[    73.943]     YCharSize: 16
[    73.943]     NumberOfPlanes: 1
[    73.943]     BitsPerPixel: 32
[    73.943]     NumberOfBanks: 1
[    73.943]     MemoryModel: 6
[    73.943]     BankSize: 0
[    73.943]     NumberOfImages: 6
[    73.943]     RedMaskSize: 8
[    73.943]     RedFieldPosition: 16
[    73.943]     GreenMaskSize: 8
[    73.943]     GreenFieldPosition: 8
[    73.943]     BlueMaskSize: 8
[    73.943]     BlueFieldPosition: 0
[    73.943]     RsvdMaskSize: 8
[    73.944]     RsvdFieldPosition: 24
[    73.944]     DirectColorModeInfo: 0
[    73.944]     PhysBasePtr: 0xe8000000
[    73.944]     LinBytesPerScanLine: 1280
[    73.944]     BnkNumberOfImagePages: 6
[    73.944]     LinNumberOfImagePages: 6
[    73.944]     LinRedMaskSize: 8
[    73.944]     LinRedFieldPosition: 16
[    73.944]     LinGreenMaskSize: 8
[    73.944]     LinGreenFieldPosition: 8
[    73.944]     LinBlueMaskSize: 8
[    73.944]     LinBlueFieldPosition: 0
[    73.944]     LinRsvdMaskSize: 8
[    73.944]     LinRsvdFieldPosition: 24
[    73.944]     MaxPixelClock: 229500000
[    73.944] Mode: 134 (320x240)
[    73.944]     ModeAttributes: 0x39f
[    73.944]     WinAAttributes: 0x7
[    73.944]     WinBAttributes: 0x0
[    73.944]     WinGranularity: 64
[    73.944]     WinSize: 64
[    73.944]     WinASegment: 0xa000
[    73.944]     WinBSegment: 0x0
[    73.944]     WinFuncPtr: 0xc000b4fb
[    73.944]     BytesPerScanline: 320
[    73.945]     XResolution: 320
[    73.945]     YResolution: 240
[    73.945]     XCharSize: 8
[    73.945]     YCharSize: 8
[    73.945]     NumberOfPlanes: 1
[    73.945]     BitsPerPixel: 8
[    73.945]     NumberOfBanks: 1
[    73.945]     MemoryModel: 4
[    73.945]     BankSize: 0
[    73.945]     NumberOfImages: 30
[    73.945]     RedMaskSize: 0
[    73.945]     RedFieldPosition: 0
[    73.945]     GreenMaskSize: 0
[    73.945]     GreenFieldPosition: 0
[    73.945]     BlueMaskSize: 0
[    73.945]     BlueFieldPosition: 0
[    73.945]     RsvdMaskSize: 0
[    73.945]     RsvdFieldPosition: 0
[    73.945]     DirectColorModeInfo: 0
[    73.945]     PhysBasePtr: 0xe8000000
[    73.945]     LinBytesPerScanLine: 320
[    73.945]     BnkNumberOfImagePages: 30
[    73.945]     LinNumberOfImagePages: 30
[    73.945]     LinRedMaskSize: 0
[    73.945]     LinRedFieldPosition: 0
[    73.945]     LinGreenMaskSize: 0
[    73.945]     LinGreenFieldPosition: 0
[    73.945]     LinBlueMaskSize: 0
[    73.945]     LinBlueFieldPosition: 0
[    73.945]     LinRsvdMaskSize: 0
[    73.945]     LinRsvdFieldPosition: 0
[    73.945]     MaxPixelClock: 229500000
[    73.946] Mode: 135 (320x240)
[    73.946]     ModeAttributes: 0x39f
[    73.946]     WinAAttributes: 0x7
[    73.946]     WinBAttributes: 0x0
[    73.946]     WinGranularity: 64
[    73.946]     WinSize: 64
[    73.946]     WinASegment: 0xa000
[    73.946]     WinBSegment: 0x0
[    73.946]     WinFuncPtr: 0xc000b4fb
[    73.946]     BytesPerScanline: 640
[    73.946]     XResolution: 320
[    73.946]     YResolution: 240
[    73.946]     XCharSize: 8
[    73.946]     YCharSize: 8
[    73.946]     NumberOfPlanes: 1
[    73.946]     BitsPerPixel: 16
[    73.946]     NumberOfBanks: 1
[    73.946]     MemoryModel: 6
[    73.946]     BankSize: 0
[    73.946]     NumberOfImages: 19
[    73.946]     RedMaskSize: 5
[    73.946]     RedFieldPosition: 11
[    73.946]     GreenMaskSize: 6
[    73.946]     GreenFieldPosition: 5
[    73.946]     BlueMaskSize: 5
[    73.946]     BlueFieldPosition: 0
[    73.946]     RsvdMaskSize: 0
[    73.946]     RsvdFieldPosition: 0
[    73.946]     DirectColorModeInfo: 0
[    73.946]     PhysBasePtr: 0xe8000000
[    73.946]     LinBytesPerScanLine: 640
[    73.946]     BnkNumberOfImagePages: 19
[    73.946]     LinNumberOfImagePages: 19
[    73.946]     LinRedMaskSize: 5
[    73.946]     LinRedFieldPosition: 11
[    73.946]     LinGreenMaskSize: 6
[    73.946]     LinGreenFieldPosition: 5
[    73.946]     LinBlueMaskSize: 5
[    73.946]     LinBlueFieldPosition: 0
[    73.946]     LinRsvdMaskSize: 0
[    73.946]     LinRsvdFieldPosition: 0
[    73.946]     MaxPixelClock: 229500000
[    73.947] *Mode: 136 (320x240)
[    73.947]     ModeAttributes: 0x39f
[    73.947]     WinAAttributes: 0x7
[    73.947]     WinBAttributes: 0x0
[    73.947]     WinGranularity: 64
[    73.947]     WinSize: 64
[    73.947]     WinASegment: 0xa000
[    73.947]     WinBSegment: 0x0
[    73.947]     WinFuncPtr: 0xc000b4fb
[    73.947]     BytesPerScanline: 1280
[    73.947]     XResolution: 320
[    73.947]     YResolution: 240
[    73.947]     XCharSize: 8
[    73.947]     YCharSize: 8
[    73.947]     NumberOfPlanes: 1
[    73.947]     BitsPerPixel: 32
[    73.947]     NumberOfBanks: 1
[    73.947]     MemoryModel: 6
[    73.947]     BankSize: 0
[    73.947]     NumberOfImages: 10
[    73.947]     RedMaskSize: 8
[    73.947]     RedFieldPosition: 16
[    73.947]     GreenMaskSize: 8
[    73.947]     GreenFieldPosition: 8
[    73.947]     BlueMaskSize: 8
[    73.947]     BlueFieldPosition: 0
[    73.947]     RsvdMaskSize: 8
[    73.947]     RsvdFieldPosition: 24
[    73.947]     DirectColorModeInfo: 0
[    73.947]     PhysBasePtr: 0xe8000000
[    73.947]     LinBytesPerScanLine: 1280
[    73.947]     BnkNumberOfImagePages: 10
[    73.947]     LinNumberOfImagePages: 10
[    73.947]     LinRedMaskSize: 8
[    73.947]     LinRedFieldPosition: 16
[    73.947]     LinGreenMaskSize: 8
[    73.947]     LinGreenFieldPosition: 8
[    73.947]     LinBlueMaskSize: 8
[    73.947]     LinBlueFieldPosition: 0
[    73.947]     LinRsvdMaskSize: 8
[    73.947]     LinRsvdFieldPosition: 24
[    73.947]     MaxPixelClock: 229500000
[    73.948] Mode: 13d (640x400)
[    73.948]     ModeAttributes: 0x39f
[    73.948]     WinAAttributes: 0x7
[    73.948]     WinBAttributes: 0x0
[    73.948]     WinGranularity: 64
[    73.948]     WinSize: 64
[    73.948]     WinASegment: 0xa000
[    73.948]     WinBSegment: 0x0
[    73.948]     WinFuncPtr: 0xc000b4fb
[    73.948]     BytesPerScanline: 1280
[    73.948]     XResolution: 640
[    73.948]     YResolution: 400
[    73.948]     XCharSize: 8
[    73.948]     YCharSize: 16
[    73.948]     NumberOfPlanes: 1
[    73.948]     BitsPerPixel: 16
[    73.948]     NumberOfBanks: 1
[    73.948]     MemoryModel: 6
[    73.948]     BankSize: 0
[    73.948]     NumberOfImages: 6
[    73.948]     RedMaskSize: 5
[    73.948]     RedFieldPosition: 11
[    73.948]     GreenMaskSize: 6
[    73.948]     GreenFieldPosition: 5
[    73.948]     BlueMaskSize: 5
[    73.948]     BlueFieldPosition: 0
[    73.948]     RsvdMaskSize: 0
[    73.948]     RsvdFieldPosition: 0
[    73.948]     DirectColorModeInfo: 0
[    73.948]     PhysBasePtr: 0xe8000000
[    73.948]     LinBytesPerScanLine: 1280
[    73.948]     BnkNumberOfImagePages: 6
[    73.948]     LinNumberOfImagePages: 6
[    73.948]     LinRedMaskSize: 5
[    73.948]     LinRedFieldPosition: 11
[    73.948]     LinGreenMaskSize: 6
[    73.948]     LinGreenFieldPosition: 5
[    73.948]     LinBlueMaskSize: 5
[    73.948]     LinBlueFieldPosition: 0
[    73.948]     LinRsvdMaskSize: 0
[    73.948]     LinRsvdFieldPosition: 0
[    73.948]     MaxPixelClock: 229500000
[    73.949] *Mode: 13e (640x400)
[    73.949]     ModeAttributes: 0x39f
[    73.949]     WinAAttributes: 0x7
[    73.949]     WinBAttributes: 0x0
[    73.949]     WinGranularity: 64
[    73.949]     WinSize: 64
[    73.949]     WinASegment: 0xa000
[    73.949]     WinBSegment: 0x0
[    73.949]     WinFuncPtr: 0xc000b4fb
[    73.949]     BytesPerScanline: 2560
[    73.949]     XResolution: 640
[    73.949]     YResolution: 400
[    73.949]     XCharSize: 8
[    73.949]     YCharSize: 16
[    73.949]     NumberOfPlanes: 1
[    73.949]     BitsPerPixel: 32
[    73.949]     NumberOfBanks: 1
[    73.949]     MemoryModel: 6
[    73.949]     BankSize: 0
[    73.949]     NumberOfImages: 2
[    73.949]     RedMaskSize: 8
[    73.949]     RedFieldPosition: 16
[    73.949]     GreenMaskSize: 8
[    73.949]     GreenFieldPosition: 8
[    73.949]     BlueMaskSize: 8
[    73.949]     BlueFieldPosition: 0
[    73.949]     RsvdMaskSize: 8
[    73.949]     RsvdFieldPosition: 24
[    73.949]     DirectColorModeInfo: 0
[    73.949]     PhysBasePtr: 0xe8000000
[    73.949]     LinBytesPerScanLine: 2560
[    73.949]     BnkNumberOfImagePages: 2
[    73.949]     LinNumberOfImagePages: 2
[    73.949]     LinRedMaskSize: 8
[    73.949]     LinRedFieldPosition: 16
[    73.949]     LinGreenMaskSize: 8
[    73.949]     LinGreenFieldPosition: 8
[    73.949]     LinBlueMaskSize: 8
[    73.949]     LinBlueFieldPosition: 0
[    73.949]     LinRsvdMaskSize: 8
[    73.949]     LinRsvdFieldPosition: 24
[    73.949]     MaxPixelClock: 229500000
[    73.950] Mode: 145 (1600x1200)
[    73.950]     ModeAttributes: 0x39f
[    73.950]     WinAAttributes: 0x7
[    73.950]     WinBAttributes: 0x0
[    73.950]     WinGranularity: 64
[    73.950]     WinSize: 64
[    73.950]     WinASegment: 0xa000
[    73.950]     WinBSegment: 0x0
[    73.950]     WinFuncPtr: 0xc000b4fb
[    73.950]     BytesPerScanline: 1600
[    73.950]     XResolution: 1600
[    73.950]     YResolution: 1200
[    73.950]     XCharSize: 8
[    73.950]     YCharSize: 16
[    73.950]     NumberOfPlanes: 1
[    73.950]     BitsPerPixel: 8
[    73.950]     NumberOfBanks: 1
[    73.950]     MemoryModel: 4
[    73.950]     BankSize: 0
[    73.950]     NumberOfImages: 1
[    73.950]     RedMaskSize: 0
[    73.950]     RedFieldPosition: 0
[    73.950]     GreenMaskSize: 0
[    73.950]     GreenFieldPosition: 0
[    73.950]     BlueMaskSize: 0
[    73.950]     BlueFieldPosition: 0
[    73.950]     RsvdMaskSize: 0
[    73.951]     RsvdFieldPosition: 0
[    73.951]     DirectColorModeInfo: 0
[    73.951]     PhysBasePtr: 0xe8000000
[    73.951]     LinBytesPerScanLine: 1600
[    73.951]     BnkNumberOfImagePages: 1
[    73.951]     LinNumberOfImagePages: 1
[    73.951]     LinRedMaskSize: 0
[    73.951]     LinRedFieldPosition: 0
[    73.951]     LinGreenMaskSize: 0
[    73.951]     LinGreenFieldPosition: 0
[    73.951]     LinBlueMaskSize: 0
[    73.951]     LinBlueFieldPosition: 0
[    73.951]     LinRsvdMaskSize: 0
[    73.951]     LinRsvdFieldPosition: 0
[    73.951]     MaxPixelClock: 229500000
[    73.951] Mode: 146 (1600x1200)
[    73.951]     ModeAttributes: 0x39f
[    73.951]     WinAAttributes: 0x7
[    73.951]     WinBAttributes: 0x0
[    73.951]     WinGranularity: 64
[    73.952]     WinSize: 64
[    73.952]     WinASegment: 0xa000
[    73.952]     WinBSegment: 0x0
[    73.952]     WinFuncPtr: 0xc000b4fb
[    73.952]     BytesPerScanline: 3200
[    73.952]     XResolution: 1600
[    73.952]     YResolution: 1200
[    73.952]     XCharSize: 8
[    73.952]     YCharSize: 16
[    73.952]     NumberOfPlanes: 1
[    73.952]     BitsPerPixel: 16
[    73.952]     NumberOfBanks: 1
[    73.952]     MemoryModel: 6
[    73.952]     BankSize: 0
[    73.952]     NumberOfImages: 1
[    73.952]     RedMaskSize: 5
[    73.952]     RedFieldPosition: 11
[    73.952]     GreenMaskSize: 6
[    73.952]     GreenFieldPosition: 5
[    73.952]     BlueMaskSize: 5
[    73.952]     BlueFieldPosition: 0
[    73.952]     RsvdMaskSize: 0
[    73.952]     RsvdFieldPosition: 0
[    73.952]     DirectColorModeInfo: 0
[    73.952]     PhysBasePtr: 0xe8000000
[    73.952]     LinBytesPerScanLine: 3200
[    73.952]     BnkNumberOfImagePages: 1
[    73.952]     LinNumberOfImagePages: 1
[    73.952]     LinRedMaskSize: 5
[    73.952]     LinRedFieldPosition: 11
[    73.952]     LinGreenMaskSize: 6
[    73.952]     LinGreenFieldPosition: 5
[    73.952]     LinBlueMaskSize: 5
[    73.952]     LinBlueFieldPosition: 0
[    73.952]     LinRsvdMaskSize: 0
[    73.952]     LinRsvdFieldPosition: 0
[    73.952]     MaxPixelClock: 229500000
[    73.953] Mode: 147 (1400x1050)
[    73.953]     ModeAttributes: 0x39f
[    73.953]     WinAAttributes: 0x7
[    73.953]     WinBAttributes: 0x0
[    73.953]     WinGranularity: 64
[    73.953]     WinSize: 64
[    73.953]     WinASegment: 0xa000
[    73.953]     WinBSegment: 0x0
[    73.953]     WinFuncPtr: 0xc000b4fb
[    73.953]     BytesPerScanline: 1400
[    73.953]     XResolution: 1400
[    73.953]     YResolution: 1050
[    73.953]     XCharSize: 8
[    73.953]     YCharSize: 14
[    73.953]     NumberOfPlanes: 1
[    73.953]     BitsPerPixel: 8
[    73.953]     NumberOfBanks: 1
[    73.953]     MemoryModel: 4
[    73.953]     BankSize: 0
[    73.953]     NumberOfImages: 1
[    73.953]     RedMaskSize: 0
[    73.953]     RedFieldPosition: 0
[    73.953]     GreenMaskSize: 0
[    73.953]     GreenFieldPosition: 0
[    73.953]     BlueMaskSize: 0
[    73.953]     BlueFieldPosition: 0
[    73.953]     RsvdMaskSize: 0
[    73.953]     RsvdFieldPosition: 0
[    73.953]     DirectColorModeInfo: 0
[    73.953]     PhysBasePtr: 0xe8000000
[    73.953]     LinBytesPerScanLine: 1400
[    73.953]     BnkNumberOfImagePages: 1
[    73.953]     LinNumberOfImagePages: 1
[    73.953]     LinRedMaskSize: 0
[    73.953]     LinRedFieldPosition: 0
[    73.953]     LinGreenMaskSize: 0
[    73.953]     LinGreenFieldPosition: 0
[    73.953]     LinBlueMaskSize: 0
[    73.953]     LinBlueFieldPosition: 0
[    73.953]     LinRsvdMaskSize: 0
[    73.953]     LinRsvdFieldPosition: 0
[    73.953]     MaxPixelClock: 229500000
[    73.954] Mode: 148 (1400x1050)
[    73.954]     ModeAttributes: 0x39f
[    73.954]     WinAAttributes: 0x7
[    73.954]     WinBAttributes: 0x0
[    73.954]     WinGranularity: 64
[    73.954]     WinSize: 64
[    73.954]     WinASegment: 0xa000
[    73.954]     WinBSegment: 0x0
[    73.954]     WinFuncPtr: 0xc000b4fb
[    73.954]     BytesPerScanline: 2800
[    73.954]     XResolution: 1400
[    73.954]     YResolution: 1050
[    73.954]     XCharSize: 8
[    73.954]     YCharSize: 14
[    73.954]     NumberOfPlanes: 1
[    73.954]     BitsPerPixel: 16
[    73.954]     NumberOfBanks: 1
[    73.954]     MemoryModel: 6
[    73.954]     BankSize: 0
[    73.954]     NumberOfImages: 1
[    73.954]     RedMaskSize: 5
[    73.954]     RedFieldPosition: 11
[    73.954]     GreenMaskSize: 6
[    73.954]     GreenFieldPosition: 5
[    73.954]     BlueMaskSize: 5
[    73.954]     BlueFieldPosition: 0
[    73.954]     RsvdMaskSize: 0
[    73.954]     RsvdFieldPosition: 0
[    73.954]     DirectColorModeInfo: 0
[    73.954]     PhysBasePtr: 0xe8000000
[    73.954]     LinBytesPerScanLine: 2800
[    73.954]     BnkNumberOfImagePages: 1
[    73.954]     LinNumberOfImagePages: 1
[    73.954]     LinRedMaskSize: 5
[    73.954]     LinRedFieldPosition: 11
[    73.954]     LinGreenMaskSize: 6
[    73.954]     LinGreenFieldPosition: 5
[    73.954]     LinBlueMaskSize: 5
[    73.954]     LinBlueFieldPosition: 0
[    73.954]     LinRsvdMaskSize: 0
[    73.954]     LinRsvdFieldPosition: 0
[    73.954]     MaxPixelClock: 229500000
[    73.955] *Mode: 152 (2048x1536)
[    73.955]     ModeAttributes: 0x3db
[    73.955]     WinAAttributes: 0x7
[    73.955]     WinBAttributes: 0x0
[    73.955]     WinGranularity: 64
[    73.955]     WinSize: 64
[    73.955]     WinASegment: 0xa000
[    73.955]     WinBSegment: 0x0
[    73.955]     WinFuncPtr: 0xc000b4fb
[    73.955]     BytesPerScanline: 8192
[    73.955]     XResolution: 2048
[    73.955]     YResolution: 1536
[    73.955]     XCharSize: 8
[    73.955]     YCharSize: 16
[    73.955]     NumberOfPlanes: 1
[    73.955]     BitsPerPixel: 32
[    73.955]     NumberOfBanks: 1
[    73.955]     MemoryModel: 6
[    73.955]     BankSize: 0
[    73.955]     NumberOfImages: 0
[    73.955]     RedMaskSize: 8
[    73.955]     RedFieldPosition: 16
[    73.955]     GreenMaskSize: 8
[    73.955]     GreenFieldPosition: 8
[    73.955]     BlueMaskSize: 8
[    73.955]     BlueFieldPosition: 0
[    73.955]     RsvdMaskSize: 8
[    73.955]     RsvdFieldPosition: 24
[    73.955]     DirectColorModeInfo: 0
[    73.955]     PhysBasePtr: 0xe8000000
[    73.955]     LinBytesPerScanLine: 8192
[    73.955]     BnkNumberOfImagePages: 0
[    73.955]     LinNumberOfImagePages: 0
[    73.955]     LinRedMaskSize: 8
[    73.955]     LinRedFieldPosition: 16
[    73.955]     LinGreenMaskSize: 8
[    73.955]     LinGreenFieldPosition: 8
[    73.956]     LinBlueMaskSize: 8
[    73.956]     LinBlueFieldPosition: 0
[    73.956]     LinRsvdMaskSize: 8
[    73.956]     LinRsvdFieldPosition: 24
[    73.956]     MaxPixelClock: 229500000
[    73.956] 
[    73.956] (II) VESA(0): Total Memory: 2048 64KB banks (131072kB)
[    73.956] (II) VESA(0): <default monitor>: Using hsync range of 31.00-96.00 kHz
[    73.956] (II) VESA(0): <default monitor>: Using vrefresh range of 56.00-76.00 Hz
[    73.956] (II) VESA(0): <default monitor>: Using maximum pixel clock of 215.00 MHz
[    73.956] (WW) VESA(0): Unable to estimate virtual size
[    73.956] (II) VESA(0): Not using built-in mode "2048x1536" (no mode of this name)
[    73.957] (II) VESA(0): Not using built-in mode "640x400" (no mode of this name)
[    73.958] (II) VESA(0): Not using built-in mode "320x400" (no mode of this name)
[    73.958] (II) VESA(0): Not using built-in mode "320x240" (no mode of this name)
[    73.958] (II) VESA(0): Not using built-in mode "320x200" (no mode of this name)
[    73.958] (--) VESA(0): Virtual size is 1280x1024 (pitch 1280)
[    73.958] (**) VESA(0): *Built-in mode "1280x1024"
[    73.958] (**) VESA(0): *Built-in mode "1024x768"
[    73.958] (**) VESA(0): *Built-in mode "800x600"
[    73.958] (**) VESA(0): *Built-in mode "640x480"
[    73.958] (**) VESA(0): Display dimensions: (430, 270) mm
[    73.958] (**) VESA(0): DPI set to (75, 96)
[    73.958] (**) VESA(0): Using "Shadow Framebuffer"
[    73.958] (II) Loading sub module "shadow"
[    73.958] (II) LoadModule: "shadow"
[    73.958] (II) Loading /usr/lib/xorg/modules/libshadow.so
[    73.959] (II) Module shadow: vendor="X.Org Foundation"
[    73.959]     compiled for 1.9.2, module version = 1.1.0
[    73.959]     ABI class: X.Org ANSI C Emulation, version 0.4
[    73.959] (II) Loading sub module "fb"
[    73.959] (II) LoadModule: "fb"
[    73.960] (II) Loading /usr/lib/xorg/modules/libfb.so
[    73.974] (II) Module fb: vendor="X.Org Foundation"
[    73.974]     compiled for 1.9.2, module version = 1.0.0
[    73.974]     ABI class: X.Org ANSI C Emulation, version 0.4
[    73.974] (==) Depth 24 pixmap format is 32 bpp
[    73.974] (II) Loading sub module "int10"
[    73.974] (II) LoadModule: "int10"
[    73.975] (II) Reloading /usr/lib/xorg/modules/libint10.so
[    73.975] (II) VESA(0): initializing int10
[    73.978] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[    73.989] (II) VESA(0): VESA BIOS detected
[    73.989] (II) VESA(0): VESA VBE Version 3.0
[    73.989] (II) VESA(0): VESA VBE Total Mem: 131072 kB
[    73.989] (II) VESA(0): VESA VBE OEM: WinFast
[    73.989] (II) VESA(0): VESA VBE OEM Software Rev: 4.52
[    73.989] (II) VESA(0): VESA VBE OEM Vendor: Leadtek Research Inc.
[    73.989] (II) VESA(0): VESA VBE OEM Product: NV34 Board - 16222967
[    73.989] (II) VESA(0): VESA VBE OEM Product Rev: Chip Rev   
[    74.005] (II) VESA(0): virtual address = 0xaf27e000,
    physical address = 0xe8000000, size = 134217728
[    74.012] (II) VESA(0): Setting up VESA Mode 0x11B (1280x1024)
[    74.112] (==) VESA(0): Default visual is TrueColor
[    74.136] (==) VESA(0): Backing store disabled
[    74.136] (==) VESA(0): DPMS enabled
[    74.136] (==) RandR enabled
[    74.136] (II) Initializing built-in extension Generic Event Extension
[    74.136] (II) Initializing built-in extension SHAPE
[    74.136] (II) Initializing built-in extension MIT-SHM
[    74.136] (II) Initializing built-in extension XInputExtension
[    74.136] (II) Initializing built-in extension XTEST
[    74.136] (II) Initializing built-in extension BIG-REQUESTS
[    74.136] (II) Initializing built-in extension SYNC
[    74.136] (II) Initializing built-in extension XKEYBOARD
[    74.136] (II) Initializing built-in extension XC-MISC
[    74.136] (II) Initializing built-in extension SECURITY
[    74.136] (II) Initializing built-in extension XINERAMA
[    74.136] (II) Initializing built-in extension XFIXES
[    74.136] (II) Initializing built-in extension RENDER
[    74.136] (II) Initializing built-in extension RANDR
[    74.136] (II) Initializing built-in extension COMPOSITE
[    74.136] (II) Initializing built-in extension DAMAGE
[    74.741] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    74.741] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    74.741] (II) LoadModule: "evdev"
[    74.741] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    74.756] (II) Module evdev: vendor="X.Org Foundation"
[    74.756]     compiled for 1.9.0, module version = 2.5.0
[    74.756]     Module class: X.Org XInput Driver
[    74.756]     ABI class: X.Org XInput driver, version 11.0
[    74.757] (**) Power Button: always reports core events
[    74.757] (**) Power Button: Device: "/dev/input/event1"
[    74.757] (--) Power Button: Found keys
[    74.757] (II) Power Button: Configuring as keyboard
[    74.757] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    74.757] (**) Option "xkb_rules" "evdev"
[    74.757] (**) Option "xkb_model" "evdev"
[    74.757] (**) Option "xkb_layout" "us"
[    74.848] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    74.848] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    74.848] (**) Power Button: always reports core events
[    74.848] (**) Power Button: Device: "/dev/input/event0"
[    74.848] (--) Power Button: Found keys
[    74.848] (II) Power Button: Configuring as keyboard
[    74.848] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    74.848] (**) Option "xkb_rules" "evdev"
[    74.848] (**) Option "xkb_model" "evdev"
[    74.848] (**) Option "xkb_layout" "us"
[    74.851] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event3)
[    74.851] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[    74.851] (**) USB Optical Mouse: always reports core events
[    74.851] (**) USB Optical Mouse: Device: "/dev/input/event3"
[    74.851] (--) USB Optical Mouse: Found 3 mouse buttons
[    74.851] (--) USB Optical Mouse: Found scroll wheel(s)
[    74.851] (--) USB Optical Mouse: Found relative axes
[    74.851] (--) USB Optical Mouse: Found x and y relative axes
[    74.851] (--) USB Optical Mouse: Found absolute axes
[    74.851] (II) USB Optical Mouse: Configuring as mouse
[    74.851] (**) USB Optical Mouse: YAxisMapping: buttons 4 and 5
[    74.851] (**) USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    74.851] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE)
[    74.851] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1
[    74.851] (**) USB Optical Mouse: (accel) acceleration profile 0
[    74.851] (**) USB Optical Mouse: (accel) acceleration factor: 2.000
[    74.851] (**) USB Optical Mouse: (accel) acceleration threshold: 4
[    74.851] (II) USB Optical Mouse: initialized for relative axes.
[    74.851] (WW) USB Optical Mouse: ignoring absolute axes.
[    74.852] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse0)
[    74.852] (II) No input driver/identifier specified (ignoring)
[    74.853] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event4)
[    74.853] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    74.853] (**)   USB Keyboard: always reports core events
[    74.853] (**)   USB Keyboard: Device: "/dev/input/event4"
[    74.853] (--)   USB Keyboard: Found keys
[    74.853] (II)   USB Keyboard: Configuring as keyboard
[    74.853] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD)
[    74.853] (**) Option "xkb_rules" "evdev"
[    74.853] (**) Option "xkb_model" "evdev"
[    74.853] (**) Option "xkb_layout" "us"
[    74.854] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event5)
[    74.855] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    74.855] (**)   USB Keyboard: always reports core events
[    74.855] (**)   USB Keyboard: Device: "/dev/input/event5"
[    74.855] (--)   USB Keyboard: Found keys
[    74.855] (II)   USB Keyboard: Configuring as keyboard
[    74.855] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD)
[    74.855] (**) Option "xkb_rules" "evdev"
[    74.855] (**) Option "xkb_model" "evdev"
[    74.855] (**) Option "xkb_layout" "us"
[    74.863] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[    74.863] (II) No input driver/identifier specified (ignoring)
[   101.047] (II) VESA(0): Setting up VESA Mode 0x118 (1024x768)

Last edited by erkin (2010-12-13 19:27:35)

Offline

#43 2010-12-13 20:36:55

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

For some reason Xorg is using the vesa driver.

It might be because glx fails to load

[    73.668] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    73.668] dlopen: /usr/lib/xorg/modules/extensions/libglx.so: cannot open shared object file: No such file or directory
[    73.668] (EE) Failed to load /usr/lib/xorg/modules/extensions/libglx.so
[    73.668] (II) UnloadModule: "glx"
[    73.668] (EE) Failed to load module "glx" (loader failed, 7)

Uninstall xf86-video-vesa and xf86-video-fbdev and then post the Xorg log again.

Also, try reinstalling mesa and libgl.

Last edited by thestinger (2010-12-13 20:39:15)

Offline

#44 2010-12-14 08:41:18

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,896
Website

Re: Can't install Nvidia driver.

Thought libgl clashed with nvidia ...


Mr Green

Offline

#45 2010-12-14 14:02:58

erkin
Member
Registered: 2010-12-03
Posts: 56

Re: Can't install Nvidia driver.

thestinger wrote:

Uninstall xf86-video-vesa and xf86-video-fbdev and then post the Xorg log again.

Also, try reinstalling mesa and libgl.

I did. Xorg failed and couldn't start.

#dmesg
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.36-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 20101125 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Dec 10 20:01:53 UTC 2010
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
 BIOS-e820: 000000001fff0000 - 000000001fff3000 (ACPI NVS)
 BIOS-e820: 000000001fff3000 - 0000000020000000 (ACPI data)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
 BIOS-e820: 00000000fefffc00 - 00000000ff000000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
DMI 2.2 present.
Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
last_pfn = 0x1fff0 max_arch_pfn = 0x100000
MTRR default type: uncachable
MTRR fixed ranges enabled:
  00000-9FFFF write-back
  A0000-BFFFF uncachable
  C0000-C7FFF write-protect
  C8000-FFFFF uncachable
MTRR variable ranges enabled:
  0 base 0000000000 mask FFE0000000 write-back
  1 base 00F0000000 mask FFF8000000 write-combining
  2 disabled
  3 disabled
  4 disabled
  5 disabled
  6 disabled
  7 disabled
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Scanning 0 areas for low memory corruption
modified physical RAM map:
 modified: 0000000000000000 - 0000000000010000 (reserved)
 modified: 0000000000010000 - 000000000009f800 (usable)
 modified: 000000000009f800 - 00000000000a0000 (reserved)
 modified: 00000000000f0000 - 0000000000100000 (reserved)
 modified: 0000000000100000 - 000000001fff0000 (usable)
 modified: 000000001fff0000 - 000000001fff3000 (ACPI NVS)
 modified: 000000001fff3000 - 0000000020000000 (ACPI data)
 modified: 00000000fec00000 - 00000000fec01000 (reserved)
 modified: 00000000fee00000 - 00000000fef00000 (reserved)
 modified: 00000000fefffc00 - 00000000ff000000 (reserved)
 modified: 00000000ffff0000 - 0000000100000000 (reserved)
initial memory mapped : 0 - 01800000
found SMP MP-table at [c00f4d80] f4d80
init_memory_mapping: 0000000000000000-000000001fff0000
 0000000000 - 0000400000 page 4k
 0000400000 - 001fc00000 page 2M
 001fc00000 - 001fff0000 page 4k
kernel direct mapping tables up to 1fff0000 @ 15000-1a000
RAMDISK: 1fdf4000 - 1ffe0000
ACPI: RSDP 000f8e70 00014 (v00 Nvidia)
ACPI: RSDT 1fff3040 0002C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
ACPI: FACP 1fff30c0 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
ACPI: DSDT 1fff3180 04AAD (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E)
ACPI: FACS 1fff0000 00040
ACPI: APIC 1fff7c80 0006E (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
ACPI: Local APIC address 0xfee00000
0MB HIGHMEM available.
511MB LOWMEM available.
  mapped low ram: 0 - 1fff0000
  low ram: 0 - 1fff0000
Zone PFN ranges:
  DMA      0x00000010 -> 0x00001000
  Normal   0x00001000 -> 0x0001fff0
  HighMem  empty
Movable zone start PFN for each node
early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0001fff0
On node 0 totalpages: 130943
free_area_init_node: node 0, pgdat c142d600, node_mem_map c1598200
  DMA zone: 32 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 3951 pages, LIFO batch:0
  Normal zone: 992 pages used for memmap
  Normal zone: 125968 pages, LIFO batch:31
Using APIC driver default
Nvidia board detected. Ignoring ACPI timer override.
If you got timer trouble try acpi_use_timer_override
ACPI: PM-Timer IO Port: 0x4008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: BIOS IRQ0 pin2 override ignored.
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Using ACPI (MADT) for SMP configuration information
SMP: Allowing 1 CPUs, 0 hotplug CPUs
nr_irqs_gsi: 40
early_res array is doubled to 64 at [16000 - 167ff]
PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
Allocating PCI resources starting at 20000000 (gap: 20000000:dec00000)
Booting paravirtualized kernel on bare hardware
setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
PERCPU: Embedded 13 pages/cpu @c1c00000 s31488 r0 d21760 u4194304
pcpu-alloc: s31488 r0 d21760 u4194304 alloc=1*4194304
pcpu-alloc: [0] 0 
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 129919
Kernel command line: root=/dev/disk/by-uuid/4796d6f3-9c81-40db-9218-70186e20e11e ro
PID hash table entries: 2048 (order: 1, 8192 bytes)
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
allocated 2620800 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
Subtract (45 early reservations)
  #1 [0000001000 - 0000002000]   EX TRAMPOLINE
  #2 [0001000000 - 000158fe8c]   TEXT DATA BSS
  #3 [001fdf4000 - 001ffe0000]         RAMDISK
  #4 [0001590000 - 0001596076]             BRK
  #5 [00000f4d90 - 0000100000]   BIOS reserved
  #6 [00000f4d80 - 00000f4d90]    MP-table mpf
  #7 [000009f800 - 00000f0c00]   BIOS reserved
  #8 [00000f0d38 - 00000f4d80]   BIOS reserved
  #9 [00000f0c00 - 00000f0d38]    MP-table mpc
  #10 [0000010000 - 0000011000]      TRAMPOLINE
  #11 [0000011000 - 0000015000]     ACPI WAKEUP
  #12 [0000015000 - 0000016000]         PGTABLE
  #13 [0001597000 - 0001598000]         BOOTMEM
  #14 [0001598000 - 0001998000]         BOOTMEM
  #15 [000158fec0 - 000158fec4]         BOOTMEM
  #16 [000158ff00 - 000158ffc0]         BOOTMEM
  #17 [000158ffc0 - 000158fff0]         BOOTMEM
  #18 [0001998000 - 0001999800]         BOOTMEM
  #19 [0001596080 - 00015960a7]         BOOTMEM
  #20 [00015960c0 - 00015961f4]         BOOTMEM
  #21 [0001596200 - 0001596240]         BOOTMEM
  #22 [0001596240 - 0001596280]         BOOTMEM
  #23 [0001596280 - 00015962c0]         BOOTMEM
  #24 [00015962c0 - 0001596300]         BOOTMEM
  #25 [0001596300 - 0001596340]         BOOTMEM
  #26 [0001596340 - 0001596380]         BOOTMEM
  #27 [0001596380 - 00015963c0]         BOOTMEM
  #28 [00015963c0 - 0001596400]         BOOTMEM
  #29 [0001596400 - 0001596440]         BOOTMEM
  #30 [0001596440 - 0001596480]         BOOTMEM
  #31 [0001596480 - 0001596490]         BOOTMEM
  #32 [00015964c0 - 00015964ff]         BOOTMEM
  #33 [0001596500 - 000159653f]         BOOTMEM
  #34 [0001c00000 - 0001c0d000]         BOOTMEM
  #35 [0001596540 - 0001596544]         BOOTMEM
  #36 [0001596580 - 0001596584]         BOOTMEM
  #37 [00015965c0 - 00015965c4]         BOOTMEM
  #38 [0001596600 - 0001596604]         BOOTMEM
  #39 [0001596640 - 00015966f0]         BOOTMEM
  #40 [0001596700 - 00015967a8]         BOOTMEM
  #41 [0001999800 - 000199b800]         BOOTMEM
  #42 [000199b800 - 00019db800]         BOOTMEM
  #43 [00019db800 - 00019fb800]         BOOTMEM
  #44 [0001c0d000 - 0001e8cd80]         BOOTMEM
Initializing HighMem for node 0 (00000000:00000000)
Memory: 508944k/524224k available (3104k kernel code, 14828k reserved, 1205k data, 428k init, 0k highmem)
virtual kernel memory layout:
    fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
    pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    vmalloc : 0xe07f0000 - 0xff7fe000   ( 496 MB)
    lowmem  : 0xc0000000 - 0xdfff0000   ( 511 MB)
      .init : 0xc1436000 - 0xc14a1000   ( 428 kB)
      .data : 0xc1308056 - 0xc1435820   (1205 kB)
      .text : 0xc1000000 - 0xc1308056   (3104 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
NR_IRQS:512
spurious 8259A interrupt: IRQ7.
Console: colour VGA+ 80x25
console [tty0] enabled
Fast TSC calibration using PIT
Detected 1607.388 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 3216.72 BogoMIPS (lpj=5357960)
pid_max: default: 32768 minimum: 301
Security Framework initialized
TOMOYO Linux initialized
AppArmor: AppArmor disabled by boot time parameter
Mount-cache hash table entries: 512
Initializing cgroup subsys ns
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
Initializing cgroup subsys blkio
mce: CPU supports 5 MCE banks
Performance Events: AMD PMU driver.
... version:                0
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             00007fffffffffff
... fixed-purpose events:   0
... event mask:             000000000000000f
SMP alternatives: switching to UP code
Freeing SMP alternatives: 16k freed
ACPI: Core revision 20100702
Enabling APIC mode:  Flat.  Using 1 I/O APICs
..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
CPU0: AMD Sempron(tm) Processor 2600+ stepping 00
NMI watchdog enabled, takes one hw-pmu counter.
Brought up 1 CPUs
Total of 1 processors activated (3216.72 BogoMIPS).
devtmpfs: initialized
NET: Registered protocol family 16
TOM: 0000000020000000 aka 512M
node 0 link 0: mmio [a0000, bffff]
bus: [00, ff] on node 0 link 0
bus: 00 index 0 [io  0x0000-0xffff]
bus: 00 index 1 [mem 0x000a0000-0x000bffff]
bus: 00 index 2 [mem 0x20000000-0xffffffff]
ACPI: bus type pci registered
PCI: PCI BIOS revision 2.10 entry at 0xfb760, last bus=2
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: Power Resource [ISAV] (on)
ACPI: No dock devices found.
PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
pci_root PNP0A03:00: host bridge window [mem 0x20000000-0xfebfffff] (ignored)
pci 0000:00:00.0: reg 10: [mem 0xf0000000-0xf7ffffff pref]
pci 0000:00:01.1: reg 10: [io  0xff00-0xff1f]
pci 0000:00:01.1: reg 20: [io  0x4c00-0x4c3f]
pci 0000:00:01.1: reg 24: [io  0x4d00-0x4d3f]
pci 0000:00:01.1: PME# supported from D3hot D3cold
pci 0000:00:01.1: PME# disabled
pci 0000:00:02.0: reg 10: [mem 0xfdfff000-0xfdffffff]
pci 0000:00:02.0: supports D1 D2
pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:02.0: PME# disabled
pci 0000:00:02.1: reg 10: [mem 0xfdffe000-0xfdffefff]
pci 0000:00:02.1: supports D1 D2
pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:02.1: PME# disabled
pci 0000:00:02.2: reg 10: [mem 0xfdffd000-0xfdffd0ff]
pci 0000:00:02.2: supports D1 D2
pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:02.2: PME# disabled
pci 0000:00:05.0: reg 10: [mem 0xfdffc000-0xfdffcfff]
pci 0000:00:05.0: reg 14: [io  0xfc00-0xfc07]
pci 0000:00:05.0: supports D1 D2
pci 0000:00:05.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:00:05.0: PME# disabled
pci 0000:00:06.0: reg 10: [io  0xfb00-0xfbff]
pci 0000:00:06.0: reg 14: [io  0xfa00-0xfa7f]
pci 0000:00:06.0: reg 18: [mem 0xfdffb000-0xfdffbfff]
pci 0000:00:06.0: supports D1 D2
pci 0000:00:08.0: reg 20: [io  0xf700-0xf70f]
pci 0000:00:0a.0: reg 10: [io  0x09f0-0x09f7]
pci 0000:00:0a.0: reg 14: [io  0x0bf0-0x0bf3]
pci 0000:00:0a.0: reg 18: [io  0x0970-0x0977]
pci 0000:00:0a.0: reg 1c: [io  0x0b70-0x0b73]
pci 0000:00:0a.0: reg 20: [io  0xf200-0xf20f]
pci 0000:00:0a.0: reg 24: [io  0xf100-0xf17f]
PCI: peer root bus 00 res updated from pci conf
pci 0000:01:00.0: reg 10: [mem 0xfb000000-0xfbffffff]
pci 0000:01:00.0: reg 14: [mem 0xe8000000-0xefffffff pref]
pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
pci 0000:00:0b.0: PCI bridge to [bus 01-01]
pci 0000:00:0b.0:   bridge window [io  0xc000-0xdfff]
pci 0000:00:0b.0:   bridge window [mem 0xfb000000-0xfcffffff]
pci 0000:00:0b.0:   bridge window [mem 0xe8000000-0xefffffff pref]
pci 0000:02:08.0: reg 10: [mem 0xfddff000-0xfddfffff pref]
pci 0000:02:08.1: reg 10: [mem 0xfddfe000-0xfddfefff pref]
pci 0000:00:0e.0: PCI bridge to [bus 02-02]
pci 0000:00:0e.0:   bridge window [io  0xa000-0xbfff]
pci 0000:00:0e.0:   bridge window [mem 0xfde00000-0xfdefffff]
pci 0000:00:0e.0:   bridge window [mem 0xfdd00000-0xfddfffff pref]
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 10 11 *12 14 15)
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 6 7 10 11 *12 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0
ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
ACPI: PCI Interrupt Link [APC5] (IRQs *16)
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
HEST: Table is not found!
vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
reserve RAM buffer: 000000000009f800 - 000000000009ffff 
reserve RAM buffer: 000000001fff0000 - 000000001fffffff 
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
Switching to clocksource tsc
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
system 00:00: [io  0x4000-0x407f] has been reserved
system 00:00: [io  0x4080-0x40ff] has been reserved
system 00:00: [io  0x4400-0x447f] has been reserved
system 00:00: [io  0x4480-0x44ff] has been reserved
system 00:00: [io  0x4800-0x487f] has been reserved
system 00:00: [io  0x4880-0x48ff] has been reserved
system 00:01: [mem 0x000d0000-0x000d3fff] has been reserved
system 00:01: [mem 0x000d5800-0x000d7fff] has been reserved
system 00:01: [mem 0x000f0000-0x000fbfff] could not be reserved
system 00:01: [mem 0x000fc000-0x000fffff] could not be reserved
system 00:01: [mem 0x1fff0000-0x1fffffff] could not be reserved
system 00:01: [mem 0xffff0000-0xffffffff] has been reserved
system 00:01: [mem 0x00000000-0x0009ffff] could not be reserved
system 00:01: [mem 0x00100000-0x1ffeffff] could not be reserved
system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
system 00:01: [mem 0xfefff000-0xfeffffff] could not be reserved
system 00:01: [mem 0xfff80000-0xfff80fff] has been reserved
system 00:01: [mem 0xfff90000-0xfffbffff] has been reserved
system 00:01: [mem 0xfffed000-0xfffeffff] has been reserved
system 00:03: [io  0x04d0-0x04d1] has been reserved
system 00:03: [io  0x0800-0x0805] has been reserved
system 00:03: [io  0x0290-0x0297] has been reserved
pci 0000:01:00.0: BAR 6: assigned [mem 0xfc000000-0xfc01ffff pref]
pci 0000:00:0b.0: PCI bridge to [bus 01-01]
pci 0000:00:0b.0:   bridge window [io  0xc000-0xdfff]
pci 0000:00:0b.0:   bridge window [mem 0xfb000000-0xfcffffff]
pci 0000:00:0b.0:   bridge window [mem 0xe8000000-0xefffffff pref]
pci 0000:00:0e.0: PCI bridge to [bus 02-02]
pci 0000:00:0e.0:   bridge window [io  0xa000-0xbfff]
pci 0000:00:0e.0:   bridge window [mem 0xfde00000-0xfdefffff]
pci 0000:00:0e.0:   bridge window [mem 0xfdd00000-0xfddfffff pref]
pci 0000:00:0e.0: setting latency timer to 64
pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 6 [mem 0x20000000-0xffffffff]
pci_bus 0000:01: resource 0 [io  0xc000-0xdfff]
pci_bus 0000:01: resource 1 [mem 0xfb000000-0xfcffffff]
pci_bus 0000:01: resource 2 [mem 0xe8000000-0xefffffff pref]
pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
pci_bus 0000:02: resource 1 [mem 0xfde00000-0xfdefffff]
pci_bus 0000:02: resource 2 [mem 0xfdd00000-0xfddfffff pref]
NET: Registered protocol family 2
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 5, 131072 bytes)
TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
TCP: Hash tables configured (established 16384 bind 16384)
TCP reno registered
UDP hash table entries: 256 (order: 1, 8192 bytes)
UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
NET: Registered protocol family 1
pci 0000:01:00.0: Boot video device
PCI: CLS 0 bytes, default 64
Unpacking initramfs...
Freeing initrd memory: 1968k freed
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
apm: overridden by ACPI.
Scanning for low memory corruption every 60 seconds
audit: initializing netlink socket (disabled)
type=2000 audit(1292334833.316:1): initialized
HugeTLB registered 4 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
msgmni has been set to 997
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
ERST: Table is not found!
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: 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
rtc0: alarms up to one year, y3k, 242 bytes nvram
cpuidle: using governor ladder
cpuidle: using governor menu
TCP cubic registered
NET: Registered protocol family 17
Registering the dns_resolver key type
Using IPI No-Shortcut mode
PM: Resume from disk failed.
registered taskstats version 1
rtc_cmos 00:05: setting system clock to 2010-12-14 13:53:55 UTC (1292334835)
Initalizing network drop monitor service
Freeing unused kernel memory: 428k freed
udev[33]: starting version 164
input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
ACPI: Power Button [PWRB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
ACPI: Power Button [PWRF]
Linux agpgart interface v0.103
[drm] Initialized drm 1.1.0 20060810
ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
nouveau 0000:01:00.0: PCI INT A -> Link[APC5] -> GSI 16 (level, low) -> IRQ 16
[drm] nouveau 0000:01:00.0: Detected an NV30 generation card (0x034200b1)
[drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
[drm] nouveau 0000:01:00.0: ... appears to be valid
[drm] nouveau 0000:01:00.0: BMP BIOS found
[drm] nouveau 0000:01:00.0: BMP version 5.40
[drm] nouveau 0000:01:00.0: Bios version 04.34.20.42
[drm] nouveau 0000:01:00.0: Found Display Configuration Block version 2.2
[drm] nouveau 0000:01:00.0: Raw DCB entry 0: 01000300 000088b8
[drm] nouveau 0000:01:00.0: Raw DCB entry 1: 01010302 00000000
[drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02020321 00000733
[drm] nouveau 0000:01:00.0: Loading NV17 power sequencing microcode
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xEF68
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xF1D8
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xF31E
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xF4B0
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xF4CD
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 5 at offset 0xF4EA
[drm] nouveau 0000:01:00.0: Parsing VBIOS init table 6 at offset 0xF66E
[drm] nouveau 0000:01:00.0: Detected 128MiB VRAM
[TTM] Zone  kernel: Available graphics memory: 255678 kiB.
[TTM] Initializing pool allocator.
[drm] nouveau 0000:01:00.0: 64 MiB GART (aperture)
[drm] nouveau 0000:01:00.0: Saving VGA fonts
[drm] nouveau 0000:01:00.0: Allocating FIFO number 0
[drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 0
[drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 0)
[drm] nouveau 0000:01:00.0: Setting dpms mode 3 on tmds encoder (output 1)
[drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV encoder (output 2)
[drm] nouveau 0000:01:00.0: allocated 1680x1050 fb: 0x48000, bo dedb8c00
[drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 0)
[drm] nouveau 0000:01:00.0: Output DVI-I-1 is running on CRTC 0 using output A
Console: switching to colour frame buffer device 210x65
fb0: nouveaufb frame buffer device
drm: registered panic notifier
[drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0
FDC 0 is a post-1991 82077
SCSI subsystem initialized
libata version 3.00 loaded.
sata_nv 0000:00:0a.0: version 3.5
ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 23
sata_nv 0000:00:0a.0: PCI INT A -> Link[APSJ] -> GSI 23 (level, high) -> IRQ 23
sata_nv 0000:00:0a.0: setting latency timer to 64
scsi0 : sata_nv
scsi1 : sata_nv
ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf200 irq 23
ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf208 irq 23
pata_amd 0000:00:08.0: version 0.4.1
pata_amd 0000:00:08.0: power state changed by ACPI to D0
pata_amd 0000:00:08.0: power state changed by ACPI to D0
pata_amd 0000:00:08.0: setting latency timer to 64
scsi2 : pata_amd
scsi3 : pata_amd
ata3: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf700 irq 14
ata4: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf708 irq 15
ata3.00: ATA-7: SAMSUNG SP0822N, WA100-10, max UDMA/133
ata3.00: 156368016 sectors, multi 1: LBA48 
ata3.01: native sectors (19541087) is smaller than sectors (19541088)
ata3.01: ATA-4: ST310211A, 3.39, max UDMA/100
ata3.01: 19541088 sectors, multi 1: LBA 
ata3: nv_mode_filter: 0x7f39f&0x739f->0x739f, BIOS=0x0 (0x0) ACPI=0x39f (120:120:0x1a)
ata3: nv_mode_filter: 0x3f39f&0x739f->0x739f, BIOS=0x0 (0x0) ACPI=0x39f (120:120:0x1a)
ata3.00: configured for UDMA/33
ata3.01: configured for UDMA/33
ata1: SATA link down (SStatus 0 SControl 300)
ata2: SATA link down (SStatus 0 SControl 300)
scsi 2:0:0:0: Direct-Access     ATA      SAMSUNG SP0822N  WA10 PQ: 0 ANSI: 5
scsi 2:0:1:0: Direct-Access     ATA      ST310211A        3.39 PQ: 0 ANSI: 5
ata4.00: ATAPI: _NEC DVD_RW ND-3570A, 1.11, max UDMA/33
ata4: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x0 (0x0) ACPI=0x39f (120:600:0x12)
ata4.00: configured for UDMA/33
scsi 3:0:0:0: CD-ROM            _NEC     DVD_RW ND-3570A  1.11 PQ: 0 ANSI: 5
sd 2:0:0:0: [sda] 156368016 512-byte logical blocks: (80.0 GB/74.5 GiB)
sd 2:0:0:0: [sda] Write Protect is off
sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 3:0:0:0: Attached scsi CD-ROM sr0
 sda: sda1 sda2 sda3 sda4
sd 2:0:1:0: [sdb] 19541088 512-byte logical blocks: (10.0 GB/9.31 GiB)
sd 2:0:1:0: [sdb] Write Protect is off
sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00
sd 2:0:0:0: [sda] Attached SCSI disk
sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdb: sdb1
sd 2:0:1:0: [sdb] Attached SCSI disk
EXT4-fs (sda3): INFO: recovery required on readonly filesystem
EXT4-fs (sda3): write access will be enabled during recovery
EXT4-fs (sda3): recovery complete
EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Not activating Mandatory Access Control now since /sbin/tomoyo-init doesn't exist.
udev[681]: starting version 164
forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
forcedeth 0000:00:05.0: PCI INT A -> Link[APCH] -> GSI 22 (level, high) -> IRQ 22
forcedeth 0000:00:05.0: setting latency timer to 64
nv_probe: set workaround bit for reversed mac addr
thermal LNXTHERM:01: registered as thermal_zone0
ACPI: Thermal Zone [THRM] (40 C)
sd 2:0:0:0: Attached scsi generic sg0 type 0
sd 2:0:1:0: Attached scsi generic sg1 type 0
sr 3:0:0:0: Attached scsi generic sg2 type 5
input: PC Speaker as /devices/platform/pcspkr/input/input2
forcedeth 0000:00:05.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:01:6c:ae:2c:2f
forcedeth 0000:00:05.0: csum timirq lnktim desc-v2
i2c i2c-1: nForce2 SMBus adapter at 0x4c00
i2c i2c-2: nForce2 SMBus adapter at 0x4d00
ACPI: Fan [FAN] (on)
agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1]
agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB
agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP
ACPI: acpi_idle registered with cpuidle
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
usbcore: registered new device driver usb
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
agpgart-amd64 0000:00:00.0: AGP aperture is 128M @ 0xf0000000
ACPI: PCI Interrupt Link [APCL] enabled at IRQ 21
ehci_hcd 0000:00:02.2: PCI INT C -> Link[APCL] -> GSI 21 (level, high) -> IRQ 21
ehci_hcd 0000:00:02.2: setting latency timer to 64
ehci_hcd 0000:00:02.2: EHCI Host Controller
ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:02.2: debug port 1
ehci_hcd 0000:00:02.2: cache line size of 64 is not supported
ehci_hcd 0000:00:02.2: irq 21, io mem 0xfdffd000
ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
IT8712 SuperIO detected.
parport_pc 00:0b: reported by Plug and Play ACPI
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
ACPI: PCI Interrupt Link [APCF] enabled at IRQ 20
ohci_hcd 0000:00:02.0: PCI INT A -> Link[APCF] -> GSI 20 (level, high) -> IRQ 20
ohci_hcd 0000:00:02.0: setting latency timer to 64
ohci_hcd 0000:00:02.0: OHCI Host Controller
ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:02.0: irq 20, io mem 0xfdfff000
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 4 ports detected
ACPI: PCI Interrupt Link [APCG] enabled at IRQ 23
ohci_hcd 0000:00:02.1: PCI INT B -> Link[APCG] -> GSI 23 (level, high) -> IRQ 23
ohci_hcd 0000:00:02.1: setting latency timer to 64
ohci_hcd 0000:00:02.1: OHCI Host Controller
ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 3
ohci_hcd 0000:00:02.1: irq 23, io mem 0xfdffe000
usb 1-4: new high speed USB device using ehci_hcd and address 2
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 4 ports detected
hub 1-4:1.0: USB hub found
hub 1-4:1.0: 4 ports detected
ppdev: user-space parallel port driver
lp0: using parport0 (interrupt-driven).
usb 1-4.1: new low speed USB device using ehci_hcd and address 3
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
usb 1-4.2: new high speed USB device using ehci_hcd and address 4
Linux video capture interface: v2.00
ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 22
Intel ICH 0000:00:06.0: PCI INT A -> Link[APCJ] -> GSI 22 (level, high) -> IRQ 22
Intel ICH 0000:00:06.0: setting latency timer to 64
hub 1-4.2:1.0: USB hub found
hub 1-4.2:1.0: 4 ports detected
usb 1-4.4: new high speed USB device using ehci_hcd and address 5
IR RC6 protocol handler initialized
IR JVC protocol handler initialized
Initializing USB Mass Storage driver...
usb-storage 1-4.4:1.0: Quirks match for vid 05e3 pid 0723: 8000
scsi4 : usb-storage 1-4.4:1.0
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
usb 1-4.2.2: new low speed USB device using ehci_hcd and address 6
intel8x0_measure_ac97_clock: measured 50067 usecs (2464 samples)
intel8x0: clocking to 46815
usbcore: registered new interface driver hiddev
input: USB Optical Mouse as /devices/pci0000:00/0000:00:02.2/usb1/1-4/1-4.1/1-4.1:1.0/input/input3
generic-usb 0003:1BCF:0007.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:00:02.2-4.1/input0
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
input:   USB Keyboard as /devices/pci0000:00/0000:00:02.2/usb1/1-4/1-4.2/1-4.2.2/1-4.2.2:1.0/input/input4
generic-usb 0003:04D9:1503.0002: input,hidraw1: USB HID v1.10 Keyboard [  USB Keyboard] on usb-0000:00:02.2-4.2.2/input0
input:   USB Keyboard as /devices/pci0000:00/0000:00:02.2/usb1/1-4/1-4.2/1-4.2.2/1-4.2.2:1.1/input/input5
generic-usb 0003:04D9:1503.0003: input,hidraw2: USB HID v1.10 Device [  USB Keyboard] on usb-0000:00:02.2-4.2.2/input1
bttv: driver version 0.9.18 loaded
bttv: using 8 buffers with 2080k (520 pages) each for capture
bttv: Bt8xx card found (0).
ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
bttv 0000:02:08.0: PCI INT A -> Link[APC1] -> GSI 16 (level, low) -> IRQ 16
bttv0: Bt878 (rev 17) at 0000:02:08.0, irq: 16, latency: 32, mmio: 0xfddff000
bttv0: using:  *** UNKNOWN/GENERIC ***  [card=0,autodetected]
bttv0: gpio: en=00000000, out=00000000 in=00f4ff00 [init]
tveeprom 3-0050: Huh, no eeprom present (err=-6)?
bttv0: tuner type unset
bttv0: registered device video0
bttv0: registered device vbi0
IR Sony protocol handler initialized
lirc_dev: IR Remote Control driver registered, major 251 
IR LIRC bridge handler initialized
EXT4-fs (sda3): re-mounted. Opts: (null)
scsi 4:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9451 PQ: 0 ANSI: 0
sd 4:0:0:0: Attached scsi generic sg3 type 0
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
sd 4:0:0:0: [sdc] Attached SCSI removable disk
EXT4-fs (sda3): re-mounted. Opts: (null)
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
Adding 530140k swap on /dev/sda2.  Priority:-1 extents:1 across:530140k 
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
usb 1-4.4: reset high speed USB device using ehci_hcd and address 5
#xorg
[    51.134] 
X.Org X Server 1.9.2
Release Date: 2010-10-30
[    51.134] X Protocol Version 11, Revision 0
[    51.134] Build Operating System: Linux 2.6.35-ARCH i686 
[    51.134] Current Operating System: Linux rick 2.6.36-ARCH #1 SMP PREEMPT Fri Dec 10 20:01:53 UTC 2010 i686
[    51.134] Kernel command line: root=/dev/disk/by-uuid/4796d6f3-9c81-40db-9218-70186e20e11e ro
[    51.134] Build Date: 01 November 2010  10:35:30PM
[    51.134]  
[    51.134] Current version of pixman: 0.20.0
[    51.134]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    51.134] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    51.135] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Dec 14 15:54:45 2010
[    51.184] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    51.213] (==) No Layout section.  Using the first Screen section.
[    51.213] (==) No screen section available. Using defaults.
[    51.213] (**) |-->Screen "Default Screen Section" (0)
[    51.213] (**) |   |-->Monitor "<default monitor>"
[    51.213] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[    51.213] (==) Automatically adding devices
[    51.213] (==) Automatically enabling devices
[    51.275] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    51.275]     Entry deleted from font path.
[    51.324] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
[    51.336] (==) ModulePath set to "/usr/lib/xorg/modules"
[    51.336] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[    51.336] (II) Loader magic: 0x81f1f80
[    51.336] (II) Module ABI versions:
[    51.336]     X.Org ANSI C Emulation: 0.4
[    51.336]     X.Org Video Driver: 8.0
[    51.336]     X.Org XInput driver : 11.0
[    51.336]     X.Org Server Extension : 4.0
[    51.337] (--) PCI:*(0:1:0:0) 10de:0322:107d:290f rev 161, Mem @ 0xfb000000/16777216, 0xe8000000/134217728, BIOS @ 0x????????/131072
[    51.337] (--) PCI: (0:2:8:0) 109e:036e:0000:0000 rev 17, Mem @ 0xfddff000/4096
[    51.337] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    51.337] (II) LoadModule: "extmod"
[    51.387] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    51.400] (II) Module extmod: vendor="X.Org Foundation"
[    51.400]     compiled for 1.9.2, module version = 1.0.0
[    51.400]     Module class: X.Org Server Extension
[    51.400]     ABI class: X.Org Server Extension, version 4.0
[    51.400] (II) Loading extension MIT-SCREEN-SAVER
[    51.400] (II) Loading extension XFree86-VidModeExtension
[    51.400] (II) Loading extension XFree86-DGA
[    51.400] (II) Loading extension DPMS
[    51.400] (II) Loading extension XVideo
[    51.400] (II) Loading extension XVideo-MotionCompensation
[    51.400] (II) Loading extension X-Resource
[    51.400] (II) LoadModule: "dbe"
[    51.400] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    51.407] (II) Module dbe: vendor="X.Org Foundation"
[    51.407]     compiled for 1.9.2, module version = 1.0.0
[    51.407]     Module class: X.Org Server Extension
[    51.407]     ABI class: X.Org Server Extension, version 4.0
[    51.407] (II) Loading extension DOUBLE-BUFFER
[    51.407] (II) LoadModule: "glx"
[    51.407] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    51.407] dlopen: /usr/lib/xorg/modules/extensions/libglx.so: cannot open shared object file: No such file or directory
[    51.407] (EE) Failed to load /usr/lib/xorg/modules/extensions/libglx.so
[    51.407] (II) UnloadModule: "glx"
[    51.407] (EE) Failed to load module "glx" (loader failed, 7)
[    51.407] (II) LoadModule: "record"
[    51.407] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    51.408] (II) Module record: vendor="X.Org Foundation"
[    51.408]     compiled for 1.9.2, module version = 1.13.0
[    51.408]     Module class: X.Org Server Extension
[    51.408]     ABI class: X.Org Server Extension, version 4.0
[    51.408] (II) Loading extension RECORD
[    51.408] (II) LoadModule: "dri"
[    51.409] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    51.422] (II) Module dri: vendor="X.Org Foundation"
[    51.422]     compiled for 1.9.2, module version = 1.0.0
[    51.422]     ABI class: X.Org Server Extension, version 4.0
[    51.422] (II) Loading extension XFree86-DRI
[    51.422] (II) LoadModule: "dri2"
[    51.422] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    51.423] (II) Module dri2: vendor="X.Org Foundation"
[    51.424]     compiled for 1.9.2, module version = 1.2.0
[    51.424]     ABI class: X.Org Server Extension, version 4.0
[    51.424] (II) Loading extension DRI2
[    51.424] (==) Matched nv as autoconfigured driver 0
[    51.424] (==) Matched vesa as autoconfigured driver 1
[    51.424] (==) Matched fbdev as autoconfigured driver 2
[    51.424] (==) Assigned the driver to the xf86ConfigLayout
[    51.424] (II) LoadModule: "nv"
[    51.442] (WW) Warning, couldn't open module nv
[    51.442] (II) UnloadModule: "nv"
[    51.442] (EE) Failed to load module "nv" (module does not exist, 0)
[    51.442] (II) LoadModule: "vesa"
[    51.442] (WW) Warning, couldn't open module vesa
[    51.442] (II) UnloadModule: "vesa"
[    51.442] (EE) Failed to load module "vesa" (module does not exist, 0)
[    51.442] (II) LoadModule: "fbdev"
[    51.443] (WW) Warning, couldn't open module fbdev
[    51.443] (II) UnloadModule: "fbdev"
[    51.443] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    51.443] (EE) No drivers available.
[    51.443] 
Fatal server error:
[    51.443] no screens found
[    51.443] 
Please consult the The X.Org Foundation support 
     at http://wiki.x.org
 for help. 
[    51.443] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    51.443] 

Offline

#46 2010-12-14 14:05:08

skunktrader
Member
From: Brisbane, Australia
Registered: 2010-02-14
Posts: 1,543

Re: Can't install Nvidia driver.

[    51.442] (EE) Failed to load module "nv" (module does not exist, 0)

Driver missing

Offline

#47 2010-12-14 14:22:13

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

Are you sure you made the config file for nouveau? Xorg won't select it automatically yet because it's still such a new driver. VESA was being picked before by Xorg.

Last edited by thestinger (2010-12-14 14:25:49)

Offline

#48 2010-12-14 15:04:26

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,896
Website

Re: Can't install Nvidia driver.

Its getting very confusing and messy, are you still wanting to use Nvidia drivers

Is vesa driver still installed

pacman -Qi | grep vesa

MrG


Mr Green

Offline

#49 2010-12-14 16:31:43

thestinger
Package Maintainer (PM)
From: Toronto, Canada
Registered: 2010-01-23
Posts: 478

Re: Can't install Nvidia driver.

Mr Green wrote:

Its getting very confusing and messy, are you still wanting to use Nvidia drivers

Is vesa driver still installed

pacman -Qi | grep vesa

MrG

It isn't, but he has nouveau installed, and he just needs a proper config file to make it load.

Offline

#50 2010-12-14 17:25:37

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,896
Website

Re: Can't install Nvidia driver.

fingers crossed.....


Mr Green

Offline

Board footer

Powered by FluxBB