[SOLVED] RT Kernel & Nvidia Drivers

I apologize in advance if this questions has already been answered in the forums.  I did search them and read through a lot of posts but couldn't find exactly what I'm looking for.
Today is my second day with the outstanding Arch Linux.  I was able to get it installed and setup with no problems whatsoever.  Today I'm having a little problem.  I have the kernel package "kernel26-2.6.30.6-1-x86_64.pkg.tar.gz" installed along with the "kernel-headers-2.6.30.5-1-x86_64.pkg.tar.gz" package.  I installed the "nvidia-185.18.36-1-x86_64.pkg.tar.gz" package and all is well on the desktop (have OpenGL and everything.  I need a RT kernel for Jack & Ardour audio recording.  I have installed (kernel26rt-2.6.29.5_rt23-1-x86_64.pkg.tar.gz, not sure which repo I got that from but I installed it with "pacman").  When I boot that kernel I get some error about not being able to load the nvidia module.  I expected that as that's what always happens in other distros.  Usually in them I can install the kernel-headers for the RT kernel, reboot and it works then.  I can't find the headers for the RT kernel I installed and I'm not sure if it would help if I did.
I guess my question is this: is there a simple ("pacman -S some-rt-kernel" & "pacman -S some-nvidia-rt-something") I can do that I don't know about or am I going to have to get my hands all dirty with ABS and/or AUR and source installing?
I installed the base system, X, a full Gnome desktop with every bell & whistle you can think of with the greatest of ease with "pacman".  I just find it hard to believe I can get a RT kernel and Nvidia drivers working the same way.
Anyway, thanks for any help.
Zaephen.
Edit:
I thought I should mention, I just went to "http://repos.archaudio.org/testing/i686/" (the place I think I got my RT kernel, just the x86_64 page) and they have a "nvidia-rt-185.18.14-1-i686.pkg.tar.gz" package in the i686 repo.  Doesn't help me on x86_64 though .
Last edited by Zaephen (2009-09-28 12:00:34)

Zaephen wrote:
A huge thanks to you both!
Taking ugkbunb's advice, I compiled the ice kernel & nvidia-beta.  Worked without any problems and I have a RT kernel !  My default kernel no longer works with Nvidia but I expected that.  I suppose the easiest way to fix that would be to compile the ice kernel without RT, having a "regular" kernel and a "RT kernel?
Thanks for the help guys.  If I can get a regular kernel working with Nvidia support, great, if not, great.  With your help I got a RT kernel working and that's a must for audio recording.
Zaephen.
It is easy to get your non-rt kernel to work with nvidia... just download the pkgbuild for nvidia-beta... change the name to so it does not conflict... I usually change the name of the RT drivers to nvidia-beta-rt... but since you already have them installed as nvidia-beta... you could change it to nvidia-beta-vanilla or anything really... then edit the `uname -r` line so that it points to the proper kernel... pretty sure it is 2.6.31-ARCH... if that doesn't work... just boot into your vanilla kernel and build the package from there leaving the `uname -r' line as is but making sure to change the package name so it doesn't conflict. Walla! two drivers installed and the proper one will load with each kernel.
Zaephen wrote:
ngoonee wrote:
Hmm... are you sure you have the RT kernel? Forced preemption? I couldn't build the nvidia drivers on mine.
As for having nvidia drivers for both kernels, its quite simple. Just install nvidia-beta for the main kernel and copy the PKGBUILD (rename the package to nvidia-beta-rt or something like that) and install that on the RT kernel.
Yes I have both the regular Arch kernel and the RT kernel.
This may sound dumb but, can anyone tell me how to distinguish between kernels when I install them like I did the -ice kernel?  I have the ice kernel installed as posted above with the RT patch.  Now I'm going to try and install another -ice kernel only this time I'm not going to have the RT patch applied.  Won't this install over my present -ice kernel if I don't tell it to call it something else?  How can I call it something else?
Zaephen.
Yes it will... you will need to edit the package name and as well dig through your kernel config and edit the LOCAL VERSION variable. Why do you want to have 3 kernels installed though?
Last edited by ugkbunb (2009-09-21 16:14:13)

