PC freezes with NVIDIA proprietary drivers

Asked by Max

I'm running Feisty 64 bit. I've installed NVIDIA driver for my GeForce6600 (AGP) using standard method of: System->Admin->Restricted.....

Once I've rebooted the system it hanged when X started loading.
A few things:
1) it looked as if the system didn't hang immediately, but after a few seconds,
2) I'm using VIA 82xxxx chipset, hence via_agp is loaded (if you're counting on lsmod), however I do have another PCIe slot, so this might pose a problem (though in WinXP 64, everything works fine, when I use VIA Hyperion drivers)
3) X11's logs don't tell a thing but everything loaded OK, which of course isn't the case
4) Tried to disable AGP, didn't help
5) Besides it looks like AGP is always disabled because in /proc/driver/nvidia/agp/status it is shown as disabled (though "card" and "host-...." show everything ok)

Any help would be highly apprietiated
Thanks

Question information

Language:
English Edit question
Status:
Answered
For:
Ubuntu linux-restricted-modules-2.6.20 Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:

This question was reopened

  • by Max
Revision history for this message
Cesare Tirabassi (norsetto) said :
#1

Once installed, did you configure it with nvidia-xconfig?

Revision history for this message
Max (maksim-a) said :
#2

Yes, of course.
I also tried to set NvAgp to 0, and it didn't help either

Revision history for this message
Cesare Tirabassi (norsetto) said :
#3

I don't understand what sets you against agp? You have an agp card or not? Also note that agp support is not a module anymore but is built in your kernel:

cesare@desktop:~$ cat /boot/config-2.6.20-16-generic | grep AGP
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=m
CONFIG_AGP_SIS=m
CONFIG_AGP_VIA=m

Now, can you paste here your xorg.conf and Xorg.0.log files?

Revision history for this message
Max (maksim-a) said :
#4

Yes I have an AGP card.
What sets me against AGP is that my board supports both AGP and PCIe, I'm not very familiar with the PCI protocol but maybe this might cause
problems for loosely written drivers.
Besides on WinXP64 nothing worked until I installed VIA drivers.

Here they're:

xorg.conf:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder26) Thu Nov 9 17:55:59 PST 2006

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf(5) manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen" 0 0
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    InputDevice "stylus" "SendCoreEvents"
    InputDevice "cursor" "SendCoreEvents"
    InputDevice "eraser" "SendCoreEvents"
EndSection

Section "Files"

 # path to defoma fonts
    FontPath "/usr/share/fonts/X11/misc"
    FontPath "/usr/share/fonts/X11/cyrillic"
    FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/Type1"
    FontPath "/usr/share/fonts/X11/100dpi"
    FontPath "/usr/share/fonts/X11/75dpi"
    FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load "bitmap"
    Load "ddc"
    Load "extmod"
    Load "freetype"
    Load "glx"
    Load "int10"
    Load "vbe"
EndSection

Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ImPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
    Identifier "stylus"
    Driver "wacom"
    Option "Device" "/dev/input/wacom"
    Option "Type" "stylus"
    Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
    Identifier "eraser"
    Driver "wacom"
    Option "Device" "/dev/input/wacom"
    Option "Type" "eraser"
    Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
    Identifier "cursor"
    Driver "wacom"
    Option "Device" "/dev/input/wacom"
    Option "Type" "cursor"
    Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "Monitor"
    Identifier "Generic Monitor"
    HorizSync 30.0 - 68.0
    VertRefresh 50.0 - 70.0
    Option "DPMS"
EndSection

Section "Device"
    Identifier "Generic Video Card"
    Driver "nvidia"
EndSection

Section "Screen"
    Identifier "Default Screen"
    Device "Generic Video Card"
    Monitor "Generic Monitor"
    DefaultDepth 24
    SubSection "Display"
        Depth 1
        Modes "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth 4
        Modes "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth 8
        Modes "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth 15
        Modes "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth 16
        Modes "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth 24
        Modes "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Extensions"
    Option "Composite" "Enable"
EndSection

Xorg.0.log:

Revision history for this message
Max (maksim-a) said :
#5

Sorry for the mess, I pressed the wrong button.

Xorg.0.log:

X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: Linux Ubuntu
Current Operating System: Linux sniffer 2.6.20-15-generic #2 SMP Sun Apr 15 06:17:24 UTC 2007 x86_64
Build Date: 04 April 2007
 Before reporting problems, check http://wiki.x.org
 to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Jun 12 20:15:22 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Generic Monitor"
(**) | |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "stylus"
(**) |-->Input Device "cursor"
(**) |-->Input Device "eraser"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
 Entry deleted from font path.
(**) FontPath set to:
 /usr/share/fonts/X11/misc,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
 /usr/share/fonts/X11/misc,
 /usr/X11R6/lib/X11/fonts/misc,
 /usr/share/fonts/X11/cyrillic,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/X11R6/lib/X11/fonts/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x7a16e0
