NI-Scope driver C function niScope_errorHandler

Hi,
I have a question about  niScope_errorHandler declarated in niscope.h header
ViStatus _VI_FUNC niScope_errorHandler (ViSession vi,
ViInt32 errorCode,
ViChar errorSource[MAX_FUNCTION_NAME_SIZE],
ViChar errorDescription[MAX_ERROR_DESCRIPTION]);
Parameter errorSource is a array of char (string) and it inserts to errorDescription. For simulation error of absenting device, I used one of CVI example and it returned correct description with inserted errorSource.
I created bindings for Pascal and function looks
function niScope_errorHandler(vi:ViSession; errorCode:ViInt32; errorSource:string; errorDescription:string):ViStatus;cdecl;external External_library name 'niScope_errorHandler';
 and errorSource returned unreadeable string (should be niScope_init) and of course insert unreadable part of string to errorDescription
From function description I understand that one array of char (errorSource) inserted into another array of char (errorDescription) = ANSI string.
I don't understand why errorSource part is unreadable (CVi example returned readable) because errorDescription is good, after inserting it stil ANSI string.
It's looks that errorSource have different codepage, but it not make sence.
Without knowing of how function internally work, I probably can't solve it.

For first time, I understand function description bad, it my mistake.
I close this topic.

Similar Messages

  • NI-scope driver is not listed in the labview functions!!

    Hi everyone,
    I’m using High speed digitizer (NI 5922) and I want to take the data programmatically with the Labview 8.5. my problem is that I can NOT find the NI-Scope driver in the function palette of the labview and I found only one driver with “Agilent 34401” which I don’t need, Although everything is OK with the MAX (the driver passed the self test and I can run the SCOPE SOFT FRONT Panel).
    Thank you for your kind concern,
    Best,
    Ibrahim
    Solved!
    Go to Solution.

    Hello Ibrahim,
    the current version of NI-SCOPE (3.8.7) does only support Labview 8.6.1 and higher (-> http://joule.ni.com/nidu/cds/view/p/id/2681/lang/en). After a little research the latest supporting version I could find is 3.3.2 ( -> http://joule.ni.com/nidu/cds/view/p/id/883/lang/en), but you may have some problems when using Win7.
    Hope I could help,
    Oliver

  • [ODBC Driver Manager] Function sequence error

    Hi all,
    i´m trying to built an webservice and if i try to run my code i get following
    error: [ODBC Driver Manager] Function sequence error .CAn someone tell me what
    this means?
    Here comes my code:
         static String Daten(int Nummer)
                        java.sql.Connection conn = null;
                        java.sql.Statement stmt = null;
                   try
                                                           Context ctx = null;
                                                           Hashtable ht = new Hashtable();
                                                           ht.put(Context.INITIAL_CONTEXT_FACTORY,
                                                                          "weblogic.jndi.WLInitialContextFactory");
                                                           ht.put(Context.PROVIDER_URL,
                                  "t3://localhost:7001");
                                  // Get a context for the JNDI look up
                                  ctx = new InitialContext(ht);
                                  javax.sql.DataSource ds
                                  = (javax.sql.DataSource) ctx.lookup ("webservice-data-source");
                                  conn = ds.getConnection();
                                  System.out.println("Making connection...\n");
                                  // execute some SQL statements to demonstrate the connection.
                                  stmt = conn.createStatement();
                                  System.out.println("Vor ResultSet");
                                                 ResultSet result = stmt.getResultSet(); //Bringt Fehler
                                                 final Vector erstespalte = new Vector();
                                                 final Vector zweitespalte = new Vector();
                                                 final Vector drittespalte = new Vector();
                                                 final Vector Zeilen;
                                                 final Vector end = new Vector();
                                  try {//2.Block
                                                 stmt.executeQuery("Select * from Person where Kundennummer=5");
                                                 while(result.next())
                                                                erstespalte.add(result.getObject(1));
                                                                zweitespalte.add(result.getObject(2));
                                                                drittespalte.add(result.getObject(3));
                                                           Zeilen = new Vector();
                                                                     for(Enumeration a = erstespalte.elements() ; a.hasMoreElements()
                                                                                    for(Enumeration b = zweitespalte.elements() ;b .hasMoreElements()
                                                                                              for(Enumeration c = drittespalte.elements() ; c.hasMoreElements()
                                                                                                   Zeilen.add(a.nextElement());
                                                                                                   Zeilen.add(b.nextElement());
                                                                                                   Zeilen.add(c.nextElement());
                                                                                                   end.add(Zeilen);
                                                                               }System.out.println(end);
                                                           result.close();
                                       }//2.try-Block
                   catch (SQLException e) {
                        System.out.println(e);
                                  }//1.try-Block schliessen
                                  catch (Exception e) {
                             System.out.println("Exception was thrown: " + e.getMessage());
                                            finally {
                                                      try {
                                                      if (stmt != null)
                                                           stmt.close();
                                                      if (conn != null)
                                                           conn.close();
                                                      catch (SQLException sqle) {
                                                      System.out.println("SQLException during close(): " + sqle.getMessage());
                                                      }//finally-Block schliessen
                                            return ("HAllo");
              }//Methode abschliessen
    Thank you very much for helping !!!

    Please post this in the JDBC newsgroup: weblogic.developer.interest.jdbc
    Also, please include your full error message.
    -- Rob
    Hakan wrote:
    Hi all,
    i´m trying to built an webservice and if i try to run my code i get following
    error: [ODBC Driver Manager] Function sequence error .CAn someone tell me what
    this means?
    Here comes my code:
    static String Daten(int Nummer)
    java.sql.Connection conn = null;
    java.sql.Statement stmt = null;
    try
    Context ctx = null;
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,
    "t3://localhost:7001");
    // Get a context for the JNDI look up
    ctx = new InitialContext(ht);
    javax.sql.DataSource ds
    = (javax.sql.DataSource) ctx.lookup ("webservice-data-source");
    conn = ds.getConnection();
    System.out.println("Making connection...\n");
    // execute some SQL statements to demonstrate the connection.
    stmt = conn.createStatement();
    System.out.println("Vor ResultSet");
    ResultSet result = stmt.getResultSet(); //Bringt Fehler
    final Vector erstespalte = new Vector();
    final Vector zweitespalte = new Vector();
    final Vector drittespalte = new Vector();
    final Vector Zeilen;
    final Vector end = new Vector();
    try {//2.Block
    stmt.executeQuery("Select * from Person where Kundennummer=5");
    while(result.next())
    erstespalte.add(result.getObject(1));
    zweitespalte.add(result.getObject(2));
    drittespalte.add(result.getObject(3));
    Zeilen = new Vector();
    for(Enumeration a = erstespalte.elements() ; a.hasMoreElements()
    for(Enumeration b = zweitespalte.elements() ;b .hasMoreElements()
    for(Enumeration c = drittespalte.elements() ; c.hasMoreElements()
    Zeilen.add(a.nextElement());
    Zeilen.add(b.nextElement());
    Zeilen.add(c.nextElement());
    end.add(Zeilen);
    }System.out.println(end);
    result.close();
    }//2.try-Block
    catch (SQLException e) {
    System.out.println(e);
    }//1.try-Block schliessen
    catch (Exception e) {
    System.out.println("Exception was thrown: " + e.getMessage());
    finally {
    try {
    if (stmt != null)
    stmt.close();
    if (conn != null)
    conn.close();
    catch (SQLException sqle) {
    System.out.println("SQLException during close(): " + sqle.getMessage());
    }//finally-Block schliessen
    return ("HAllo");
    }//Methode abschliessen
    Thank you very much for helping !!!

  • No interface driver connected - Function not performed

    Can some one please help me. I am a new user of Oracle, and I am trying to logon using SQl plus 8.0. (system/manager @ODBC:POLITE. But I get an error message saying "No interface driver connected - Function not performed" Where on the machine is the interface driver usually stored. I also have SQL plus 8.0 on the same machine, and it works when I log on using scott/tiger.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Uche Ubani ([email protected]):
    Can some one please help me. I am a new user of Oracle, and I am trying to logon using SQl plus 8.0. (system/manager @ODBC:POLITE. But I get an error message saying "No interface driver connected - Function not performed" Where on the machine is the interface driver usually stored. I also have SQL plus 3.3 on the same machine, and it works when I log on using scott/tiger.<HR></BLOCKQUOTE>
    null

  • What is ESOA? What is the Scope/Role for Functional Consultants in eSOA.

    Hi Experts,
    1)     Does eSOA is a tool, application or module?
    2)     What is the relation between eSOA and ECC6.0?
    3)     What is the Scope/Role for Functional Consultants in eSOA?
    4)     What I have to learn in eSOA?
    5)     How it is useful for Functional Consultant?
    6)     How it is useful for Customers?
    7)     How much time it will take to learn eSOA?
    8)     Where can get the Material?
    9)     What all technologies I have to learn before I learn  to eSOA?
    I am working as a SAP HR Consultant. If I want to learn eSOA what are the pre-requisites.
    I donu2019t know anything eSOA.
    Please give me the answers.
    Regards,
    Ram

    Hi Ram,
    See the answers below
    > 1)     Does eSOA is a tool, application or module?
    ESOA is not any tool,application or module. Its a methodology/Architecture
    > 2)     What is the relation between eSOA and ECC6.0?
    ECC 6.0 provides some Enterprises Services through enhancement packages.
    > 3)     What is the Scope/Role for Functional Consultants in eSOA?
    FUnctional consultant should know which ENterprise Serrvices are available and which should be developed to carry out a business process.
    > 4)     What I have to learn in eSOA?
    .         Being a technical guy, there are things to be learnt like ESR, implementing designed serivces through ABAP or Java and consuming it. But being a functional guy, only awareness of what enterprise services are available and what they do and their input/output params and how they can fit into a business process is sufficient.
    > 5)     How it is useful for Functional Consultant?
    see above
    > 6)     How it is useful for Customers?
    Customers can move towards Service Oriented Architecture, get flexibility in changing a business process easily, maintaince cost is less
    > 7)     How much time it will take to learn eSOA?
    depends on your skills
    > 8)     Where can get the Material?
    lot of material in SDN
    > 9)     What all technologies I have to learn before I learn  to eSOA?
    ABAP or JAVA,ESR ( being a technical consultant) , Web Services
    > I am working as a SAP HR Consultant. If I want to learn eSOA what are the pre-requisites.
    you should aware of basics of service oriented architecture
    If you further want to clear doubts, do write up.
    Regards,
    Piyush

  • Passing arguments scope from one function to another

    Is it possible to pass the arguments structure from one
    function to another when it contains unnamed arguments? It doesn't
    throw an error but the values and indexes in the arguments scope
    get messed up. To see what I mean, compare the two cfdumps below.
    CODE
    <cfset myComponent = createObject("component",
    "MyComponent").init() />
    <cfset myComponent.get("TypeName", "KeyA", "ValueA",
    "KeyB", "ValueB") />
    <cfcomponent>
    <cffunction name="get" output="true">
    <cfargument name="type" type="string" required="yes"
    />
    <b>get() arguments</b><br />
    <cfdump var="#arguments#" />
    <cfset create(argumentCollection=arguments) />
    </cffunction>
    <cffunction name="create" output="true">
    <cfargument name="type" type="string" required="yes"
    />
    <b>create() arguments</b><br />
    <cfdump var="#arguments#" />
    </cffunction>
    </cfcomponent>
    CFDUMP OUTPUT
    get() arguments
    struct
    2 KeyA
    3 ValueA
    4 KeyB
    5 ValueB
    TYPE TypeName
    create() arguments
    struct
    2 [undefined struct element]
    3 TypeName
    4 KeyB
    5 ValueA
    TYPE TypeName

    rampalli_aravind wrote:
    Thanks a ton for the reply!
    Well,
    how do i pass the query Results?
    Actually i have a database in the server and i am the client.
    Client sends the id to the server. Server processes. finds the id and returns the name and other details using SQL statement:
    select * from table1 where id="abc";Server should return these details back to the client.
    IF no such id exists then server should send the client the following result:
    //print that the given id does not exist and these are the ids and names in table1
    select * from table1;How can i do it using jdbc odbc driver?
    Thank you in anticipation to your reply!
    Regardssee my reply to your other post.
    write a server side component that opens the connection to the database, loads the ResultSet into a data structure, closes the ResultSet, and returns the data structure to the client.
    the client should not be dealing directly with the database.
    %

  • S10 HW 1/06, bge driver non-functional

    Hello,
    I'm having a problem with a new installation of Solaris 10 (HW 1/06) on a Fujitsu Siemens ESPRIMO P5905. It's a fairly new model x64 box. The system installed fine, but the on-board Broadcom Gigabit Ethernet is non-functional. I've tried both the Broadcom bcme driver and the Sun bge driver, plus I've installed the latest patches from Sunsolve (118844-30, 122028-02) with no luck. The system finds the card and appears to receive packets but not send.
    Is there any way I can report a bug without a Support Contract from Sun?
    The card is an on-board PCI-E chip and works fine under Linux 2.6 or Windows Server 2003. The PCI ID is pci11e4,1677 which is listed in /etc/driver_aliases for the latest (patched) bge driver.
    One other detail are the following messages from the bge driver on load:
    ddi_intr_get_supported_types(): Returned 3
    Using legacy interrupt type
    bge_add_legacy_intrs
    Thanks in advance for any help...
    -mato

    Hello,
    I'm having a problem with a new installation of Solaris 10 (HW 1/06) on a Fujitsu Siemens ESPRIMO P5905. It's a fairly new model x64 box. The system installed fine, but the on-board Broadcom Gigabit Ethernet is non-functional. I've tried both the Broadcom bcme driver and the Sun bge driver, plus I've installed the latest patches from Sunsolve (118844-30, 122028-02) with no luck. The system finds the card and appears to receive packets but not send.
    Is there any way I can report a bug without a Support Contract from Sun?
    The card is an on-board PCI-E chip and works fine under Linux 2.6 or Windows Server 2003. The PCI ID is pci11e4,1677 which is listed in /etc/driver_aliases for the latest (patched) bge driver.
    One other detail are the following messages from the bge driver on load:
    ddi_intr_get_supported_types(): Returned 3
    Using legacy interrupt type
    bge_add_legacy_intrs
    Thanks in advance for any help...
    -mato

  • DVD Drive Non-Function Mac Mini 3,1 (late 2009)

    Hi
    The DVD drive in my Mac Mini has recently become non-functional, "About this Mac" sees the drive fine,
    OPTIARC DVD RW AD-5670S:
      Model:          OPTIARC DVD RW AD-5670S               
      Revision:          2AHI   
      Native Command Queuing:          No
      Detachable Drive:          No
      Power Off:          No
      Async Notification:          Yes
      Bay Name:          Upper
    But when you insert a disc there is no response, it does not see to attempt to read it just ejects after about 20-30 seconds.
    Any suggestions as to what could be the problem? This issue started sometime after I upgraded the memory, but I cannot be sure that the two things are connected as I very rarely use the DVD drive and the first time I tried to use it was several months later.
    Many Thanks

    Optical drives are pretty short lived in my experience.
    Might try a cleaning Disc.
    Have you done a PRAM reset, CMD+Option+p+r...
    http://support.apple.com/kb/HT1379
    In fact, do 3 in a row, takes a bit of time.

  • G4-1117DX CD/DVD drive not functioning

    So I should say that this CD drive has never really worked all that great from the get go.  I never really bothered to try to fix it till now (Two years later). So I am having trouble with the CD drive not reading any CD. Device Manager says that it is functioning and I have uninstalled it and installed it again. I have checked drivers for Highend Filters and Lowend Filters. I have replaced the CD drive with a new one, same model. I have searched high and low for an possible answer and I have found nothing. So this is my last hope.
    One thing that I have tried to test is going into Command and typing:diskpart. The screen moves on to say
    Microsoft DiskPart version 6.1.7601
    Copyright (C) 1999-2008 Microsoft Corporation
    On computer : xxxxxxxxxx(my name of the laptop)
    Then nothing else, and it just sits here. I don't really hear the CD driving spinning up and when I do try to load a CD into the computer and open it. It loads very slowly all the way to the end then it just sits at the last 2% and then freezes.
    I am trying to turn this P.O.S. laptop into a work laptop. I am almost at the point where I am going to go get a USB CD drive and try to see if I can make it work. I'm trying to also install a brand new hard drive and that is really what is the big hang up.
    Update: I finally got the command to let me enter
    DISKPART> (I typed in) List Volume
    Now it is trying to load the information. I would have to say it has been about 45 minutes before I got the command prompt to get this far. I am sure this is not normal. Again, the plea is the same.  HELP! Thanks
    Updated #2

    Hi
    Thats very strange.
    For me your description sounds like hardware malfunction but I cannot believe that this could happen after using the drive only two times.
    You said you have tried using the Knoppix CD. How about Toshiba recovery CD?
    Is it possible to read this CD?
    In my operational experience not all medium are compatible! Its possible that the drive could not read or write some not supported CDs or DVDs.
    So what to say in the user manual you should find a index with compatible and supported CD/DVD.
    This CDs and DVDs should run for sure.
    The mentioned CD/DVD manufacturers are unknown to most peoples but these are ONLY manufacturers and not vendors like i.e TDK.
    Mostly one CD/DVD manufacturer provides the medium for several vendors!
    So finally I would recommend checking the supported CD and if it will not run contact the ASP for a help. Maybe the drive must be replaced.
    Good luck

  • [SOLVED]How to add OAL driver level functionality in the AM335x BSP source code???

    Dear developers,
    Greetings!!!
    As, my platform is WinCE 7 with AM335x BSP and I would like to copy one driver and update the driver as per my requirements. The location from where I have taken the existing driver is - 
    BSP\SRC\CSP\COMMON_TI_AMXX\OAL --
    Existing diver is OALRTC and new driver is abc_I2C under the same location and I have tailored the driver according to my requirements.
    One funciton is OALIoCtlHalInitRTC and the call is made from BSP\SRC\OAL\oallib\ioctl.c and the calling funciton is BSPIoCtlHalInitRegistry
    In my case, I am calling my OAL API as OALIoCtlHalInitPHY..
    But the thing is that I am getting linking error during the time of compiling and is shown below -
    Error 6 Error(s) in directory "C:\WINCE700\platform\AM335x\SRC\OAL\OALEXE\". C:\WINCE700\build.log 2800
    Error 7 oal.lib(ioctl.obj) : error LNK2019: unresolved external symbol OALIoCtlHalInitPHY referenced in function BSPIoCtlHalInitRegistry C:\WINCE700\build.log 2801
    Error 8 fatal error LNK1120: 1 unresolved externals {log="C:\WINCE700\build.log(2802)"} C:\WINCE700\OSDesigns\Enventure\Enventure\Wince700\AM335x_ARMV7_Retail\cesysgen\platform\AM335x\target\ARMV7\retail\oal.exe
    Error 9 NMAKE : fatal error U1077: 'C:\WINCE700\sdk\bin\i386\ARM\link.EXE' : return code '0x460' C:\WINCE700\build.log 2803
    Error 10 TargetExeFiles -nologo BUILDMSG=Stop. BUILDROOT=C:\WINCE700\platform\AM335x LINKONLY=1 NOPASS0=1 failed - rc = 2. C:\WINCE700\build.log 2805
    Error 11 BLDDEMO: ERROR: There were errors building CEBASE. C:\WINCE700\build.log 2837
    As I searched but I am unable to solve the issue. 
    Any one suggest that how to solve the issue???

    Hello Friends,
    The above problem is self solved..

  • Timeout error in Wait for Operation Complete VI for TEKDPO4054 scope driver

    Hi,
    I keep getting a timeout error (-1073807339) when I run the "wait for operation complete" sub-VI that comes with the tektronix DPO4000 series oscilloscope driver. I'm using a DPO4054 scope. The error out source is the VISA Read STB command, but I can't figure out what's wrong. Has anyone else encountered this error? Please help!
    Thanks for your time!
    I've attached the sub-VI where I'm having this problem.
    Attachments:
    tkdpo4k Wait for Operation Complete.vi ‏27 KB

    duplicate post
    Please try to keep your questions to a single board.

  • How do I work around a JDBC driver "unsupported function"?

    We have a JDBC driver to a Unidata [multivalue, a truely interesting concept] database. It does not support setMaxRows(). The 10.1.3dp3 version throws an exception:
    Internal Exception: java.sql.SQLException: setMaxRows(int) not supported by eTools JDBC.Error Code: 0
    Query:DataReadQuery()
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:280)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:567)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:442)
         at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:453)
    and our application fails.
    The driver maker suggests the JDBC spec says the function must be present but it may throw an unsupported exception.
    And toplink does not appear to handle the unsupported exception gracefully.
    So we appear to be stuck between the rock and the hard place.
    Any help would be appreciated.

    We can add setFetchSize to the list of work arounds required.
    Internal Exception: java.sql.SQLException: setFetchSize(int) not yet implemented by eTools JDBC.Error Code: 0
    Query:ReadObjectQuery
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:280)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:567)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:442)
         at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:453)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:117)
    So the question becomes, in general, how does one indicate to toplink that the driver has unsupported functions and it should (a) ignore them or (b) deal with it.

  • Scope of CRM functional consultant,

    Hello Team
    I need to know what is the scope of a CRM functional consultant in CRM eCommerce.  As I know that I need to create Master data, product catalog and Transaction data.
    But other than this for developing this in JAVA environment what is my scope.
    What are the inputs to be provided from my side.
    Revert if I'm not able to make it clear.
    Thanks in advance
    Karan

    Hello Sarjit,
    The Major Phases are :-
    Project Initiation -Mock Demos explaining the real Time situation of SAP
    Project Blueprinting Phase-Clientrequirent gathering,Fit gap analysis, Requirment mapping, BPR documentaion,
    Realization -FD preparation, discussion with tech team reagrding requirements.,test case Preparation, integration issues
    Testing(system Integration testing/user acceptance testing)-test execution, Integration issues , bug fixing
    Go Iive
    The As- Is analysis is actually done based on what the client wants at thier place and what SAP can offer.
    It is mainly done to map requiremnts and find out whioch requiremnst can be done OOTB(SAP standard), configuration , customization and enhancements. It is also donw to know the effort time estimation for the enhancements objects.
    The functional conusltant can do the following depending on the entry to the project and his/her exp:-
    Business process requirement document
    Functional specification.
    Requiremnt mapping,
    Requiremnt gathering
    Effort estimation,.
    Prtotyping for requirements.
    Testing (major roles)
    The major document to be used are Business process requirement documentation/ High level design dosumentation(HLD)
    for the initial two phases.
    For middle scale projects , the time would be min 1.5 yrs starting from project iniation to go live .It can be fast tracked if the client desires so.But these are actually dependant based on teh number of requirements that will be taken for that phase and thier criticality.
    Hope this helps.
    Reagrds
    Sanjib

  • Any example code using Generic IVI Scope driver to get an External Trigger from a Scope?

    I'm using a LeCroy WavePro 950.

    I have done that using a "waverunner" if memory serves me correctly.
    Did you check out the driver available for download from this site?
    http://zone.ni.com/idnet97.nsf/9b2b33e1993d877786256436006ec498/bd22a2bf3d4a5503862569a7007778d7?OpenDocument
    I first had to figure out how to get the scope trigger manually. Once I had that figured, I was able to adapt the example to do the triggering.
    Hope this helps,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • ATA drives not functioning properly

    Hi. I have three hard drives in my G3 -- well, two now. I'll get to that. I've been trying to get them all set up to function properly together. The jumper settings are correct. I even tried swapping positions, thinking they might have some compatibility issues. The drives cause the computer to lock up sometimes, and when I try to install something from the DVD drive, it tells me there's not enough space on the destination disque. This is clearly not true, because I have about 60 GB available! I've tried so many configurations, switching master and slave settings etc, and I keep getting the same results.
    Strangely enough, this doesn't SEEM to be a problem in OS X. I wish I could use X exclusively, but that is not the case.

    OK. If you DO have the three-drive shelf, not individual sleds, you May have the Rev 1 Blue & White G3. The rev 1 has a flaky IDE Controller on board. If you install a drive faster than the original 4, 6, or 8 GB drive, it starts getting flaky. Never repeatable. Sometimes crashes. Sometimes freezes. Sometimes corrupts your data. Not a lot. Not every day. Never repeatable. One user called it the "Heartbreaker G3".
    The litmus test for whether you have the "Heartbreaker" is in this article, under section 3. There is a photo showing the location of the IDE chip. You read the numbers on the top of the chip and that tells which Rev you have:
    http://www.xlr8yourmac.com/G3-ZONE/yosemite/newfeatures.html
    The other problem is the length of your cable. The spec is 18 inches at the absolute maximum, and shorter is much, much better. And the 80 wires on 40-pin headers is required at those speeds.
    The solution many users have opted for is to add a PCI slot card (which usually comes with the first 40/80 cable).

