Skip to main content

Install NVidia driver on Ubuntu 9.04

Nvidia CorporationImage via Wikipedia



Add Remove Application
My Notebook is Acer Aspire 4520 need install Nvidia driver (GeForce 7000M).
The following is install procedure :

From Menu : Applications >> Add/Remove ...

On search box type "nvidia" and then check for " NVidia binary X.Org driver ('version 173' driver)"
and push "Apply Changes" button, from pop-up window push "Apply" button. Type your Admin password if needed. Then Installation progress bar will running.

After finish intallation run from Terminal as Root :
#nvidia-xconfig

Restart the computer. Now The notebook will use valid Nvidia VGA driver...

Comments

  1. AnonymousJuly 17, 2009

    i try this and it says "You do not appear to be using the nvidia x driver .Please edit your X configuration file (just run 'nvidia-xconfig' as root), and restart the X server...

    im new in linux...

    What should what put in the nvidia-xconfig..i open it and its blank...

    please help me fix this one..

    ReplyDelete
  2. Make sure that your xorg.conf like this :


    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildd@palmer) Sun Feb 1 20:21:04 UTC 2009

    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 "ServerFlags"
    Option "Xinerama" "0"
    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"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "AUO"
    HorizSync 30.0 - 75.0
    VertRefresh 60.0
    Option "DPMS"
    EndSection

    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7000M / nForce 610M"
    EndSection

    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "1280x800_60 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection

    ReplyDelete

Post a Comment

Popular posts from this blog

Repair Centos Metadata Corruption

To repair disk error on Centos 7. Use a Gparted disk that can be uploded in .... 1. Boot through gparted. 2. Go to the terminal 3. Check disk mapper by typing> fdisk -l For fdisk results 4. typed> sudo xfs_repair -L / dev / mapper / centos-home 5. Restart Centos 7 Hope can help readers of this blog

Ubuntu 10.10 Can not Select Framework on Netbeans 6.9.1

When we create new Project and want to select Framework like ' Java Server Faces ' or other there is a check box that can not be check :(. This Problem because Java Platform (java-6-open-jdk) is not Compatible with Ubuntu 10.10 . The solution is try using 'java-6-sun' on Synaptic known as 'sun-java6-jdk' Edit netbeans.conf and change netbeans_jdkhome="/usr/lib/jvm/java-6-sun"

Access Pidgin from Squid Proxy

In my Office some person like using Pidgin as Chatting tools to connect to Yahoo messager. Because my office using Squid as Proxy server, some modification of squid.conf is adding. This line below (red bold) you must add on squid.conf. acl SSL_ports port 443 acl SSL_ports port 5050 acl Safe_ports port 80 acl Safe_ports port 21 acl Safe_ports port 443 acl Safe_ports port 70 acl Safe_ports port 210 acl Safe_ports port 1025-65535 acl Safe_ports port 280 acl Safe_ports port 488 acl Safe_ports port 591 acl Safe_ports port 777 acl CONNECT method CONNECT acl shoutcast rep_header X-HTTP09-First-Line ^ICY\s[0-9] acl apache rep_header Server ^Apache Restart Squid : #service squid restart Try connect from pidgin. If any problem don't be ashame to put comment in this post. Thank's .