Help needed to compile epson drivers

Hi,
Im trying to compile drivers for an Epson Stylus Photo R300, the drivers are from http://avasys.jp/hp/menu000000500/hpg000000442.htm. I currently use guten-print drivers and theyve worked very well, until trying to print documents with transparency in kpdf and scribus.
The error I get from compiling is:
Making all in dtrfilter
make[2]: Entering directory `/home/ric/Desktop/rocklynn/pips-spr300_310-2.6.2/pips-spr300_310-2.6.2/dtrfilter'
/bin/sh ../libtool --mode=link gcc -g -O2 -Wall -o dtrfilter img.o pfpng.o main.o -ldl -lm ../lib/libdtr.a -lpthread -ldl
gcc -g -O2 -Wall -o dtrfilter img.o pfpng.o main.o -lm ../lib/libdtr.a -lpthread -ldl
../lib/libdtr.a(imgdetect_pips.o): In function `OutputMemAtBmp':
/home/kitayama/work/devel/current/pips-devel/pips-closed/src/imgdetect_pips.cc:46: undefined reference to `__builtin_new'
/home/kitayama/work/devel/current/pips-devel/pips-closed/src/imgdetect_pips.cc:95: undefined reference to `__builtin_delete'
/home/kitayama/work/devel/current/pips-devel/pips-closed/src/imgdetect_pips.cc:95: undefined reference to `__rethrow'
../lib/libdtr.a(imgdetect.o): In function `FUNC006::~FUNC006(void)':
/home/kitayama/work/devel/current/pips-devel/pips-closed/src/imgdetect.cc:128: undefined reference to `__builtin_delete'
collect2: ld returned 1 exit status
make[2]: *** [dtrfilter] Error 1
make[2]: Leaving directory `/home/ric/Desktop/rocklynn/pips-spr300_310-2.6.2/pips-spr300_310-2.6.2/dtrfilter'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ric/Desktop/rocklynn/pips-spr300_310-2.6.2/pips-spr300_310-2.6.2'
make: *** [all-recursive-am] Error 2
I found this thread on avasys forums http://www.avasys.jp/cgi-bin/lx/bbs/en/ … 1;Code=325
which also gives a solution appending to a line in the makefile
LIBS = -lpthread -ldl
... to read ...
LIBS = -lpthread -ldl -lstdc++ -lstdc++-3-libc6.2-2-2.10.0
Your stcd++ libs may be different. I am running Debian Woody 3.1. Please check your stdc++ libs in /usr/lib/...
Ive checked /usr/lib, found the libraries, but dont know what to enter into the make file.
ta for any help.

is there something wrong with gutenprint?
pacman -S gutenprint
http://www.linuxprinting.org/show_print … Photo_R300