Similar Messages

  • [SOLVED] Custom kernel & nvidia

    Hello.
    So i wanted to learn about kernel building for a while and finally decided to jump in. (also i am a new Archlinux user)
    I read the wiki and wanted to try the "traditional" way first so i grabbed the 3.10.0 vanilla tarball and thanks to the wiki, successully compiled and booted it. (i didn't bother trying to start X at this point).
    Then i wanted to use the Arch "abs" way because i wanted to build my custom kernel from the same Arch stable kernel sources (nothing in the 3.10 gives me a boner and the stable arch sources are enough "bleeding edge" for me).
    I followed the wiki procedure and built my linux-3.9.9-1-custom.tar.xz package, then i installed it without any issue. Finally i updated GRUB2 and booted this kernel to make sure it was working.
    Well, it was.
    At this point i knew i had to build a custom nvidia package to make X working so i followed the wiki procedure to build it.
    Here is my PKGBUILD:
    # $Id: PKGBUILD 189199 2013-06-29 10:08:46Z foutrelis $
    # Maintainer : Thomas Baechler <[email protected]>
    pkgname=nvidia-custom
    pkgver=319.32
    _extramodules=extramodules-3.9-custom
    pkgrel=2
    pkgdesc="NVIDIA drivers for linux"
    arch=('i686' 'x86_64')
    url="http://www.nvidia.com/"
    depends=('linux>=3.9' 'linux<3.10' "nvidia-libgl" "nvidia-utils=${pkgver}")
    makedepends=('linux-headers>=3.9' 'linux-headers<3.10')
    conflicts=('nvidia-96xx' 'nvidia-173xx')
    license=('custom')
    install=nvidia.install
    options=(!strip)
    if [ "$CARCH" = "i686" ]; then
    _arch='x86'
    _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
    source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
    md5sums=('978339ff37c3207f3a39d3952721dcdb')
    elif [ "$CARCH" = "x86_64" ]; then
    _arch='x86_64'
    _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
    source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
    md5sums=('d181d856768868823df3bda4607a5315')
    fi
    build() {
    _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
    echo $_kernver
    cd "${srcdir}"
    sh "${_pkg}.run" --extract-only
    cd "${_pkg}/kernel"
    make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
    package() {
    install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
    "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
    install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
    #echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
    sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" "${startdir}/nvidia.install"
    gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
    However when i tried to run makepkg, i got the following error:
    If you are using a Linux 2.4 kernel, please make sure
    you either have configured kernel sources matching your
    kernel or the correct set of kernel headers installed
    on your system.
    If you are using a Linux 2.6 kernel, please make sure
    you have configured kernel sources matching your kernel
    installed on your system. If you specified a separate
    output directory using either the "KBUILD_OUTPUT" or
    the "O" KBUILD parameter, make sure to specify this
    directory with the SYSOUT environment variable or with
    the equivalent nvidia-installer command line option.
    Depending on where and how the kernel sources (or the
    kernel headers) were installed, you may need to specify
    their location with the SYSSRC environment variable or
    the equivalent nvidia-installer command line option.
    *** Unable to determine the target kernel version. ***
    After messing around for quite some time, i discovered nvidia was expecting stuff in the follwing directory:
    /usr/lib/modules/3.9.9-1-custom/build/
    But the build dir did not exist. I looked into the 3.9.9-1-ARCH and found that the build dir was indeed present in the stock kernel directory.
    Since i was stuck i tried the following:
    ln -s /usr/lib/modules/3.9.9-1-ARCH/build /usr/lib/modules/3.9.9-1-custom/build
    and ran makepkg again: it built the package with no issue, so I installed the package.
    I rebooted my machine thinking this ugly hack solved my problem.
    I was wrong...
    When i tried to start X i got this error (using the custom kernel):
    modprobe: ERROR: could not insert 'nvidia': Exec format error
    Here's the full output:
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.9.7-1-ARCH x86_64
    Current Operating System: Linux msytux666 3.9.9-1-custom #2 SMP PREEMPT Sat Jul 6 21:52:16 CEST 2013 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-custom root=UUID=a6b3e912-4bd4-47dc-810e-4d69667b21f9 ro quiet
    Build Date: 01 July 2013 10:48:42AM
    Current version of pixman: 0.30.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    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: Sat Jul 6 23:02:47 2013
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    nitializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    modprobe: ERROR: could not insert 'nvidia': Exec format error
    (EE)
    Fatal server error:
    (EE) no screens found(EE)
    (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    (EE)
    (EE) Server terminated with error (1). Closing log file.
    xinit: giving up
    xinit: unable to connect to X server: Connection refused
    xinit: server error
    Not sure what to do next.
    Thank you for reading
    PS: my stock kernel is still fine and running X with no issue (did not break anything, that's one good thing at least!)
    Last edited by BGK (2013-07-06 23:12:54)

    Did you install the kernel headers when you build the custom package?  You need something to build against, and that /usr/modules/3.9.9-1-ARCH/build is a symlink that is owned by linux-headers.  It points to /usr/src/linux-3.9.9-1-ARCH.  So by symlinking that "build" from ARCH to custom, you are effectively building the module against the wrong headers. 
    Check to make sure that you have installed the headers as well as the kernel.  The PKGBUILD for linux will build multiple packages (linux, linux-headers, and linux-docs).  I like to have all three, since the docs package contains some amazing information and is totally worth the ~16MB of space.  Do you have a directory set for storing built packages?  It is probably a good idea, so that you can keep them around.
    BTW, installing headers using the "traditional method" would include issuing the "make headers-install" command as root (from the source directory of course).  Did you do that?
    Last edited by WonderWoofy (2013-07-06 22:49:30)

  • [SOLVED] Error with Nvidia Drivers (following the Beginner's Guide)

    I followed the beginner's installation guide and everything worked fine all the way up untill updating the kernel module dependencies using the "depmod -a" command..
    First I created the "xorg.conf" file with the "nvidia-xconfig" command and it said:
    Make sure all instances of DRI are commented out:
    #    Load        "dri"
    However, there are no instances of "dri" in my xorg.conf file, so i skipped this step and moved on.
    Next it said:
    Double check your /etc/X11/xorg.conf to make sure your default depth, horizontal sync, vertical refresh, and resolutions are acceptable.
    But I don't know what they should be set to, so I skipped this and moved on again.
    This is where everything fails:
    The next step is to use the following command to update the kernel module dependencies for the nVidia drivers.
    depmod -a
    But when i do that, it fails.
    Anyone know possibly why or has had this issue?
    Last edited by trusktr (2010-02-19 07:22:32)

    PirateJonno wrote:um, I don't think you can just 'do' a kernel update, you have to wait for a new one to come out first
    You can run any kernel version you wish on Arch, if you compile yourself, of course.
    trustktr wrote:Hmmmm, yeah, that is a good question: When to run depmod -a?
    When you first install the proprietary drivers. That's it, unless you will be maintaining a custom kernel system or something. In fact, the proprietary drivers might even run the depmod script themselves, I don't know, since it is a black box binary. Makes sense, but someone else would need to answer that.
    EDIT: Also wanted to add that many shell commands throw no output whatsoever upon successful completion. Therefore, the absence of error output can be interpreted as no error. Just FYI.
    Last edited by Misfit138 (2010-02-21 02:58:04)

  • Blank screen with proprietary nvidia drivers [SOLVED]

    I've just installed arch on a new computer, and have encountered an issue- I can't get it running with the proprietary drivers, just nouveau, which is quite the handicap on a GeForce 660.
    I used the beginner's guide since my last fresh install was using the arch installation framework. Everything went more or less smoothly, and I booted in to a working system- indeed, I can still boot into it just fine if I chroot in with my install media and swap back to nouveau. If I don't, I get the typical udev boot messages and all, and then it blanks out instead of going to the login prompt. It also does this if I uninstall both nvidia and nouveau drivers.
    I've looked at some threads over this, and none of them seemed to apply. I've tried both current and 304 drivers, regenerated initramfs, and blacklisted nouveau.
    One last bit of information that may or may not be relevant: at least one of the threads mentioned these issues being related to GRUB, while I'm booting straight from UEFI using efibootmgr- not sure if that could be related in any way.
    Last edited by azripah (2013-07-04 05:29:19)

    Hm, I seem to have solved it by blacklisting i915, as suggested in the talk page on nvidia drivers for UEFI users.

  • [SOLVED] Extra resolutions for games with Nvidia drivers

    When using the nouveau drivers, games and other such applications will allow me to select any resolution my screens (one 1920x1080, the other 1680x1050-- the latter of which is to the left of the first) will support, as well as 3600x1080, the combined total (spanning both screens). For instance, I can make something like Tux Racer 1280x800, and either windowed or fullscreen. However, with the Nvidia proprietary drivers, the only resolutions that I can select are 1920x1080, 1680x1050, and 3600x1080. This prevents me from playing windowed games in such a way that they don't cover my whole screen, or playing fullscreen games at lower resolutions for higher performance. How can I use the Nvidia drivers and the "extra" resolutions? (Ideally, all those listed in the Xinerama output below)
    Xrandr outputs this:
    Screen 0: minimum 8 x 8, current 3600 x 1080, maximum 16384 x 16384
    DVI-I-0 connected 1920x1080+1680+0 (normal left inverted right x axis y axis) 510mm x 287mm
    1920x1080 60.0*+
    1680x1050 60.0
    1600x1200 60.0
    1440x900 59.9
    1400x1050 74.8 60.0
    1280x1024 75.0 60.0
    1280x960 60.0
    1280x800 59.8
    1152x864 75.0
    1024x768 75.0 70.1 60.0
    832x624 74.6
    800x600 75.0 72.2 60.3 56.2
    700x525 149.5 120.0
    640x480 75.0 72.8 59.9
    512x384 140.1 120.0
    400x300 144.4
    320x240 145.6 120.1
    DVI-I-1 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
    1680x1050 59.9*+ 60.0
    1440x900 75.0 59.9
    1400x1050 60.0
    1280x1024 75.0 60.0
    1280x960 60.0
    1152x864 75.0
    1024x768 75.0 70.1 60.0
    832x624 74.6
    800x600 75.0 72.2 60.3 56.2
    700x525 149.5 120.0
    640x480 75.0 72.8 59.9
    512x384 140.1 120.0
    400x300 144.4
    320x240 145.6 120.1
    DVI-I-2 disconnected (normal left inverted right x axis y axis)
    HDMI-0 disconnected (normal left inverted right x axis y axis)
    DVI-I-3 disconnected (normal left inverted right x axis y axis)
    My xorg.conf is:
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "0"
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/local"
    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"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Acer G235H"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GTS 450"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "CRT-0"
    Option "TwinViewOrientation" "CRT-1 LeftOf CRT-0"
    Option "metamodes" "CRT-0: nvidia-auto-select, CRT-1: nvidia-auto-select"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Last edited by DrKillPatient (2012-07-06 19:29:15)

    brebs wrote:
    Maybe these help:
    http://www.nvnews.net/vbulletin/showthread.php?t=184711
    http://www.nvnews.net/vbulletin/showthread.php?t=184968
    Thanks. The first link worked, in the sense that my games now have all those resolution options, but now there's a new bug.
    To future readers: a solution has been found for this bug as well, see below.
    My metamodes setting now reads:
    Option "metamodes" "CRT-0: nvidia-auto-select, CRT-1: nvidia-auto-select; nvidia-auto-select {ViewPortI n=1920x1080}; nvidia-auto-select {ViewPortIn=1680x1050}; [b]nvidia-auto-select {ViewPortIn=1600x1200};[/b] nvidia-auto-sele ct {ViewPortIn=1440x900}; nvidia-auto-select {ViewPortIn=1400x1050}; nvidia-auto-select {ViewPortIn=1280x1024}; nvi dia-auto-select {ViewPortIn=1280x960}; nvidia-auto-select {ViewPortIn=1280x800}; nvidia-auto-select {ViewPortIn=115 2x864}; nvidia-auto-select {ViewPortIn=1024x768}; nvidia-auto-select {ViewPortIn=832x624}; nvidia-auto-select {View PortIn=800x600}; nvidia-auto-select {ViewPortIn=700x525}; nvidia-auto-select {ViewPortIn=640x480}; nvidia-auto-sele ct {ViewPortIn=512x384}; nvidia-auto-select {ViewPortIn=400x300}; nvidia-auto-select {ViewPortIn=320x240}
    Because I now have included a resolution whose height is 1200 (or so I suppose-- if I remove that part, the issue does not occur), this happens:
    Xrandr output:
    Screen 0: minimum 8 x 8, current 3600 x 1200, maximum 16384 x 16384
    My X screen has the right length, but the wrong height! Now, my desktop seems to span the right area (3600x1080), but if I move my mouse to the bottom of that area, it pans down another 120 pixels. In that area, there's just graphical gibberish, often whatever I had on the screen last time.
    If I use Xrandr to set my screens' output, it works again, butthere a solution within the Nvidia driver settings...
    EDIT: It occurs to me that the setting seems to be taking the largest possible resolution for the X screen based on those metamodes.
    EDIT 2: This is likely intended behavior. The proper virtual resolution (X screen resolution) may be restored by adding
    Virtual 3600 1080
    to the "Display" subsection under the "Screen" section.
    I'll mark this as solved.
    Here's my working xorg.conf, by the way. I've posted only the "Screen" section because that's all I've changed. The rest is in my first post.
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "CRT-0"
    Option "TwinViewOrientation" "CRT-1 LeftOf CRT-0"
    Option "metamodes" "CRT-0: nvidia-auto-select, CRT-1: nvidia-auto-select; nvidia-auto-select {ViewPortIn=1920x1080}; nvidia-auto-select {ViewPortIn=1680x1050}; nvidia-auto-select {ViewPortIn=1600x1200}; nvidia-auto-select {ViewPortIn=1440x900}; nvidia-auto-select {ViewPortIn=1400x1050}; nvidia-auto-select {ViewPortIn=1280x1024}; nvidia-auto-select {ViewPortIn=1280x960}; nvidia-auto-select {ViewPortIn=1280x800}; nvidia-auto-select {ViewPortIn=1152x864}; nvidia-auto-select {ViewPortIn=1024x768}; nvidia-auto-select {ViewPortIn=832x624}; nvidia-auto-select {ViewPortIn=800x600}; nvidia-auto-select {ViewPortIn=700x525}; nvidia-auto-select {ViewPortIn=640x480}; nvidia-auto-select {ViewPortIn=512x384}; nvidia-auto-select {ViewPortIn=400x300}; nvidia-auto-select {ViewPortIn=320x240}"
    SubSection "Display"
    Virtual 3600 1080
    Depth 24
    EndSubSection
    EndSection
    Last edited by DrKillPatient (2012-07-06 19:31:18)

  • Nvidia drivers causing Kernel Panics

    Here's a thread about users of Modo experiencing kernel panics:
    http://forums.luxology.com/discussion/topic.aspx?id=4137&show
    Users with nvidia cards report kernel panics after updating to 10.4.3. I'm using 10.4.5 and still getting them. Crash report states:
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(4.1.8)@0x61099000
    Apple has to address this. It's frustrating having the nvidia drivers tied to OS updates. Sounds great, but now I can't reinstall the old driver.

    I sent a report here:
    http://www.apple.com/macosx/feedback/
    Is this the right place?

  • Reverting to older nvidia drivers

    I recently discovered the simplistic beauty of Archlinux.  I finally found a distro that I'm happy with! 
    With that said, I'm having trouble finding archive repositories, or even archived packages for that matter, that contain versions of packages that I need to revert back to.  In this particular instance, I need to revert my nvidia driver back to 100.14.x because the newer drivers completely hose UT2004. 
    What's the proper way to do this, and can pacman handle it?
    Thanks.

    brebs wrote:
    bgc1954 wrote:every time there is a kernel upgrade you have to reinstall the drivers.. To me, it's a pain.
    Er, you should do that *anyway*. (Edit:) Just because binary distros can usually get away with not doing so, doesn't mean it's a good idea to assume that it's not necessary.
    The point is, you should reinstall the nvidia drivers using a pkgbuild.
    So far as I can remember, the nvidia packages (nvidia and nvidia-utils for me, i686) are upgraded coinciding with each kernel upgrade. Though, I have been zonked by a kernel upgrade which preceded an nvidia upgrade that followed a day later- In which case I simply built against the new kernel with a PKGBUILD, as you suggest.
    Basically, whenever I have an nvidia issue that I can't solve, I check the forums and Brebs usually has already posted the answer.

  • Sever issue with Xorg and Nvidia Drivers

    I run a 2.6.20 kernel with Xorg and Nvidia drivers all from arch rep on a Asus NV6200. Everything works fine, except one thing. When I exit X, the monitor shuts down imediatly. It wont start up at all, not even by manual startup. I cant understand what happens. The configuration is correct, is done with the correct settings for my video-card and monitor taken directly from the documentation. I cant use my X server at all since several days ... I checked the logs and there are no EE's. Anyway ... here is the log. Help anyone can help, I cant use X at all.
    X Window System Version 7.2.0
    Release Date: 22 January 2007
    X Protocol Version 11, Revision 0, Release 7.2
    Build Operating System: UNKNOWN
    Current Operating System: Linux solarflare 2.6.20-ARCH #1 SMP PREEMPT Fri Mar 16 20:22:11 CET 2007 i686
    Build Date: 27 February 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 Mar 21 03:26:45 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "Screen 1" (0)
    (**) | |-->Monitor "AOC 7F+"
    (**) | |-->Device "NVIDIA 6200"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (**) FontPath set to:
    /usr/share/fonts/misc
    (==) RgbPath set to "/usr/share/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81c34a0
    (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,3099 card 1106,3099 rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 1106,b099 card 0000,0000 rev 00 class 06,04,00 hdr 01
    (II) PCI: 00:0a:0: chip 1317,0985 card 1113,1216 rev 11 class 02,00,00 hdr 00
    (II) PCI: 00:10:0: chip 1106,3038 card 1019,0996 rev 80 class 0c,03,00 hdr 80
    (II) PCI: 00:10:1: chip 1106,3038 card 1019,0996 rev 80 class 0c,03,00 hdr 80
    (II) PCI: 00:10:2: chip 1106,3038 card 1019,0996 rev 80 class 0c,03,00 hdr 80
    (II) PCI: 00:10:3: chip 1106,3104 card 1019,0996 rev 82 class 0c,03,20 hdr 00
    (II) PCI: 00:11:0: chip 1106,3177 card 1019,0996 rev 00 class 06,01,00 hdr 80
    (II) PCI: 00:11:1: chip 1106,0571 card 1019,0996 rev 06 class 01,01,8a hdr 00
    (II) PCI: 00:11:5: chip 1106,3059 card 1019,0996 rev 50 class 04,01,00 hdr 00
    (II) PCI: 01:00:0: chip 10de,0221 card 1043,820c rev a1 class 03,00,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,1), 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 (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xe8000000 - 0xeaffffff (0x3000000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xd0000000 - 0xdfffffff (0x10000000) 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)
    (--) PCI:*(1:0:0) nVidia Corporation NV44A [GeForce 6200] rev 161, Mem @ 0xe8000000/24, 0xd0000000/28, 0xe9000000/24
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) 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 0xe0000000 from 0xe7ffffff to 0xdfffffff
    (II) Active PCI resource ranges:
    [0] -1 0 0xeb021000 - 0xeb0210ff (0x100) MX[b]
    [1] -1 0 0xeb020000 - 0xeb0203ff (0x400) MX[b]
    [2] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [3] -1 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b](B)
    [4] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [5] -1 0 0xe8000000 - 0xe8ffffff (0x1000000) MX[b](B)
    [6] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [7] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [8] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[b]
    [9] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[b]
    [10] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [11] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xeb021000 - 0xeb0210ff (0x100) MX[b]
    [1] -1 0 0xeb020000 - 0xeb0203ff (0x400) MX[b]
    [2] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [3] -1 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b](B)
    [4] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [5] -1 0 0xe8000000 - 0xe8ffffff (0x1000000) MX[b](B)
    [6] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [7] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [8] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[b]
    [9] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[b]
    [10] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [11] -1 0 0x0000d000 - 0x0000d0ff (0x100) 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 0xeb021000 - 0xeb0210ff (0x100) MX[b]
    [5] -1 0 0xeb020000 - 0xeb0203ff (0x400) MX[b]
    [6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [7] -1 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0xe8000000 - 0xe8ffffff (0x1000000) MX[b](B)
    [10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [11] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [12] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [13] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [14] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[b]
    [15] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[b]
    [16] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [17] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: 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 DOUBLE-BUFFER
    (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 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.9755
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) Loading extension GLX
    (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.9755
    Module class: X.Org Video Driver
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.6
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.6
    (II) NVIDIA dlloader X Driver 1.0-9755 Mon Feb 26 23:23:13 PST 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 0xeb021000 - 0xeb0210ff (0x100) MX[b]
    [5] -1 0 0xeb020000 - 0xeb0203ff (0x400) MX[b]
    [6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [7] -1 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0xe8000000 - 0xe8ffffff (0x1000000) MX[b](B)
    [10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [11] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [12] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [13] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [14] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[b]
    [15] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[b]
    [16] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [17] -1 0 0x0000d000 - 0x0000d0ff (0x100) 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 0xeb021000 - 0xeb0210ff (0x100) MX[b]
    [5] -1 0 0xeb020000 - 0xeb0203ff (0x400) MX[b]
    [6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [7] -1 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0xe8000000 - 0xe8ffffff (0x1000000) MX[b](B)
    [10] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [11] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [12] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [16] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [17] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[b]
    [18] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[b]
    [19] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [21] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [22] 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): NVIDIA GPU GeForce 6200 at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 131072 kBytes
    (--) NVIDIA(0): VideoBIOS: 05.44.a2.03.00
    (II) NVIDIA(0): Detected AGP rate: 4X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 6200 at PCI:1:0:0:
    (--) NVIDIA(0): AOC Spectrum7F (CRT-0)
    (--) NVIDIA(0): AOC Spectrum7F (CRT-0): 400.0 MHz maximum pixel clock
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1024x768"
    (II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
    (--) NVIDIA(0): DPI set to (81, 81); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b]
    [1] 0 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b]
    [2] 0 0 0xe8000000 - 0xe8ffffff (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 0xeb021000 - 0xeb0210ff (0x100) MX[b]
    [8] -1 0 0xeb020000 - 0xeb0203ff (0x400) MX[b]
    [9] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [10] -1 0 0xe9000000 - 0xe9ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [12] -1 0 0xe8000000 - 0xe8ffffff (0x1000000) MX[b](B)
    [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[b]
    [19] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [20] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[b]
    [21] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[b]
    [22] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [23] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [24] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [25] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) NVIDIA(0): Setting mode "1024x768"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (**) Option "Protocol" "Auto"
    (**) Mouse1: Device: "/dev/input/mice"
    (**) Mouse1: Protocol: "Auto"
    (**) Option "CorePointer"
    (**) Mouse1: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse1: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse1: Buttons: 11
    (**) Option "CoreKeyboard"
    (**) Keyboard1: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard1: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard1: XkbRules: "xorg"
    (**) Option "XkbModel" "pc104"
    (**) Keyboard1: XkbModel: "pc104"
    (**) Option "XkbLayout" "us"
    (**) Keyboard1: XkbLayout: "us"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard1: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
    (--) Mouse1: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse1: ps2EnableDataReporting: succeeded
    FreeFontPath: FPE "/usr/share/fonts/misc" refcount is 2, should be 1; fixing.

    No ... the problem is in the kernel that comes precompiled.
    I did this test.
    The first time I installed the kernel I unloaded nvidiafb since I dont like it.
    When I install nvidiafb back something strange happends. Nvidia module fails to load.
    The modprobe sais it cannot find the device nvidia.ko ... but it is there!
    So my best guess is, there is something with the kernel. Any ideas?
    Problem resolved, installed older driver
    Last edited by Nefer-Ra (2007-03-22 02:59:25)

  • [Solved] Graphics driver (nVidia) problem on fresh Arch setup

    Hi,
    I have installed Arch as main OS about 2 days ago following usual installation wikis. PC is fully functional except for problems with graphics driver (nVidia 340xx) for example just now it took about 3 to 4 boots to get into desktop like 1st boot: did not show sddm, 2nd boot: showed it with colored (white/red/green/blue) pixels, 3rd boot: broken desktop and 4th boot: finally working (see two screen images taken from mobile at the bottom).
    Details are as follows:
    1. Kernel:
    Linux archos 3.18.6-1-ARCH x86_64 GNU/Linux
    2. System info:
    Cinnamon desktop 2.4.6
    AMD Athlon 62 x2 4800+ processor
    RAM 3 GB
    nVidia GT218 (GeForce 210) graphics card
    3. nVidia packages installed:
    From official repos:
    local/nvidia-340xx 340.76-2
    local/nvidia-340xx-libgl 340.76-2
    local/nvidia-340xx-utils 340.76-2
    local/opencl-nvidia-340xx 340.76-2
    4. lspci | grep VGA
    01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2)
    5. journalctl -p 0..3 -xn
    Mar 13 12:24:01 archos kernel: NVRM: Xid (PCI:0000:01:00): 6, PE0005
    Mar 13 12:24:19 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001458, Data 00000006
    Mar 13 12:24:19 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:25 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:31 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:37 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:43 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001458, Data 00000006
    Mar 13 12:24:43 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:48 archos pulseaudio[405]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.ServiceUnknown: The name or
    Mar 13 12:24:49 archos pulseaudio[460]: [pulseaudio] pid.c: Daemon already running.
    6. journalctl -b|grep -i -e vesa -e vga
    Mar 13 12:23:03 archos kernel: vgaarb: setting as boot device: PCI:0000:01:00.0
    Mar 13 12:23:03 archos kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Mar 13 12:23:03 archos kernel: vgaarb: loaded
    Mar 13 12:23:03 archos kernel: vgaarb: bridge control possible 0000:01:00.0
    Mar 13 12:23:03 archos kernel: vesafb: mode is 640x480x32, linelength=2560, pages=0
    Mar 13 12:23:03 archos kernel: vesafb: scrolling: redraw
    Mar 13 12:23:03 archos kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Mar 13 12:23:03 archos kernel: vesafb: framebuffer at 0xcf000000, mapped to 0xffffc90010780000, using 1216k, total 1216k
    Mar 13 12:23:03 archos kernel: fb0: VESA VGA frame buffer device
    Mar 13 12:23:06 archos kernel: vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    Mar 13 12:23:06 archos kernel: snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    Mar 13 12:23:13 archos kernel: NVRM: Your system is not currently configured to drive a VGA console
    Mar 13 12:23:13 archos kernel: NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    Mar 13 12:23:13 archos kernel: NVRM: requires the use of a text-mode VGA console. Use of other console
    Mar 13 12:23:13 archos kernel: NVRM: drivers including, but not limited to, vesafb, may result in
    7. glxinfo
    name of display: :0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: NVIDIA Corporation
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    client glx vendor string: NVIDIA Corporation
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB,
    GLX_EXT_import_context, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_copy_image,
    GLX_NV_delay_before_swap, GLX_NV_float_buffer,
    GLX_NV_multisample_coverage, GLX_NV_present_video, GLX_NV_swap_group,
    GLX_NV_video_capture, GLX_NV_video_out, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: GeForce 210/PCIe/SSE2
    OpenGL core profile version string: 3.3.0 NVIDIA 340.76
    OpenGL core profile shading language version string: 3.30 NVIDIA via Cg compiler
    OpenGL core profile context flags: (none)
    OpenGL core profile profile mask: core profile
    OpenGL core profile extensions:
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility,
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended,
    GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float,
    GL_ARB_compressed_texture_pixel_storage, GL_ARB_conservative_depth,
    GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_debug_output,
    GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, GL_ARB_depth_texture,
    GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_instanced,
    GL_ARB_enhanced_layouts, GL_ARB_explicit_attrib_location,
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions,
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object,
    GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
    GL_ARB_get_program_binary, GL_ARB_half_float_pixel,
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_instanced_arrays,
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2,
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment,
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_occlusion_query2,
    GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite,
    GL_ARB_program_interface_query, GL_ARB_provoking_vertex,
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness,
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map,
    GL_ARB_separate_shader_objects, GL_ARB_shader_bit_encoding,
    GL_ARB_shader_objects, GL_ARB_shader_texture_lod,
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack,
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing,
    GL_ARB_shadow, GL_ARB_stencil_texturing, GL_ARB_sync,
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object,
    GL_ARB_texture_buffer_range, GL_ARB_texture_compression,
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map,
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_float, GL_ARB_texture_gather,
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two,
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod,
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui,
    GL_ARB_texture_stencil8, GL_ARB_texture_storage,
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle,
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2,
    GL_ARB_transform_feedback_instanced, GL_ARB_transpose_matrix,
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra,
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader,
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev,
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_draw_buffers,
    GL_ATI_texture_float, GL_ATI_texture_mirror_once,
    GL_EXTX_framebuffer_mixed_formats, GL_EXT_Cg_shader, GL_EXT_abgr,
    GL_EXT_bgra, GL_EXT_bindable_uniform, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array,
    GL_EXT_depth_bounds_test, GL_EXT_direct_state_access,
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements,
    GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample,
    GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object,
    GL_EXT_framebuffer_sRGB, GL_EXT_geometry_shader4,
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4,
    GL_EXT_import_sync_object, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_float, GL_EXT_packed_pixels,
    GL_EXT_pixel_buffer_object, GL_EXT_point_parameters,
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color,
    GL_EXT_separate_shader_objects, GL_EXT_separate_specular_color,
    GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side,
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_array,
    GL_EXT_texture_buffer_object, GL_EXT_texture_compression_dxt1,
    GL_EXT_texture_compression_latc, GL_EXT_texture_compression_rgtc,
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_cube_map,
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_integer,
    GL_EXT_texture_lod, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp,
    GL_EXT_texture_object, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_decode,
    GL_EXT_texture_shared_exponent, GL_EXT_texture_storage,
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback2,
    GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, GL_EXT_x11_sync_object,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_KHR_debug,
    GL_KTX_buffer_region, GL_NVX_conditional_render, GL_NVX_gpu_memory_info,
    GL_NV_ES1_1_compatibility, GL_NV_blend_square, GL_NV_conditional_render,
    GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_depth_buffer_float,
    GL_NV_depth_clamp, GL_NV_explicit_multisample, GL_NV_fence,
    GL_NV_float_buffer, GL_NV_fog_distance, GL_NV_fragment_program,
    GL_NV_fragment_program2, GL_NV_fragment_program_option,
    GL_NV_framebuffer_multisample_coverage, GL_NV_geometry_shader4,
    GL_NV_gpu_program4, GL_NV_gpu_program4_1, GL_NV_half_float,
    GL_NV_light_max_exponent, GL_NV_multisample_coverage,
    GL_NV_multisample_filter_hint, GL_NV_occlusion_query,
    GL_NV_packed_depth_stencil, GL_NV_parameter_buffer_object,
    GL_NV_parameter_buffer_object2, GL_NV_path_rendering,
    GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_primitive_restart,
    GL_NV_register_combiners, GL_NV_register_combiners2,
    GL_NV_shader_buffer_load, GL_NV_texgen_reflection, GL_NV_texture_barrier,
    GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4,
    GL_NV_texture_expand_normal, GL_NV_texture_multisample,
    GL_NV_texture_rectangle, GL_NV_texture_shader, GL_NV_texture_shader2,
    GL_NV_texture_shader3, GL_NV_transform_feedback,
    GL_NV_transform_feedback2, GL_NV_vdpau_interop, GL_NV_vertex_array_range,
    GL_NV_vertex_array_range2, GL_NV_vertex_buffer_unified_memory,
    GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_NV_vertex_program2,
    GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_S3_s3tc,
    GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, GL_SGIX_depth_texture,
    GL_SGIX_shadow, GL_SUN_slice_accum
    OpenGL version string: 3.3.0 NVIDIA 340.76
    OpenGL shading language version string: 3.30 NVIDIA via Cg compiler
    OpenGL context flags: (none)
    OpenGL profile mask: (none)
    OpenGL extensions:
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility,
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended,
    GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float,
    GL_ARB_compatibility, GL_ARB_compressed_texture_pixel_storage,
    GL_ARB_conservative_depth, GL_ARB_copy_buffer, GL_ARB_copy_image,
    GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp,
    GL_ARB_depth_texture, GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_instanced,
    GL_ARB_enhanced_layouts, GL_ARB_explicit_attrib_location,
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions,
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object,
    GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
    GL_ARB_get_program_binary, GL_ARB_half_float_pixel,
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_instanced_arrays,
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2,
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment,
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_occlusion_query2,
    GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite,
    GL_ARB_program_interface_query, GL_ARB_provoking_vertex,
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness,
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map,
    GL_ARB_separate_shader_objects, GL_ARB_shader_bit_encoding,
    GL_ARB_shader_objects, GL_ARB_shader_texture_lod,
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack,
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing,
    GL_ARB_shadow, GL_ARB_stencil_texturing, GL_ARB_sync,
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object,
    GL_ARB_texture_buffer_range, GL_ARB_texture_compression,
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map,
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_float, GL_ARB_texture_gather,
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two,
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod,
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui,
    GL_ARB_texture_stencil8, GL_ARB_texture_storage,
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle,
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2,
    GL_ARB_transform_feedback_instanced, GL_ARB_transpose_matrix,
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra,
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader,
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev,
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_draw_buffers,
    GL_ATI_texture_float, GL_ATI_texture_mirror_once,
    GL_EXTX_framebuffer_mixed_formats, GL_EXT_Cg_shader, GL_EXT_abgr,
    GL_EXT_bgra, GL_EXT_bindable_uniform, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array,
    GL_EXT_depth_bounds_test, GL_EXT_direct_state_access,
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements,
    GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample,
    GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object,
    GL_EXT_framebuffer_sRGB, GL_EXT_geometry_shader4,
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4,
    GL_EXT_import_sync_object, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_float, GL_EXT_packed_pixels,
    GL_EXT_pixel_buffer_object, GL_EXT_point_parameters,
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color,
    GL_EXT_separate_shader_objects, GL_EXT_separate_specular_color,
    GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side,
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_array,
    GL_EXT_texture_buffer_object, GL_EXT_texture_compression_dxt1,
    GL_EXT_texture_compression_latc, GL_EXT_texture_compression_rgtc,
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_cube_map,
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_integer,
    GL_EXT_texture_lod, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp,
    GL_EXT_texture_object, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_decode,
    GL_EXT_texture_shared_exponent, GL_EXT_texture_storage,
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback2,
    GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, GL_EXT_x11_sync_object,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_KHR_debug,
    GL_KTX_buffer_region, GL_NVX_conditional_render, GL_NVX_gpu_memory_info,
    GL_NV_ES1_1_compatibility, GL_NV_blend_square, GL_NV_conditional_render,
    GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_depth_buffer_float,
    GL_NV_depth_clamp, GL_NV_explicit_multisample, GL_NV_fence,
    GL_NV_float_buffer, GL_NV_fog_distance, GL_NV_fragment_program,
    GL_NV_fragment_program2, GL_NV_fragment_program_option,
    GL_NV_framebuffer_multisample_coverage, GL_NV_geometry_shader4,
    GL_NV_gpu_program4, GL_NV_gpu_program4_1, GL_NV_half_float,
    GL_NV_light_max_exponent, GL_NV_multisample_coverage,
    GL_NV_multisample_filter_hint, GL_NV_occlusion_query,
    GL_NV_packed_depth_stencil, GL_NV_parameter_buffer_object,
    GL_NV_parameter_buffer_object2, GL_NV_path_rendering,
    GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_primitive_restart,
    GL_NV_register_combiners, GL_NV_register_combiners2,
    GL_NV_shader_buffer_load, GL_NV_texgen_reflection, GL_NV_texture_barrier,
    GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4,
    GL_NV_texture_expand_normal, GL_NV_texture_multisample,
    GL_NV_texture_rectangle, GL_NV_texture_shader, GL_NV_texture_shader2,
    GL_NV_texture_shader3, GL_NV_transform_feedback,
    GL_NV_transform_feedback2, GL_NV_vdpau_interop, GL_NV_vertex_array_range,
    GL_NV_vertex_array_range2, GL_NV_vertex_buffer_unified_memory,
    GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_NV_vertex_program2,
    GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_S3_s3tc,
    GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, GL_SGIX_depth_texture,
    GL_SGIX_shadow, GL_SUN_slice_accum
    OpenGL ES profile version string: OpenGL ES 2.0 NVIDIA 340.76 340.76
    OpenGL ES profile shading language version string: OpenGL ES GLSL ES 1.00
    OpenGL ES profile extensions:
    GL_EXT_blend_minmax, GL_EXT_color_buffer_half_float, GL_EXT_debug_label,
    GL_EXT_frag_depth, GL_EXT_map_buffer_range,
    GL_EXT_occlusion_query_boolean, GL_EXT_robustness, GL_EXT_sRGB,
    GL_EXT_sRGB_write_control, GL_EXT_separate_shader_objects,
    GL_EXT_shader_integer_mix, GL_EXT_shadow_samplers,
    GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_s3tc,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_format_BGRA8888,
    GL_EXT_texture_rg, GL_EXT_texture_sRGB_decode, GL_EXT_texture_storage,
    GL_EXT_unpack_subimage, GL_KHR_debug, GL_NV_bgr, GL_NV_copy_buffer,
    GL_NV_copy_image, GL_NV_draw_buffers, GL_NV_draw_instanced,
    GL_NV_explicit_attrib_location, GL_NV_fbo_color_attachments,
    GL_NV_framebuffer_blit, GL_NV_framebuffer_multisample,
    GL_NV_generate_mipmap_sRGB, GL_NV_instanced_arrays,
    GL_NV_non_square_matrices, GL_NV_occlusion_query_samples,
    GL_NV_pack_subimage, GL_NV_packed_float, GL_NV_packed_float_linear,
    GL_NV_pixel_buffer_object, GL_NV_read_buffer, GL_NV_read_depth,
    GL_NV_read_depth_stencil, GL_NV_read_stencil, GL_NV_sRGB_formats,
    GL_NV_shadow_samplers_array, GL_NV_shadow_samplers_cube,
    GL_NV_texture_array, GL_NV_texture_border_clamp,
    GL_NV_texture_compression_latc, GL_NV_texture_compression_s3tc,
    GL_NV_texture_compression_s3tc_update, GL_NV_timer_query,
    GL_OES_compressed_ETC1_RGB8_texture, GL_OES_depth24, GL_OES_depth32,
    GL_OES_depth_texture, GL_OES_depth_texture_cube_map,
    GL_OES_element_index_uint, GL_OES_fbo_render_mipmap,
    GL_OES_get_program_binary, GL_OES_mapbuffer, GL_OES_packed_depth_stencil,
    GL_OES_rgb8_rgba8, GL_OES_standard_derivatives, GL_OES_texture_half_float,
    GL_OES_texture_half_float_linear, GL_OES_texture_npot,
    GL_OES_vertex_array_object, GL_OES_vertex_half_float
    204 GLX Visuals
    visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat
    0x021 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x022 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x024 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x025 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x026 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x027 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x028 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x029 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x02a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x02b 24 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x02c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x02d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x02e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x02f 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x030 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x031 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x032 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x033 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x034 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x035 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x036 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x037 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x038 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x039 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03a 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03b 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x03c 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x03d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03f 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x040 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x041 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x042 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x043 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x044 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x045 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x046 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x047 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x048 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x049 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04a 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04b 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x04c 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x04d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04f 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x050 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x051 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x052 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x053 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x054 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x055 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x056 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x057 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x058 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x059 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x05a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x05b 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x05c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x05d 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x05e 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x05f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x060 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x061 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x062 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x063 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x064 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x065 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x066 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x067 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x068 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x069 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x06a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x06b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x06c 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x06d 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x06e 24 dc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x06f 24 dc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x070 24 dc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x071 24 dc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x072 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x073 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x074 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x075 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x076 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x077 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x078 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x079 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x07a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x07b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x07c 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x07d 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x07e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x07f 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x080 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x081 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x082 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x083 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x084 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x085 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x086 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x087 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x088 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x089 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x08a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x08b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x08c 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x08d 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x08e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x08f 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x090 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x091 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x092 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x093 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x094 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x095 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x096 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x097 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x098 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x099 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x09a 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09b 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09d 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09e 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x09f 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0a0 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a1 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a2 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a3 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a4 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0a5 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0a6 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a7 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a8 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a9 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x023 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0aa 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0ab 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0ac 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0ad 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0ae 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0af 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0b0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0b1 32 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0b2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x0b3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0b4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x0b5 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0b6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0b7 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0b8 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0b9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0ba 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0bb 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0bc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0bd 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0be 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0bf 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c0 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c1 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0c2 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0c3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c5 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0c6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0c7 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0c8 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0c9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0ca 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0cb 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0cc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0cd 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0ce 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0cf 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d0 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d1 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0d2 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0d3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d5 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0d6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0d7 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0d8 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0d9 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0da 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0db 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0dc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0dd 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0de 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0df 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0e0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0e1 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e3 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e4 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e5 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e7 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0ea 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0eb 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0ec 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    287 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat
    0x0ed 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0ee 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0ef 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f0 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f1 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0f2 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0f3 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f4 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f5 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0f6 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0f7 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0f8 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0f9 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0fa 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0fb 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0fc 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0fd 24 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0fe 24 dc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0ff 24 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x100 24 dc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x101 24 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x102 24 dc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x103 24 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x104 24 dc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x105 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x106 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x107 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x108 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x109 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x10e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x10f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x110 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x111 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x112 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x113 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x114 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x115 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x116 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x117 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x118 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x119 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x11e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x11f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x120 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x121 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x122 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x123 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x124 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x125 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x126 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x127 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x128 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x129 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x12e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x12f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x130 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x131 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x132 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x133 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x134 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x135 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x136 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x137 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x138 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x139 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x13e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x13f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x140 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x141 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x142 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x143 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x144 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x145 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x146 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x147 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x148 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x149 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14b 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14c 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14d 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14e 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x150 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x151 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x152 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x153 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x154 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x155 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x156 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x157 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x158 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x159 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15a 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15d 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x15e 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x15f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x160 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x161 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x162 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x163 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x164 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x165 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x166 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x167 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x168 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x169 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16a 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x16e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x16f 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x170 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x171 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x172 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x173 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x174 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x175 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x176 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x177 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x178 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x179 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x17a 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x17b 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x17c 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x17d 32 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x17e 32 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x17f 32 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x180 32 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x181 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x182 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x183 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x184 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x185 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x186 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x187 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x188 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x189 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18a 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18b 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x18c 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x18d 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18e 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18f 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x190 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x191 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x192 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x193 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x194 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x195 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x196 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x197 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x198 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x199 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19a 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19b 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x19c 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x19d 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19e 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19f 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1a0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1a1 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a3 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a4 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a5 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a7 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1aa 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1ab 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1ac 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1ad 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1ae 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1af 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b0 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b1 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1b4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1b5 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b6 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b7 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b9 0 sg 0 16 0 r y . 5 6 5 0 . . 4 16 0 16 16 16 16 0 0 None
    0x1ba 0 sg 0 16 0 r . . 5 6 5 0 . . 4 16 0 16 16 16 16 0 0 None
    0x1bb 0 sg 0 16 0 r y . 5 6 5 0 . . 4 24 0 16 16 16 16 0 0 None
    0x1bc 0 sg 0 16 0 r . . 5 6 5 0 . . 4 24 0 16 16 16 16 0 0 None
    0x1bd 0 sg 0 16 0 r y . 5 6 5 0 . . 4 24 8 16 16 16 16 0 0 None
    0x1be 0 sg 0 16 0 r . . 5 6 5 0 . . 4 24 8 16 16 16 16 0 0 None
    0x1bf 0 sg 0 16 0 r y . 5 6 5 0 . . 4 0 0 16 16 16 16 0 0 None
    0x1c0 0 sg 0 16 0 r . . 5 6 5 0 . . 4 0 0 16 16 16 16 0 0 None
    0x1c1 0 sg 0 0 0 r . . 0 0 0 0 . . 4 16 0 16 16 16 16 0 0 None
    0x1c2 0 sg 0 0 0 r . . 0 0 0 0 . . 4 24 0 16 16 16 16 0 0 None
    0x1c3 0 sg 0 0 0 r . . 0 0 0 0 . . 4 24 8 16 16 16 16 0 0 None
    0x1c4 0 sg 0 32 0 r . . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c5 0 sg 0 32 0 . . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c6 0 sg 0 32 0 r y . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c7 0 sg 0 32 0 y . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c8 0 sg 0 32 0 r . . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c9 0 sg 0 32 0 . . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1ca 0 sg 0 32 0 r y . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1cb 0 sg 0 32 0 y . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1cc 0 sg 0 64 0 r . . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1cd 0 sg 0 64 0 . . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1ce 0 sg 0 64 0 r y . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1cf 0 sg 0 64 0 y . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1d0 0 sg 0 128 0 r . . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d1 0 sg 0 128 0 . . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d2 0 sg 0 128 0 r y . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d3 0 sg 0 128 0 y . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d4 0 sg 0 32 0 r . . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d5 0 sg 0 32 0 . . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d6 0 sg 0 32 0 r y . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d7 0 sg 0 32 0 y . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d8 0 sg 0 32 0 r . . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1d9 0 sg 0 32 0 . . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1da 0 sg 0 32 0 r y . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1db 0 sg 0 32 0 y . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1dc 0 sg 0 32 0 r . . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1dd 0 sg 0 32 0 . . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1de 0 sg 0 32 0 r y . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1df 0 sg 0 32 0 y . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1e0 0 sg 0 32 0 r . . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e1 0 sg 0 32 0 . . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e2 0 sg 0 32 0 r y . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e3 0 sg 0 32 0 y . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e4 0 sg 0 64 0 r . . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e5 0 sg 0 64 0 . . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e6 0 sg 0 64 0 r y . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e7 0 sg 0 64 0 y . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e8 0 sg 0 64 0 r . . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1e9 0 sg 0 64 0 . . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1ea 0 sg 0 64 0 r y . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1eb 0 sg 0 64 0 y . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1ec 0 sg 0 128 0 r . . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1ed 0 sg 0 128 0 . . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1ee 0 sg 0 128 0 r y . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1ef 0 sg 0 128 0 y . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1f0 0 sg 0 128 0 r . . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f1 0 sg 0 128 0 . . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f2 0 sg 0 128 0 r y . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f3 0 sg 0 128 0 y . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f4 0 sg 0 16 0 r . . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f5 0 sg 0 16 0 . . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f6 0 sg 0 16 0 r y . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f7 0 sg 0 16 0 y . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f8 0 sg 0 64 0 r . . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f9 0 sg 0 64 0 . . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1fa 0 sg 0 64 0 r y . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1fb 0 sg 0 64 0 y . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1fc 0 sg 0 16 0 r . . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1fd 0 sg 0 16 0 . . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1fe 0 sg 0 16 0 r y . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1ff 0 sg 0 16 0 y . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x200 0 sg 0 16 0 r . . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x201 0 sg 0 16 0 . . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x202 0 sg 0 16 0 r y . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x203 0 sg 0 16 0 y . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x204 0 sg 0 64 0 r . . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x205 0 sg 0 64 0 . . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x206 0 sg 0 64 0 r y . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x207 0 sg 0 64 0 y . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x208 0 sg 0 64 0 r . . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x209 0 sg 0 64 0 . . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x20a 0 sg 0 64 0 r y . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x20b 0 sg 0 64 0 y . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    name of display: :0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: NVIDIA Corporation
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    client glx vendor string: NVIDIA Corporation
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB,
    GLX_EXT_import_context, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_copy_image,
    GLX_NV_delay_before_swap, GLX_NV_float_buffer,
    GLX_NV_multisample_coverage, GLX_NV_present_video, GLX_NV_swap_group,
    GLX_NV_video_capture, GLX_NV_video_out, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: GeForce 210/PCIe/SSE2
    OpenGL core profile version string: 3.3.0 NVIDIA 340.76
    OpenGL core profile shading language version string: 3.30 NVIDIA via Cg compiler
    OpenGL core profile context flags: (none)
    OpenGL core profile profile mask: core profile
    OpenGL core profile extensions:
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility,
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended,
    GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float,
    GL_ARB_compressed_texture_pixel_storage, GL_ARB_conservative_depth,
    GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_debug_output,
    GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, GL_ARB_depth_texture,
    GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_instanced,
    GL_ARB_enhanced_layouts, GL_ARB_explicit_attrib_location,
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions,
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object,
    GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
    GL_ARB_get_program_binary, GL_ARB_half_float_pixel,
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_instanced_arrays,
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2,
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment,
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multisample

    Thanks for reply guys.
    berbae wrote:Just for testing, try the nouveau driver, following the wiki, and tell if you still have this problem.
    Before posting to forum I also tried nouveau following usual Arch Wiki. End result on nouveau is even worse than prop nvidia driver (see screen shots).
    brebs wrote:Some things to try:
    Thanks and this worked!!
    Passing vmalloc=256m and change in xong.conf provided good results. lspci -v shows same output regardless of adding vmalloc to kernel:
    01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2) (prog-if 00 [VGA controller])
    Subsystem: Gigabyte Technology Co., Ltd Device 3525
    Flags: bus master, fast devsel, latency 0, IRQ 25
    Memory at fb000000 (32-bit, non-prefetchable) [size=16M]
    Memory at b0000000 (64-bit, prefetchable) [size=256M]
    Memory at ce000000 (64-bit, prefetchable) [size=32M]
    I/O ports at ef00 [size=128]
    [virtual] Expansion ROM at fc000000 [disabled] [size=512K]
    Capabilities: <access denied>
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    Last question for my understanding if you can answer:
    1. My GeForce 210 card has 1gb memory. Is 256m is coming from system RAM or coming from 1gb GPU's own memory. If case is latter, do you think making it full 1gb will help performance (like gaming ,etc)

  • Unable to install NVIDIA drivers on Windows 8 (Boot Camp)

    I'm running Windows 8 on a secondary partition on my MacBook Pro (17-inch, 2009).
    I have, in the past, been able to successfully install Windows 8 on a second partition on this mac and get everything working, including all of my device drivers. I had to erase that partition, though, so I no longer have that installation.
    I've installed Windows 8 again, but I'm not able to get my NVIDIA GeForce 9600 GT or 9400M graphics drivers to install!
    First of all, I tried installing both 5.0.5033 and 5.1.5621 support software. After a lot of hassle, I got 5.1.5621 to install, but only through the BootCamp\Drivers\Apple\BootCamp.msi file, not through the BootCamp\setup.exe file (the setup.exe tells me that this version of Boot Camp is not intended for this computer model).
    When I install the drivers that way, they don't install the NVIDIA drivers.
    Next, I've gone directly to the NVIDIA drivers folder inside the support software, and tried to install them from there. i've also downloaded newer versions of the NVIDIA drivers from their website, and with all versions of the NVIDIA drivers, I've had to go through a huge hassle to get them to go to the setup wizard (instead of telling me there's no compatible hardware).
    Then, I managed to get them to start installing, but - after Windows has me confirm that I really want to install the driver, despite it's signature - the screen invariably goes black, and my computer shuts down instantly, in what I can only assume is a kernel panic.
    This is incredibly frustrating, and I don't know what to do about it. I can't seem to find anyone else with the same problem. Can anyone help me?

    According to Boot Camp: System requirements for Microsoft Windows operating systems - Apple Support
    MacBook Pro
    (17-inch, Mid 2009)
    4
    4
    DVD
    DVD
    DVD
    There is no support for Windows 8 (64-bit) on this machine.
    From Boot Camp Support Software 4.0.4033
    System Requirements
    MacBook (13-inch, Late 2006)
    MacBook (13-inch, Mid 2007)
    MacBook (13-inch, Late 2007)
    MacBook (13-inch, Early 2008)
    MacBook (13-inch, Late 2008)
    MacBook (13-inch, Early 2009 & Mid 2009)
    MacBook (13-inch, Late 2009) *
    MacBook (13-inch, Mid 2010) *
    MacBook Air (13-inch, Early 2008)
    MacBook Air (13-inch, Late 2008 & Mid 2009)
    MacBook Air (11-inch & 13-inch, Late 2010) *
    MacBook Pro (15-inch & 17-inch, Core 2 Duo)
    MacBook Pro (15-inch & 17-inch, 2.2 & 2.4GHz)
    MacBook Pro (15-inch & 17-inch, Early 2008) *
    MacBook Pro (15-inch, Late 2008) *
    MacBook Pro (17-inch, Early 2009 & Mid 2009) *
    MacBook Pro (15-inch, Early 2009) *
    MacBook Pro (13-inch and 15-inch, Mid 2009) *
    MacBook Pro (13-inch,15-inch, and 17-inch, Mid 2010)
    MacBook Pro (13-in, 15-inch, and 17-inch, Early 2011 & Late 2011)
    Mac Pro (Mid 2006)
    Mac Pro (Early 2008) *
    Mac Pro (Early 2009)
    Mac Pro (Early 2007)
    Mac Pro (Mid 2010)
    Mac Pro (15-inch and 17-inch, 2.2 & 2.4GHz)
    Mac mini (Mid 2007)
    Mac mini (Early 2009 & Late 2009)
    Mac mini (Mid 2010) *
    iMac (17-inch, Late 2006)
    iMac (20-inch, Late 2006)
    iMac (24-inch, Late 2006)
    iMac (20-inch & 24-inch, Mid 2007)
    iMac (20-inch & 24-inch, Early 2008)
    iMac (20-inch, Early 2009 & Mid 2009)
    iMac (21.5-inch & 27-inch, Late 2009) *
    iMac (27-inch, Late 2009) *
    iMac (21.5-inch, Mid 2010) *
    iMac (27-inch, Mid 2010)
    iMac (21.5-inch, Mid 2011 & Late 2011)
    iMac (27-inch, Mid 2011)
    all these drivers support Windows 7, 32 bit
    * drivers that support Windows 7, 32 and 64 bit
    BC 5.x drivers will cause problems. Have you considered using 4.0.4033 version. If your previous W8 installation continued to use BC 4.0.4033 drivers, they would work. Do you have the exact versions of drivers that you had on your previous W8 installation?

  • After upgrading to 2.6.28, any Nvidia drivers == CRASH

    I finally did an update to my system, and now with 2.6.28, No matter which nvidia drivers I use, things work fine in Xorg for an indeterminent amount of time, then all the sudden, my screens blank and the box is completely unresponsive to ping.  At this point, touching the keyboard causes beeps.  Presumably the kernel has paniced.
    I've tried nvidia-180.29-3, nvidia-173xx (173.14.17-2) nvidia-96xx(96.43.11-2) as well as getting nvidia drivers directly from nvidia's site, doing an uninstall through here, etc.  I know the issue is related to nvidia, since when I switch to vesa, the problem goes away.
    Interestingly, the crash always seems to happen as a result of me typing on the keyboard.  For example, I will be using mutt in an mrxvt terminal, and as soon as I hit 'j' or 'backspace' the box crashes.  It never crashes when just using the mouse or not as the result of typing.  Of course, this only happens after around 30 minutes or so, as I am using this setup right now and typing is working fine.
    Presumably the rest of the Arch community isn't hitting this or it would have been addressed by now.  My device is:
    01:00.0 VGA compatible controller: nVidia Corporation NV44 [Quadro NVS 285] (rev a1) (prog-if 00 [VGA controller])
            Subsystem: nVidia Corporation Device 0334
            Flags: bus master, fast devsel, latency 0, IRQ 16
            Memory at ed000000 (32-bit, non-prefetchable) [size=16M]
            Memory at d0000000 (64-bit, prefetchable) [size=256M]
            Memory at ee000000 (64-bit, non-prefetchable) [size=16M]
            [virtual] Expansion ROM at efe00000 [disabled] [size=128K]
            Capabilities: [60] Power Management version 2
            Capabilities: [68] MSI: Mask- 64bit+ Count=1/1 Enable-
            Capabilities: [78] Express Endpoint, MSI 00
            Capabilities: [100] Virtual Channel <?>
            Capabilities: [128] Power Budgeting <?>
            Kernel driver in use: nvidia
            Kernel modules: nvidia, nvidiafb
    Edit: This looks like the same problem being hit here:
    http://bbs.archlinux.org/viewtopic.php?id=66425
    My last log messages before the reboot are also:
    Mar 18 11:46:47 dev1 acpid: client 3458[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 3458[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 3458[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 5140[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 5140[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 5140[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 7496[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 7553[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 8837[0:201] has disconnected
    Mar 18 11:46:47 dev1 acpid: client 8837[0:201] has disconnected
    Last edited by randy80016 (2009-03-18 21:54:34)

    Actually I was wrong, this isn't a kernel panic, and may not even be related to Nvidia.
    Xorg just plain crashes, and it does seem to be in keyboard handling code:
    Backtrace:
    0: /usr/bin/X(xorg_backtrace+0x26) [0x4f00a6]
    1: /usr/bin/X(xf86SigHandler+0x39) [0x49c149]
    2: /lib/libc.so.6 [0x7f5f4382a150]
    3: /usr/bin/X(miPointerWarpCursor+0x8b) [0x4da17b]
    4: /usr/bin/X [0x478050]
    5: /usr/bin/X [0x4d9dcc]
    6: /usr/bin/X [0x53499f]
    7: /usr/bin/X [0x454f14]
    8: /usr/bin/X(CheckMotion+0x2af) [0x45925f]
    9: /usr/bin/X(ProcessOtherEvent+0x2d9) [0x53e559]
    10: /usr/bin/X(XkbHandleActions+0x21b) [0x5653db]
    11: /usr/bin/X(XkbProcessKeyboardEvent+0x3c1) [0x565ec1]
    12: /usr/bin/X(AccessXFilterPressEvent+0x10c) [0x55db0c]
    13: /usr/bin/X(mieqProcessInputEvents+0x34e) [0x4d0b9e]
    14: /usr/bin/X(ProcessInputEvents+0x9) [0x49cc99]
    15: /usr/bin/X(Dispatch+0x71) [0x44d6c1]
    16: /usr/bin/X(main+0x3bd) [0x4338ad]
    17: /lib/libc.so.6(__libc_start_main+0xe6) [0x7f5f43816546]
    18: /usr/bin/X [0x432d39]
    Where can I get symbols to debug this?  Or is there way to just run Xorg inside gdb from the start?

  • Nvidia drivers crashing in Adobe Bridge, spinning pinwheel of death

    Twice so far in Adobe Bridge my system will randomly lock up with the spinning pinwheel of death. The console shows these lines at the time of the freeze:
    8/12/12 9:47:44.000 PM kernel[0]: NVDA(OpenGL): Channel timeout!
    8/12/12 9:47:45.000 PM kernel[0]: NVDA(OpenGL): Channel exception! exception type = 0x20 = PBDMA Error
    8/12/12 9:48:05.000 PM kernel[0]: NVDA(OpenGL): Channel timeout!
    8/12/12 9:48:05.000 PM kernel[0]: IOVendorGLContext::ReportGPURestart
    8/12/12 9:48:05.000 PM kernel[0]: 0000006e
    8/12/12 9:48:05.000 PM kernel[0]: 00000001 0000902d 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000100 00000000 00000009
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 0000006e
    8/12/12 9:48:05.000 PM kernel[0]: 00000001 0000902d 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000100 00000000 00000009
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000000 03000821
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 0000006e
    8/12/12 9:48:05.000 PM kernel[0]: 00000001 0000902d 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000100 00000000 00000009
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: 00000000 00000000
    8/12/12 9:48:05.000 PM kernel[0]: NVDA(OpenGL): Channel exception! exception type = 0x20 = PBDMA Error
    This obviously points to the Nvidia drivers crashing, but why? I'm currently using an Nvidia GTX 460 768MB in my Mac Pro, and I've never had this problem with any other applications. It seems to only be Bridge.

    And you are assuming that the 460 will be supported of course which is not a given. The 570 and 670 seems to be okay and some use GTX 4xx but they also realized it can be iffy for support.

  • Nvidia drivers not working, only nouveau

    Hi I'm currently running Arch using the Nouveau drivers. I've had huge difficulty using the Nvidia drivers because arch for some reason didn't detect my cards. I have 750m SLI
    Is there any known fix for this? I've searched and searched but all in vain.

    brick21 wrote:
    Paludan wrote:
    I've tried several. the default nvidia ones, 340xx, legacy and none worked. My system was installed yesterday so yes it is up to date
    EDIT:
    Also for some reason my system only detects one of my GPUs using lspci -k | grep -A 2 -i "VGA", I have 2x 750m but it only displays 1
    I'm assuming you've tried nvidia-340xx-lts? this one worked for me. Geforce GT 750M.
    That's for the lts kernel... won't work if you use the regular "linux" kernel.
    What kernel are you running OP?  Also it would help to see the following
    lsmod | grep nvidia
    lsmod | grep nouveau
    cat /var/log/Xorg.0.log
    dmesg | grep nvidia

  • T420s Nvidia Drivers

    Howdy,
    I am looking for an older version of Nvidia drivers, specifically: 8.17.12.7658.  The new version (9620) doesn't allow me to select the Nvidia card for certain applications like VLC, WMP, or Media Player Classic.  That being said, I know the Nvidia card automatically runs everything connected to an external monitor however when not using an external monitor, I was able to set my defaults allowing me to multitask without the Intel card being the sole provider.  The old version allowed you to set each specific application, that is why I need to downgrade.  I've searched on Lenovo Support for old drivers but to no avail.  Any help would be appreciated.  Also in the past, Nvidia drivers were more up to date then Lenovo's however when Nvidia added this feature (not being able to select specific programs, or shading the option to), I jumped back to Lenovo's 7658.  My fault for updating to the latest Lenovo driver.
    Peednus 
    T420s, i5-2520M @2.5, nVidia 4200m, 8GB DDR3, OCZ Vertex 3 Max IOPS 240GB SSD, Hitachi 320GB @7200rpm ulrabay, 8Pro x64
    T61, Centrino Duo @1.8, GM965, 4GB PC2-5300 DDR2 @667MHz, OCZ Agility 120GB SSD, 7Pro x64

    to add a bit more... if you substitute txt for the exe ( http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/83de44ww.txt ) in your url, you can seemingly get the readme file to go along with the driver pack.
    cheers.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • NVidia drivers updates - G10-100

    A couple of questions:
    Are Toshiba ever going to update the display drivers for the G10? The ones they list on the downloads page are a year old! The regular nVidia ones won't install so I've had to resort to using the Omega drivers, and while they more or less work the TV-out on my G10 is now disabled.
    Failing that, does anyone know if the drivers for the G20 work? Normally nVidia drivers are the same for all cards, but I was wondering whether a) the G20 drivers will even install on a G10, and b) whether the TV-out will work again.

    I've now answered my questions. By default the G20 drivers won't install on a G10, but by copying parts of the NVTS.INF from the G10 drivers into the same file in the G20 drivers solves the problem.
    The bits you need are:
    * Copy the two lines from each of the [NVIDIA.Mfg.NTx86.5.1] and [NVIDIA.Mfg] sections -- this is the hardware ID of the FX5700 Go, and without these bits the drivers won't even attempt to install.
    * Everything from [nv4_NV36_M3.CoInstallers] to [nv4_NV36_M4_WinXP.GeneralConfigData] (including the two lines in the last section) needs to be pasted between [nv4_MEP43_LSR_3Lc.GeneralConfigData] and [nv4_EventLog_Inst]
    Save the edited file, and you're good to go. You'll be warned that the driver isn't signed, but other than that the installation is trouble-free and offers a noticeable performance increase in some games. I've not tried the TV-out yet, so that's still an unknown quantity, but I'll report back when I've given it a bash...
    (Why Toshiba didn't release the driver so it works on all models is beyond me; nVidia's UDA means that all cards use the same core driver components, so I'm guessing it's either just laziness or they figure that a 1-year-old machine isn't worth supporting properly any more.)

Maybe you are looking for

  • Mail and Address book playing up

    Hello. I am having problems with my Mail and Address book. For some reason, sent mails sometimes do not end up in the Sent folder, received emails sometimes go to the Trash without me sending them there, and I often have to resort to "Search" in the

  • Replicate a custom R/3 table in XI

    Hi All, Need some help!!!!!! I need to replicate a custom R/3 table in XI runtime cache (using value mapping replication). But the table in R/3 doesn't have any associated interfaces (BAPI). Pls reply with step by step solution. Thanks & Regrds, Rake

  • How to show all data when using more than one parameter?

    Hi All, I used a query like this to show the data in a report: select col1, col2 // col1 and col2 are columns of tabale tab1 from tab1 where tab1.col1 = (case when :P_COL1 IS NOT NULL then // :P_COL1 IS A USER PARAMETER TO EQUAL COL1 :P_COL1 ELSE tab

  • Minisap 4.6d installation problem

    Hi experts, While iam installing the minisap 4.6d,iam facing the follwoing problem....(i got the CDs from Abap Ojects book) "Could not find SQL-Server Instance "MSSQLSERVER" on your DB host "admin". You must install SAP into the default instance or i

  • Friends and Family can't see iCloud Photo Streams

    I've posted several photos to several photos streams on iCloud and most people that I've invited cannot see photos in the albums - they say they're all empty.  One sister is on a mac on 10.10.1 just like I am and can't see any photos.  Another sister