[nvidia] graphics errors in games since upgrade of 03/12/08

Hi,
since I did a "pacman -Syu" on 03/12/08, I have problems with the graphics of sdl/open gl games, e.g. urban terror and unreal tournament. There are graphical errors (textures are missing or have the wrong color) and the games are very unstable, hang very often, have low frame rates.
The last "pacman -Syu" was on 03/02/08, so the "bad" new package must have been released in this time. Only nvidia cards are affected, because my laptop with intel chip has no problems, though I also did a "pacman -Syu" on it. I could not solve the problem by changing the available settings in nvidia-settings. Even disabling the composite and renderaccel options in xorg.conf did not help. But I could solve the visual problems by upgrading xorg-server to 1.4.0.90-7 (testing). The current one is 1.4.0.90-6. However, the games are still very unstable, which is a even bigger problem that the visual issues. I also tried out the new beta nvidia driver (171.06), but it didn't help at all.
Best regards,
Thorsten
P.S.: hardware is GF6600GT

here ya go:
first the kernel module:
# $Id: PKGBUILD,v 1.87 2008/02/27 08:20:11 thomas Exp $
# Maintainer : Thomas Baechler <[email protected]>
pkgname=nvidia
pkgver=100.14.19
_kernver='2.6.24-ARCH'
pkgrel=1
pkgdesc="NVIDIA drivers for kernel26."
arch=('i686' 'x86_64')
[ "$CARCH" = "i686" ] && ARCH=x86
[ "$CARCH" = "x86_64" ] && ARCH=x86_64
url="http://www.nvidia.com/"
depends=('kernel26>=2.6.24-2' 'kernel26<=2.6.25-0' 'nvidia-utils')
conflicts=('nvidia-96xx' 'nvidia-71xx' 'nvidia-legacy')
license=('custom')
install=nvidia.install
source=(http://us.download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run)
build()
# Extract
cd $startdir/src/
sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
# Any extra patches are applied in here...
cd usr/src/nv/
ln -s Makefile.kbuild Makefile
make SYSSRC=/lib/modules/${_kernver}/build module
# install kernel module
mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
install -m644 nvidia.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install
and nvidia-utils:
# $Id: PKGBUILD,v 1.31 2008/02/27 08:17:30 thomas Exp $
# Maintainer: Thomas Baechler <[email protected]>
# Contributor: James Rayner <[email protected]>
pkgname=nvidia-utils
pkgver=100.14.19
pkgrel=1
pkgdesc="NVIDIA drivers utilities and libraries."
arch=('i686' 'x86_64')
[ "$CARCH" = "i686" ] && ARCH=x86
[ "$CARCH" = "x86_64" ] && ARCH=x86_64
url="http://www.nvidia.com/"
depends=('xorg-server')
conflicts=('libgl' 'libgl-dri' 'ati-fglrx-utils' 'nvidia-legacy-utils' \
'nvidia-71xx-utils' 'nvidia-96xx-utils')
provides=('libgl')
license=('custom')
install=nvidia.install
source=(http://us.download.nvidia.com/XFree86/Linux-${ARCH}/${pkgver}/NVIDIA-Linux-${ARCH}-${pkgver}-pkg0.run \
supported-cards.txt)
options=(docs !strip)
build()
# override nvida install routine and do it the long way.
cd $startdir/src/
sh NVIDIA-Linux-${ARCH}-${pkgver}-pkg0.run --extract-only
cd NVIDIA-Linux-${ARCH}-${pkgver}-pkg0/usr/
mkdir -p $startdir/pkg/usr/{lib,bin,share/applications,share/pixmaps,man/man1}
mkdir -p $startdir/pkg/usr/lib/xorg/modules/{extensions,drivers}
mkdir -p $startdir/pkg/usr/share/licenses/nvidia/
install lib/{libGLcore,libGL,libnvidia-cfg,tls/libnvidia-tls}.so.${pkgver} \
$startdir/pkg/usr/lib/ || return 1
install -m644 share/man/man1/* $startdir/pkg/usr/man/man1/ || return 1
rm $startdir/pkg/usr/man/man1/nvidia-installer.1.gz || return 1
install X11R6/lib/libXv* $startdir/pkg/usr/lib/ || return 1
install -m644 share/applications/nvidia-settings.desktop $startdir/pkg/usr/share/applications/ || return 1
# fix nvidia .desktop file
sed -e 's:__UTILS_PATH__:/usr/bin:' -e 's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i $startdir/pkg/usr/share/applications/nvidia-settings.desktop
install -m644 share/pixmaps/nvidia-settings.png $startdir/pkg/usr/share/pixmaps/ || return 1
install X11R6/lib/modules/libnvidia-wfb.so.$pkgver $startdir/pkg/usr/lib/xorg/modules || return 1
install X11R6/lib/modules/drivers/nvidia_drv.so $startdir/pkg/usr/lib/xorg/modules/drivers || return 1
install X11R6/lib/modules/extensions/libglx.so.$pkgver $startdir/pkg/usr/lib/xorg/modules/extensions || return 1
install -m755 bin/nvidia-{settings,xconfig,bug-report.sh} $startdir/pkg/usr/bin/ || return 1
cd $startdir/pkg/usr/lib/
ln -s libGL.so.$pkgver libGL.so || return 1
ln -s libGL.so.$pkgver libGL.so.1 || return 1
ln -s libGLcore.so.$pkgver libGLcore.so.1 || return 1
ln -s libnvidia-cfg.so.$pkgver libnvidia-cfg.so.1 || return 1
ln -s libnvidia-tls.so.$pkgver libnvidia-tls.so.1 || return 1
ln -s libcuda.so.$pkgver libcuda.so.1 || return 1
ln -s libXvMCNVIDIA.so.$pkgver libXvMCNVIDIA_dynamic.so.1 || return 1
cd $startdir/pkg/usr/lib/xorg/modules/extensions
ln -s libglx.so.$pkgver libglx.so || return 1
install -m644 $startdir/src/NVIDIA-Linux-${ARCH}-${pkgver}-pkg0/LICENSE $startdir/pkg/usr/share/licenses/nvidia/ || return 1
ln -s nvidia $startdir/pkg/usr/share/licenses/nvidia-utils || return 1
install -D -m644 $startdir/src/NVIDIA-Linux-${ARCH}-${pkgver}-pkg0/usr/share/doc/README.txt $startdir/pkg/usr/share/doc/nvidia/README || return 1
install -D -m644 $startdir/src/supported-cards.txt $startdir/pkg/usr/share/doc/nvidia/supported-cards.txt || return 1
find $startdir/pkg/usr -type d -exec chmod 755 {} \;
# phew :)
PS: I removed the mdsums as i am on i686 and i don't have the "sources" for x86_64. These are edited 169.12 PKGBUILDs

Similar Messages

  • No Facebook games since upgrading flash player

    I am running Vista home premium on my laptop. The other day, I updated to flash player 10.  Ever since I updated, I can't access most of the games I'd been playing on facebook.  So far I'm having problems with Zoo Paradise, Zoo World & Farmtown.  All these games worked perfectly before I updated.  I have IE, FF & Chrome all on my laptop.  I've tried all three and can not play the games with any of them anymore.  I even tried to do a restore back to before the update, but nothing is working. PLEASE help.  I'm totally frustrated AND going thru withdrawal not being able to play my games! LOL...
    All the best,
    Jodi

    I have been playing this game for years now it help my depression and for the past six days it does not load all my other games load but Sorority Life
    I have sent tickets to playdom and emailed
    Shirley, Jul 21 01:52 pm (PDT):
    Dear Playdom Gamer,
    Thanks for contacting Playdom Game Services. I apologize for the problems you have experienced with our application. I appreciate your patience while we work through this issue. Please be aware that there are sometimes momentary errors with Sorority Life. If you check back after a short period (having closed your browser and perhaps cleared your cache) the problem may resolve itself. I would also suggest you check out the trouble-shooting guide on the Sorority Life forums to make sure that your computer or browser is not interfering with the application:
    http://forum.sistersapps.com/showthread.php?t=18426
    Thanks for continuing to play and enjoy the game.
    Playdom Game Services Department
    Sorority Life Team
    News and Announcements: http://sororitylifeblog.playdom.com/
    Want some awesome game hints? Check out the Official Forums at: http://forum.sistersapps.com
    AND I DID EVERYTHING IT SAYS CLEAR DELETE UNINSTALL INSTALL CHECK ALL I NEED TO DO NOW IS TAKE MY COMPUTER TO AN
    EXORCIST MAYBE THAT WILL MAKE IT WORK???.... lol
    Well I just want someone to FIX it!!!!! I am not the most handy computer person I know how to type and with some help I can download something sometimes I download to much. My computer runs on Vista it works and I am not planning to get something new any day soon so please just make everyone happy and fix it!!!.... Thanks and god bless

  • Graphics errors in games on KM4M-V MB!!!

    Sorry if this topic has been addressed before, but didn't feel like searching all the topics to find out. I am running AMD Sempron 2500+ on a KM4M-V motherboard with 512 MB 3200? DDR RAM, Maxtor 20 GB HDD 5400 RPM(Master) with Seagate 80 GB HDD 7200 RPM(slave) and genuine ATI Radeon 9200 128 MB DDR (AGP). I have ALL the latest drivers and BIOS(as far as I can tell, anyway) and yet when I run fairly decent games, graphics-wise, on my machine, like Battle for Middle Earth, Jedi Knight II, and Half-Life 1, I get some weird problems. Other games, like Star Trek: Bridge Commander and Myst IV Revelation, seem to run fine. In Battle for Middle Earth, during gameplay, the game stalls, the display refreshes, goes interlaced, then refreshes again and returns to normal. Then when I exit the game, my Windows Desktop display has reduced in resolution by one setting(1024x768 to 800x600) Jedi Knight II usually crashes, and the system locks. Half-Life 1 has similar problems to Battle for Middle Earth, but it will revert to software rendering. This occured while trying to play the game online. I have done some studying, and was told that I couldn't have both the onboard video(S3 UniChrome) and my new graphics board operating at the same time, but I'm not sure how to completely disable the onboard video. As I said, I have all the latest drivers for my new video card and the mainboard. I had the card running earlier on a Tyan Trinity K7 S2380 with Athlon 650 MHz and 256 MB PC100, and had some problems with it, though not like the ones I'm having now. After I installed the latest ATI drivers, the card worked perfectly, until I upgraded my mainboard processor, and RAM! PLEASE HELP!!!

    1.- Yes. P.S. is weak.- Look for a better one to see if problem goes.
    2.- Are you running memory 1:1 with FSB or are you runing it at its speed ? More stable if you run it at 333, same speed as CPU.
    3.- Also you could try "upping" a bit memory voltage ( +0,1-+0,2 max.)
    4.- Are you sure Clearing CMOS worked.? Many times moving jumper doesn't work if you don't take out P.S.'s power cord from wall outlet, then press start button to drain all electr. from system, then take out Mobo's battery and finally moving jumper to clear pos. and wait some secs. Then restore jumper and install Battery again, reconnect P.S. and start PC.

  • Nvidia Graphics Errors

    Hello,
    I recently started using ArchLinux and I love it so far. It's very fast and reminds me of my gentoo days.
    I have an nvidia 9600m GT in my HP DV5T.  My xorg.conf device section specifies "nvidia" for the driver and the identifier, and no other options.
    The problem I get is when I am browsing in firefox, when I navigate to a new page, the old page stays in pieces. So the display is half the old page and half the new page. If I scroll or click anywhere on the page the page refreshes.
    Another example is I go to newegg.com and mouse over a category. The subcategories don't display until I mouse over where they should be, and then they show up.
    I am using compiz.
    It's a very difficult problem to describe and any screenshots I take also trigger a correct render. I have also had a lot of trouble searching for the problem since I don't know the appropriate keywords.
    I'm sure this has happened to others, so hopefully someone here knows what I'm talking about and can send me a quick link to a solution.
    Thanks.

    Hello,
    I recently started using ArchLinux and I love it so far. It's very fast and reminds me of my gentoo days.
    I have an nvidia 9600m GT in my HP DV5T.  My xorg.conf device section specifies "nvidia" for the driver and the identifier, and no other options.
    The problem I get is when I am browsing in firefox, when I navigate to a new page, the old page stays in pieces. So the display is half the old page and half the new page. If I scroll or click anywhere on the page the page refreshes.
    Another example is I go to newegg.com and mouse over a category. The subcategories don't display until I mouse over where they should be, and then they show up.
    I am using compiz.
    It's a very difficult problem to describe and any screenshots I take also trigger a correct render. I have also had a lot of trouble searching for the problem since I don't know the appropriate keywords.
    I'm sure this has happened to others, so hopefully someone here knows what I'm talking about and can send me a quick link to a solution.
    Thanks.

  • Error 1856 message since upgrading Quicktime Feb 2014.

    Tried running as admin as per some forum discussions about this problem but no luck.  I haveWindows 7 64bit.  The problem only started after I downloaded new version of Quicktime in February 2014.

    I have the same exact problem since the update.
    The problem seems to come from Quicktime itself as I can open .mov files in other players. Tried re-installing it, even cleaned cache and temp files in between. Running as admin has not helped.
    Hope this gets an awnser soon.

  • Graphical Errors in KDE since e17 install

    Hi,
    I recently installed e17 from the community repository, and now KDE is having some graphical problems. Buttons are missing or missing text, the bouncing busy icon for launching applications is just a light blue square, the arrow on the panel's hide button is a square as well, and icons are missing from a number of places.
    I've tried uninstalling e17, But it had no effect. Any suggestions would be appreciated.

    There's no question that changing things in E17 can change things in KDE. I was playing around with using E17 as KDE's window manager, and just for fun I changed the icon properties for Firefox in E17's launcher to point to Konqueror, and it made the updates in KDE also. Apparently E17 is directly modifying the desktop file and not storing settings in some sort of configuration file.
    By the way, at the time I made the changes, I was not logged into KDE at all, only E17. When I wrote the last paragraph, I was in E17 putting the settings back. Now I'm in KDE, and the settings took here also.
    Last edited by skottish (2007-10-19 00:07:36)

  • Since upgrading iTunes wont open Error 13014

    since upgrading my iTunes I can't get it to do anything. I have completely removed all apple products and cleaned out the registry, then reinstalled everything and still getting the "unknown error occurred 13014. Is there anyway I can fix this or at least go back to the previous version of iTunes so I can still update my iPod touch?
    thanks
    Luke

    hmmm. okay, if you're currently just getting the "itunes has encountered an error ..." let's try the following technique.
    preliminaries
    download and save a fresh copy of the itunes 6.0.1.3 installer to your hard drive. (eventually we're going to run the install from there rather than online.)
    iTunes 6.0.1.3 Installer
    switch off any antivirus and antispyware applications prior to any uninstalls, installs or repair installs.
    uninstall
    use the complete uninstall instructions given in the following document to remove your existing itunes and quicktime:
    Troubleshooting iTunes, iPod Software, and QuickTime installation on Windows
    ... and if you run into problems on the uninstall, try using the Installer Cleanup utility:
    Description of the Windows Installer CleanUp Utility
    reboot after uninstalling.
    reinstall
    remember to switch off your antivirus and antispyware.
    reinstall itunes using the 6.0.1.3 installer you downloaded previously.
    if you get the "itunes has encountered a problem ..." error message again after that install, first check to see if your Quicktime will launch. if you get an error message when you try to launch quicktime, try using the following technique:
    iTunes 6 for Windows unexpectedly quits when opened
    keep us posted on your progress.
    love, b

  • Have been using Lightroom on my Apple computer for years. Now, ever since upgrading to Apple's  Yosemite operating system I get an error message (150:30) every time I try to open a lightroom file. Has anyone else experienced this problem?  Also how do I s

    Have been using Lightroom on my Apple computer for years. Now, ever since upgrading to Apple's  Yosemite operating system I get an error message (150:30) every time I try to open a lightroom file. Has anyone else experienced this problem?  Also how do I subscribe to Adobe's Premium Support? Every time I've tried (through contact support) I just get taken on an unending loop.

    I think we need a lot more information.
    Exactly what does the message say?
    Exactly what files are you trying to open?
    Exactly how are you trying to open them (what menu command or button or mouse action or keyboard shortcut)?
    And lastly, what version of Lightroom are you using?

  • Ever since upgrading to Lion I keep getting the error message "disk was not ejected properly."

    Ever since upgrading to Lion on my iMac G5 Intel Core 2 Duo, I keep getting the error message "disk was not ejected properly."  I have repaired permissions and reformatted my external LaCie 2TB USB hard disk, but the error continues.  I use this disk for my Time Machine backups.  This always seems to happen when the computer wakes from sleep, but not consistently.  The computer was asleep overnight and backed up as soon as it awakend this morning.  Two hours later I get the improper ejection message.  I have used the same external disk with Snow Leopard (all versions), but never had this error message or problem.  This disk has been in use without any problems since February, 2011. Upgrading to Lion is when this problem began. This is the below message (but from online image from Snow Leopard, but Lion message is essentially the same).

    I had a similar issue. Mine was with a Seagate GoFlex drive. The solution was to install GoFlex for Mac 1.1.2 which included a 64-bit driver to disable the drives built in sleep timer:
    http://www.seagate.com/ww/v/index.jsp?locale=en-US&name=goflex-mac-install-softw are&vgnextoid=77002aaf8cc5d210VgnVCM1000001a48090aRCRD
    I document how I discovered this in my blog post:
    http://www.innerexception.com/2011/10/tale-of-computing-misery-how-to-fix.html

  • Is it possible to upgrade MacBook Pro 15inch iris pro Retina display version to Nvidia graphics card?

    Hi
    I purchased a MacBook Pro 15inch iris pro Retina display version (£1599) recently.
    Can we upgrade  tit with Nvidia graphics card?
    Thanks

    In USA, you can return a Mac within 14 days of purchase and buy a new one with the desired spec.
    Retina MacBook Pro cannot be upgraded once bought.
    Best.

  • 'Bluetooth not available' error message since upgrading to Leopard

    Hi, I regularly seem to get a 'Bluetooth not available' error message since upgrading to Leopard, any ideas why, have to reboot to shake it.
    cheers
    Simon

    I solved the same issue by resetting the SMC. With the computer off, remove the battery and press and hold the power button for 5 seconds. Then reinstall the battery and restart. I haven't had any bluetooth issues since.

  • Since upgrade to Mac OS 10.7.2L , recurring error message: "There was a problem connecting to the server "servername". The server may not exist...etc."

    Since upgrade to Mac OS 10.7.2 Lion, on MacBookPro, recurring (every minute or so) error message: "There was a problem connecting to the server "servername". The server may not exist or it is unavailable at this time. Check the server name or IP address, check your network conneection, and then try again." (The server specified is no longer connected or used). The error message must be clicked twice to continue to work on the computer. Time Machine is switched off. No external disks are connected. Keychain entries for "servername" have been removed since the problem arose. Is there any way to prevent this error message?

    I am having the same problem; have tried deleting some of the plist files as others suggested but to no avail.  Tried turning off time machine - that didn't fix it either.  Very dispappointing.

  • Since upgrading to 4.0 I've been receiving irritating messages every time I click through via a link embedded in a document or an email. The message says "An error occurred in sending the command to the application". How can I remove it?

    Since upgrading to Firefox 4.0 I've been receiving irritating messages every time I click through via a link embedded in a document or an email. The message says "An error occurred in sending the command to the application". How can I remove it?

    Certainly!
    This is the module in our eMac 1.42:
    1GB PC2700 DDR 333MHz CAS 2.5 184 Pin DIMM
    The vendor, Other World Computing, ships to the UK but I suspect the shipping would make it pricy. I also trust this vendor:
    Apple G4 eMac 1.42GHz (184 Pin PC2700 DDR DIMMs)
    Between the two vendor's description, you should have a good idea of the Specs
    PPC Macs do not like hi-density PC RAM. That's why I linked these two; they send the right stuff to Mac users.
    Crucial UK is usually cited as good but, like their US counterpart, seldom go against Apple's outdated specs. See:
    http://www.crucial.com/uk/store/listparts.aspx?model=eMac%20(1.42GHz)&Cat=RAM
    They show the max RAM for your model as 1GB--yesterday's news. However, if you order their offering for a G5 iMac, you get the larger modules. Here is a listing for a 2GB kit (2 x 1GB modules) of the right config:
    http://www.crucial.com/uk/store/listparts.aspx?model=iMac%20(G5-1.8GHz%2C%2020-i nch)&Cat=RAM
    Hope this didn't muddy the water!
    Allan

  • Getting following Pop up error, since upgrading to Lion on iMac (but not on my iBook).

    Since upgrading to Lion on my iMac, I keep getting the following Pop up image error message.  Translated in English it reads:  The connexion to the server has failed.  URL type files are not recognised.
    Curiously enough, I upgraded my iBook with Lion also ... and I don't get this problem at all !  It does not cause any trouble, everything is working, BUT it is a Royal pain, as I have to click on OK twice to shut it down and it comes back up again every 10-15 minutes !!  Can someone help ?  Thank you.
    Flo

    This one:   http://www.clubdirectlaine.ca/

  • Graphical Error since 2.1.3 Update!

    I'm using the Canon 5DMKII, RAW files at full size, I've worked on thousands of these files before and never had a problem using Aperture 2 before, but the first upload session I have after the 2.1.3 Update... I get this happening:
    #1
    http://i191.photobucket.com/albums/z86/AFXREFLEX/Picture4.png
    #2
    http://i191.photobucket.com/albums/z86/AFXREFLEX/Picture5.png
    #1
    http://i191.photobucket.com/albums/z86/AFXREFLEX/Picture1-5.png
    #1
    http://i191.photobucket.com/albums/z86/AFXREFLEX/Picture2.png
    #2
    http://i191.photobucket.com/albums/z86/AFXREFLEX/Picture3-1.png
    I can export the files as TIFF, JPEG or ORIGINALS (RAW) and they are fine, and as you can see it "loads" at the top of the screen in Aperture 2 and then once it loads the graphical error goes away. I also tested this in EOS Utility and DPP and the RAW files DO NOT do this in those applications, leading me to believe this is purely an Aperture 2 issue.
    Any suggestions??

    Highest Res Home remodel ever!
    I've got a 5d2 as well and do not see this problem on my imac or macbook - does this happen on all your 5d2 raw files or just the ones you have newly imported? I haven't done a "new" import yet since I updated to 2.1.3 but have a shoot from last weekend I need to import soon, so I can check if this happens to me as well.
    What system are you running and what graphics card does it have?

Maybe you are looking for