(II) Module ABI versions:
 X.Org ANSI C Emulation: 0.3
 X.Org Video Driver: 1.1
 X.Org XInput driver : 0.7
 X.Org Server Extension : 0.3
 X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0308 card 1849,0308 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 1106,1308 card 1849,1308 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:2: chip 1106,2308 card 1849,2308 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:3: chip 1106,3208 card 0000,0000 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:4: chip 1106,4308 card 1849,4308 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:5: chip 1106,5308 card 1849,5308 rev 00 class 08,00,20 hdr 80
(II) PCI: 00:00:7: chip 1106,7308 card 0000,0000 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b198 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1106,a208 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:0f:0: chip 1106,0591 card 1849,0591 rev 80 class 01,01,8f hdr 80
(II) PCI: 00:0f:1: chip 1106,0571 card 1849,0571 rev 07 class 01,01,8a hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:4: chip 1106,3104 card 1849,3104 rev 86 class 0c,03,20 hdr 80
(II) PCI: 00:11:0: chip 1106,3337 card 1849,3337 rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:7: chip 1106,287e card 1106,337e rev 00 class 06,00,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1849,3065 rev 7c class 02,00,00 hdr 00
(II) PCI: 00:13:0: chip 1106,337b card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 10de,00f2 card 0000,0000 rev a2 class 03,00,00 hdr 00
(II) PCI: 80:01:0: chip 1106,3288 card 1849,0888 rev 10 class 04,03,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,128), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000b (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
 [0] -1 0 0xf3c00000 - 0xf7cfffff (0x4100000) MX[B]
(II) Bus 1 prefetchable memory range:
 [0] -1 0 0xbff00000 - 0xdfefffff (0x20000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:2:0), (0,2,2), BCTRL: 0x0007 (VGA_EN is cleared)
(II) Bus 2 non-prefetchable memory range:
 [0] -1 0 0xf7d00000 - 0xf7dfffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus 128: bridge is at (0:0:0), (128,128,0), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 128 I/O range:
 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 128 non-prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 128 prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI:*(1:0:0) nVidia Corporation NV43 [GeForce 6600/GeForce 6600 GT] rev 162, Mem @ 0xf6000000/24, 0xc0000000/28, 0xf5000000/24, BIOS @ 0xf7ce0000/17
(II) Addressable bus resource ranges are
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
 [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
(II) Active PCI resource ranges:
 [0] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [1] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [2] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [3] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [4] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [5] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [6] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [7] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [8] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [9] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [10] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [11] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [12] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [13] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [14] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [15] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [16] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [17] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [18] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [19] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) Active PCI resource ranges after removing overlaps:
 [0] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [1] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [2] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [3] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [4] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [5] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [6] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [7] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [8] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [9] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [10] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [11] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [12] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [13] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [14] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [15] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [16] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [17] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [18] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [19] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [5] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [6] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [7] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [8] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [9] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [14] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [15] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [16] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [18] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [21] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [22] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [23] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [24] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [25] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules//libddc.so
(II) Module ddc: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
 compiled for 7.2.0, module version = 2.1.0
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
 compiled for 4.0.2, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.1
(II) NVIDIA GLX Module 100.14.09 Sat May 26 01:26:01 PDT 2007
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
 compiled for 4.0.2, module version = 1.0.0
 Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.1
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "wacom"
(II) Loading /usr/lib/xorg/modules/input//wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
 compiled for 4.3.99.902, module version = 1.0.0
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) Wacom driver level: 47-0.7.7-7 $
(II) NVIDIA dlloader X Driver 100.14.09 Sat May 26 00:45:12 PDT 2007
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "wfb"
(II) LoadModule: "wfb"
(II) Loading /usr/lib/xorg/modules//libwfb.so
(II) Module wfb: vendor="NVIDIA Corporation"
 compiled for 7.1.99.2, module version = 1.0.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules//libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 0.1.0
 ABI class: X.Org Video Driver, version 1.1
