Function not found in library when I compile .so file in linux

I am trying to get a driver for a california instruments power supply
working under Linux. The drivers called DLLs compiled under windows I
think. When I use those, the DLL could not be opened, so I compiled the
DLL source under Linux. When I use the nm -g on the .so file, I get a
list of all of the external functions including the ones I am trying to
call from Labview, but when I try to run I get "function not found in
library when I compile .so file in linux" even though I can see the
function using nm. Is there something special I need to do to this .so
file so Labview can read it?
Any help would be greatly appreciated.
Steiner

Hello Steve,
I'm not sure if simply recompiling the source code of the dll will be enough to create a Linux driver. I'm assuming the DLL makes some windows specific calls that are not supported in linux. How were you able to compile it in linux BTW? Did you have to change the code around to make it work?
Your best bet would be to probably try to find a linux version of the driver from the manufactrurer itself.
Regards,
Jack J.
Applications Engineer
National Instruments

Similar Messages

  • Function not found in Library only after Close VI - Open VI

    Hi,
    We wrote subVI's for all exported functions of a dll written in Borland C++. Then a test.vi was implemented which uses these dll function. Everything runs perfectly, as long as we don't Close the vi and reopen it from the LabView main menu. If we do this the broken run arrow butten is shown and the first error message listed is the Function not found in Library error.
    If we use Exit to leave LabView and then restart the test.vi, everything is ok.
    Please let me know if you know a solution. Thanks in advance.

    The Function not found error is thrown when the OS can't provide the pointer to the function in the library to LabVIEW for some reason. For more information and common solutions see:
    http://digital.ni.com/public.nsf/websearch/44E40ACF1644DB77862562990054D672?OpenDocument
    The only reason I can think of why the first time it works correctly is that the DLL is not correctly clean-up by the close functions. Thus causing a second request for the pointer to fail due to this. (closing LabVIEW will remove the DLL form memory and thus probably clearing the error).
    Hope this Helps
    Kind regards,
    Karsten
    Applications Engineer
    National Instruments

  • Call library function node: function not found in library

    I'm using Labview 6.1 and Windows XP.  I am trying to open some code, but it opens up with a broken arrow.  The error is Call Library Function Node:function not found in library.  Tried to configure the node, but no change.  Moved the DLLs to various directories (keeping them together) but again no change. 
    This code has been compiled and is working fine.  I'm just trying to run the source code to make some modifications.  Any suggestions? 
    Thanks
    CarlosV

    Thanks for the suggestions.  Tried it but had the same results.  The library I'm using is hpe1413_32.dll. 
    One thing I forgot to mention....doing a configure on the node, it comes up with the library: hpvscp32.dll and the function: hpe1413_error_message
    The function doesn't exist in the library.  So I set the path to hpe1413_32.dll which does contain the function. 
    After closing the configuration window and opening it up again, the library shown is hpvscp32.dll
    From what I can tell, there are three libraries involved:hpe1413_32.dll, hpe141332v.dll, and hpvscp32.dll
    Thanks again.
    Carlos

  • Function not found in library? 1127 switch module

    I am trying to control individual relays in an 1127 switch module with a 1331 attached.  Whenever I try to connect to it through the block diagram (or through example programs) I get an error stating "Function not found in library" or sub vi not executable. However when I try to control it from the switch executive front panel it seems to work correctly. When I follow the sub vi error chain I eventually arrive at the library node and I am told to configure it. However when I click configure I get options that are phrased slightly differently than the original sub vi name. How do I get the example code / control over the 1127 installed in an scxi chassis.

    Raaron,
    The SCXI 1127 is a Matrix / Multiplexer card. If we wanted to try to make it function similar to an SPDT, you will limit the number of "SPDTs" you can create. With the 1331 that can only be configured as a multiplexer and essentially used for a single "SPDT" [com(SPDT) = com (Mux), NC(SPDT) = Ch0 (Mux), NO(SPDT) = Ch1 (Mux)] . If you use the 1332 you have a 4x8 Matrix and can make it into 4 "SPDTs" [com(SPDT) = r0(Matrix), NC(SPDT) = c0(Matrix), NO(SPDT) = c1 (matrix)]. Both of these configurations will not really be normally closed, and you would have to configure it in software to close when you are using it.
    If you are looking for a true SPDT I would look at the 1160, 1161 and 1166.
    I am glad that it is working now, but I am still confused as to how you were having SW issues though. Maybe the device was being set up as a Traditional DAQ device and was installed on an OS that does not support Traditional DAQ? Resetting the device [for DAQmx use] may have fixed this? I am unsure without further information.
    Frank,
    National Instruments
    Staff Software Project Engineer

  • Call Library Function - Function not found in library

    Hello,
    I am working with a .dll in LabView 5.1. I finished a little program that should give me the number of CPCI-cards in a PXI-machine. But now i always get the error messages "Call Library Function - Function not found in library". I know it is threated several times bfore on this forum, but i didn't exactly find a sollution that solved my problem.
    The .dll is documented and i can see the function names by opening the .dll with Quick View. I have checked (a hundred times) the names i typed in and they are correct (=equal to manual of .dll and to Quick View, so we can skip that).
    What else could be wrong? What can i do?
    Regards,
    Klaas Engels
    student

    I'm not sure if it's a reason, but once I had the same error. In my case the reason was in that DLL function was actually named with additional suffix letter "A", and then digging through MS documentation I've found an explanation that MS uses desired function with one or another suffix depending on usage contents and data type. Adding that suffix was solved the problem.
    This was not obvios because in DLL description there was no mentions at all and function name was given generally, i.e. without any suffix at all, assuming every user should be MS guru.
    Sergey

  • Call a dll for Labview: Function not found in library

    Hello,
    I am trying to call a very simple .dll form Labview. I compiled the .dll for x64 using Visual Studio 2010, because I am using Labview(64-bit). I did everything exactly the way I read it in several Tutorials. But the "Call Library Function Node" doesn't create a popup menu with the avalible functions like it is supposed to do. The Import Wizard doesn't find any functions neither. What is wrong with my .dll?
    I added a block marked 'extern "C" ' into my source file, but it still won't work.
    Thanks
    Matthias
    Solved!
    Go to Solution.
    Attachments:
    DynamicLibrary.zip ‏2452 KB

    You need to define an entry point to the DLL
    BOOL APIENTRY DllMain( HANDLE hModule,
                            DWORD  ul_reason_for_call,
                            LPVOID lpReserved )
        return TRUE;
    Also add extern "C" __declspec(dllexport) to your functions
    More details here: http://www.ni.com/white-paper/3056/en
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • Call library function node - function not found

    When creating a DLL I get a the Labview error "Call Library Function Node "LabviewReceiverDLL.dll:readDataJ1939Data' Function not found. Everything looks correct to me and this used to work, though I've changed computers since then.
    This is the beginning of my C++ code just to show my function name. I've also attached the Call Library Function Window to show my setup.
    Thank you in advance for your help.
    #include"StdAfx.h"
    #include<iostream>
    /* Call Library source file */
    extern"C"__declspec(dllexport)unsignedint readDataJ1939Data(unsignedint, unsignedint, unsignedchar, unsignedchar* canData, unsignedchar* path);
    unsigned int readDataJ1939Data(unsignedint ulTimeStamp, unsignedint ulIdentifier, unsignedchar uiDataCount, unsigned char* canData, constchar* path)
    Solved!
    Go to Solution.
    Attachments:
    Call Library Function.png ‏192 KB

    You mention that you have changed computers and that it used to work before.
    Could it be that there is another (older) copy of the DLL on this computer, and LabVIEW is loading the wrong one?
    The simplest way to check is to close your VI and delete the one you are expecting it to use.  Then open the VI again; if LabVIEW doesn't ask you where the DLL is, it is loading it from somewhere else.
    Batya

  • HT204074 The "Manage Devices" function not found in iTune

    I cannot find the "Manage Devices" function in the iTune Account Information screen.  Any help?

    The Function not found error is thrown when the OS can't provide the pointer to the function in the library to LabVIEW for some reason. For more information and common solutions see:
    http://digital.ni.com/public.nsf/websearch/44E40ACF1644DB77862562990054D672?OpenDocument
    The only reason I can think of why the first time it works correctly is that the DLL is not correctly clean-up by the close functions. Thus causing a second request for the pointer to fail due to this. (closing LabVIEW will remove the DLL form memory and thus probably clearing the error).
    Hope this Helps
    Kind regards,
    Karsten
    Applications Engineer
    National Instruments

  • Drive not found in library database

    Greetings.
    I'm new to OSB and am having tape drive, volume problems.
    File system backups only complete successfully when drive (IBM4_0_0_1_1) is used. When OSB attempts to use other drives in the library it logs the following errors listed in "Transcript".
    I'm running OSB (10.4.0.3.0) on a Linux server (Oracle Linux Server release 6.0) with a SL500 library controller by a ACSLS(8.3.0) server.
    Please advise.
    Transcript:
    2014/04/23.11:44:01 ______________________________________________________________________
      2014/04/23.11:44:01
      2014/04/23.11:44:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:44:01
      2014/04/23.11:44:01 ---
      2014/04/23.11:44:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.11:44:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.11:44:01 drive not found in library database (library manager)
      2014/04/23.11:45:01 ______________________________________________________________________
      2014/04/23.11:45:01
      2014/04/23.11:45:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:45:01
      2014/04/23.11:45:01 ---
      2014/04/23.11:45:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.11:45:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.11:45:01 drive not found in library database (library manager)
      2014/04/23.11:46:01 ______________________________________________________________________
      2014/04/23.11:46:01
      2014/04/23.11:46:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:46:01
      2014/04/23.11:46:01 ---
      2014/04/23.11:46:01 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.11:46:01 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.11:46:01 drive not found in library database (library manager)
      2014/04/23.11:48:01 ______________________________________________________________________
      2014/04/23.11:48:01
      2014/04/23.11:48:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:48:01
      2014/04/23.11:48:01 ---
      2014/04/23.11:48:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.11:48:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.11:48:01 drive not found in library database (library manager)
      2014/04/23.11:49:01 ______________________________________________________________________
      2014/04/23.11:49:01
      2014/04/23.11:49:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:49:01
      2014/04/23.11:49:01 ---
      2014/04/23.11:49:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.11:49:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.11:49:01 drive not found in library database (library manager)
      2014/04/23.11:50:01 ______________________________________________________________________
      2014/04/23.11:50:01
      2014/04/23.11:50:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:50:01
      2014/04/23.11:50:01 ---
      2014/04/23.11:50:01 No volume could be found in SL500 (for drive HP5_0_0_2_3) to use for job admin/83.1.
      2014/04/23.11:50:01 The problem using HP5_0_0_2_3 and the volume it contains, if any, is
      2014/04/23.11:50:01 drive not found in library database (library manager)
      2014/04/23.12:00:01 ______________________________________________________________________
      2014/04/23.12:00:01
      2014/04/23.12:00:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:00:01
      2014/04/23.12:00:01 ---
      2014/04/23.12:00:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.12:00:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.12:00:01 drive not found in library database (library manager)
      2014/04/23.12:01:01 ______________________________________________________________________
      2014/04/23.12:01:01
      2014/04/23.12:01:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:01
      2014/04/23.12:01:01 ---
      2014/04/23.12:01:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.12:01:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.12:01:01 drive not found in library database (library manager)
      2014/04/23.12:01:24 ______________________________________________________________________
      2014/04/23.12:01:24
      2014/04/23.12:01:24 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:24
      2014/04/23.12:01:25 ---
      2014/04/23.12:01:25 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.12:01:25 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.12:01:25 drive not found in library database (library manager)
      2014/04/23.12:04:01 ______________________________________________________________________
      2014/04/23.12:04:01
      2014/04/23.12:04:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:04:01
      2014/04/23.12:04:01 ---
      2014/04/23.12:04:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.12:04:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.12:04:01 drive not found in library database (library manager)
      2014/04/23.12:05:01 ______________________________________________________________________
      2014/04/23.12:05:01
      2014/04/23.12:05:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:01
      2014/04/23.12:05:01 ---
      2014/04/23.12:05:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.12:05:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.12:05:01 drive not found in library database (library manager)
      2014/04/23.12:05:21 ______________________________________________________________________
      2014/04/23.12:05:21
      2014/04/23.12:05:21 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:21
      Backup started on Wed Apr 23 2014 at 12:05:51
      Volume label:
      Volume tag: LEV018
      Volume UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Volume ID: mf_2min-000025
      Volume sequence: 1
      Volume set owner: root
      Volume set created: Wed Apr 23 12:05:51 2014
      Volume set expires: Wed Apr 23 12:07:51 2014
      Media family: mf_2min
      Original UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Archive label:
      File number: 1
      File section: 1
      Owner: root
      Client host: x4440a
      Backup level: 0
      S/w compression: no
      Archive created: Wed Apr 23 12:05:51 2014
      Encryption: off
      Dumping all files in /etc
      Backup complete on Wed Apr 23 2014 at 12:06:03
      Backup statistics:
      status 0
      devices IBM4_0_0_1_1
      devices 1
      volumes mf_2min-000025
      voltags LEV018
      file 1
      host x4440a
      encryption off
      start_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      end_time Wed Apr 23 2014 at 12:06:06 (1398276366)
      backup_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      entries_scanned 3373
      kbytes_scanned 40556
      entries_excluded 0
      entries_skipped 0
      mount_points_skipped 0
      files 2047
      directories 315
      hardlinks 0
      symlinks 1011
      sparse_files 0
      filesys_errors 0
      unknown_type 0
      file_kbytes 39264
      dev_kbytes 35977
      dev_iosecs 2
      dev_iorate 18.4 MB/S
      wrt_iosecs 15
      wrt_iorate 2.5 MB/S
      physical_blks_written 1102
      write_errors 0
      physical_blks_read 2
      read_errors 0
      error_rate 0%
      path /etc completed, status 0
    [root@x4440a backup]# obtool lsdev -lvg
    SL500:
         Device type:            library (ACSLS)
         In service:             yes
         Debug mode:             no
         Barcode reader:         yes
         Barcodes required:      yes
         Unload required:        yes
         Ejection type:          auto
         Min writable volumes:   0
         UUID:                   e0b58224-a1a4-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             ACSLS server:       v215f
             ACSLS port:         0
             ACS id:             0
             ACSLS access id:    acsss
         Reservation 1:
             Component:          obacslibd
             Host:               x4440a
             Process:            32195
         Element counts / addresses:
            10 mte: 1 - 10
           281 se : 1 - 281
             1 iee: 1
             1 dte: 1
         Moves:
            From mte, to: mte 0   se 0   iee 0   dte 0
            From  se, to: mte 0   se 0   iee 1   dte 1
            From iee, to: mte 0   se 0   iee 0   dte 0
            From dte, to: mte 0   se 1   iee 0   dte 0
         Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=0, unload_any=1, sense_dev_range=0
         State of barcode reader: enabled
    IBM4_0_0_1_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            14 minutes, 58 seconds
         UUID:                   179eb954-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg18
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD4
             Firmware:           C7Q0
             Serial number:      1310127325
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_2_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   7498ff66-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg16
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1168002114
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP6_0_0_3_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  3
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   cd20d3fc-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg21
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 6-SCSI
             Firmware:           J39S
             Serial number:      HU1233PPNN
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_1_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   5b6cf420-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg15
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1068002447
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP4_0_0_2_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   8bd3659a-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg13
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 4-SCSI
             Firmware:           H64S
             Serial number:      HU1803168E
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_3:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  3
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   9ee7dbd4-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg23
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NFE
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_4:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  4
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   b45b889e-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg24
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NBF
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    [root@x4440a backup]#
    [root@x4440a backup]# obtool lsvol -L SL500 -l
    Inventory of library SL500:
         in    1:             barcode F50216, oid 100
         in    2:             barcode I50116, oid 101
         in    3:             barcode LEV008, oid 102, mediainfo hw encryptable
         in    4:             barcode LEV010, oid 103, mediainfo hw encryptable
         in    5:             barcode LEV017, oid 104, mediainfo hw encryptable
         in    6:             volume mf_2min-000025, barcode LEV018, oid 155, 781232128 kb remaining, expired, mediainfo hw encryptable
         in    7:             barcode LEV049, oid 106
         in    8:             barcode LEV058, oid 107
         in    9:             barcode PQ4196, oid 108
         in    10:            barcode PQ4883, oid 109
         in    11:            barcode S50282, oid 110
         in    12:            barcode S50290, oid 111
         in    13:            barcode S50291, oid 112
         in    14:            barcode S50292, oid 113
         in    15:            barcode S50300, oid 114
         in    16:            barcode S60111, oid 115
         in    17:            barcode S60113, oid 116
         in    18:            barcode SF6410, oid 117
         in    19:            barcode SF6411, oid 118
         in    20:            barcode SF6412, oid 119
         in    21:            barcode SF6413, oid 120
         in    22:            barcode SF6414, oid 121
         in    23:            barcode SF6416, oid 122
         in    24:            barcode SF6417, oid 123
         in    25:            barcode SF6418, oid 124
         in    26:            barcode SF6419, oid 125
         in    27:            vacant
         in    28:            vacant
         in    29:            vacant
         in    30:            vacant
         in    31:            vacant
         in    274:           vacant
         in    275:           vacant
         in    276:           vacant
         in    277:           vacant
         in    278:           vacant
         in    279:           vacant
         in    280:           vacant
         in    281:           vacant
         in    iee:           vacant
         in    dte:           vacant
    [root@x4440a backup]#

    Rich
    Thanks for your response.
    ACSLS is part of the configuration requirements I need to have in this OBS environment.
    I'm going to re install OBS just to see if anything changes.
    Thanks again.
    Update:
    When configuring devices in OSB that are ACSLS in nature it is a requirement to restart the obacslibd after mkdev or certain chdev commands are preformed.
    After the daemon was restarted I was able to use the attached tape drives.

  • Library not Found: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit

    Hello all,
    I am working with a MacBook purchased in 2009, OSX 10.6.8, processor: 2.13 GHz Intel Core 2 Duo, Memory: 2 GB 800 MHz DDR2 SDRAM.
    I recently downloaded and tried to install a game I had previously successfully installed from Gamehouse.com. The download goes fine, when I open the .dmg file the correct window pops up with an icon to double-click to start installation. At that point I receive an error message (see below). I contacted Gamehouse and ran through a number of solutions they gave me, including uninstalling and removing all traces of this or any other game from my computer (including .plist files), installing any available updates (iTunes finally got that update I've been postponing for months...), and dragging the installer icon into various different locations before opening. All to no avail.
    It appears to me the issue is this line in the error message: "Library not Found: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit"
    I checked the Frameworks folder and there is nothing there called StoreKit.framework, so that seems to make sense. It isn't anywhere else in the computer either. After a quick google I found this problem pops up now and then - there is one other question on the same issue in this forum, but I have no idea if the solution given there works, as the original poster never came back. Their suggestion was to try reinstalling Just OSX from the boot disc. I haven't attempted this yet - I thought I'd see if I can get any input before going that route.
    Thank you for any advice. Here is the full error report:
    Process:         Delicious - Emily's Wonder Wedding [349]
    Path:            /Applications/Delicious - Emily's Wonder Wedding Premium Edition.app/Contents/MacOS/Delicious - Emily's Wonder Wedding
    Identifier:      com.mrgoodlivng.delicious8.mac
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [91]
    Date/Time:       2014-08-10 14:33:56.929 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          201860 sec
    Crashes Since Last Report:           18
    Per-App Crashes Since Last Report:   21
    Anonymous UUID:                      750B56F7-4793-44CA-847D-5A35F9F8DABC
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
      Referenced from: /Applications/Delicious - Emily's Wonder Wedding Premium Edition.app/Contents/MacOS/Delicious - Emily's Wonder Wedding
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    Model: MacBook5,2, BootROM MB52.0088.B06, 2 processors, Intel Core 2 Duo, 2.13 GHz, 2 GB, SMC 1.38f5
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHZ2160BH FFS G1, 149.05 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS22N
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0229, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    That file is a OS X system file, you'll have to overwrite OS X with a new copy to restore it.
    First things first
    Emergency backup procedure
    Drag and drop copy your users file folders (music, pictures, documents etc) to a regular external powered drive as soon as possible.
    Do not use, setup or trust only TimeMachine at this troubled time as it will copy corrupted data and we need just your users files safe just in case. TimeMachine cannot be used with a Windows PC.
    Unmount and Disconnect all external drives once the backup process is completed.
    Note:
    If you have any over 4GB sized files, those won't copy to a standard formatted FAT32/MSDOS drive from the factory, if you need to save these 4GB+ files use another blank/empty drive and use Disk Utility to format it 1 Partition, Option: GUID,  Format: OS X Extended Journaled (or the standard default one for older Mac's).
    Mac's cannot copy to nor format a NTFS  drive. ExFAT format to be used with a Windows machine must be right click formatted by Windows, not OS X (does it wrong) XP machines can install a free exFAT update from Microsoft. Vista-Win 8 can format exFAT.
    Formatting a drive will erase all data on it.
    Once your files are safely copied off the machine, next run through this list of fixes, I suspect #8 Reinstall Just OS X + Software Updating fully should restore the broken/missing file.
    ..Step by Step to fix your Mac
    Overwriting OS X with a new copy does not delete most programs or users files, but you backup your users files regardless as it might be something more than we currently know at this time.

  • Can't install Acrobat form cs6 diskete: I get this error: Exit Code: 6 - ARKSelector.dylib not found at /Library/Application Support/Adobe/DECor

    How an I get around this error when I try to install Acrobat form CS-6 Design & Web Premium CD on my Mac air?
    Exit Code: 6 - ARKSelector.dylib not found at /Library/Application Support/Adobe/DECor
    HELP!

    Errors "Exit Code: 6," "Exit Code: 7"
    Mylenium

  • PLEASE help..class function not found..

    I am writing a simple email validation and I get a TON of errors.
    1) is Class function not found. on - function validateEmail();
    2) and 11 Undefined variable or class name: document .
    The code is listed below -
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <%
    function validateEmail();
    if (document.forms[0].EMAIL_ADDRESS.value.length != 0)
    if ( (document.forms[0].EMAIL_ADDRESS.value.indexOf("@") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == "@") ||
    (document.forms[0].EMAIL_ADDRESS.value.length < 6) ||
    (document.forms[0].EMAIL_ADDRESS.value.indexOf(".") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")+1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")-1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ' ') )
    alert ("Please enter valid email address");
    document.forms[0].EMAIL_ADDRESS.focus();
    document.forms[0].EMAIL_ADDRESS.select();
    return false;
    else
    return true;
    %>
    </head>
    -- lots of input fields with the last being -
    <input type="text" name=EMAIL_ADDRESS onBlur="validateEmail();"></td>
    ????

    When I remove tags <% %> all of the function ends up in html and thus on my page.
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <%
    function validateEmail();
    if (document.forms[0].EMAIL_ADDRESS.value.length != 0)
    if ( (document.forms[0].EMAIL_ADDRESS.value.indexOf("@") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == "@") ||
    (document.forms[0].EMAIL_ADDRESS.value.length < 6) ||
    (document.forms[0].EMAIL_ADDRESS.value.indexOf(".") == -1) ||
    (document.forms[0].EMAIL_ADDRESS.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")+1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(document.forms[0].EMAIL_ADDRESS.value.indexOf("@")-1) == ".") ||
    (document.forms[0].EMAIL_ADDRESS.value.charAt(0) == ' ') )
    alert ("Please enter valid email address");
    document.forms[0].EMAIL_ADDRESS.focus();
    document.forms[0].EMAIL_ADDRESS.select();
    return false;
    else
    return true;
    %>
    </head>
    <body bgcolor="powderblue">
    <Form Name="My Form" Action=userInfoInsert.jsp Method=Post>
    <table border="0" width="100%">
    <tr>
    <td width="100%">
    <table border="0" width="100%">
    <tr>
    <td width="41%">First Name     <input type="text" name=FIRST_NAME ></td>
    <td width="59%">Last Name
    <input type="text" name=LAST_NAME ></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%">Address         
    <input type="text" name=Address ></td>
    </tr>
    <tr>
    <td width="100%">Address         
    <input type="text" name=Address ></td>
    </tr>
    <tr>
    <td width="100%">
    <table border="0" width="100%">
    <tr>
    <td width="32%">City            
       <input type="text" name=CITY size=10></td>
    <td width="18%">State
    <input type="text" name=STATE size=5></td>
    <td width="50%">Zip Code
    <input type="text" name=ZIP_CODE size=10 ></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%">Phone #         
    <input type="text" name=PHONE size="15" ></td>
    </tr>
    <tr>
    <td width="100%">SSN              
    <input type="text" name=SSN size="17" ></td>
    </tr>
    <tr>
    <td width="100%">
    <table border="0" width="100%">
    <tr>
    <td width="41%">Hint Question <input type="text" name=FIRST_NAME ></td>
    <td width="59%">Hint Answer <input type="text" name=LAST_NAME ></td>
    </tr>
    </table>
    </tr>
    <tr>
    <td width="100%">User Name     <input type="text" name=USER_NAME ></td>
    </tr>
    <tr>
    <td width="100%">Password        <input type="text" name=PASSWORD ></td>
    </tr>
    <tr>
    <td width="100%">Re-Password  <input type="text" name=RE_PASSWORD ></td>
    </tr>
    <tr>
    <td width="100%">Email Address
    <input type="text" name=EMAIL_ADDRESS onBlur="validateEmail();"></td>
    </tr>
    </table>
    <INPUT type=Submit Value=Submit>
    </form>
    </body>
    </html>

  • File Not Found error (-43) when trying to record

    Never had this problem in the past, and haven't used Logic in a few months, but every time i attempt to record, i get that message: File Not Found, Result code error -43
    I am using the MBox 2 Pro as my record in, and Logic 6.4.3
    Thanks for the help...

    Hi,
    I have a 'file not found' problem with Logic Express. A while back I transferred all my Logic files to DVD to make room on the hard drive. It took 4 discs, saved alphabetically by song title. Now, I nearly always get the 'file-not'found' error message when I try to work on something. Sometimes when I click 'search' it finds the file, sometimes it doesn't. I'm confident that I didn't delete the files.
    Wondering if 'search' would find the files if I transferred all the files from DVD to a single folder on an external drive. I don't use the 'search manually' option, because I'm not really sure what I'm looking for, or where to look. In the other room, perhaps? 'Computer challenged' is me. Any suggestions?
    DS

  • Proxy not found message now when it comes back on it has

    Proxy not found message now when it comes back on it has only the windows sign now when it comes back on but nothing else

    Satellite A200-1VM (PSAE3E-04601MG3)
    Is that your computer [from your August message]?
    Can you explain that situation in more detail and attach a picture?
    Do you have the recovery discs now?
    -Jerry

  • Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at http:// (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Is this a webpage that contains a link to a flv file? Please post a link to the page and tell us which link(s) are the problem flv files or else post a link to the .flv file itself.
    Alternately, click on one of the sample FLV File links on this page and tell us exactly what happens:
    http://www.mediacollege.com/adobe/flash/video/tutorial/example-flv.html
    It might also help if you post the exact error message, including the path to the flv file.
    '''Note:'''
    Depending on how you have Firefox set up, clicking on a FLV File link will either save the FLV file to your computer or Firefox may open it automatically in an external application right after downloading (Firefox may ask you first). Firefox itself can't play FLV files so you need a "helper" application (or a plugin for flv files, if ther is one. You can see if Firefox is already set up to download or open FLV files by going to Firefox Preferences and looking in the Applications list. Find the FLV file type in the list and, if the action is "Open with", it should show the application that can play FLV files (e.g., VLC Media Player or Perian). See [[Managing filetypes]] for more information.

Maybe you are looking for

  • Sort Direction in Data Grid

    Hi i want to know if the clicked column is sorted ASC or DESC, While debugging step by step, i found a property in dataGrid whis is "sortDirection" but this property is not accessible like this "dataGrid.sortDirection" is there any method to access t

  • How do I disable printing of my PDF if a text field isn't filled in?

    Hello all I'm currently trying to find a way to make the print button of my pdf not work if say a necessary textfield wasn't filled in? I take it that the standard validation scripts won't work? The very helpful fellow from a thread seemed pretty sur

  • 'HP OFficejet Pro L7680 turned itself off and won't turn back on'

    HP OFficejet Pro L7680 turned itself off and won't turn back on.  This question was solved. View Solution.

  • Cannot boot from USB to install windows 7

    I am trying to install windows 7 using a usb on my 2011 macbook pro. Boot camp did not allow me to check the box to use a USB but I found a work around for that. So I was able to create the USB windows install, but when I ran bootcamp it returned "No

  • How to download Youtube video into Nokia Asha 200

    Is there any application to help me download youtube video into my nokia asha 200? Moderator's notes: The post was edited. A more appropriate subject is provided.