Results 1 to 3 of 3

Thread: Nvidia 7950GTX screen flicker

  1. #1
    Join Date
    Jul 2007
    Location
    127.0.0.1
    Beans
    Hidden!
    Distro
    Ubuntu 8.04 Hardy Heron

    Nvidia 7950GTX screen flicker

    Hello,

    I'm currently running nvidia-glx-new as installed from the Restricted Drivers Manager. It has been working perfectly, except I have been noticing a slight screen flicker every minute or two; the screen will flicker once and then be fine for a minute or sometimes longer. It does not seem to be affected by CPU or graphics load; it occurs during intensive situations or when idling.

    Specs:
    Dell XPS M1710
    4GB RAM
    GeForce Go 7950GTX 512MB
    1920x1200

    My xorg.conf

    Code:
    Section "InputDevice"
            Identifier      "Generic Keyboard"
            Driver          "kbd"
            Option          "XkbRules"      "xorg"
            Option          "XkbModel"      "pc105"
            Option          "XkbLayout"     "us"
    EndSection
    
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
            Option          "CorePointer"
    EndSection
    
    Section "InputDevice"
            Identifier      "Synaptics Touchpad"
            Driver          "synaptics"
            Option          "SendCoreEvents"        "true"
            Option          "Device"        "/dev/psaux"
            Option          "Protocol"      "auto-dev"
            Option          "HorizEdgeScroll"       "0"
    EndSection
    
    Section "Device"
            Identifier      "Configured Video Device"
            Driver          "nvidia"
            Option          "NoLogo"        "True"
    EndSection
    
    Section "Monitor"
            Identifier      "Configured Monitor"
    EndSection
    
    Section "Screen"
            Identifier      "Default Screen"
            Monitor         "Configured Monitor"
            Device          "Configured Video Device"
            Defaultdepth    24
    EndSection
    
    Section "ServerLayout"
            Identifier      "Default Layout"
      screen "Default Screen"
            Inputdevice     "Synaptics Touchpad"
    EndSection
    Section "Module"
            Load            "glx"
    EndSection
    I have tested this with and without Compiz to find the same result. I have observed, however, that the screen will flicker more frequently when running compiz, or scrolling in windows.

    Has anyone else experienced this issue or know any way to fix it? It's starting to drive me insane...

    Thanks.

  2. #2
    Join Date
    May 2007
    Location
    /earth/US/Illinois
    Beans
    1,705
    Distro
    Ubuntu

    Re: Nvidia 7950GTX screen flicker

    Sometimes screen flickering is related to Vertical Sync problems. A simple checking of the Sync To VBlank options in nvidia-settings will fix this. I notice this when rendering the compiz cube mainly however i still get flickering once every hour or so which I have been unable to figure out. Hope this helps!
    Dialup or no internet on your Ubuntu box? Have no fear, Keryx is here! Keryx Project
    My blog

  3. #3
    Join Date
    Jan 2007
    Location
    $here ? $here : $there
    Beans
    3,717
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Nvidia 7950GTX screen flicker

    This sometimes happens on some nvidia based laptops because of something called powermizer. When the graphics card changes frequency, it can cause this problem. There are two ways to fix this (both are essentially hacks):

    1) The Infamous PerfLevelSrc hack

    2) Write a script that constantly runs nvidia-settings -q all > /dev/null. So something like:

    Code:
    #!/bin/bash
    
    while true ; do
        nvidia-settings -q all > /dev/null
        sleep 25
    done
    Don't try to make something "fast" until you are able to quantify "slow".

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •