[solved] Driver for Nvidia ION Card

I have an Acer Aspire Revo which according to lspci has:
03:00.0 VGA compatible controller: NVIDIA Corporation ION VGA (rev b1)
Looking through the Wiki and the nVidia site, I am not sure which of the various drivers are for this card. The nVidia site takes me to a page "GEFORCE R320 GAME READY DRIVER". Has anyone got one of these and if so which driver are you using?
Last edited by geekinthesticks (2013-08-13 07:44:43)

You have two options to try: nvidia and nvidia-304xx.  Try the nvidia package first.  I'm pretty sure my ION2 atom board ran the nvidia package; I use that box as an NAS now and it doesn't have X installed so no need for a gfx driver now.
Last edited by graysky (2013-08-12 20:19:16)

Similar Messages

  • [SOLVED] Driver for Nvidia Geforce 210

    Hi guys. I'm having some trouble searching the proper video driver for my system. I need the nvidia driver for my Geforce 210.
    The wiki says: "For GeForce 2/3/4 MX/Ti series cards [NV11 and NV17-NV28], install nvidia-96xx package, available in the AUR. " , but is there any way to avoid using AUR?
    I've tried downloading the propretary driver from Nvidia' site and couldn't install it. So i'm thinking about the open drivers: is Nouveau a good choice in your opinion?
    Thanks for reading!
    Last edited by Issam2204 (2013-05-11 13:11:45)

    Issam2204 wrote:I thought 2 meant 200. So what do you think i should install? Now i'm even more confused.
    run the following command & post the output here:
    lspci | grep VGA
    if you REALLY do mean Geforce 210 you should see something like this (as I have a Geforce 210)
    ┌─(t0m5k1@b0x)-(1131/pts/3)-(03:02pm:10/05/13)-
    └─>(%:~)
    └─>> lspci | grep VGA
    02:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2)

  • Need new driver for nVIDIA 7900GTX graphic card (OS : Mac OS X 10.4)

    Any one know where i can get the new driver for nVIDIA 7900GTX graphic card (OS : Mac OS X 10.4)

    http://www.nvidia.com/object/7seriestechspecs.html
    Pls visit above nVIDIA web page.
    based on NVIDIA web pages, 7900GTX supports MAC OS X.
    but .....seems not so far.

  • HT3986 Where can i download the driver for my network card? i have a macbook pro mid 2012, and are using windows 7 ultimate

    Where can i download the driver for my network card? i have a macbook pro mid 2012, and are using windows 7 ultimate

    uhm hey guys,
    idk where else to get help so ima try here,
    i got windows 8 installed with bootcamp on my macbook pro late 2010 (5, 5) and theres no sound coming out of it, so i installed an nvidia audio driver (idk, it could be the incorrect one) but i have nvidia GeForce 320 on my macbook.
    do you know what i should install ?
    but when i go onto my osx the sound is fine, so i figured im missing something on windows 8
    Orrrr could i just go out and get parallels and hope it doesn't get the same problems?

  • Satellite A100-599 - Unable to install driver for nVidia GeForce Go 7600

    Greetings to all!
    Trying to install driver for Nvidia GeForce Go 7600 after complete system reinstall, but without any success. Only safe mode is available after this driver installation, tried with Windows XP, Vista and Windows 7 and with different drivers from Nvidia and Toshiba sites - same result all the time :(
    Would be glad to realize how to solve this... Thanks a lot.
    Satellite A100-599
    Current OS: Windpws Vista Home premium sp1.
    Message was edited by: Airtoground

    I do not want to install XP again, will try to fund a solution for Vista. Here is what I got from Installs list:
    Component List Satellite A100 PSAAR; Satellite Pro A100 PSAAs; Satego A100 PSAAW
    Contents and Installation order
    for Windows VISTA
    Windows Vista 32bit Home Premium - Windows Vista Home Premium&Basic(English) RTM
    - SLP Module OEMSLP2.0
    - Sun Java 2 Runtime Environment v1.6.0
    1 KB928190(For updated USBHub.sys) KB928190
    2 TOSHIBA Value Added Package Please use the attached ini file for ButtonSetting.ini and FeatureSelect.ini when the TVAP installation. v1.0.7
    3 Intel 945GM/940GML Display Driver v7.14.10.1114 (Package:V15.0.1.1114 PV)
    4 ATI ATI M52P/M54P/M56P Display Driver V8.31.100.3.2-061124a2-039454C
    *5 Nvidia G72M/G72MV/G73M Display Driver v97.46(TBD)*
    I found this driver but it says "no suitable driver found, installation wizard stops its work".
    Any ideas what could it mean?
    Thanks to all.

  • Nouveau driver (OSS 3D driver for Nvidia)

    I have tried to make packages for the nouveau driver with success, but would like feedback from other users before submitting them to AUR.
    To keep things clean and maintanable, i decided to create 3 packages :
    nouveau-git                     ---- the kernel modules
    libdrm-nouveau-git           ---- userspace part that replaces libdrm
    xf86-video-nouveau-git     ---- the driver itself (the easiest package)
    nouveau-git
    # Contributor : Lone_Wolf [email protected]
    pkgname=nouveau-git
    pkgver=20061126
    pkgrel=1
    pkgdesc="Kernel modules for nouveau driver"
    url="http://nouveau.freedesktop.org/wiki/"
    license=('GPL')
    depends=(glibc)
    sources=()
    md5sums=()
    options=('NOLIBTOOL')
    install=nouveau-git.install
    _kernver=2.6.18-ARCH
    # GIT variables
    _gitroot="git://anongit.freedesktop.org/git/mesa/drm/"
    _gitname="drm"
    build() {
    mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm
    cd $startdir/src
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git-pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
    cd ${_gitname}-build
    git checkout nouveau-1
    # ./autogen.sh
    # ./configure --prefix=/usr
    # make ||return 1
    # make DESTDIR=$startdir/pkg install
    cd linux-core
    make ||return 1
    # install drm.ko and nouveau.ko kernel modules
    # drm.ko is renamed to drm-nouveau.ko to avoid problems with the existing drm.ko module
    install -D -m644 drm.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/drm-nouveau.ko
    install -D -m644 nouveau.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/nouveau.ko
    nouveau-git.install
    # arg 1: the new package version
    post_install() {
    KERNEL_VERSION='2.6.18-ARCH'
    depmod -v $KERNEL_VERSION > /dev/null 2>&1
    echo ">>>"
    echo ">>> Make sure you have installed the xf86-video-nouveau-git package also"
    echo ">>> To make this work execute the following as root :"
    echo ">>> rmmod nvidia"
    echo ">>> modprobe drm
    echo ">>> modprobe -o --drm drm-nouveau"
    echo ">>> modprobe nouveau"
    echo ">>>"
    echo ">>> Now edit your /etc/X11/xorg.conf to use the nouveau driver:"
    echo ">>> Change in Section "Device" the Driver line to Driver "nouveau" "
    echo ">>>"
    echo ">>> Now start Xorg and run for cover !! "
    echo ">>>"
    /bin/true
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    post_install $1
    rmmod drm-nouveau || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
    # arg 1: the old package version
    post_remove() {
    KERNEL_VERSION='2.6.18-ARCH'
    depmod -v $KERNEL_VERSION > /dev/null 2>&1
    op=$1
    shift
    $op $*
    libdrm-nouveau-git
    # Contributor : Lone_Wolf [email protected]
    pkgname=libdrm-nouveau-git
    pkgver=20061126
    pkgrel=1
    pkgdesc="Userspace interface for nouveau driver"
    url="http://nouveau.freedesktop.org/wiki/"
    license=('GPL')
    depends=('glibc' 'nouveau-git')
    conflicts=('libdrm')
    provides=('libdrm')
    sources=()
    md5sums=()
    options=('NOLIBTOOL')
    # GIT variables
    _gitroot="git://anongit.freedesktop.org/git/mesa/drm/"
    _gitname="drm"
    build() {
    mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm
    cd $startdir/src
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git-pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
    cd ${_gitname}-build
    git checkout nouveau-1
    ./autogen.sh
    ./configure --prefix=/usr
    make ||return 1
    make DESTDIR=$startdir/pkg install
    xf86-video-nouveau-git
    # Contributor : Lone_Wolf [email protected]
    pkgname=xf86-video-nouveau-git
    pkgver=20061126
    pkgrel=1
    pkgdesc="OSS 3D driver for nvidia cards"
    url="http://nouveau.freedesktop.org/wiki/"
    license=('GPL')
    depends=('libdrm-nouveau-git' 'glibc')
    source=()
    md5sums=()
    options=('NOLIBTOOL')
    _gitroot="git://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau/"
    _gitname="xf86-video-nouveau"
    build() {
    cd $startdir/src
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git-pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
    cd ${_gitname}-build
    ./autogen.sh
    ./configure --prefix=/usr
    make ||return 1
    make DESTDIR=$startdir/pkg install

    Hi
    I've just get the nouveau driver installed successfully. But i had to tweak some things in your PKGBUILDS.
    here you'll found the PKGBUILD i finally got.
    nouveau-git (i hadn't git installed before compiling)
    # Contributor : Lone_Wolf [email protected]
    pkgname=nouveau-git
    pkgver=20061126
    pkgrel=1
    pkgdesc="Kernel modules for nouveau driver"
    url="http://nouveau.freedesktop.org/wiki/"
    license=('GPL')
    depends=(glibc)
    makedepends=('git')
    sources=()
    md5sums=()
    options=('NOLIBTOOL')
    install=nouveau-git.install
    _kernver=2.6.18-ARCH
    # GIT variables
    _gitroot="git://anongit.freedesktop.org/git/mesa/drm/"
    _gitname="drm"
    build() {
    mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm
    cd $startdir/src
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git-pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
    cd ${_gitname}-build
    git checkout nouveau-1
    # ./autogen.sh
    # ./configure --prefix=/usr
    # make ||return 1
    # make DESTDIR=$startdir/pkg install
    cd linux-core
    make ||return 1
    # install drm.ko and nouveau.ko kernel modules
    # drm.ko is renamed to drm-nouveau.ko to avoid problems with the existing drm.ko module
    install -D -m644 drm.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/drm-nouveau.ko
    install -D -m644 nouveau.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/nouveau.ko
    libdrm-nouveau-git: nothing to change
    xf86-video-nouveau-git: faced 2 problems when trying to build this package: · Missing xf86driproto (so added to makedepends). · Compilation failure when trying to build the manpage. I edit the PKGBUILD with a dirty hack to avoid manpage compilation.
    # Contributor : Lone_Wolf [email protected]
    pkgname=xf86-video-nouveau-git
    pkgver=20061126
    pkgrel=1
    pkgdesc="OSS 3D driver for nvidia cards"
    url="http://nouveau.freedesktop.org/wiki/"
    license=('GPL')
    depends=('libdrm-nouveau-git' 'glibc')
    makedepends=('xf86driproto')
    source=()
    md5sums=()
    options=('NOLIBTOOL')
    _gitroot="git://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau/"
    _gitname="xf86-video-nouveau"
    build() {
    cd $startdir/src
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git-pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
    cd $startdir/src/${_gitname}-build
    ##### Avoid manpage compilation #####
    mv Makefile.am Makefile.am.old
    cat Makefile.am.old | sed -e 's/SUBDIRS = src man/SUBDIRS = src/g' > Makefile.am
    mv configure.ac configure.ac.old
    cat configure.ac.old | sed -e 's/XORG_MANPAGE_SECTIONS/# XORG_MANPAGE_SECTIONS/g' | sed -e 's/man/Makefile//g' > configure.ac
    ##### End of hack #####
    ./autogen.sh
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    here are my 2cents

  • Is there an Update Driver for my Graphics card, AMD Radeon HD 6970M 2048 MB , in a 27inch mid 2011 iMac?  thank you!

    Is there an Update Driver for my Graphics card, AMD Radeon HD 6970M 2048 MB , in a 27inch mid 2011 iMac?  thank you!

    THank you very much, I I have a ton of Adobe programs on my mac and i think a Cuda driver update was installed with it, it just popped up the other day in my system settings and is asking to upgrade my graphics card, but i don't have the same card as this update... so i thought i would double check! thank you again.

  • Unable to find driver for realtek sound card

    hi iam having HP Pavilion Media Center a1320in Desktop PC.. iam unable to install driver for my sound card.i got driver from hp website but while installing a msg gets popup. it says install Microsoft uaa bus driver for hd audio. even in device manager-system devices i cant find MS UAA hd audio. 1 unknown device its shows in device manager. bcoz of that i purshased a new sound card. help me pls.... os - windows xp pro sp3.

    hi paul . i just installed the above two softs. but nothing happend. kb888111 is for xp sp2. so it will not get installed in sp3. bt i made small changes in registry and installed it. even i installed 2nd soft realted audio also, u can find my comp specification over here http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c00590356&tmp_task=prodinfoCategory&lc=en&dlc=en​...〈=en&product=1823355 iam using xp sp3. in my device manager-system devices- i cant find microsoft UAA....... and i think thats the problem. every time i install driver for realtek audio(got from hp website), it ask me to install MS UAA bus driver. what to do now..

  • New driver for Broadcom wireless cards

    Finally there's a driver for Broadcom wireless cards, including 4328 which only worked using ndiswrapper.
    http://www.broadcom.com/support/802.11/linux_sta.php
    There are discussions about it on the Ubuntu forums
    http://ubuntuforums.org/showthread.php?t=914697
    on the Debian forums
    http://forums.debian.net/viewtopic.php? … 294ad5d3e9
    and on the Gentoo wiki
    http://gentoo-wiki.com/HARDWARE_Apple_M … Generation
    Last edited by cmlr (2008-09-25 14:10:13)

    Actually, this driver already has a Wiki page, http://wiki.archlinux.org/index.php/Broadcom_BCM4312.  The new information is that it doesn't just work with bcm4312 cards, but all modern 43xx cards.  See the forum links in the previous message.
    The driver is already available in AUR,
    http://aur.archlinux.org/packages.php?ID=19514
    Last edited by cmlr (2008-09-25 14:20:50)

  • Satellite M60: can not install the newest driver for my graphic card

    Can not install newest driver for my graphic card
    Satellite M60
    ATI MOBILITY RADEON X700

    Hello
    First of all I really dont understand why you start two topics with the same theme. It is much better to have one topic with good content and interesting comments. Am I right? ;)
    Anyway, in your case it is interesting that Toshiba use adapted drivers because of hardware protection. That means that graphic card will not be forced to run at the maximum level. Hardware cooling in notebooks is very problematic and high temperature can result with overheating or hardware damage. All hardware components are placed on small place. Graphic card produce a lot of warmness and it is not so good for all other hardware.
    When you use non-Toshiba driver graphic card will be forced to run faster. Because of that every notebook manufacturers dont support usage of third part drivers. The fact is that hardware protection is priority.
    I didnt make any experiments but according to some reports on this forum there is way how to install non-Toshiba graphic card driver.
    Please check this forum and you will find many comments about that. One interesting topic is http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=18063&messageID=66186

  • Need driver for Nvidia Geforce Go 6150 for Windows 7

    Hi, can anyone please tell me where I can download the driver for Nvidia Geforce Go 6150 for Windows 7. I have tried the drivers for Windows Vista but it does not work. Thanks in advance.

    I followed this tutorial after installing Win7 on a friend's HP Pavilion tx1332LA (the tutorial is in Spanish):
    http://www.taringa.net/posts/ebooks-tutoriales/2570715/NVIDIA-nForce-Chipset-Driver-(windows-7-_-vista).html 
    And since the coprocessor was no longer listed as an unknown device (or something similar), I assumed everything worked correctly afterwards... is that alright or do I have to check in some other way? 
    Well, here is a part of what the tutorial says (what was enough for me):
    -Should work for 32-bits and 64-bits versions (I installed it on Windows 7 x64).
    -First of all, we see that in the Device Administrator, there is an unknown device, a coprocessor. That's because Windows 7 can't find its driver.
    -Download and install the following:
    NVIDIA nForce Chipset Driver
    ftp://ftp.hp.com/pub/softpaq/sp39501-40000/sp39535.exe
    and see if the coprocessor is recognized.
    -If not, go to the Device Administrator and find the unrecognized coprocessor.
    -Right-click on it and select Update driver...
    -Select browse my computer -> let me pick -> have disk (this is what the tutorial says, it wasn't exactly the same for me, but I eventually got to pick a folder on my hard drive)
    -Browse and select the following (assuming C represents the drive where everything from the file above got unpacked):
    C:\swsetup\SP39535\WinVista32\SMU\smuc.inf (for 32-bits version)
    C:\swsetup\SP39535\WinVista64\SMU\smuc64.inf (for 64-bits version)
    Note: That is what the tutorial says, but I could only select the SMU folder and not a specific file. After selecting the SMU folder, a driver was automatically listed, I selected it and it got installed.
    -Now, the coprocessor should be recognized (check the Device Manager).
    Hope it helps!
    Pixzeto
    (PD: HP, the graphical editor on this forum sucks on Opera 10.01)

  • NVIDIA driver for optimus capable cards and UEFI

    Has anyone have had any luck installing the nvidia (proprietary) driver for laptop with nvidia card like the Y series?
    I can't boot the laptop after installing the Nvidia driver. After installing the driver, I get an error saying "device not found" and drops to a shell mode.
    Solved!
    Go to Solution.

    Yes, I did make this thread, but a month ago. Since then I have it resolved, and I even have it tagged as resolved. Back then, I had a lot of problem making it work. But that was a month ago.
    And yes, I admit now that there are still issues with the driver. But as I've said at least twice already, the issues exist because native support NVIDIA provides is still relatively new. And yes, people are still experiencing problems because, I'll say it again for the third time, native support is still relatively new and therefore can be buggy.
    I think it's totally off pace to make factual statements based on one's experience. You're not paying attention to what you're reading and you're very quick to jump  to conclusions. NVIDIA most certainly doesn't say that it doesn't support Optimus on linux based OSes. There are minimum required kernel and xrandr versions, and that's pretty much it. They even tell you how to install it on their website:
    http://us.download.nvidia.com/XFree86/Linux-x86/31​9.12/README/randr14.html
    There can be/are issues after you install it, and as I mentioned before, I summarized in another thread as to how I got around a lot of the issues I had. Click my username and view it.
    Finally, every other person and their grandmother is using Ubuntu these days, so there is a lot of support out there for it.  I'd imagine that for the latest version of Ubuntu, someone out there has posted a step-by-step guide as to how to install the nvidia driver on an optimus card. The major issue is with older kernels or I'd imagine BSD, etc.

  • NVidia driver for my vid card.

    I tried to install the newest nVidia driver.... the Forceware Driver 52.16.  I got it installed, and when I rebooted my comp, it got no further than the Windows start-up screen.  Thus causing me to revert to my default driver settings.  Supposedly this driver is supported by my card, a GeForce3 ti 200 64mg card.  What's the scoop?  Am I doing something wrong?.... Is there a different driver for this card?  Also... where or how do I get openGL 1.4?  Thanks a bunch!

    Make sure you turn off Anti-virus software before installing new drivers. useing driver cleaner is helpfull in keeping windows from installing the drivers you just uninstalled (cab cleaner it takes some time to complete) and if you want to try a new driver that works well (this one I use)
    http://www.evga.com/support/downloads/default.asp
    This 53.03 is the latest from eVGA and will work with any nVidia card
    after the driver is installed there will be a folder in the program files named eVGADrv. this folder can be wiped after the next driver update.
    OpenGL is part of the driver package no need for a seprate download

  • Linux driver for wireless PCMCIA card CD54G2

    I puchased a wireless PCMCIA card - doesn't say who produced it, but is says: "Marketing name: CB54G2", so I guess it is made by MSI.
    I have dual boot laptop - WinXP and Linux Suse 9.1 Professional. I have no problem using this card under WinXp, but I am looking for a Linux driver for this card. Any idea where I find it?
    Thanks,
    Zalek

    Hi,
    Download and install the driver for Realtek wireless RTL8185L from  here.
    Use the Windows 7 driver. If there will be problem with the installation process then use the Compatibility mode.
    Resource:
    Windows 8 compatibility mode
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • Solaris 8 driver for 3COM LAN card

    I have installed Solaris 8 on a Pansonic CF-71 toughbook laptop, and need a driver for a 3COM 10 Mbps LAN pcmcia card model 3CCE589EC. Are there any out there!!

    What happens when you type "ifconfig -a" (while logged in as root to your solaris installation)?
    Linux driver won't work.

Maybe you are looking for

  • What is open dns, and why is it blocking my home page?

    I don't know what "open dns" is, but when I try and open my home page, a news site, I get a message that says "This domain has been blocked by your network administrator." This is my own computer, and I didn't block anything. It just started doing th

  • My keyboard and trackpad occasionally do not respond for 1-2 minutes.

    I bought my MBP new in July of this year and since I've had it the keyboard and trackpad have randomly stopped responding. It happened when I had lots of programs running at once and when I wasn't running anything. I took it to the Apple store and th

  • PL/SQL package SYS.DBMS_BACKUP_RESTORE version 11.02.00.01 in AUXILIARY dat

    Hi, My primary and stand by db are 11.2.0.3 from my primary db host , when i executed the below commands , it errors out . Can you please adive the fix RMAN> connect target sys/sys@chicago; connected to target database:chicago (DBID=4194693498) RMAN>

  • Snow Leopard (disk version), online update necessary?

    I installed the disk version of Snow Leopard on my 2007 Mac Mini (Intel processors); do I need to update it online, or does it come packaged with all relevant updates?

  • Importing drivers to MDT

    I have a driver structure in MDT that is based on OS\vendor\model style and I'm using drivergroups to apply drivers. When Importing drivers to MDT should I select the import duplicate driver or not? Many models share same drivers so if I dont choose