Maybe you are looking for

  • Portal 6.3.1 "Communications Express Address Book" provider

    Hi, Does anyone have working setup with "Communications Express Address Book" provider from PS 6.3.1 ? I'm having a problem to get it to connect to UWC address book in my JES3 test installation. All other connections to "old" address book, "old" and

  • Live Install - Monitor "Out of Range"

    Brand new to Solaris, and fairly new to *nix. Tried installing from the Live CD, and my monitor goes "out of range" when the GUI boots. Likewise, did the text installer, installed "slim_install" and enabled gdm and the same same thing occurred. I am

  • Has anyone gotten the Digi 002 to work on Mavericks?

    Has anyone gotten the Digi 002 rack to work on OSX Mavericks? I know it says '002 rack and console are not supported (untested)' according to Avid's site, but I was curious if anyone has got it to run. I am currently using Logic Pro 9 with it right n

  • Thread behaves wierdly.. takes more time for less code...

    Hi everyone, I am stuck into this probel very badly..i have never seen such a problem before..Thread bottleneck somewhere is the issue i guess,,, plz have a look at the code patiently.. and do reply.. u guys are my last hope on this thing..Thank YOU.

  • How can I run Command-line tools on my Mac?

    On another thread* over in the QuickTime Community in 2007, kyc  wrote You can easily create a subrip file and convert it to scc for free using SUBRIP2SCC. http://www.geocities.com/mcpoodle43/SCCTOOLS/DOCS/SCCTOOLS.HTML That's exactly what I want!  A