Similar Messages

  • Urgent help needed in compiling JSP on websphere 6

    we are migrating our app from websphere 5 to 6 version. our app has 2 JSP files. Jsp A and Jsp B...
    Jsp A code
    if(cond met) { <%@ include file = JspB %> }
    Now JSP B code
    <bean:define id='X' />
    when i run the JSP A, it throws compilation error as below..
    Jsp A failed to compile, variable X not resolved
    An error occured in the statically included jsp B
    The same code is running on websphere 5. its giving error on 6. ..Pls help..This is urgent,

    Could you post more details perhaps? Eg. the complete files.
    Also, I would recommend that you consider using the runtime include, <jsp:include ...>, and put your variables in the request scope.

  • Help needed in compiling Rougewave with Sun workshop 6Update2

    I had written a small program which includes rougewave files. It is building fine with Sunworkshop 6Update2 in compatibility mode with C++ compiler 4.2. But when I give it in Default mode, it is showing errors in the roguewave directory. I had compiled using the project wizard. Is there any problem with the Rougewave classes in default mode? Any body could please help me by giving the steps by which I can use rouge wave with default mode of SunWorkshop 6 update2. I had tried with the settings such as -library=rwtools7,iostream and also with -library=rwtools7_std. But I was not able to solve the issue. Any body for help?

    hi!
    which version of RogueWave library are you using?
    RogueWave SourcePro is the latest version of RogueWave, which is supported for Forte6.
    cheers,
    -srip

  • Help needed for compiling error  URGENT

    Hello,
    I have been looking at this compilation error for a while and I cannot figure it out.
    I am compiling with this command:
    javac -classpath classes -sourcepath src -d classes src\pshah3\library\gui\GraphicalGui.java
    The error is:
    C:\java\hw5>javac -classpath classes -sourcepath src -d classes src\pshah3\library\gui\GraphicalGui.java
    src\pshah3\library\gui\GraphicalGui.java:32: error while writing <anonymous pshah3.library.gui.GraphicalGui$1>:classes\pshah\library\gui\GraphicalGui$1.class
    (The system cannot find the path specified)
    public void actionPerformed(ActionEvent e) { System.exit
    (0); }
    Why is it telling me that it cannot find the path, when it has to create the .class file itself?
    I would appreciate some insight into this problem?
    Thanks,
    Premal

    Thank you for you help, but i'am still a bit confused. The "pshah" was a typo, it should have been pshah3, so that's not the problem. Here's a more detailed explanation of what i'am trying.
    I am declaring the exitlister class in the following path:
    c:\java\hw5\src\pshah3\library\gui
    The file is fairly simple, it looks like this.
    package pshah3.library.gui;
    import java.awt.*;
    import java.awt.event.*;
    public class ExitListener extends WindowAdapter{
         public void windowClosing(WindowEvent event) {
              System.exit(0);
    The other file that i'am including is in the same location...it starts out like this.
    package pshah3.library.gui;
    import pshah3.library.*;
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    class GraphicalGui {
              public static void main (String[] args){     
              JFrame backGround = new JFrame("Tech Library");
              backGround.setSize(400,150);
              backGround.addWindowListener (new ExitListener());
              Container content = backGround.getContentPane();
    I am compiling from the c:\java\hw5 directory with the command
    javac -classpath classes -sourcepath src -d classes src\pshah3\library\gui\GraphicalGui.java
    I am doing this so all the classes go in a "classes" directory with the same heirarchy as the source.
    Do you think i'am doing something funky with the packages??
    Again the error is:
    src\pshah3\library\gui\GraphicalGui.java:39: error while writing <anonymous pshah3.library.gui.GraphicalGui$1>: classes\pshah3\library\gui\GraphicalGui$1.class
    (The system cannot find the path specified)
    public void actionPerformed(ActionEvent e) { System.exit
    (0); }
    THANKS A LOT!!!

  • Help needed in compiling a .SCR file to VI and C program

    Hi all!
    I am a student using evaluation version of NI
    Vision assistant 8.6. I have a script file that i want to convert to
    VI. As you know we cannot do it on a evaluation version. I neither can
    afford the package right now. Please help me convert the file to VI and
    C code.
    Please mail me on [email protected]
    Will be very thankful if some one generously helps.
    Regards,
    Snapy

    Attach it as a zip file here so that it will be easy for someone to convert and update you.

  • Help needed in compilation errors....

    Hi i am trying to compile an API program.... but is it giving me some errors which i am unable to figure out...
    the first one is here...
    Document doc = new Document();
                                doc.add( Field.Keyword( F_WORD, text)); // orig term
                                doc.add( Field.Keyword( F_FREQ, ""+df)); // for popularity cutoff optionx
        and the error i am getting is
    org\apache\lucene\spell\NGramSpeller.java:551: cannot find symbol
    symbol  : method Keyword(java.lang.String,java.lang.String)
    location: class org.apache.lucene.document.Field
                                doc.add( Field.Keyword( F_WORD, text)); // orig term
                                              ^
    org\apache\lucene\spell\NGramSpeller.java:552: cannot find symbol
    symbol  : method Keyword(java.lang.String,java.lang.String)
    location: class org.apache.lucene.document.Field
                                doc.add( Field.Keyword( F_FREQ, ""+df)); // for popularity cutoff optionx
                                              ^and the second one is
    IndexWriter writer = new IndexWriter( out,
                                                                                                  new WhitespaceAnalyzer(),
                                                                                                  true);
                        writer.mergeFactor *= 50;
                        writer.minMergeDocs *= 50;
        and the error with this one is
    org\apache\lucene\spell\NGramSpeller.java:292: mergeFactor has private access in org.apache.lucene.index.IndexWriter
                        writer.mergeFactor *= 50;
                              ^
    org\apache\lucene\spell\NGramSpeller.java:293: minMergeDocs has private access in org.apache.lucene.index.IndexWriter
                        writer.minMergeDocs *= 50;
                              ^any ideas please........

    ping.sumit wrote:
    org\apache\lucene\spell\NGramSpeller.java:551: cannot find symbol
    symbol  : method Keyword(java.lang.String,java.lang.String)
    location: class org.apache.lucene.document.Field
    doc.add( Field.Keyword( F_WORD, text)); // orig term
    ^
    Have you checked the javadocs for Field? I have: [http://lucene.apache.org/java/2_3_2/api/org/apache/lucene/document/Field.html] and I don't see anything called Keyword in that class.
    org\apache\lucene\spell\NGramSpeller.java:292: mergeFactor has private access in org.apache.lucene.index.IndexWriter
    writer.mergeFactor *= 50;
    ^
    org\apache\lucene\spell\NGramSpeller.java:293: minMergeDocs has private access in org.apache.lucene.index.IndexWriter
    writer.minMergeDocs *= 50;
    ^I'm getting the impression you aren't even bothering to look at the javadocs. Are you?

  • Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with re

    Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with reddish cast and loss of detail
    System: Windows 7
    Adobe CS5
    Printer: Epson Stylus Photo 1400
    Paper: Inkjet matte presentation paper with slight luster
    Installed latest patch for Adobe CS5
    Epson driver up to date
    After reading solutions online and trying them for my settings for 2 days I am still unable to print what I am seeing on my screen in Adobe CS5. I calibrated my monitor, but am not sure once calibration is saved if I somehow use this setting in Photoshop’s color management.
    The files I am printing are photographs of dogs with lots of detail  I digitally painted with my Wacom tablet in Photoshop CS5 and then printed with Epson Stylus 1400 on inkjet paper 20lb with slight luster.
    My Printed images lose a lot of the detail & come out way to dark with a reddish cast and loss of detail when I used these settings in the printing window:
    Color Handling: Photoshop manages color, Color management -ICM, OFF no color adjustment.
    When I change to these settings in printer window: Color Handling:  Printer manages color.  Color management- Color Controls, 1.8 Gamma and choose Epson Standard it prints lighter, but with reddish cast and very little detail and this is the best setting I have used so far.
    Based on what I have read on line, I think the issue is mainly to do with what controls are set in the Photoshop Color Settings window and the Epson Printer preferences. I have screen images attached of these windows and would appreciate knowing what you recommend I enter for each choice.
    Also I am confused as to what ICM color management system to use with this printer and CS5:
    What is the best ICM to use with PS CS5 & the Epson 1400 printer? Should I use the same ICM for both?
    Do I embed the ICM I choose into the new files I create? 
    Do I view all files in the CS5 workspace in this default ICM?
    Do I set my monitor setting to the same ICM?
    If new file opens in CS5 workspace and it has a different embedded profile than my workspace, do I convert it?
    Do I set my printer, Monitor and PS CS5 color settings to the same ICM?
    Is using the same ICM for all devices what is called a consistent workflow?
    I appreciate any and all advice that can be sent my way on this complicated issue. Thank you in advance for your time and kind help.

    It may be possible to figure out by watching a Dr.Brown video on the subject of color printing. Adobe tv
    I hope this may help...............

  • XMP and Python (also DLL compilation help needed)

    Has anyone tried using the XMP SDK through Python?  I know python fairly well, but not C++.  I would like to code in python if possible.
    From what I have gathered I have a few options:
    1. Use Python's built-in 'ctypes' methods (not sure if this will only work with C as opposed to  C++)
    2. Use Boost
    3. Use Sip
    Does anyone have any experience with any of these (or any other solutions)?
    The current route that I am experimenting with is using ctypes.  For this to work I will need to compile the XMPCore and the XMPFiles projects into .dll's (as opposed to the default .libs).  I have seen quite a few posts on this forum asking how to go about doing this, but have found no answers.  I have been able to succesfully compile a .dll for XMPCore but not for XMPFiles.  I am using Visual Studio 2008 and cannot figure out how to compile XMPFiles without producing errors such as:
    2>WXMPFiles.obj : error LNK2019: unresolved external symbol "void __cdecl XMP_EnterCriticalRegion(struct _RTL_CRITICAL_SECTION &)" (?XMP_EnterCriticalRegion@@YAXAAU_RTL_CRITICAL_SECTION@@@Z) referenced in function "public: __thiscall XMPFiles_AutoMutex::XMPFiles_AutoMutex(void)" (??0XMPFiles_AutoMutex@@QAE@XZ)
    2>TIFF_Handler.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall TXMPMeta<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::~TXMPMeta<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(void)" (??1?$TXMPMeta@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@UAE@XZ)
    These are the steps that I have taked:
    1. Download and add the Quicktime SDK, Expat XML Parser, and Zlib libraries to the proper folder paths
    2. Open the provided XMPToolkit.sln in VS8
    2. Build > Build Solution.  Produces  two static libraries, XMPCoreStaticDebug.lib and XMPFilesStaticDebug.lib.  (This works! ... but I want dll's)
    3. Change the properties of the XMPCore and XMPFiles projects:
    Configuration Properties -> General-> Configuration Type: Dynamic Library (dll)
    4. Clean Solution;  Build Solution
    This results in many errors.  Most of which are like the two listed above.
    Anybody have any advice /input in regards to using python with the XMP SDK and/or compiling these two libraries into .dll's ?
    Thanks for any help!!! 

    I you have installed the java runtime engine then put the j3D libraries in that drectory tree in the jre\lib\ext directory, and .dll`s in the bin directory. I you have not installed the jre then do so. That will create the java.library.path you need. to run java programs. Each compiler has its own procedures for running an app from the IDE, check your docs if that`s what you are doing.
    regards

  • Compiling Application Help Needed

    Ok, I try compiling with TextPad my first application from the application tutorial (http://developer.java.sun.com/developer/onlineTraining/new2java/divelog/part1) and i get this error:
    C:\Documents and Settings\Nancy Schott\My Documents\Matt's Stuff\Programming\Divelog\DiveLog.java:50: cannot resolve symbol
    symbol : class Welcome
    location: class divelog.DiveLog
    tabbedPane.addTab("Welcome", null, new Welcome(), "Welcome to Dive Log");
    (the error is at the new Welcome() spot)
    1 error
    but it is with all of the tabbedPane.addTab stuff. Could someone help me, because I can not figure it out and the troubleshooting thing at the end of it didn't help.
    I compile useing the default TextPad command. It is something like
    javac $FileDir $File
    which means that for this it is saying
    javac C:\My Documents\Matt's Stuff\Programming\Divelog DiveLog.java
    Please Help!! Thanks

    here is my code for divelog:
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DiveLog
         private JFrame dlframe; //not assigned yet
         private JTabbedPane tabbedPane; //not assigned yet
         public DiveLog()
              // Create a frame object to add the application GUI components to.
              dlframe = new JFrame("A Java Technology Dive Log");
              // Closes from title bar
              //and from menu
              dlframe.addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
         // Tabbed pane with panels for Jcomponents
         // Instantiate JTabbedPane with keyword new
         tabbedPane =new JTabbedPane(SwingConstants.LEFT);
         // Calls method to set color
         tabbedPane.setBackground(Color.blue);
         tabbedPane.setForeground(Color.white);
         populateTabbedPane();
         dlframe.getContentPane().add(tabbedPane);
         dlframe.pack();
         dlframe.setSize(765, 690);
         dlframe.setBackground(Color.white);
         dlframe.setVisible(true);
         }// Ends constructor
         // Method header
         private void populateTabbedPane()
              //creates tabs with titles
              tabbedPane.addTab("Welcome", null, new Welcome(), "Welcome to Dive Log");
              //tabbedPane.addTab("Diver Data", null, new Diver(), "Click here to enter diver data");
              //tabbedPane.addTab( "Log Dives", null, new Dives(), "Click here to enter dives");
              //tabbedPane.addTab("Statistics", null, new Statistics(), "Click here to calculate" + " dive statistics");
              //tabbedPane.addTab("Favorite Web Site", null, new WebSite(), "Click here to see a web site");
              //tabbedPane.addTab("Resources", null, new Resources(), "Click here to see a list " + "of resources");
         }//Ends populateTabbedPane method
         private void buildMenu()
              // Opens buildMenu method
              JMenuBar mb = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem item = new JMenuItem("Exit");
              //Closes the application from the Exit menu item.
              item.addActionListener(new ActionListener()
                   // Opens addActionListener method
                   public void actionPerformed(ActionEvent e)
                        // Opens actionPerformed method
                        System.exit(0);
                   } // Closes actionPerformed method
              }); // Closes addActionListener method
              menu.add(item);
              mb.add(menu);
              dlframe.setJMenuBar(mb);
         } //Ends the buildMenu method
         public static void main(String[] args)
              DiveLog dl = new DiveLog();
    }//Ends Class
    And here is my welcome class
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    public class Welcome extends JPanel
    { // Opens class
    } // Closes class

  • Urgent help please - What files needed to compile servlets

    I am trying to compile some servlets but can't. I recently reformatted and forgot how I had configured Tomcat previously.
    What files do I need to compile servlets, and where do I have to save them etc.
    Thanks

    u will require jsdk.jar..
    put this in classpath and then compile ..it will surely compile
    and for compiling ...there is no configuration reqd in tomcat

  • Help needed in printing pc to pc (printer) using bluetooth

    I require to create a application in final year in which i have to print from my pc to another persons pc who has a printer attached (both pcs are bluetooth enabled using bluetooth dongles using Microsoft stack)
    Do i have to use java rmi ??
    How do i implement this ?? plz i need help !!!

    Adrian, the GIMP Print drivers might have been
    installed automatically when Tiger was installed on
    your computer. They are for older model printers
    whose own drivers aren't native for Tiger. They
    might interfere with a printer's own driver from the
    printer maker.
    I think you may have supplied a link to the Epson incompatibility before spacesuiter. Could you please refresh my memory. I seem to recall the problem was a color shift that was noted on the higher end Epson printers. I have heard of no other specific problems associated with any manufacturer's drivers and any third party drivers including the Gutenprint drivers. I will say that the Epson drivers seemed flawed. They cannot see my SP 1280 if I have my Epson SC 800 attached with a parallel to USB adapter -- even an Epson adapter. That is not a problem with the Gutenprint drivers. As soon as I unplug the SC 800, the SP 1280 functions fine with the Epson drivers.
    In Adrian's case, it appears to me that there is no provision in the Canon PPD for printing black. This is more than a color shift problem. The PPD for the BJC-2100 included with the Gutenprint drivers does contain provisions for Grayscale and Black(inverted grayscale) printing.
    Matt

  • [SOLVED] Cannot compile dvb drivers.

    Hi,
    I'm setting up a htpc media center based on arch with mythtv and xbmc. I've installed the base and base-devel packages and I need to compile the tbs-dvb-drivers to make my TBS 6280 DVB-T2 card work.
    Unfortunately I cannot compile the drivers as the compile process seems to enter in a loop, it continues to show the following output:
    TBS drivers configured for x86_64 platform.
    make -C /home/media/tbs-dvb-drivers/src/linux-tbs-drivers/v4l
    make[1]: ingresso nella directory "/home/media/tbs-dvb-drivers/src/linux-tbs-drivers/v4l"
    scripts/make_makefile.pl
    ./scripts/make_kconfig.pl /lib/modules/3.11.6-1-ARCH/build /lib/modules/3.11.6-1-ARCH/build
    Preparing to compile for kernel version 3.11.6
    ***WARNING:*** You do not have the full kernel sources installed.
    This does not prevent you from building the v4l-dvb tree if you have the
    kernel headers, but the full kernel source may be required in order to use
    make menuconfig / xconfig / qconfig.
    If you are experiencing problems building the v4l-dvb tree, please try
    building against a vanilla kernel before reporting a bug.
    Vanilla kernels are available at http://kernel.org.
    On most distros, this will compile a newly downloaded kernel:
    cp /boot/config-`uname -r` <your kernel dir>/.config
    cd <your kernel dir>
    make all modules_install install
    Please see your distro's web site for instructions to build a new kernel.
    ./scripts/make_myconfig.pl
    scripts/make_makefile.pl
    ./scripts/make_kconfig.pl /lib/modules/3.11.6-1-ARCH/build /lib/modules/3.11.6-1-ARCH/build
    Preparing to compile for kernel version 3.11.6
    ***WARNING:*** You do not have the full kernel sources installed.
    This does not prevent you from building the v4l-dvb tree if you have the
    kernel headers, but the full kernel source may be required in order to use
    make menuconfig / xconfig / qconfig.
    If you are experiencing problems building the v4l-dvb tree, please try
    building against a vanilla kernel before reporting a bug.
    Vanilla kernels are available at http://kernel.org.
    On most distros, this will compile a newly downloaded kernel:
    cp /boot/config-`uname -r` <your kernel dir>/.config
    cd <your kernel dir>
    make all modules_install install
    Please see your distro's web site for instructions to build a new kernel.
    ./scripts/make_myconfig.pl
    scripts/make_makefile.pl
    ./scripts/make_kconfig.pl /lib/modules/3.11.6-1-ARCH/build /lib/modules/3.11.6-1-ARCH/build
    Preparing to compile for kernel version 3.11.6
    ***WARNING:*** You do not have the full kernel sources installed.
    This does not prevent you from building the v4l-dvb tree if you have the
    kernel headers, but the full kernel source may be required in order to use
    make menuconfig / xconfig / qconfig.
    If you are experiencing problems building the v4l-dvb tree, please try
    building against a vanilla kernel before reporting a bug.
    Vanilla kernels are available at http://kernel.org.
    On most distros, this will compile a newly downloaded kernel:
    cp /boot/config-`uname -r` <your kernel dir>/.config
    cd <your kernel dir>
    make all modules_install install
    Please see your distro's web site for instructions to build a new kernel.
    ./scripts/make_myconfig.pl
    scripts/make_makefile.pl
    ./scripts/make_kconfig.pl /lib/modules/3.11.6-1-ARCH/build /lib/modules/3.11.6-1-ARCH/build
    Preparing to compile for kernel version 3.11.6
    I've waited up to 20 minutes, but the process seems stucked and the size of the folder doesn't grow up.
    It's true that I have just the kernel-headers installed. In addition make continues to warn me that the edit date of several files is newer than the actual. Initially the date of the system was wrong (but not older than the file's) but now I've fixed it with the correct date in UTC. The problem persists.
    I've also tried to compile from source directly but make enters into the same loop and gives me the same warnings.
    Thank you in advance for any kind of help.
    Regards.
    Last edited by fasigno (2013-11-03 21:40:00)

    First make sure you have the core-devel package group installed. This is required to build AUR package in general.
    Next, check to see if you have kernel-headers and v4l-utils installed? If not install them both and try again. I'm not sure if they are hard dependancies or not.
    EDIT: Sorry, I see you wrote that you installed core-devel and kernel-headers already. It looks like you may have a time zone and hardware clock sync problem. If you just installed arch, make sure the timezone and locale are correct and havn't been altered since you first installed your system. If that's all good, then install the AUR package cleanly from scratch again.
    Do you have NTP running?
    Last edited by wdirksen (2013-11-03 20:36:18)

  • Sluggish iMac performance; maintenance help needed

    I have a 21.5 inch, mid-2011 iMac with 12 GB memory and a 1 Tb drive (660 GB free). Have upgraded to Mavericks, and the iMac is running slow (although it was sluggish prior to the upgrade).
    Am looking for advice on how to get things sped up a bit. I have removed some unneeded startup items. And have run EtreCheck with results as follows. Have also repaired permissions and verifed disk. All seems to be in order.
    Can anyone offer additional hints on performance improvments before I go with a clean install?
    Hardware Information:
              iMac (21.5-inch, Mid 2011)
              iMac - model: iMac12,1
              1 2.7 GHz Intel Core i5 CPU: 4 cores
              12 GB RAM
    Video Information:
              AMD Radeon HD 6770M - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 3:34:26
    Disk Information:
              WDC WD1001FALS-403AA0 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 999.35 GB (661.02 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              OPTIARC DVD RW AD-5690H 
    USB Information:
              Dynastream Innovations ANT USBStick2
              Apple Computer, Inc. IR Receiver
              Apple Internal Memory Card Reader
              Apple Inc. FaceTime HD Camera (Built-in)
              Tripp Lite  Tripp Lite UPS 
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.bombich.ccc.plist
              [loaded] com.Cvnt.Uninstall.plist
              [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
              [loaded] com.epson.eventmanager.agent.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.adobe.ARM.[...].plist
              [failed] com.apple.MobileMeSyncClientAgent.plist
              [loaded] com.google.keystone.agent.plist
    User Login Items:
              AirPort Base Station Agent
              ZSyncDaemon
              Dropbox
    3rd Party Preference Panes:
              Flash Player
              MacFUSE
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              DivXBrowserPlugin.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              GarminGpsControl.plugin
              Google Earth Web Plug-in.plugin
              iPhotoPhotocast.plugin
              OfficeLiveBrowserPlugin.plugin
              Photo Center Plugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin.plugin
              WebEx.plugin
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 999.35 GB Disk used: 338.32 GB
              Destinations:
                        Data [Network] (Last used)
                        Total size: 497.96 GB
                        Total number of backups: 45
                        Oldest backup: 2013-03-30 05:21:00 +0000
                        Last backup: 2013-06-20 14:28:08 +0000
                        Size of backup disk: Too small
                                  Backup size 497.96 GB < (Disk used 338.32 GB X 3)
    Top Processes by CPU:
                   1%          WindowServer
                   1%          EtreCheck
                   1%          PluginProcess
                   0%          fontd
                   0%          EEventManager
                   0%          Dropbox
                   0%          com.apple.WebKit.Networking
                   0%          dpd
    Top Processes by Memory:
              2.36 GB            Safari
              418 MB             mds_stores
              307 MB             com.apple.WebKit.WebContent
              172 MB             com.apple.appkit.xpc.openAndSavePanelService
              147 MB             com.apple.IconServicesAgent
              135 MB             softwareupdated
              98 MB              Mail
              74 MB              Dropbox
              61 MB              PluginProcess
              61 MB              WindowServer
    Virtual Memory Statistics:
              3.06 GB            Free RAM
              5.53 GB            Active RAM
              2.14 GB            Inactive RAM
              1.27 GB            Wired RAM
              470 MB             Page-ins
              0 B                Page-outs

    I don't see anything obvious that would be causing your Mac slowdowns.
    You need to update all of your third party software if there are OS X Mavericks updates that can be applied. You may need to go the third party developers' websites if there are no updates through the Mac App Store.
    Update all of your Web browser Internet plugins, also.
    Also, if you have any third party devices, like keyboards, mice, drawing tablets, hubs, card  readers, etc, you need to update the drivers for these devices to OS X Mavericks compatible versions.
    Good Luck!

  • HT204135 Downloaded Epson drivers V 2.15 for my Epson RX620 and "scanner not available" message appears

    After downloading Epson drivers V 2.15  the message "scanner not available" still appears on my Epson RX620. Help?

    Hello, Carolyn,
    Thank you for your suggestion. Image Capture does not recognize the scanner.
    I have tried reset and that did not work either.
    Interestingly enough, I have Windows XP partitioned and the scanner functions perfectly. Just  would be nice it I did not have to switch to XP every time I need to scan.
    Thank you again for responding.
    Richard Loomis

  • Help reverting to nvidia 6629 drivers

    ok folks,
    I need to revert to the 6629 driver for my nvidia mx 420 pci graphics card (64 MB).  I have downloaded the installer, and am trying on a brand new install as of today.  It says I need the kernel source....but shouldn't that be present?  or is the supplied kernel not compiled using gcc 3.4.3?  Do I need to simply recomplie the kernel or do I need additional packages?  If someone could help me out that would be great.
    Since my move from debian stable with the 6629 drivers I find that none of the newer versions are stable with my nforce 2 board...constant crashing, and have heard others find this to work.  A quick walkthrough would be appriciated, as I am getting used to this new packaging system.

    THe installer doesn't prompt me with errors until after the build, where it says it was unable to build the module.  I have attached my log.  Any help would be great.
    nvidia-installer log file '/var/log/nvidia-installer.log'
    creation time: Thu Jun 23 09:53:45 2005
    option status:
    license pre-accepted : false
    update : false
    force update : false
    expert : false
    uninstall : false
    driver info : false
    no precompiled interface: false
    no ncurses color : false
    query latest driver ver : false
    OpenGL header files : false
    no questions : false
    silent : false
    no backup : false
    kernel module only : false
    sanity : false
    add this kernel : false
    no runlevel check : false
    no network : false
    no ABI note : false
    no RPMs : false
    force tls : (not specified)
    force compat32 tls : (not specified)
    X install prefix : /usr/X11R6
    OpenGL install prefix : /usr
    compat32 install prefix : (not specified)
    installer install prefix: /usr
    utility install prefix : /usr
    kernel name : (not specified)
    kernel include path : (not specified)
    kernel source path : (not specified)
    kernel output path : (not specified)
    kernel install path : (not specified)
    proc mount point : /proc
    ui : (not specified)
    tmpdir : /tmp
    ftp mirror : ftp://download.nvidia.com
    RPM file list : (not specified)
    Using: nvidia-installer ncurses user interface
    -> License accepted.
    -> There appears to already be a driver installed on your system (version: 1.0-
    7664). As part of installing this driver (version: 1.0-6629), the existing
    driver will be uninstalled. Are you sure you want to continue? ('no' will a
    bort installation) (Answer: Yes)
    -> No precompiled kernel interface was found to match your kernel; would you li
    ke the installer to attempt to download a kernel interface for your kernel f
    rom the NVIDIA ftp site (ftp://download.nvidia.com)? (Answer: Yes)
    -> No matching precompiled kernel interface was found on the NVIDIA ftp site;
    this means that the installer will need to compile a kernel interface for
    your kernel.
    -> Kernel source path: '/lib/modules/2.6.11.10-ARCH/build'
    -> Performing CC test with CC="cc".
    -> Performing rivafb check.
    -> Performing rivafb module check.
    -> Cleaning kernel module build directory.
    executing: 'cd ./usr/src/nv; make clean'...
    rm -f -f nv.o nv-vm.o os-agp.o os-interface.o os-registry.o nv.o nv-vm.o os-
    agp.o os-interface.o os-registry.o nvidia.mod.o
    rm -f -f build-in.o nv-linux.o *.d .*.{cmd,flags}
    rm -f -f nvidia.{o,ko,mod.{o,c}} nv_compiler.h *~
    rm -f -rf .tmp_versions
    -> Building kernel module:
    executing: 'cd ./usr/src/nv; make module SYSSRC=/lib/modules/2.6.11.10-ARCH/
    build SYSOUT=/lib/modules/2.6.11.10-ARCH/build'...
    NVIDIA: calling KBUILD...
    make CC=cc KBUILD_VERBOSE=1 -C /lib/modules/2.6.11.10-ARCH/build SUBDIRS=/t
    mp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv modules
    mkdir -p /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/.tmp_vers
    ions
    make -f scripts/Makefile.build obj=/tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629
    -pkg1/usr/src/nv
    echo #define NV_COMPILER "`cc -v 2>&1 | tail -n 1`" > /tmp/selfgz2831/NVI
    DIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv_compiler.h
    cc -Wp,-MD,/tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/.nv.o
    .d -nostdinc -isystem /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/include -D__KERNE
    L__ -Iinclude -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
    -fno-common -ffreestanding -O2 -fomit-frame-pointer -pipe -msoft-float -
    mpreferred-stack-boundary=2 -fno-unit-at-a-time -march=i686 -Iinclude/asm-i3
    86/mach-default -Wdeclaration-after-statement -I/tmp/selfgz2831/NVIDIA-Linu
    x-x86-1.0-6629-pkg1/usr/src/nv -Wall -Wimplicit -Wreturn-type -Wswitch -Wfor
    mat -Wchar-subscript
    s -Wparentheses -Wpointer-arith -Wno-multichar -Werror -O -fno-common -MD
    -Wno-cast-qual -Wno-error -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNT
    RM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNV_MAJOR_VER
    SION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL=6629 -DNV_UNIX -DNV_LINUX -
    DNV_INT64_OK -DNVCPU_X86 -UDEBUG -U_DEBUG -DNDEBUG -DNV_REMAP_PFN_RAN
    GE_PRESENT -DNV_CHANGE_PAGE_ATTR_PRESENT -DNV_PCI_DISABLE_DEVICE_PRESENT -DN
    V_CLASS_SIMPLE_CREATE_PRESENT -DNV_PCI_GET_CLASS_PRESENT -DMODULE -DKBUILD_
    BASENAME=nv -DKBUILD_MODNAME=nvidia -c -o /tmp/selfgz2831/NVIDIA-Linux-x86-1
    .0-6629-pkg1/usr/src/nv/.tmp_nv.o /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-
    pkg1/usr/src/nv/nv.c
    In file included from include/linux/list.h:7,
    from include/linux/wait.h:23,
    from include/asm/semaphore.h:41,
    from include/linux/sched.h:19,
    from include/linux/module.h:10,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-linux.h:52,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv.c:14:
    include/linux/prefetch.h: In function `prefetch_range':
    include/linux/prefetch.h:62: warning: pointer of type `void *' used in arith
    metic
    In file included from include/linux/dmapool.h:14,
    from include/linux/pci.h:864,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-linux.h:75,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv.c:14:
    include/asm/io.h: In function `check_signature':
    include/asm/io.h:242: warning: wrong type argument to increment
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c: In function
    `nvidia_init_module':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c:930: warning:
    `pm_register' is deprecated (declared at include/linux/pm.h:106)
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c: In function
    `nvidia_exit_module':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c:1051: warning
    : `pm_unregister' is deprecated (declared at include/linux/pm.h:111)
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c: In function
    `_get_phys_address':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c:2509: warning
    : passing arg 1 of `pmd_offset' from incompatible pointer type
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c: In function
    `nv_agp_init':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c:2992: warning
    : `inter_module_put' is deprecated (declared at include/linux/module.h:578)
    cc -Wp,-MD,/tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/.nv-v
    m.o.d -nostdinc -isystem /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/include -D__KE
    RNEL__ -Iinclude -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-alias
    ing -fno-common -ffreestanding -O2 -fomit-frame-pointer -pipe -msoft-flo
    at -mpreferred-stack-boundary=2 -fno-unit-at-a-time -march=i686 -Iinclude/as
    m-i386/mach-default -Wdeclaration-after-statement -I/tmp/selfgz2831
    /NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv -Wall -Wimplicit -Wreturn-type -W
    switch -Wformat -Wchar-subscripts -Wparentheses -Wpointer-arith -Wno-multic
    har -Werror -O -fno-common -MD -Wno-cast-qual -Wno-error -D_LOOSE_KERNEL_
    NAMES -D__KERNEL__ -DMODULE -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D__
    KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL
    =6629 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -UDEBUG -U_
    DEBUG -DNDEBUG -DNV_REMAP_PFN_RANGE_PRESENT -DNV_CHANGE_PAGE_ATTR_PRESENT -D
    NV_PCI_DISABLE_DEVICE_PRESENT -DNV_CLASS_SIMPLE_CREATE_PRESENT -DNV_PCI_GET_
    CLASS_PRESENT -DMODULE -DKBUILD_BASENAME=nv_vm -DKBUILD_MODNAME=nvidia -c -
    o /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/.tmp_nv-vm.o /tm
    p/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv-vm.c
    In file included from include/linux/list.h:7,
    from include/linux/wait.h:23,
    from include/asm/semaphore.h:41,
    from include/linux/sched.h:19,
    from include/linux/module.h:10,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-linux.h:52,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-vm.c:14:
    include/linux/prefetch.h: In function `prefetch_range':
    include/linux/prefetch.h:62: warning: pointer of type `void *' used in arith
    metic
    In file included from include/linux/dmapool.h:14,
    from include/linux/pci.h:864,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-linux.h:75,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-vm.c:14:
    include/asm/io.h: In function `check_signature':
    include/asm/io.h:242: warning: wrong type argument to increment
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv-vm.c: At top le
    vel:
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv-vm.c:59: warnin
    g: 'cache_flush' defined but not used
    cc -Wp,-MD,/tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/.os-a
    gp.o.d -nostdinc -isystem /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/include -D__K
    ERNEL__ -Iinclude -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-alia
    sing -fno-common -ffreestanding -O2 -fomit-frame-pointer -pipe -msoft-fl
    oat -mpreferred-stack-boundary=2 -fno-unit-at-a-time -march=i686 -Iinclude/a
    sm-i386/mach-default -Wdeclaration-after-statement -I/tmp/selfgz2831/NVIDIA
    -Linux-x86-1.0-6629-pkg1/usr/src/nv -Wall -Wimplicit -Wreturn-type -Wswitch
    -Wformat -Wchar-subscripts -Wparentheses -Wpointer-arith -Wno-multichar -W
    error -O -fno-common -MD -Wno-cast-qual -Wno-error -D_LOOSE_KERNEL_NAMES -
    D__KERNEL__ -DMODULE -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D__KERNEL_
    _ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL=6629
    -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -UDEBUG -U_DEBUG -
    DNDEBUG -DNV_REMAP_PFN_RANGE_PRESENT -DNV_CHANGE_PAGE_ATTR_PRESENT -DNV_PCI_
    DISABLE_DEVICE_PRESENT -DNV_CLASS_SIMPLE_CREATE_PRESENT -DNV_PCI_GET_CLASS_P
    RESENT -DMODULE -DKBUILD_BA
    SENAME=os_agp -DKBUILD_MODNAME=nvidia -c -o /tmp/selfgz2831/NVIDIA-Linux-x86
    -1.0-6629-pkg1/usr/src/nv/.tmp_os-agp.o /tmp/selfgz2831/NVIDIA-Linux-x86-1.0
    -6629-pkg1/usr/src/nv/os-agp.c
    In file included from include/linux/list.h:7,
    from include/linux/wait.h:23,
    from include/asm/semaphore.h:41,
    from include/linux/sched.h:19,
    from include/linux/module.h:10,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-linux.h:52,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/os-agp.c:24:
    include/linux/prefetch.h: In function `prefetch_range':
    include/linux/prefetch.h:62: warning: pointer of type `void *' used in arith
    metic
    In file included from include/linux/dmapool.h:14,
    from include/linux/pci.h:864,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/nv-linux.h:75,
    from /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv/os-agp.c:24:
    include/asm/io.h: In function `check_signature':
    include/asm/io.h:242: warning: wrong type argument to increment
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c: At top l
    evel:
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:48: error
    : parse error before '*' token
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:48: warni
    ng: type defaults to `int' in declaration of `drm_agp_p'
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:48: warni
    ng: data definition has no type or storage class
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c: In funct
    ion `KernInitAGP':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:76: warni
    ng: assignment discards qualifiers from pointer target type
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:85: error
    : request for member `acquire' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:88: warni
    ng: `inter_module_put' is deprecated (declared at include/linux/module.h:578
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:113: erro
    r: request for member `copy_info' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:173: erro
    r: request for member `enable' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:185: erro
    r: request for member `release' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:186: warn
    ing: `inter_module_put' is deprecated (declared at include/linux/module.h:57
    8)
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c: In funct
    ion `KernTeardownAGP':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:216: erro
    r: request for member `release' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:218: warn
    ing: `inter_module_put' is deprecated (declared at include/linux/module.h:57
    8)
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c: In funct
    ion `KernAllocAGPPages':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:265: erro
    r: request for member `allocate_memory' in something not a structure or unio
    n
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:273: erro
    r: request for member `bind_memory' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:290: erro
    r: request for member `unbind_memory' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:305: erro
    r: request for member `free_memory' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c: In funct
    ion `KernMapAGPPages':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:345: erro
    r: request for member `unbind_memory' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c: In funct
    ion `KernFreeAGPPages':
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:444: erro
    r: request for member `unbind_memory' in something not a structure or union
    /tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-agp.c:445: erro
    r: request for member `free_memory' in something not a structure or union
    make[3]: *** [/tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/os-a
    gp.o] Error 1
    make[2]: *** [_module_/tmp/selfgz2831/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src
    /nv] Error 2
    NVIDIA: left KBUILD.
    nvidia.ko failed to build!
    make[1]: *** [module] Error 1
    make: *** [module] Error 2
    -> Error.
    ERROR: Unable to build the NVIDIA kernel module.
    ERROR: Installation has failed. Please see the file
    '/var/log/nvidia-installer.log' for details. You may find suggestions
    on fixing installation problems in the README available on the Linux
    driver download page at www.nvidia.com.

Maybe you are looking for