The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Changing Drivers (nVidia)

    Discussion in 'Linux Compatibility and Software' started by Dire NTropy, Jan 20, 2009.

  1. Dire NTropy

    Dire NTropy Notebook Deity

    Reputations:
    297
    Messages:
    720
    Likes Received:
    0
    Trophy Points:
    30
    I was wondering on how to downgrade nVidia drivers on Ubuntu because the new 180.22 drivers are giving me very high temps (70C on idle :eek: compared to ~50-60C before).

    Also, are the drivers from LV2G good for Ubuntu? Thanks!
     
  2. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    Downgrades are kinda messy. If you're fine with doing a little fiddling with the internals, you could edit Xorg.conf to force nVidia into its lowest power setting.

    NOTE: Be VERY CAREFUL when you do this. Especially if it's your first time.

    Code:
    $ sudo gedit /etc/X11/xorg.conf
    Then add the following line to the "Device" section:

    Code:
    Option         "RegistryDWords" "PowerMizerLevel=0x3"
    It should end up looking something like this. Just add the line in bold somewhere, and don't change anything else.

    Code:
    Section "Device"
        Identifier     "Card0"
        Driver         "nvidia"
        VendorName     "nVidia Corporation"
        BoardName      "GeForce 9600M GT"
        Option         "NoLogo" "True"
        Option         "TripleBuffer" "True"
        Option         "RenderAccel" "True"
        Option         "BackingStore" "False"
        Option         "DamageEvents" "True"
        Option         "DPMS" "True"
        Option         "AddARGBGLXVisuals" "True"
        Option         "ConnectedMonitor" "DFP"
        Option         "XaaNoOffscreenPixmaps"
       #Option         "RegistryDWords" "PerfLevelSrc=0x3333" #fully adaptive
        Option         "OnDemandVBlankInterrupts" "True"
        [B]Option         "RegistryDWords" "PowerMizerLevel=0x3"[/B] #low power
       #Option         "RegistryDWords" "PowerMizerLevel=0x2" #med power
       #Option         "RegistryDWords" "PowerMizerLevel=0x1" #high power
    EndSection
     
  3. Dire NTropy

    Dire NTropy Notebook Deity

    Reputations:
    297
    Messages:
    720
    Likes Received:
    0
    Trophy Points:
    30
    Hey, thanks for the quick reply!

    I have been monitoring my clocks and they have been at the lowest settings (169/100) vs. stock (475/400), so I think powermizer is doing its job.

    I also had this problem in XP, the idle temps were really high whenever using any 18x.xx drivers.