Possible typo in newest nvidia PKGBUILD

From the PKGBUILD:
depends=('kernel26>=2.6.32i.3' 'kernel26<2.6.33'
Obviously the character in bold is a typo.
Should I file a bug report?

wantilles wrote:
From the PKGBUILD:
depends=('kernel26>=2.6.32i.3' 'kernel26<2.6.33'
Obviously the character in bold is a typo.
Should I file a bug report?
Normally, yes, file a bug report. But, it's not like that with at least today's update.

Similar Messages

  • Possibly stupid question re: nvidia driver install

    Hi there. I was wondering... Is it possible to install the nvidia driver without compiling the kernel? I don't want to repartition my drive to give Arch the space it would need to do that, and even if I had the space I'd rather not have to waste time compiling.
    As a side curiousity, if I do indeed need to rebuild the kernel, can anyone explain why I need to? It seems to me that if whoever compiled it in the first place included the sources they used, and if they made a copy available, it would avoid a lot of hassle. Am I wrong?
    Thanks in advance.

    Pink Chick wrote:
    OK - 1.) get source from kernel.org
    OK - 2.) extract it in /usr/src
    No - 3.) ln -s linux-2.6.4 linux (this step is debateable whither is necassary or not)
    OK - 4.) run the NVidia installer (say yes compile me one when it says it can't find any on nvidia's site)
    OK - 5.) update XF86Config-4
    OK - 6.) add nvidia to the modules like of rc.conf
    Just wanted to debate. If you fetched the kernel source, you should have a look inside its readme. There is a strong warning not to link your source to linux. Instead, give your nvidia installer the option where to find the source.
    nvinstaller --kernel-source-path=/usr/src/linux-2.6.4/
    Thanks, I wasn't aware of that. Will not do that any more
    -wd

  • Xchat pkgbuild with newest nvidia

    The latest nvidia driver (177.70) isn't exactly causing xchat to crash, but xchat crashes with this driver when you enable transparency. So here's the patch + PKGBUILD to have a working xchat w/ transp. w/ nvidia 177.70:
    pixmap.patch
    diff -ur xchat-2.8.4/src/fe-gtk/xtext.c xchat-2.8.4-shm-pixmaps/src/fe-gtk/xtext.c
    --- xchat-2.8.4/src/fe-gtk/xtext.c 2007-06-08 11:57:07.000000000 +0200
    +++ xchat-2.8.4-shm-pixmaps/src/fe-gtk/xtext.c 2008-05-23 00:56:52.000000000 +0200
    @@ -1347,6 +1347,22 @@
    +#ifdef USE_SHM
    +static int
    +have_shm_pixmaps(Display *dpy)
    +{
    + static int checked = 0, major, minor;
    + static Bool have = FALSE;
    +
    + if (!checked) {
    + XShmQueryVersion(dpy, &major, &minor, &have);
    + checked = 1;
    + }
    +
    + return have;
    +}
    +#endif
    +
    static void
    gtk_xtext_paint (GtkWidget *widget, GdkRectangle *area)
    @@ -1363,8 +1379,12 @@
    xtext->last_win_x = x;
    xtext->last_win_y = y;
    -#if !defined(USE_SHM) && !defined(WIN32)
    +#ifndef WIN32
    +#ifdef USE_SHM
    + if (xtext->shaded && !have_shm_pixmaps(GDK_WINDOW_XDISPLAY (xtext->draw_buf)))
    +#else
    if (xtext->shaded)
    +#endif
    xtext->recycle = TRUE;
    gtk_xtext_load_trans (xtext);
    @@ -3549,6 +3569,11 @@
    GC tgc;
    Display *xdisplay = GDK_WINDOW_XDISPLAY (xtext->draw_buf);
    +#ifdef USE_SHM
    + int shm_pixmaps;
    + shm_pixmaps = have_shm_pixmaps(xdisplay);
    +#endif
    +
    XGetGeometry (xdisplay, p, &root, &dummy, &dummy, &width, &height,
    &dummy, &depth);
    @@ -3566,18 +3591,20 @@
    XFreeGC (xdisplay, tgc);
    #ifdef USE_SHM
    - ximg = get_image (xtext, xdisplay, &xtext->shminfo, 0, 0, w, h, depth, tmp);
    -#else
    - ximg = XGetImage (xdisplay, tmp, 0, 0, w, h, -1, ZPixmap);
    + if (shm_pixmaps)
    + ximg = get_image (xtext, xdisplay, &xtext->shminfo, 0, 0, w, h, depth, tmp);
    + else
    #endif
    + ximg = XGetImage (xdisplay, tmp, 0, 0, w, h, -1, ZPixmap);
    XFreePixmap (xdisplay, tmp);
    } else
    #ifdef USE_SHM
    - ximg = get_image (xtext, xdisplay, &xtext->shminfo, x, y, w, h, depth, p);
    -#else
    - ximg = XGetImage (xdisplay, p, x, y, w, h, -1, ZPixmap);
    + if (shm_pixmaps)
    + ximg = get_image (xtext, xdisplay, &xtext->shminfo, x, y, w, h, depth, p);
    + else
    #endif
    + ximg = XGetImage (xdisplay, p, x, y, w, h, -1, ZPixmap);
    if (!ximg)
    @@ -3602,7 +3629,7 @@
    else
    #ifdef USE_SHM
    - if (xtext->shm)
    + if (xtext->shm && shm_pixmaps)
    #if (GTK_MAJOR_VERSION == 2) && (GTK_MINOR_VERSION == 0)
    shaded_pix = gdk_pixmap_foreign_new (
    @@ -3620,7 +3647,7 @@
    #ifdef USE_SHM
    - if (!xtext->shm)
    + if (!xtext->shm || !shm_pixmaps)
    #endif
    XPutImage (xdisplay, GDK_WINDOW_XWINDOW (shaded_pix),
    GDK_GC_XGC (xtext->fgc), ximg, 0, 0, 0, 0, w, h);
    @@ -3640,7 +3667,7 @@
    if (xtext->pixmap)
    #ifdef USE_SHM
    - if (xtext->shm)
    + if (xtext->shm && have_shm_pixmaps(GDK_WINDOW_XDISPLAY (xtext->draw_buf)))
    XFreePixmap (GDK_WINDOW_XDISPLAY (xtext->pixmap),
    GDK_WINDOW_XWINDOW (xtext->pixmap));
    PKGBUILD
    # $Id: PKGBUILD 2738 2008-06-14 03:11:41Z eric $
    # Maintainer: Eric Belanger <[email protected]>
    pkgname=xchat
    pkgver=2.8.6
    pkgrel=1
    pkgdesc="A GTK+ based IRC client"
    arch=('i686' 'x86_64')
    url="http://www.xchat.org/"
    license=('GPL')
    depends=('gtk2>=2.10.9' 'openssl>=0.9.8b' 'dbus-glib>=0.7.2')
    makedepends=('tcl' 'perl' 'python')
    optdepends=('enchant: for spell checking support')
    options=('!libtool')
    source=(http://www.xchat.org/files/source/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2 pixmap.patch )
    md5sums=('1f2670865d43a23a9abc596dde999aca' 'a0b3889d160ddf21eebd25b645bd1e48')
    sha1sums=('7a7463e65cb26c680ed70dd96cec98bcc05435a4')
    build() {
    cp pixmap.patch ${startdir}/src/${pkgname}-${pkgver}
    cd ${startdir}/src/${pkgname}-${pkgver}
    patch -p1 < pixmap.patch
    ./configure --prefix=/usr --sysconfdir=/etc \
    --enable-openssl --enable-dbus \
    --disable-gnome --disable-textfe \
    --enable-ipv6 --enable-shm \
    --enable-spell=static || return 1
    make || return 1
    make DESTDIR=${startdir}/pkg install || return 1
    Works fine for me under kernel26-ice nvidia-ice (modified for 177.70)! Enjoy
    PS. 177.70 is a bit faster for me actually, on 2D/pixmap operations (wo and w/ compiz) (8600M GT)

    Natanji wrote:Thanks, that seems like it helped. So this is a flashplayer bug? Was it already reported?
    if you asking about a bug reported on arch linux bugtracker, then you are doing it the wrong way.
    flash and nvidia are closed source, we can't do anything. A better place is to submit bugs to nvidia and adobe.
    Now i see that nvidia 270.26 was released. Maybe you want to check that out:
    http://www.nvnews.net/vbulletin/showthread.php?t=159683

  • Is it possible to use any nvidia 8800GT in my Mac Pro?

    Hi,
    I have a 1st gen Mac Pro, with PCIe slots. Is it possible to use any 8800GT or do i have to get one from the apple webshop. This upgrade hasn`t come to Norway yet, but i`ve found some other great 8800GT`s. I don`t see why i can`t buy a MSI 8800GT (as long as it`s PCIe and not 2.0).
    What do you think? Please help me.. =/

    Thanks for the replies.
    Thats a real shame, though. The Upgrade kit cost the equivalent of $475 in Norway. Thats insane for a $170 graphics card. I found one computer store that had it listed at about $355, which i find strange. How could another computer store sell apple hardware cheaper then the official apple reseller?
    I find this whole situation frustrating. I can't buy from nvidia.com either as the taxes and stuff would likely end up in the $200 area. For once i wish i lived in the US.
    Thanks for the help. =)

  • Possible to upgrade my Nvidia Graphics Card on my Mid 2014 Macbook Pro?

    I purchased a mid 2014 Macbook Pro recently
    and it has a NVIDIA GeForce GT 750M.
    I was curious if it were possible to upgrade this to a better card?

    Thank you so much.

  • Flash video image problem with newest nVidia driver

    I've got a very weird display error since the last update. Basically, whenever I play flash video and afterwards close the browser (chromium), any purely black surfaces will display the full flash player image. The effect is only visible in the "first" window of a xmonad tab, that means if I cycle the window positions it will be in a different window. The others are not affected. When I restart X, I can see the flash video image flashing up shortly on the black screen. Restarting X fixes the issue. I cannot take any screenshot of the problem because the error is NOT visible on the screenshot. Therefore I suspect that some frame buffer used for the flash player is not getting cleared properly after exiting the browser, but it's really little more than a wild guess.
    As there are multiple components involved, I'm at a loss of where this might be coming from. I hope someone might be able to shed some light on this situation. Please post here if you have the same problem or have any idea why this happens!
    My setup:
    -nvidia 260.19.36-2
    -flashplugin 10.2.152.27-1
    -chromium 9.0.597.94-1
    -xmonad 0.9.2-1
    -xmonad-contrib 0.9.2-1
    Last edited by Natanji (2011-02-15 11:33:11)

    Natanji wrote:Thanks, that seems like it helped. So this is a flashplayer bug? Was it already reported?
    if you asking about a bug reported on arch linux bugtracker, then you are doing it the wrong way.
    flash and nvidia are closed source, we can't do anything. A better place is to submit bugs to nvidia and adobe.
    Now i see that nvidia 270.26 was released. Maybe you want to check that out:
    http://www.nvnews.net/vbulletin/showthread.php?t=159683

  • Possible typo in Beginner's Guide

    While going through the Beginner's Guide (https://wiki.archlinux.org/index.php/Beginners%27_Guide), I noticed a word "thw" in "Swap partition" section. There is only 1 occurrence, so it's easy to find. Perhaps it's a typo for "the".
    sol

    It's a wiki. You can fix it yourself.

  • Qosmio X770: Newest nVidia drivers 285.62 WHQL (non-beta) available now

    http://www.geforce.com/Drivers/Results/39066
    peace

    Finally!
    Probably our efforts writing nVidia, letting them know, counted.
    Installation worked fine for me as well - W7 Ultimate from scratch etc / I'm not using their system anymore, I just installed the new driver from over the existent driver (the old one still available on Toshiba website, but clean at least :P).
    Looking forward to knowing how it's working guys!
    I noticed that the movement is smoother now...

  • Would it be possible to flash an nvidia geforce 8800 gtx

    I know a flashed 7800 gtx is available for a late g5, but wondering if an 8800 gtx can be flashed to do the same.

    Not possible to flash because there's no open firmware image to flash with. You'd have to write the FCode from scratch. And since the 8800 is a different generation from the 7800 for which a rom image is available, the changes in the rom will very likely be non-trivial (i.e. not just changing some ids).
    However, I've recently read that the hackintosh folks are using so called Injectors in order to use normal PC cards without EFI firmware. As far as I understand, the situation is very similar to using a PC card in a g5. You'd lose the OF screens, but once the OS X driver gets control, it should be business as usual. I'd be interested in hearing whether anyone has pursued this strategy on the ppc macs? 

  • Preemptive mobo replacement T61's with Nvidia quadro 140m ?

    Have been doing some reading on the Nvidia problems.  I own two T61's (6457-DSU, 8889-26U) which have not had a GPU failure yet.  The dates (next to serial number) on the back of these machines are 08/03 and 08/02 respectively...although the 6457 does have an internal date stamp that is June, 2008 I believe.   My questions are:
    a) what is the failure probability, and b) what is availability of known 'good' replacement boards (intel or newest Nvidia)?  I understand that it's hard to answer the first question.  With OS, memory, wireless, and SSD upgrades, I'm happy with how these computers are performing.   If I'm in there replacing thermal material (thanks TuuS for that suggestion) I wouldn't mind going further with the board replacement if I can find good ones.  Any suggestions would be appreciated. 
    T61 WSXGA+ T9300 NVS140m 8GB SSD Win8.1pro 64bit
    T61 SXGA+ T9300 NVS140m 4GB SSD Win8.1pro 64bit
    Solved!
    Go to Solution.

    Jammin wrote:
    although the 6457 does have an internal date stamp that is June, 2008 I believe.   
    If you are referring to the date on the nVidia chip itself, it uses a different coding system YY/WW  (year/week) instead of YY/MM (year/month) that the laptop uses so an 08/06 would be febuary 2008 not June 2008.
    As for availability of boards, I can get the 08/08 boards for your 15.4" model, or the Intel boards. for the 14" standard screen model, they weren't in production when when the updated gpu was used but there are a couple brand new (old stock) boards that were recently uncovered which have gpu chips from 2010. They won't be available long and as far as I know are the only one's availbable anywhere. You can buy them refurbished from ibm still, but they usually have the same problematic gpu chip and come with a shocking price tag. Intel boards are the most cost effective option. 
    However, if you want to keep your current boards in service as long as possible I recommend you clean and reseat your heatsinks every 1-2 years, get all the dust out and try to avoid unnecessary heat/cool cycling. Don't allow them to go in/out of standby so when they are on they stay at a relatively constant temp. The biggest stress these chips face is the transition from room temp to operating temp and back. Turning the laptop on/off when it's not necessary will take it's toll on the gpu.
    I also agree that these are great systems and well worth keeping.
    ThinkPad W-510 i7-820QM(1.73-3.06GHz) Quad Core... ThinkPad T500, T9900, 8gb SSD...FrankNpad T-60p/61p (X9000 2.8ghz) 8gb SSD ips FlexView...ThinkPad T-61p (T9300 2.5ghz) 8gb ram...Thinkpad X-61 Tablet 4gb ram...ThinkPad A-31 (1.9ghz P4 1.5gb ram)

  • Nvidia drivers 173.08

    Has anyone made a pkgbuild for the newest nvidia beta drivers?
    I really should figure out pkgbuild by now but I'm checking here first.

    Yes. Seems fine for me, but not everyone.

  • Nvidia 100.14.03 BETA!

    Good evening archers,
    I have built the newest nvidia 100.14.03 BETA driver. The -utils package, a module package for tpowa's 2.6.21-rc7-ARCH kernel and the PKGBUILDs are available here: http://www.archlinux.org/~thomas/nvidia/
    If you want to use the driver with any other kernel, you'll have to replace the _kernver variable in the nvidia PKGBUILD and rebuild it.
    Have fun testing.

    Excellent job with the drivers. I rebuilt them for the 2.6.20-ARCH kernel with only one small problem! The md5sum failed for the NVIDIA-Linux-x86_64-100.14.03-pkg0.run file. Note that this is the 64bit version.
    After downloading the file a few times I just edited the PKGBUILDs and replaced the md5sum of 9b64aee889f7b8d415a607d8f6c3b3ec with f97a213153692fc31014397132df3f63 which is what I kept getting on my downloads of the file. Things seem to be working fine.
    Thanks again for the packages!

  • [Solved] Xorg 1.5 screwed up my NVIDIA

    Hi,
    Today I did a pacman -Syu and I got the newest NVIDIA driver installed and the newest Xorg. Everything broke. Well not exactly everything. But my settings are all screwed up. For a start my screen refuses to load at the normal resolution (1680x1050). I got a default 1024x860 (or whatever it is). Also my colour depth is 16. And regardless of any changes I make in NVIDIA settings manager the changes never stick. Also my compiz-fusion is totally screwed up. When it starts up my screen goes completely white. I have to blindly alt+F2 and run kwin to be able to do anything.
    Also my fonts are really small.
    Here is my xorg.conf:
    Section "ServerLayout"
        Identifier     "Xorg Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "PS/2 Mouse" "CorePointer"
    # Serial Mouse not detected
    # USB Mouse not detected
    EndSection
    Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"
    EndSection
    Section "Files"
    #    RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc:unscaled"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
        FontPath     "/usr/share/fonts/cyrillic"
    #    FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
    #    FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    #    FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/ttf/western"
        FontPath     "/usr/share/fonts/ttf/decoratives"
        FontPath     "/usr/share/fonts/truetype"
        FontPath     "/usr/share/fonts/truetype/openoffice"
        FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
        FontPath     "/usr/share/fonts/latex-ttf-fonts"
        FontPath     "/usr/share/fonts/defoma/CID"
        FontPath     "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
            Load  "ddc"  # ddc probing of monitor
        Load  "dbe"
    #    Load  "dri"
        Load  "extmod"
        Load  "glx"
            Load  "bitmap" # bitmap-fonts
    #    Load  "type1"
        Load  "freetype"
    #    Load  "record"
        #   Load  "synaptics"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
            Option      "CoreKeyboard"
        Option "XkbRules" "xorg"
        Option "XkbModel" "pc105"
        Option "XkbLayout" "sv-latin1"
        Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
        Identifier  "Serial Mouse"
        Driver      "mouse"
        Option      "Protocol" "Microsoft"
        Option      "Device" "/dev/ttyS0"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option        "SendCoreEvents"  "true"
    EndSection
    Section "InputDevice"
        Identifier  "PS/2 Mouse"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option          "ZAxisMapping"          "4 5"
        Option      "Device" "/dev/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option        "SendCoreEvents"  "true"
    EndSection
    Section "InputDevice"
            Identifier      "USB Mouse"
            Driver          "mouse"
            Option          "Device"                "/dev/input/mice"
        Option        "SendCoreEvents"    "true"
            Option          "Protocol"              "IMPS/2"
            Option          "ZAxisMapping"          "4 5"
            Option          "Buttons"               "5"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
        Identifier "Monitor0"
            Option "DPMS" "true"
    #    HorizSync    28.0 - 78.0 # Warning: This may fry very old Monitors
        HorizSync    28.0 - 96.0 # Warning: This may fry old Monitors
        VertRefresh  50.0 - 75.0 # Very conservative. May flicker.
    #    VertRefresh  50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
        #  Default modes distilled from
        #      "VESA and Industry Standards and Guide for Computer Display Monitor
        #       Timing", version 1.0, revision 0.8, adopted September 17, 1998.
        #  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
        # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "640x350"    31.5  640  672  736  832    350  382  385  445 +hsync -vsync
        # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "640x400"    31.5  640  672  736  832    400  401  404  445 -hsync +vsync
        # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "720x400"    35.5  720  756  828  936    400  401  404  446 -hsync +vsync
        # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
        ModeLine "640x480"    25.2  640  656  752  800    480  490  492  525 -hsync -vsync
        # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
        ModeLine "640x480"    31.5  640  664  704  832    480  489  491  520 -hsync -vsync
        # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
        ModeLine "640x480"    31.5  640  656  720  840    480  481  484  500 -hsync -vsync
        # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
        ModeLine "640x480"    36.0  640  696  752  832    480  481  484  509 -hsync -vsync
        # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
        ModeLine "800x600"    36.0  800  824  896 1024    600  601  603  625 +hsync +vsync
        # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
        ModeLine "800x600"    40.0  800  840  968 1056    600  601  605  628 +hsync +vsync
        # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
        ModeLine "800x600"    50.0  800  856  976 1040    600  637  643  666 +hsync +vsync
        # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
        ModeLine "800x600"    49.5  800  816  896 1056    600  601  604  625 +hsync +vsync
        # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
        ModeLine "800x600"    56.3  800  832  896 1048    600  601  604  631 +hsync +vsync
        # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
        ModeLine "1024x768"   44.9 1024 1032 1208 1264    768  768  776  817 +hsync +vsync Interlace
        # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
        ModeLine "1024x768"   65.0 1024 1048 1184 1344    768  771  777  806 -hsync -vsync
        # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
        ModeLine "1024x768"   75.0 1024 1048 1184 1328    768  771  777  806 -hsync -vsync
        # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
        ModeLine "1024x768"   78.8 1024 1040 1136 1312    768  769  772  800 +hsync +vsync
        # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
        ModeLine "1024x768"   94.5 1024 1072 1168 1376    768  769  772  808 +hsync +vsync
        # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
        ModeLine "1152x864"  108.0 1152 1216 1344 1600    864  865  868  900 +hsync +vsync
        # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
        ModeLine "1280x960"  108.0 1280 1376 1488 1800    960  961  964 1000 +hsync +vsync
        # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
        ModeLine "1280x960"  148.5 1280 1344 1504 1728    960  961  964 1011 +hsync +vsync
        # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
        ModeLine "1280x1024" 108.0 1280 1328 1440 1688   1024 1025 1028 1066 +hsync +vsync
        # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
        ModeLine "1280x1024" 135.0 1280 1296 1440 1688   1024 1025 1028 1066 +hsync +vsync
        # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
        ModeLine "1280x1024" 157.5 1280 1344 1504 1728   1024 1025 1028 1072 +hsync +vsync
        # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
        ModeLine "1600x1200" 162.0 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
        ModeLine "1600x1200" 175.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
        ModeLine "1600x1200" 189.0 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
        ModeLine "1600x1200" 202.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
        ModeLine "1600x1200" 229.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
        ModeLine "1792x1344" 204.8 1792 1920 2120 2448   1344 1345 1348 1394 -hsync +vsync
        # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
        ModeLine "1792x1344" 261.0 1792 1888 2104 2456   1344 1345 1348 1417 -hsync +vsync
        # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
        ModeLine "1856x1392" 218.3 1856 1952 2176 2528   1392 1393 1396 1439 -hsync +vsync
        # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
        ModeLine "1856x1392" 288.0 1856 1984 2208 2560   1392 1393 1396 1500 -hsync +vsync
        # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
        ModeLine "1920x1440" 234.0 1920 2048 2256 2600   1440 1441 1444 1500 -hsync +vsync
        # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
        ModeLine "1920x1440" 297.0 1920 2064 2288 2640   1440 1441 1444 1500 -hsync +vsync
        # Additional modelines
        ModeLine "1800x1440"  230    1800 1896 2088 2392  1440 1441 1444 1490 +HSync +VSync
        ModeLine "1800x1440"  250    1800 1896 2088 2392  1440 1441 1444 1490 +HSync +VSync
        # Extended modelines with GTF timings
        # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
        ModeLine "640x480"  43.16  640 680 744 848  480 481 484 509  -HSync +Vsync
        # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
        ModeLine "768x576"  34.96  768 792 872 976  576 577 580 597  -HSync +Vsync
        # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
        ModeLine "768x576"  42.93  768 800 880 992  576 577 580 601  -HSync +Vsync
        # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
        ModeLine "768x576"  45.51  768 808 888 1008  576 577 580 602  -HSync +Vsync
        # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
        ModeLine "768x576"  51.84  768 808 888 1008  576 577 580 605  -HSync +Vsync
        # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
        ModeLine "768x576"  62.57  768 816 896 1024  576 577 580 611  -HSync +Vsync
        # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
        ModeLine "800x600"  68.18  800 848 936 1072  600 601 604 636  -HSync +Vsync
        # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
        ModeLine "1024x768"  113.31  1024 1096 1208 1392  768 769 772 814  -HSync +Vsync
        # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
        ModeLine "1152x864"  81.62  1152 1216 1336 1520  864 865 868 895  -HSync +Vsync
        # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
        ModeLine "1152x864"  119.65  1152 1224 1352 1552  864 865 868 907  -HSync +Vsync
        # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
        ModeLine "1152x864"  143.47  1152 1232 1360 1568  864 865 868 915  -HSync +Vsync
        # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
        ModeLine "1280x960"  124.54  1280 1368 1504 1728  960 961 964 1001  -HSync +Vsync
        # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
        ModeLine "1280x960"  129.86  1280 1368 1504 1728  960 961 964 1002  -HSync +Vsync
        # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
        ModeLine "1280x960"  178.99  1280 1376 1520 1760  960 961 964 1017  -HSync +Vsync
        # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
        ModeLine "1280x1024"  190.96  1280 1376 1520 1760  1024 1025 1028 1085  -HSync +Vsync
        # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
        ModeLine "1400x1050"  122.61  1400 1488 1640 1880  1050 1051 1054 1087  -HSync +Vsync
        # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
        ModeLine "1400x1050"  149.34  1400 1496 1648 1896  1050 1051 1054 1094  -HSync +Vsync
        # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
        ModeLine "1400x1050"  155.85  1400 1496 1648 1896  1050 1051 1054 1096  -HSync +Vsync
        # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
        ModeLine "1400x1050"  179.26  1400 1504 1656 1912  1050 1051 1054 1103  -HSync +Vsync
        # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
        ModeLine "1400x1050"  214.39  1400 1512 1664 1928  1050 1051 1054 1112  -HSync +Vsync
        # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
        ModeLine "1600x1200"  280.64  1600 1728 1904 2208  1200 1201 1204 1271  -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
        Identifier  "Card0"
        Driver      "nvidia"
        VendorName  "All"
        BoardName   "All"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultColorDepth 32
        SubSection "Display"
            Depth     1
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     4
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     8
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     15
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     16
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     24
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     32
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
    EndSection
    #Section "DRI"
    #    Mode 0666
    #EndSection
    Section "ServerFlags"
         Option "AutoAddDevices" "False"
       EndSection
    This is what my Xorg.0.log says:
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux myhost 2.6.27-ARCH #1 SMP PREEMPT Fri Nov 28 10:56:24 UTC 2008 i686
    Build Date: 09 November 2008  07:16:27PM
        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: Mon Dec  1 21:55:19 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Xorg Configured"
    (**) |-->Screen "Screen0" (0)
    (**) |   |-->Monitor "Monitor0"
    (**) |   |-->Device "Card0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "PS/2 Mouse"
    (**) Option "AutoAddDevices" "False"
    (**) Not automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/PEX" does not exist.
        Entry deleted from font path.
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/cyrillic".
        Entry deleted from font path.
        (Run 'mkfontdir' on "/usr/share/fonts/cyrillic").
    (WW) The directory "/usr/share/fonts/ttf/western" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/decoratives" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/openoffice" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/ttf-bitstream-vera" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/CID" does not exist.
        Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/TrueType" does not exist.
        Entry deleted from font path.
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
        /usr/share/fonts/misc:unscaled,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi:unscaled,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/misc,
        /usr/share/fonts/100dpi:unscaled,
        /usr/share/fonts/75dpi:unscaled,
        /usr/share/fonts/TTF,
        /usr/share/fonts/Type1
    (**) 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: 0x81d66e0
    (II) Module ABI versions:
        X.Org ANSI C Emulation: 0.4
        X.Org Video Driver: 4.1
        X.Org XInput driver : 2.1
        X.Org Server Extension : 1.1
        X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@1:0:0) nVidia Corporation GeForce 8800 GT rev 162, Mem @ 0xfa000000/0, 0xe0000000/0, 0xf8000000/0, I/O @ 0x0000ac00/0, BIOS @ 0x????????/131072
    (II) System resource ranges:
        [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[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    0xffffffff - 0xffffffff (0x1) MX[b]
        [5] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [6] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [7] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [8] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
        [9] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [10] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [11] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [12] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
        [13] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [14] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [15] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [16] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [17] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [18] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [19] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [20] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [21] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [22] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [23] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded by default.
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
        compiled for 1.5.3, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 1.1
    (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 1.5.3, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.0
        Module class: X.Org Server Extension
    (II) NVIDIA GLX Module  177.82  Tue Nov  4 14:03:48 PST 2008
    (II) Loading extension GLX
    (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 1.5.3, module version = 2.1.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
        compiled for 1.5.3, module version = 1.0.0
        ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.0
        Module class: X.Org Video Driver
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
        compiled for 1.4.2, module version = 1.3.1
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
        compiled for 1.4.2, module version = 1.3.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 2.0
    (II) NVIDIA dlloader X Driver  177.82  Tue Nov  4 13:42:45 PST 2008
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01@00:00:0
    (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 1.5.3, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
        compiled for 1.5.3, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
        [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[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    0xffffffff - 0xffffffff (0x1) MX[b]
        [5] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [6] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [7] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [8] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
        [9] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [10] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [11] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [12] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
        [13] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [14] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [15] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [16] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [17] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [18] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [19] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [20] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [21] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [22] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [23] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 16, (--) framebuffer bpp 16
    (==) NVIDIA(0): RGB weight 565
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0):     enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce 8800 GT (G92) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 524288 kBytes
    (--) NVIDIA(0): VideoBIOS: 62.92.12.00.05
    (II) NVIDIA(0): Detected PCI Express Link width: 16X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 8800 GT at PCI:1:0:0:
    (--) NVIDIA(0):     Samsung SyncMaster (DFP-1)
    (--) NVIDIA(0): Samsung SyncMaster (DFP-1): 330.0 MHz maximum pixel clock
    (--) NVIDIA(0): Samsung SyncMaster (DFP-1): Internal Dual Link TMDS
    (II) NVIDIA(0): Assigned Display Device: DFP-1
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0):     "1024x768"
    (II) NVIDIA(0):     "800x600"
    (II) NVIDIA(0):     "640x480"
    (II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
    (--) NVIDIA(0): DPI set to (55, 65); computed from "UseEdidDpi" X config
    (--) NVIDIA(0):     option
    (==) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    (II) do I need RAC?  No, I don't.
    (II) resource ranges after preInit:
        [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[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    0xffffffff - 0xffffffff (0x1) MX[b]
        [5] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [6] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [7] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [8] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
        [9] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [10] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [11] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [12] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
        [13] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [14] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [15] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [16] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [17] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [18] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [19] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [20] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [21] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
        [22] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [23] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GPU GART.
    (II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(0):     be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(0):     may not be set correctly.  When the ACPI daemon is
    (II) NVIDIA(0):     available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(0):     events.  For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0):     Config Options in the README.
    (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
    (**) Option "dpms" "true"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (==) 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 SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (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 "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "sv-latin1"
    (**) Keyboard0: XkbLayout: "sv-latin1"
    (WW) Option "XkbVariant" requires an string value
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (**) Option "Protocol" "auto"
    (**) Option "Device" "/dev/psaux"
    (II) PS/2 Mouse: Setting mouse protocol to "ExplorerPS/2"
    (**) PS/2 Mouse: Device: "/dev/psaux"
    (**) PS/2 Mouse: Protocol: "auto"
    (**) Option "SendCoreEvents" "true"
    (**) Option "CorePointer"
    (**) PS/2 Mouse: always reports core events
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons" "true"
    (**) Option "Emulate3Timeout" "70"
    (**) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 70
    (**) Option "ZAxisMapping" "4 5"
    (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5
    (**) PS/2 Mouse: Buttons: 9
    (**) PS/2 Mouse: Sensitivity: 1
    (II) evaluating device (Keyboard0)
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) evaluating device (PS/2 Mouse)
    (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
    (II) PS/2 Mouse: Setting mouse protocol to "ExplorerPS/2"
    (II) PS/2 Mouse: ps2EnableDataReporting: succeeded
    (II) config/hal: Adding input device ImExPS/2 Logitech Explorer Mouse
    (EE) config/hal: NewInputDeviceRequest failed
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (EE) config/hal: NewInputDeviceRequest failed
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (EE) config/hal: NewInputDeviceRequest failed
    (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select@1680x1050+0+0"
    Any help would be much appreciated!
    BFC
    Last edited by BlueFightingCat (2008-12-02 16:41:01)

    fLuXx wrote:Ok, so i tried, but it didn't work. All works but the fonts - they're messed up pretty bad. I can't even read what I'm typing right now. Here are some screenshots (just so you know - it gets even worse than that):
    http://img254.imageshack.us/my.php?image=fluki1qu4.png
    http://img254.imageshack.us/my.php?image=fluki2ax1.png
    hmmm, I have exactly the same problem and I also use the nvidia-96xx.
    I noticed that I only get the scrambled text for the lines beyond 20 lines...so if I rescale the height of my window to 20 lines I never get scrambled text and and when I change the height of the window larger then 20 lines, only the 20+ lines get scrambled.
    Last edited by Bob Day (2008-12-02 18:05:24)

  • Satellite X200-21F: Nvidia geforce 8600m GT shows only 256MB

    High everyone, thanks for reading this thread.
    I bought an Sat x200-21F.
    So the problem is that the dedicated memory on my geforce 8600m GT is supposed to be 512MB, but it only shows 256MB.
    I activated the sli mode, but it still only shows 256MB of dedicated graphic ram.
    The funny thing is, it does not even seem to have better performances in games!
    If anyone can help me to enable the 512mo of dedicated memory?
    That would be nice thanks.

    the problem is: you would NEVER get the power of the two GPU's, because the Pc identify's the two graphic-cards, but you could only use one, at least for games, because to use these two cards effectively, you must have also an Nvdia- cipset (board)---but the toshiba laptops have got one from Intel: http://www.toshibadirect.com/td/b2c/cmod.to?coid=-33936 (look into the detailed specs! )
    but thats at least this what i'm thinking, shared by many other people with this problem.
    However, you could get a bit power back, if you change the nvidia settings...search for that in the internet, i swear you find helpsites... also, you must try to get always the newest nvidia drivers (also forceware drivers-which is the same *idontknow*) and disable/deactivate unused programms beore gaming... but although this is very bad, ALL my games are running well!
    --> use newest drivers (not on the toshiba website, they are old ... go again to laptopvideo2go.com), change nvidia control pannel settings (help on internet) and: DEACTIVATE VISTA AERO-PROGRAMMS! They really munch your working memory... ( search also for programms like "ATITool" or "RivaTuner" to try to overclockingyou GPU...but be careful! (i dont use it, its to difficult for me))
    Much luck for your next gaming-experience^^

  • Compiz-fusion, nvidia GeForce 8600M GT, no Compiz-fusion configurator.

    Hi there,
    I have few issues with the Compiz-fusion...
    1. I have the Nvidia GeForce 8600M GT card, one thing is for sure - i can play The Witcher without any trouble. And Compiz-Fusion is running very slow... Maybe not very slow, but i think, that a card that can handle The Witcher - should have no trouble with sth like Compiz-Fusion... I've installed the newest Nvidia drivers, everything seems to be OK... But it isnt... C-F is running slow, making me mad ;]
    2. I can't use the ccsm... AFAIK, ccsm should be the graphical configurator for Compiz-Fusion... But i have some trouble with locales... i'm using Polish locales, and the (standard?) en_EN UTF8 locales...

    Thanks for the reply.
    I did that, restarted Xserver with Ctrl+Alt+Backspace
    no black screen after fusion-icon command this time (I suppose because Option "AllowGLXWithComposite" is off)
    but when i select Compiz as a Window Mnager from fusion-icon I have no borders in my windows and no effects and I canot switch throw windows. Why is that...?
    after fusion-icon command I take this exit:
    * Detected Session: kde
    * Searching for installed applications...
    * No GLX_EXT_texture_from_pixmap with direct rendering context
    ... nor with indirect rendering, this isn't going to work!
    * Using the GTK Interface
    * Starting Compiz
    ... executing: compiz --replace --sm-disable --ignore-desktop-hints ccp
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    compiz (core) - Fatal: glXCreateContext failed
    compiz (core) - Error: Failed to manage screen: 0
    compiz (core) - Fatal: No manageable screens found on display :0
    Why I take Xlib:  extension "GLX" missing on display ":0.0".
    and
    compiz (core) - Fatal: glXCreateContext failed
    compiz (core) - Error: Failed to manage screen: 0
    compiz (core) - Fatal: No manageable screens found on display :0
    is there something wrong wiht my drivers? I installed them from the official repo.
    Last edited by TreeMinds (2008-05-25 16:02:32)

Maybe you are looking for