GeForce3 Ti200 Ubuntu 9.04 installation

questions, answers, problems, reviews, ...
.:: Preferred language(s): english
.:: Permissions: everybody
Post Reply
User avatar
geohei
Site Admin
Posts: 3388
Joined: Tuesday, 19.11.2002 07:56
Location: Luxembourg
Contact:

GeForce3 Ti200 Ubuntu 9.04 installation

Post by geohei »

Go to ...
System > Administration > Hardware Drivers

Download, install and activate "NVIDIA accelerated graphics driver (version 96)"
[version 96.43.13 actual 29.08.2009]

Then, create /etc/X11/xorg.conf

Code: Select all

geohei@ubuntu904hol:~$ sudo su
[sudo] password for geohei: 
root@ubuntu904hol:/home/geohei# mv /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
root@ubuntu904hol:/home/geohei# nvidia-xconfig

WARNING: Unable to locate/open X configuration file.

New X configuration file written to '/etc/X11/xorg.conf'

root@ubuntu904hol:/home/geohei# ls -l /etc/X11/xo*
-rw-r--r-- 1 root root 1545 2009-09-10 17:28 /etc/X11/xorg.conf
-rw-r--r-- 1 root root 2816 2009-09-10 17:28 /etc/X11/xorg.conf.backup
/etc/X11/xorg.conf looks like this:

Code: Select all

root@ubuntu904hol:/home/geohei# cat /etc/X11/xorg.conf
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder57)  Sat Jan 24 20:04:42 PST 2009

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
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"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       30.0 - 110.0
    VertRefresh     50.0 - 150.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
Now you can configure your display.

Visual Effects "Normal" and "Extra" are selectable, but produce corrupt display output. Use "None". To forbid these options, add this to xorg.conf:

Code: Select all

Section "Extensions"
        Option          "Composite"     "Disable"
EndSection
After all this, 1280x1024 w/ GeForce3 Ti200 should work!

Useful links:
http://ubuntuforums.org/showthread.php?t=912485
http://ubuntuforums.org/showthread.php?t=912485
http://ubuntuforums.org/showthread.php?t=1152848

You can add some resolutions, and the final xorg.conf might look like this:

Code: Select all

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder75)  Thu Apr 15 05:52:31 PDT 2010

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
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"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       30.0 - 110.0
    VertRefresh     50.0 - 150.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1920x1200" "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Extensions"
        Option          "Composite"     "Disable"
EndSection
Image
Post Reply