(II) resource ranges after xf86ClaimFixedResources() call:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [5] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [6] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [7] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [8] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [9] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [14] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [15] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [16] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [18] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [21] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [22] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [23] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [24] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [25] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) resource ranges after probing:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [5] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [6] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [7] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [8] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [9] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
 [13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
 [14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
 [15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [17] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [18] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [19] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [20] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [21] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [22] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [23] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [24] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [25] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [26] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [27] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [28] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
 [29] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
 [30] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Enabling RENDER acceleration
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0): enabled.
(II) NVIDIA(0): NVIDIA GPU GeForce Go 6600 GT (NV43) at PCI:1:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 262144 kBytes
(--) NVIDIA(0): VideoBIOS: 05.43.02.61.00
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce Go 6600 GT at
(--) NVIDIA(0): PCI:1:0:0:
(--) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0)
(--) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0): 400.0 MHz maximum pixel
(--) NVIDIA(0): clock
(II) NVIDIA(0): Assigned Display Device: CRT-0
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0): "1152x864"
(II) NVIDIA(0): Virtual screen size determined to be 1152 x 864
(--) NVIDIA(0): DPI set to (88, 91); computed from "UseEdidDpi" X config
(--) NVIDIA(0): option
(==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
 [0] 0 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B]
 [1] 0 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B]
 [2] 0 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B]
 [3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [7] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [8] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [9] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [11] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [12] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [13] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [14] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
 [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
 [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
 [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [20] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [21] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [22] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [23] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [24] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [25] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [26] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [27] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [28] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [29] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [30] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [31] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
 [32] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
 [33] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)

Backtrace:
0: /usr/X11R6/bin/X(xf86SigHandler+0x6d) [0x48282d]
1: /lib/libc.so.6 [0x2aab48fc9d40]
2: /usr/lib/xorg/modules/drivers//nvidia_drv.so(_nv001073X+0x36) [0x2aab4b4850b6]

Fatal server error:
Caught signal 11. Server aborting

Revision history for this message
Max (maksim-a) said :
#6

By the way, this particular time I installed the drivers using Envy, and I got a crash instead of a hung (as you can see)

Revision history for this message
Cesare Tirabassi (norsetto) said :
#7

Can you generate the log file with an higher verbose level (I think 5 would do)?

Revision history for this message
Max (maksim-a) said :
#8

Of course, here it is (I ran X with "startx -- -logverbose 5"):

X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: Linux Ubuntu
Current Operating System: Linux sniffer 2.6.20-15-generic #2 SMP Sun Apr 15 06:17:24 UTC 2007 x86_64
Build Date: 04 April 2007
 Before reporting problems, check http://wiki.x.org
 to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jun 13 00:59:26 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Generic Monitor"
(**) | |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "stylus"
(**) |-->Input Device "cursor"
(**) |-->Input Device "eraser"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
 Entry deleted from font path.
(**) FontPath set to:
 /usr/share/fonts/X11/misc,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
 /usr/share/fonts/X11/misc,
 /usr/X11R6/lib/X11/fonts/misc,
 /usr/share/fonts/X11/cyrillic,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/X11R6/lib/X11/fonts/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x7a16e0
(II) Module ABI versions:
 X.Org ANSI C Emulation: 0.3
 X.Org Video Driver: 1.1
 X.Org XInput driver : 0.7
 X.Org Server Extension : 0.3
 X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0308 card 1849,0308 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 1106,1308 card 1849,1308 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:2: chip 1106,2308 card 1849,2308 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:3: chip 1106,3208 card 0000,0000 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:4: chip 1106,4308 card 1849,4308 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:00:5: chip 1106,5308 card 1849,5308 rev 00 class 08,00,20 hdr 80
(II) PCI: 00:00:7: chip 1106,7308 card 0000,0000 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b198 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1106,a208 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:0f:0: chip 1106,0591 card 1849,0591 rev 80 class 01,01,8f hdr 80
(II) PCI: 00:0f:1: chip 1106,0571 card 1849,0571 rev 07 class 01,01,8a hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3038 card 1849,3038 rev a0 class 0c,03,00 hdr 80
(II) PCI: 00:10:4: chip 1106,3104 card 1849,3104 rev 86 class 0c,03,20 hdr 80
(II) PCI: 00:11:0: chip 1106,3337 card 1849,3337 rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:7: chip 1106,287e card 1106,337e rev 00 class 06,00,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1849,3065 rev 7c class 02,00,00 hdr 00
(II) PCI: 00:13:0: chip 1106,337b card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 10de,00f2 card 0000,0000 rev a2 class 03,00,00 hdr 00
(II) PCI: 80:01:0: chip 1106,3288 card 1849,0888 rev 10 class 04,03,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,128), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000b (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
 [0] -1 0 0xf3c00000 - 0xf7cfffff (0x4100000) MX[B]
(II) Bus 1 prefetchable memory range:
 [0] -1 0 0xbff00000 - 0xdfefffff (0x20000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:2:0), (0,2,2), BCTRL: 0x0007 (VGA_EN is cleared)
(II) Bus 2 non-prefetchable memory range:
 [0] -1 0 0xf7d00000 - 0xf7dfffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus 128: bridge is at (0:0:0), (128,128,0), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 128 I/O range:
 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 128 non-prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 128 prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI:*(1:0:0) nVidia Corporation NV43 [GeForce 6600/GeForce 6600 GT] rev 162, Mem @ 0xf6000000/24, 0xc0000000/28, 0xf5000000/24, BIOS @ 0xf7ce0000/17
(II) Addressable bus resource ranges are
 [0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
 [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
(II) Active PCI resource ranges:
 [0] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [1] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [2] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [3] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [4] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [5] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [6] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [7] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [8] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [9] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [10] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [11] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [12] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [13] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [14] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [15] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [16] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [17] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [18] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [19] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) Active PCI resource ranges after removing overlaps:
 [0] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [1] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [2] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [3] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [4] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [5] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [6] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [7] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [8] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [9] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [10] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [11] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [12] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [13] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [14] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [15] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [16] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [17] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [18] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [19] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [5] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [6] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [7] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [8] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [9] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [14] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [15] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [16] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [18] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [21] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [22] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [23] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [24] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [25] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules//libddc.so
(II) Module ddc: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
 compiled for 7.2.0, module version = 2.1.0
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
 compiled for 4.0.2, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.1
(II) NVIDIA GLX Module 100.14.09 Sat May 26 01:26:01 PDT 2007
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
 compiled for 4.0.2, module version = 1.0.0
 Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.1
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "wacom"
(II) Loading /usr/lib/xorg/modules/input//wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
 compiled for 4.3.99.902, module version = 1.0.0
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) Wacom driver level: 47-0.7.7-7 $
(II) NVIDIA dlloader X Driver 100.14.09 Sat May 26 00:45:12 PDT 2007
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) NVIDIA(0): Found 1 NVIDIA X Screens
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "wfb"
(II) LoadModule: "wfb"
(II) Loading /usr/lib/xorg/modules//libwfb.so
(II) Module wfb: vendor="NVIDIA Corporation"
 compiled for 7.1.99.2, module version = 1.0.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules//libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 0.1.0
 ABI class: X.Org Video Driver, version 1.1
(II) resource ranges after xf86ClaimFixedResources() call:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [5] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [6] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [7] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [8] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [9] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [14] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [15] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [16] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [18] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [21] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [22] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [23] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [24] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [25] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
(II) resource ranges after probing:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [5] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [6] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [7] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [8] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [9] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
 [13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
 [14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
 [15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [17] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [18] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [19] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [20] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [21] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [22] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [23] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [24] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [25] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [26] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [27] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [28] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
 [29] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
 [30] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(==) NVIDIA(0): Using HW cursor
(**) NVIDIA(0): Enabling RENDER acceleration
(==) NVIDIA(0): Video key set to default value of 0x101fe
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0): enabled.
(II) NVIDIA(0): NVIDIA GPU GeForce Go 6600 GT (NV43) at PCI:1:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 262144 kBytes
(II) NVIDIA(0): GPU Architecture: 0x40
(II) NVIDIA(0): GPU Implementation: 0x43
(II) NVIDIA(0): GPU Revision: 0xa4
(II) NVIDIA(0): GPU RAM Type: DDR1
(--) NVIDIA(0): VideoBIOS: 05.43.02.61.00
(--) NVIDIA(0): Found 2 CRTCs on board
(II) NVIDIA(0): Supported display device(s): CRT-0, CRT-1, DFP-0, TV-0
(II) NVIDIA(0): Bus detected as PCI Express
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(II) NVIDIA(0): VPES : 3
(II) NVIDIA(0): SPS : 8
(II) NVIDIA(0):
(II) NVIDIA(0): Mode timing constraints for : GeForce Go 6600 GT
(II) NVIDIA(0): Maximum mode timing values :
(II) NVIDIA(0): Horizontal Visible Width : 8192
(II) NVIDIA(0): Horizontal Blank Start : 8192
(II) NVIDIA(0): Horizontal Blank Width : 4096
(II) NVIDIA(0): Horizontal Sync Start : 8184
(II) NVIDIA(0): Horizontal Sync Width : 504
(II) NVIDIA(0): Horizontal Total Width : 8224
(II) NVIDIA(0): Vertical Visible Height : 8192
(II) NVIDIA(0): Vertical Blank Start : 8192
(II) NVIDIA(0): Vertical Blank Width : 256
(II) NVIDIA(0): Veritcal Sync Start : 8191
(II) NVIDIA(0): Vertical Sync Width : 15
(II) NVIDIA(0): Vertical Total Height : 8193
(II) NVIDIA(0):
(II) NVIDIA(0): Minimum mode timing values :
(II) NVIDIA(0): Horizontal Total Width : 40
(II) NVIDIA(0): Vertical Total Height : 2
(II) NVIDIA(0):
(II) NVIDIA(0): Mode timing alignment :
(II) NVIDIA(0): Horizontal Visible Width : multiples of 8
(II) NVIDIA(0): Horizontal Blank Start : multiples of 8
(II) NVIDIA(0): Horizontal Blank Width : multiples of 8
(II) NVIDIA(0): Horizontal Sync Start : multiples of 8
(II) NVIDIA(0): Horizontal Sync Width : multiples of 8
(II) NVIDIA(0): Horizontal Total Width : multiples of 8
(II) NVIDIA(0):
(--) NVIDIA(0): Connected display device(s) on GeForce Go 6600 GT at
(--) NVIDIA(0): PCI:1:0:0:
(--) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0)
(--) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0): 400.0 MHz maximum pixel
(--) NVIDIA(0): clock
(--) NVIDIA(0):
(--) NVIDIA(0): --- EDID for Mag InnoVision MAG DJ707 (CRT-0) ---
(--) NVIDIA(0): EDID Version : 1.1
(--) NVIDIA(0): Manufacturer : MAG
(--) NVIDIA(0): Monitor Name : Mag InnoVision MAG DJ707
(--) NVIDIA(0): Product ID : 30546
(--) NVIDIA(0): 32-bit Serial Number : 411
(--) NVIDIA(0): Serial Number String :
(--) NVIDIA(0): Manufacture Date : 1998, week 23
(--) NVIDIA(0): DPMS Capabilities : Suspend Active Off
(--) NVIDIA(0): Prefer first detailed timing : No
(--) NVIDIA(0): Supports GTF : No
(--) NVIDIA(0): Maximum Image Size : 330mm x 240mm
(--) NVIDIA(0): Valid HSync Range : 30.0 kHz - 70.0 kHz
(--) NVIDIA(0): Valid VRefresh Range : 50 Hz - 120 Hz
(--) NVIDIA(0): EDID maximum pixel clock : 159.3 MHz
(--) NVIDIA(0):
(--) NVIDIA(0): Established Timings:
(--) NVIDIA(0): 640 x 480 @ 60 Hz
(--) NVIDIA(0): 640 x 480 @ 72 Hz
(--) NVIDIA(0): 640 x 480 @ 75 Hz
(--) NVIDIA(0): 800 x 600 @ 56 Hz
(--) NVIDIA(0): 800 x 600 @ 60 Hz
(--) NVIDIA(0): 800 x 600 @ 72 Hz
(--) NVIDIA(0): 800 x 600 @ 75 Hz
(--) NVIDIA(0): 1024 x 768 @ 60 Hz
(--) NVIDIA(0): 1024 x 768 @ 70 Hz
(--) NVIDIA(0): 1024 x 768 @ 75 Hz
(--) NVIDIA(0):
(--) NVIDIA(0): Standard Timings:
(--) NVIDIA(0): 1280 x 1024 @ 60 Hz
(--) NVIDIA(0): 640 x 480 @ 85 Hz
(--) NVIDIA(0):
(--) NVIDIA(0): Detailed Timings:
(--) NVIDIA(0): 1024 x 768 @ 85 Hz
(--) NVIDIA(0): Pixel Clock : 94.50 MHz
(--) NVIDIA(0): HRes, HSyncStart : 1024, 1072
(--) NVIDIA(0): HSyncEnd, HTotal : 1168, 1376
(--) NVIDIA(0): VRes, VSyncStart : 768, 769
(--) NVIDIA(0): VSyncEnd, VTotal : 772, 808
(--) NVIDIA(0): H/V Polarity : +/+
(--) NVIDIA(0): 800 x 600 @ 85 Hz
(--) NVIDIA(0): Pixel Clock : 56.25 MHz
(--) NVIDIA(0): HRes, HSyncStart : 800, 832
(--) NVIDIA(0): HSyncEnd, HTotal : 896, 1048
(--) NVIDIA(0): VRes, VSyncStart : 600, 601
(--) NVIDIA(0): VSyncEnd, VTotal : 604, 631
(--) NVIDIA(0): H/V Polarity : +/+
(--) NVIDIA(0):
(--) NVIDIA(0): --- End of EDID for Mag InnoVision MAG DJ707 (CRT-0) ---
(--) NVIDIA(0):
(II) NVIDIA(0): Frequency information for Mag InnoVision MAG DJ707 (CRT-0):
(II) NVIDIA(0): HorizSync : 30.000-70.000 kHz
(II) NVIDIA(0): VertRefresh : 50.000-120.000 Hz
(II) NVIDIA(0): (HorizSync from EDID)
(II) NVIDIA(0): (VertRefresh from EDID)
(II) NVIDIA(0):
(II) NVIDIA(0): --- Modes in ModePool for Mag InnoVision MAG DJ707 (CRT-0) ---
(II) NVIDIA(0): "nvidia-auto-select" : 1280 x 1024 @ 60.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1680x1050" : 1680 x 1050 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1680x1050_60" : 1680 x 1050 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1600x1024" : 1600 x 1024 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1600x1024_60" : 1600 x 1024 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1440x900" : 1440 x 900 @ 60.2 Hz (from: X Server)
(II) NVIDIA(0): "1440x900_60" : 1440 x 900 @ 60.2 Hz (from: X Server)
(II) NVIDIA(0): "1400x1050" : 1400 x 1050 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1400x1050_60" : 1400 x 1050 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1280x1024" : 1280 x 1024 @ 60.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1280x1024_60" : 1280 x 1024 @ 60.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1280x960" : 1280 x 960 @ 60.0 Hz (from: X Server, VESA)
(II) NVIDIA(0): "1280x960_60" : 1280 x 960 @ 60.0 Hz (from: X Server, VESA)
(II) NVIDIA(0): "1280x800" : 1280 x 800 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1280x800_60" : 1280 x 800 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1280x768" : 1280 x 768 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1280x768_60" : 1280 x 768 @ 60.0 Hz (from: X Server)
(II) NVIDIA(0): "1152x864" : 1152 x 864 @ 75.0 Hz (from: X Server, VESA)
(II) NVIDIA(0): "1152x864_75" : 1152 x 864 @ 75.0 Hz (from: X Server, VESA)
(II) NVIDIA(0): "1152x768" : 1152 x 768 @ 54.8 Hz (from: X Server)
(II) NVIDIA(0): "1152x768_55" : 1152 x 768 @ 54.8 Hz (from: X Server)
(II) NVIDIA(0): "1024x768" : 1024 x 768 @ 85.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1024x768_85" : 1024 x 768 @ 85.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1024x768_75" : 1024 x 768 @ 75.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1024x768_70" : 1024 x 768 @ 70.1 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1024x768_60" : 1024 x 768 @ 60.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "1024x768_87i" : 1024 x 768 @ 87.0 Hz Interlace (from: X Server, VESA)
(II) NVIDIA(0): "840x525" : 840 x 525 @ 60.1 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "840x525d60" : 840 x 525 @ 60.1 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "832x624" : 832 x 624 @ 74.5 Hz (from: X Server)
(II) NVIDIA(0): "832x624_75" : 832 x 624 @ 74.5 Hz (from: X Server)
(II) NVIDIA(0): "800x600" : 800 x 600 @ 85.1 Hz (from: X Server, VESA)
(II) NVIDIA(0): "800x600_85" : 800 x 600 @ 85.1 Hz (from: X Server, VESA)
(II) NVIDIA(0): "800x600_85_0" : 800 x 600 @ 85.1 Hz (from: EDID)
(II) NVIDIA(0): "800x600_75" : 800 x 600 @ 75.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "800x600_72" : 800 x 600 @ 72.2 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "800x600_60" : 800 x 600 @ 60.3 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "800x600_56" : 800 x 600 @ 56.2 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "800x512" : 800 x 512 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "800x512d60" : 800 x 512 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "720x450" : 720 x 450 @ 60.2 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "720x450d60" : 720 x 450 @ 60.2 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "720x400" : 720 x 400 @ 85.0 Hz (from: X Server, VESA)
(II) NVIDIA(0): "720x400_85" : 720 x 400 @ 85.0 Hz (from: X Server, VESA)
(II) NVIDIA(0): "640x512" : 640 x 512 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "640x512d60" : 640 x 512 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "640x480" : 640 x 480 @ 85.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "640x480_85" : 640 x 480 @ 85.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "640x480_75" : 640 x 480 @ 75.0 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "640x480_73" : 640 x 480 @ 72.8 Hz (from: X Server, VESA, EDID)
(II) NVIDIA(0): "640x480d60" : 640 x 480 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "640x480_60" : 640 x 480 @ 60.0 Hz (from: VESA, EDID)
(II) NVIDIA(0): "640x400" : 640 x 400 @ 85.1 Hz (from: X Server, VESA)
(II) NVIDIA(0): "640x400_85" : 640 x 400 @ 85.1 Hz (from: X Server, VESA)
(II) NVIDIA(0): "640x400d60" : 640 x 400 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "640x384" : 640 x 384 @ 60.1 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "640x384d60" : 640 x 384 @ 60.1 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "640x350" : 640 x 350 @ 85.1 Hz (from: X Server, VESA)
(II) NVIDIA(0): "640x350_85" : 640 x 350 @ 85.1 Hz (from: X Server, VESA)
(II) NVIDIA(0): "576x432" : 576 x 432 @ 75.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "576x432d75" : 576 x 432 @ 75.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "576x384" : 576 x 384 @ 54.8 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "576x384d55" : 576 x 384 @ 54.8 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "512x384" : 512 x 384 @ 85.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "512x384d85" : 512 x 384 @ 85.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "512x384d75" : 512 x 384 @ 75.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "512x384d70" : 512 x 384 @ 70.1 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "512x384d60" : 512 x 384 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "512x384d87i" : 512 x 384 @ 87.1 Hz Interlace DoubleScan (from: X Server)
(II) NVIDIA(0): "416x312" : 416 x 312 @ 74.7 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "416x312d75" : 416 x 312 @ 74.7 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "400x300" : 400 x 300 @ 85.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "400x300d85" : 400 x 300 @ 85.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "400x300d75" : 400 x 300 @ 75.1 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "400x300d72" : 400 x 300 @ 72.2 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "400x300d60" : 400 x 300 @ 60.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "400x300d56" : 400 x 300 @ 56.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "360x200" : 360 x 200 @ 85.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "360x200d85" : 360 x 200 @ 85.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x240" : 320 x 240 @ 85.2 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x240d85" : 320 x 240 @ 85.2 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x240d75" : 320 x 240 @ 75.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x240d73" : 320 x 240 @ 72.8 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x240d60" : 320 x 240 @ 60.0 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x200" : 320 x 200 @ 85.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x200d85" : 320 x 200 @ 85.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x175" : 320 x 175 @ 85.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): "320x175d85" : 320 x 175 @ 85.3 Hz DoubleScan (from: X Server)
(II) NVIDIA(0): --- End of ModePool for Mag InnoVision MAG DJ707 (CRT-0): ---
(II) NVIDIA(0):
(II) NVIDIA(0): Assigned Display Device: CRT-0
(II) NVIDIA(0): Requested modes:
(II) NVIDIA(0): "1280x1024"
(II) NVIDIA(0): "1152x864"
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0): MetaMode "1280x1024":
(II) NVIDIA(0): Bounding Box: [0, 0, 1280, 1024]
(II) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0): "1280x1024"
(II) NVIDIA(0): Size : 1280 x 1024
(II) NVIDIA(0): Offset : +0 +0
(II) NVIDIA(0): Panning Domain: @ 1280 x 1024
(II) NVIDIA(0): Position : [0, 0, 1280, 1024]
(II) NVIDIA(0): MetaMode "1152x864":
(II) NVIDIA(0): Bounding Box: [0, 0, 1152, 864]
(II) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0): "1152x864"
(II) NVIDIA(0): Size : 1152 x 864
(II) NVIDIA(0): Offset : +0 +0
(II) NVIDIA(0): Panning Domain: @ 1152 x 864
(II) NVIDIA(0): Position : [0, 0, 1152, 864]
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(II) NVIDIA(0):
(II) NVIDIA(0): Implicitly adding the following modes to X Screen 0 (these
(II) NVIDIA(0): will be available via XRandR and XF86VidMode):
(II) NVIDIA(0):
(II) NVIDIA(0): "1280x960" : 1280 x 960 @ 60.0 Hz
(II) NVIDIA(0): "1280x800" : 1280 x 800 @ 60.0 Hz
(II) NVIDIA(0): "1280x768" : 1280 x 768 @ 60.0 Hz
(II) NVIDIA(0): "1152x768" : 1152 x 768 @ 54.8 Hz
(II) NVIDIA(0): "1024x768" : 1024 x 768 @ 85.0 Hz
(II) NVIDIA(0): "1024x768_75" : 1024 x 768 @ 75.0 Hz
(II) NVIDIA(0): "1024x768_70" : 1024 x 768 @ 70.1 Hz
(II) NVIDIA(0): "1024x768_60" : 1024 x 768 @ 60.0 Hz
(II) NVIDIA(0): "1024x768_87i" : 1024 x 768 @ 87.0 Hz Interlace
(II) NVIDIA(0): "840x525" : 840 x 525 @ 60.1 Hz DoubleScan
(II) NVIDIA(0): "832x624" : 832 x 624 @ 74.5 Hz
(II) NVIDIA(0): "800x600" : 800 x 600 @ 85.1 Hz
(II) NVIDIA(0): "800x600_85_0" : 800 x 600 @ 85.1 Hz
(II) NVIDIA(0): "800x600_75" : 800 x 600 @ 75.0 Hz
(II) NVIDIA(0): "800x600_72" : 800 x 600 @ 72.2 Hz
(II) NVIDIA(0): "800x600_60" : 800 x 600 @ 60.3 Hz
(II) NVIDIA(0): "800x600_56" : 800 x 600 @ 56.2 Hz
(II) NVIDIA(0): "800x512" : 800 x 512 @ 60.0 Hz DoubleScan
(II) NVIDIA(0): "720x450" : 720 x 450 @ 60.2 Hz DoubleScan
(II) NVIDIA(0): "720x400" : 720 x 400 @ 85.0 Hz
(II) NVIDIA(0): "640x512" : 640 x 512 @ 60.0 Hz DoubleScan
(II) NVIDIA(0): "640x480" : 640 x 480 @ 85.0 Hz
(II) NVIDIA(0): "640x480_75" : 640 x 480 @ 75.0 Hz
(II) NVIDIA(0): "640x480_73" : 640 x 480 @ 72.8 Hz
(II) NVIDIA(0): "640x480d60" : 640 x 480 @ 60.0 Hz DoubleScan
(II) NVIDIA(0): "640x480_60" : 640 x 480 @ 60.0 Hz
(II) NVIDIA(0): "640x400" : 640 x 400 @ 85.1 Hz
(II) NVIDIA(0): "640x400d60" : 640 x 400 @ 60.0 Hz DoubleScan
(II) NVIDIA(0): "640x384" : 640 x 384 @ 60.1 Hz DoubleScan
(II) NVIDIA(0): "640x350" : 640 x 350 @ 85.1 Hz
(II) NVIDIA(0): "576x432" : 576 x 432 @ 75.0 Hz DoubleScan
(II) NVIDIA(0): "576x384" : 576 x 384 @ 54.8 Hz DoubleScan
(II) NVIDIA(0): "512x384" : 512 x 384 @ 85.0 Hz DoubleScan
(II) NVIDIA(0): "512x384d75" : 512 x 384 @ 75.0 Hz DoubleScan
(II) NVIDIA(0): "512x384d70" : 512 x 384 @ 70.1 Hz DoubleScan
(II) NVIDIA(0): "512x384d60" : 512 x 384 @ 60.0 Hz DoubleScan
(II) NVIDIA(0): "512x384d87i" : 512 x 384 @ 87.1 Hz Interlace DoubleScan
(II) NVIDIA(0): "416x312" : 416 x 312 @ 74.7 Hz DoubleScan
(II) NVIDIA(0): "400x300" : 400 x 300 @ 85.3 Hz DoubleScan
(II) NVIDIA(0): "400x300d75" : 400 x 300 @ 75.1 Hz DoubleScan
(II) NVIDIA(0): "400x300d72" : 400 x 300 @ 72.2 Hz DoubleScan
(II) NVIDIA(0): "400x300d60" : 400 x 300 @ 60.3 Hz DoubleScan
(II) NVIDIA(0): "400x300d56" : 400 x 300 @ 56.3 Hz DoubleScan
(II) NVIDIA(0): "360x200" : 360 x 200 @ 85.0 Hz DoubleScan
(II) NVIDIA(0): "320x240" : 320 x 240 @ 85.2 Hz DoubleScan
(II) NVIDIA(0): "320x240d75" : 320 x 240 @ 75.0 Hz DoubleScan
(II) NVIDIA(0): "320x240d73" : 320 x 240 @ 72.8 Hz DoubleScan
(II) NVIDIA(0): "320x240d60" : 320 x 240 @ 60.0 Hz DoubleScan
(II) NVIDIA(0): "320x200" : 320 x 200 @ 85.3 Hz DoubleScan
(II) NVIDIA(0): "320x175" : 320 x 175 @ 85.3 Hz DoubleScan
(II) NVIDIA(0):
(II) NVIDIA(0): Computing DPI using physical size from Mag InnoVision MAG
(II) NVIDIA(0): DJ707 (CRT-0)'s EDID and first mode to be programmed on
(II) NVIDIA(0): Mag InnoVision MAG DJ707 (CRT-0):
(II) NVIDIA(0): width : 1280 pixels 330 mm (DPI: 98)
(II) NVIDIA(0): height : 1024 pixels 240 mm (DPI: 108)
(--) NVIDIA(0): DPI set to (98, 108); computed from "UseEdidDpi" X config
(--) NVIDIA(0): option
(==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
 [0] 0 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B]
 [1] 0 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B]
 [2] 0 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B]
 [3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [7] -1 0 0xf7efc000 - 0xf7efffff (0x4000) MX[B]
 [8] -1 0 0xf7fffc00 - 0xf7fffcff (0x100) MX[B]
 [9] -1 0 0xf7fff800 - 0xf7fff8ff (0x100) MX[B]
 [10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
 [11] -1 0 0xf7ce0000 - 0xf7cfffff (0x20000) MX[B](B)
 [12] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[B](B)
 [13] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
 [14] -1 0 0xf6000000 - 0xf6ffffff (0x1000000) MX[B](B)
 [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
 [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
 [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
 [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [20] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
 [21] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
 [22] -1 0 0x0000e480 - 0x0000e49f (0x20) IX[B]
 [23] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [24] -1 0 0x0000e080 - 0x0000e09f (0x20) IX[B]
 [25] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
 [26] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
 [27] -1 0 0x0000d480 - 0x0000d48f (0x10) IX[B]
 [28] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
 [29] -1 0 0x0000d880 - 0x0000d887 (0x8) IX[B]
 [30] -1 0 0x0000dc00 - 0x0000dc03 (0x4) IX[B]
 [31] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
 [32] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
 [33] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) NVIDIA(0): kernel module enabled successfully
(II) NVIDIA(0): Memory mapped
(II) NVIDIA(0): Created ACPID client socket 14.
(II) NVIDIA(0): Interrupts enabled
(II) NVIDIA(0): The NVIDIA X driver has encountered an error; attempting to
(II) NVIDIA(0): recover...

Backtrace:
0: /usr/bin/X(xf86SigHandler+0x6d) [0x48282d]
1: /lib/libc.so.6 [0x2b6f5360dd40]
2: /usr/lib/xorg/modules/drivers//nvidia_drv.so(_nv001073X+0x36) [0x2b6f55ac90b6]

Fatal server error:
Caught signal 11. Server aborting

Revision history for this message
Cesare Tirabassi (norsetto) said :
#9

I guess you tried all suggestions in chapter 12 of the nvidia readme?
You should make sure that agp is enabled (not the other way around) as I don't think there is a simple way to disable PCIx.
I would also check by installing the open source driver if we have some kind of other problem (or if that also fails to properly detect and use the agp).

Revision history for this message
Max (maksim-a) said :
#10

I tried everything chapter 12 suggests, nothing helped.
Though I find it strange that in /proc/driver/nvidia/agp/status it is said that agp is disabled even when agp=off wasn't passed to the kernel,
because agpgart is compiled inside the kernel, so it should be on, shouldn't it?
Anyway, nvidia's agp driver didn't work either.

By "open source driver" you mean the "nv" driver, because I tried it, but it doesn't use agp and it works ok.
Or maybe you meant something else?

Revision history for this message
Cesare Tirabassi (norsetto) said :
#11

The nv one. Of course it is using it, how would it talk to your card otherwise!?

Revision history for this message
Max (maksim-a) said :
#12

I'm not sure, but it's the nv that you set in xorg.conf ?

Revision history for this message
Sitsofe Wheeler (sitsofe) said :
#13

There is a tiny chance this is the "lockups with a white screen" bug mentioned in the troubleshooting section of https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia#troubleshooting ...

Revision history for this message
Max (maksim-a) said :
#14

Turning off CPU speed scaling didn't help...
All other suggestions didn't help either...

Revision history for this message
Sitsofe Wheeler (sitsofe) said :
#15

Max:
If the machine is on a network, can you still ping it? Does pressing caps lock still cause the caps lock light to change?

Additionally can you post the output of
grep NVRM /var/log/messages
?

Revision history for this message
Sitsofe Wheeler (sitsofe) said :
#16

(changing to an info request)

Can you help with this problem?

Provide an answer of your own, or ask Max for more information if necessary.

To post a message you must log in.