Validate the path in unix

Hello all,
I wrote a programm that saves a file on the server (unix)
I would like to know if there is a function to validate the path in unix.
thanks in advance.
Miguel.

Hi Miguel,
Of course there are several ways to do this, but here you have the ABAP code to scan an entire directory (using wildcards). This delivers a list with entries and you can then search it for your directory (or simply use your directory name as entry).
<b><i>* Directory filescan subroutine
*&      Form  collect_filenames
      Scan a directory for files
     -->PFILE_LIST   Table for file info
     -->PC_INDIR     Search directory
     -->PC_FSEARCHP  Search pattern
     <--PF_SUBRC     Resultcode
----</i>
FORM collect_filenames TABLES   PFILE_LIST STRUCTURE FILE_LIST
                       USING    PC_INDIR
                                PC_FSEARCHP
                       CHANGING PF_SUBRC.
<i>* Local</i>
data: errcnt(2) type p value 0.
<i>* Check directory</i>
  if pc_indir is initial.
<i>*   Error: directory is mandatory</i>
    clear: sy-subrc.
<i>*   Set error</i>
    pf_subrc = 7.
<i>*   Leave</i>
    exit.
  endif.
<i>* Just to make sure: Close possibly pending processes</i>
call 'C_DIR_READ_FINISH'
  ID 'ERRNO'  field pfile_list-errno
  ID 'ERRMSG' field pfile_list-errmsg.
<i>* Start a new search process</i>
  CALL 'C_DIR_READ_START'
      ID 'DIR'    FIELD PC_INDIR
      ID 'FILE'   FIELD PC_FSEARCHP
      ID 'ERRNO'  FIELD PFILE_LIST-ERRNO
      ID 'ERRMSG' FIELD PFILE_LIST-ERRMSG.
<i>* Result</i>
  IF SY-SUBRC <> 0.
<i>*   Error: directory does not exist</i>
    CLEAR: SY-SUBRC.
<i>*   Set error</i>
    PF_SUBRC = 6,
<i>*   Leave</i>
    EXIT.
  ENDIF.
<i>* Loop to get the filelist</i>
  DO.
<i>*   Cleanup workarea</i>
    CLEAR: PFILE_LIST.
<i>*   Call the next file entry in the directory</i>
    CALL 'C_DIR_READ_NEXT'
      ID 'TYPE'   FIELD PFILE_LIST-TYPE
      ID 'NAME'   FIELD PFILE_LIST-NAME
      ID 'LEN'    FIELD PFILE_LIST-LEN
      ID 'OWNER'  FIELD PFILE_LIST-OWNER
      ID 'MTIME'  FIELD PFILE_LIST-MTIME
      ID 'MODE'   FIELD PFILE_LIST-MODE
      ID 'ERRNO'  FIELD PFILE_LIST-ERRNO
      ID 'ERRMSG' FIELD PFILE_LIST-ERRMSG.
<i>*   Set the related directory name</i>
    PFILE_LIST-DIRNAME = PC_INDIR.
<i>*   Remember this result</i>
    MOVE SY-SUBRC TO PFILE_LIST-SUBRC.
<i>*   Act on the result</i>
    CASE SY-SUBRC.
      WHEN 0.
<i>*       Clear error messages</i>
        CLEAR: PFILE_LIST-ERRNO, PFILE_LIST-ERRMSG.
<i>*       Can we use the file</i>
        CASE PFILE_LIST-TYPE(1).
          WHEN 'F' OR 'f'.
<i>*           Normal file</i>
            PERFORM FILENAME_USEABLE(RSWATCH0) USING PFILE_LIST-NAME
                                                     PFILE_LIST-USEABLE.
          WHEN OTHERS.
<i>*           Directory, device, fifo, socket, ...</i>
            CLEAR: PFILE_LIST-USEABLE.
        ENDCASE.
<i>*       Filesize check</i>
        IF PFILE_LIST-LEN = 0.
<i>*         No data in file</i>
          CLEAR: PFILE_LIST-USEABLE.
        ENDIF.
      WHEN 1.
<i>*       Leave loop (no other entries found)</i>
        EXIT.
      WHEN OTHERS.
<i>*       Count the other errors</i>
        ADD 1 TO ERRCNT.
<i>*       Allow for maximum 10 errors (fail safe)</i>
        IF ERRCNT GT 10. EXIT. ENDIF.
<i>*       Too many unknown entries</i>
        IF SY-SUBRC = 5.
<i>*         Do not show these attributes (security)</i>
          MOVE: '???' TO PFILE_LIST-TYPE,
                '???' TO PFILE_LIST-OWNER,
                '???' TO PFILE_LIST-MODE.
        ENDIF.
<i>*       File is unusable</i>
        CLEAR: PFILE_LIST-USEABLE.
    ENDCASE.
<i>*   Convert number of seconds since 1970 to time and date</i>
    PERFORM P6_TO_DATE_TIME_TZ(RSTR0400) USING PFILE_LIST-MTIME
                                               PFILE_LIST-MOD_TIME
                                               PFILE_LIST-MOD_DATE.
<i>*   Does the file contain the search pattern</i>
    IF PC_FSEARCHP = SPACE.
<i>*     No pattern, so accept all</i>
      APPEND PFILE_LIST.
    ELSE.
      IF PFILE_LIST-NAME CP PC_FSEARCHP.
<i>*       File contains search pattern</i>
        APPEND PFILE_LIST.
      ENDIF.
    ENDIF.
  ENDDO.
<i>* Stop search</i>
  CALL 'C_DIR_READ_FINISH'
      ID 'ERRNO'  FIELD PFILE_LIST-ERRNO
      ID 'ERRMSG' FIELD PFILE_LIST-ERRMSG.
<i>* Result</i>
  IF SY-SUBRC NE 0.
<i>*   suppress error</i>
    CLEAR: SY-SUBRC.
  ENDIF.
<i>* Sort the found filelist by date, time and name</i>
  SORT PFILE_LIST BY MTIME DESCENDING NAME ASCENDING.
ENDFORM.                    " collect_filenames</b>
Hope you can use this,
Regards,
Rob.

Similar Messages

  • To validate the date in Unix using Oracle

    sqlplus /nolog <<EOF > /dev/null
    CONNECT $ORAUID/$ORAPWD
    WHENEVER SQLERROR EXIT 1
    SELECT TO_DATE('$DATE_INPUT', '$DATE_FORMAT') FROM DUAL;
    EOF
    if [ $? -eq 1 ]; then
    echo "Error: Wrong Date Format - $DATE_INPUT"
    exit
    fi

    You can get the date from the first internal table along with the posnr and calculate date calculations u an use RP_CALC_DATE_IN_INTERVAL    or  RE_ADD_MONTH_TO_DATE and again read the data with posnr and calculated date in the loop.
    Reward points if helpful

  • How to validate the file path when downloading.

    Hi
    How to validate the file path when downloading to Presentation or application Server.

    hiii
    you can validate file path by following way
    REPORT zvalidate.
    TYPE-POOLS: abap.
    DATA: w_direc TYPE string.
    DATA: w_bool TYPE abap_bool.
    w_dir = 'c:\Myfolder\'.
    CALL METHOD cl_gui_frontend_services=>directory_exist
    EXPORTING
    directory = w_direc
    RECEIVING
    result = w_bool
    EXCEPTIONS
    cntl_error = 1
    error_no_gui = 2
    wrong_parameter = 3
    not_supported_by_gui = 4
    OTHERS = 5.
    IF NOT w_bool IS INITIAL.
    WRITE:/ 'Directory exists.'.
    ELSE.
    WRITE:/ 'Directory does not exist.'.
    ENDIF.
    regards
    twinkal

  • FM to validate the file path on the presentation server.

    Hi all,
                  We are downloading a file on to the presentation server.
    Is there any FM to validate the file path of the presentation server?
    Suggestions are also welcome.
    Regards,
    Sreekar

    You can call a class like a function module. See example below:
    TYPE-POOLS: ABAP.
    DATA: L_DIR TYPE STRING.
    DATA: L_BOL TYPE ABAP_BOOL.
    L_DIR = 'c:\windows'.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST
      EXPORTING
        DIRECTORY            = L_DIR
      RECEIVING
        RESULT               = L_BOL
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        WRONG_PARAMETER      = 3
        NOT_SUPPORTED_BY_GUI = 4
        others               = 5.
    IF NOT L_BOL IS INITIAL.
      WRITE: / 'Directory exists.'.
    ELSE.
      WRITE: / 'Directory does not exist.'.
    ENDIF.

  • FM to validate the file path on the presenation server.

    Hi all,
    We are downloading a file on to the presentation server.
    Is there any FM to validate the file path of the presentation server?
    Its usgent.
    Thanks and Regards,
    Praveen

    Hi praveen,
    this may probably help you i think
    but its not a fm its a subroutine.
    FORM validate_pre_file USING fp_name TYPE rlgrap-filename.
    DATA : l_result,
    l_filename TYPE string.
    l_filename = fp_name.
    CLEAR l_result.
    CALL METHOD cl_gui_frontend_services=>file_exist
    EXPORTING
    file = l_filename
    RECEIVING
    result = l_result
    EXCEPTIONS
    cntl_error = 1
    error_no_gui = 2
    wrong_parameter = 3
    not_supported_by_gui = 4
    OTHERS = 5.
    IF sy-subrc 0.
    MESSAGE s007 DISPLAY LIKE c_e.
    LEAVE LIST-PROCESSING.
    ELSEIF l_result IS INITIAL.
    MESSAGE s008 DISPLAY LIKE c_e.
    LEAVE LIST-PROCESSING.
    ENDIF.
    ENDFORM. " validate_pre_file_hdr
    regards
    srikanth tulasi.

  • Application Crashes Every time I Click the Path dropdown in the save....

    Here we go.....
    Every time I want to save in ANY appllication to a mounted server and click the path drop down in the save dialouge box my application crashes. I can save my files fine in column view but if I'm in list view my save dialouge box doesn't even show me the heirarchy of files either. So here is the error that I keep geting, maybe someone can make sense of it.
    Thanks
    Date/Time: 2007-10-31 16:43:26.933 -0500
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Illustrator CS
    Path: /Applications/Adobe Illustrator CS/Illustrator CS.app/Contents/MacOSClassic/Illustrator CS
    Parent: WindowServer [58]
    Version: 11.0 (11.0)
    PID: 208
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xfffffff0
    Thread 0 Crashed:
    0 com.apple.NavigationServices 0x931dc278 TNavNode::TNavNode[unified](TNavNode const&) + 0
    1 com.apple.NavigationServices 0x93216f60 std::vector<TNavNode, std::allocator<TNavNode> >::M_insert_aux(__gnu_cxx::__normaliterator<TNavNode*, std::vector<TNavNode, std::allocator<TNavNode> > >, TNavNode const&) + 240
    2 com.apple.NavigationServices 0x932062a4 TPathPopup::FillPopup() + 288
    3 com.apple.NavigationServices 0x93206b58 TPathPopup::Validate() + 36
    4 com.apple.NavigationServices 0x93206ec0 TPathPopup::MenuHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 92
    5 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    6 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    7 com.apple.HIToolbox 0x93295f08 SendEventToEventTargetWithOptions + 40
    8 com.apple.HIToolbox 0x9332e194 SendTrackingStatus(unsigned long, MenuData*, unsigned long, unsigned long, unsigned long, unsigned long, unsigned char) + 376
    9 com.apple.HIToolbox 0x934c28f8 SendBeginTracking(MenuData*, unsigned long, unsigned long, MenuSelectData*) + 64
    10 com.apple.HIToolbox 0x9332d1a0 SetupMenuTracking(MenuSelectData&, unsigned char, Point, double, MenuData*, unsigned long, Rect const*, Rect const*, GDevice**, Rect const*, __CFString const*) + 1280
    11 com.apple.HIToolbox 0x933670b8 PopUpMenuSelectCore(MenuData*, Point, double, Point, GDevice**, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 128
    12 com.apple.HIToolbox 0x93366fec _HandlePopUpMenuSelection5 + 364
    13 com.apple.HIToolbox 0x93452f60 HIPopupButton::TrackMenu() + 776
    14 com.apple.HIToolbox 0x93452c18 HIPopupButton::TrackSelfCommon(short, short*) + 60
    15 com.apple.HIToolbox 0x93452b94 HIPopupButton::TrackSelf(OpaqueEventRef*, short*) + 128
    16 com.apple.HIToolbox 0x932b96a0 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2196
    17 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    18 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    19 com.apple.HIToolbox 0x93295f08 SendEventToEventTargetWithOptions + 40
    20 com.apple.HIToolbox 0x9334e590 SendControlDefTrack(HIView*, CGPoint const&, unsigned long*, void ()(OpaqueControlRef, short), OpaqueEventRef*, short*) + 276
    21 com.apple.HIToolbox 0x9334e3e8 HIView::ClickInternal(CGPoint const&, unsigned long, void ()(OpaqueControlRef, short), OpaqueEventRef*, bool) + 156
    22 com.apple.HIToolbox 0x9332b248 HIView::ClickSelf(OpaqueEventRef*) + 296
    23 com.apple.HIToolbox 0x932ba810 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 6660
    24 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    25 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    26 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    27 com.apple.HIToolbox 0x9332afd8 HIView::Click(OpaqueEventRef*) + 280
    28 com.apple.HIToolbox 0x9332aea4 HIViewClick + 56
    29 com.apple.HIToolbox 0x9332ae50 HandleClickAsHIView + 156
    30 com.apple.HIToolbox 0x9332a7c4 HandleWindowClick + 516
    31 com.apple.HIToolbox 0x9332a254 HandleMouseEvent + 456
    32 com.apple.HIToolbox 0x932d92e4 StandardWindowEventHandler + 148
    33 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    34 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    35 com.apple.HIToolbox 0x932d5d5c CallNextEventHandler + 60
    36 com.apple.NavigationServices 0x931e2068 TBrowseDialog::EventWindowHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 1192
    37 com.apple.NavigationServices 0x931e1b90 TBrowseDialog::EventWindowHandlerDispatch(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 80
    38 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    39 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    40 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    41 com.apple.HIToolbox 0x93329224 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 236
    42 com.apple.HIToolbox 0x9348c3dc HandleMouseEvent(OpaqueEventRef*) + 368
    43 com.apple.HIToolbox 0x9329d1fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    44 com.apple.HIToolbox 0x93296b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    45 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    46 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    47 com.apple.HIToolbox 0x932ddc04 ToolboxEventDispatcher + 92
    48 com.apple.HIToolbox 0x9337ca04 TryEventDispatcher + 108
    49 com.apple.HIToolbox 0x9337c65c GetOrPeekEvent + 304
    50 com.apple.HIToolbox 0x9337c4b4 GetNextEventMatchingMask + 440
    51 com.apple.HIToolbox 0x9337c238 WNEInternal + 152
    52 com.apple.HIToolbox 0x9337c18c WaitNextEvent + 76
    53 com.apple.NavigationServices 0x931ecb3c TBrowseDialog::EventLoop() + 76
    54 com.apple.NavigationServices 0x931e3af4 TBrowseDialog::StartDialog() + 388
    55 com.apple.NavigationServices 0x931d1a14 _NavDialog::Run() + 132
    56 com.apple.NavigationServices 0x931d1948 NavDialogRun + 64
    57 Illustrator 0x028bcaec Modal__Q26cainav11PutMacUtilsFv + 476
    58 Illustrator 0x028bc690 Modal__Q26cainav9PutDialogFv + 144
    59 Illustrator 0x028bbd84 FileFormatPutFileMac_FPP7ArtworklP6FSSpecPPvPUcPCUcP13AIPutFileInfo + 276
    60 Illustrator 0x028bbc00 FileFormatPutFile__FPP7ArtworklP6FSSpecPPvPUcPCUcP13AIPutFileInfo + 16
    61 Illustrator 0x028bb834 FileFormatSaveAs__FPP7ArtworkP15CAIDocumentViewUcUcP16ActionParamValuePc + 1700
    62 Illustrator 0x02a4a0e4 CommandSaveAsEx__FP17CAIDocumentWindowUcP16ActionParamValuePc + 68
    63 Illustrator 0x02ab65cc CommandSaveAs__FP17CAIDocumentWindowP11CAIADMEvent + 28
    64 Illustrator 0x028f2688 DispatchCommand__15CAICommandClassCFP17CAIDocumentWindowP11CAIADMEvent + 56
    65 Illustrator 0x02168a00 CommandDo__FP11CAIADMEventUlss + 368
    66 Illustrator 0x02aad514 MenuEventHandler + 1828
    67 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    68 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    69 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    70 com.apple.HIToolbox 0x933157e8 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 380
    71 com.apple.HIToolbox 0x93345694 SendMenuItemSelectedEvent + 136
    72 com.apple.HIToolbox 0x9334559c FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 144
    73 com.apple.HIToolbox 0x9332ca48 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 404
    74 com.apple.HIToolbox 0x9332c530 MenuSelect + 100
    75 com.apple.HIToolbox 0x933287a4 HandleMouseEvent(OpaqueEventRef*) + 84
    76 com.apple.HIToolbox 0x9332c4b8 StandardMenuBarEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 56
    77 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    78 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    79 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    80 com.apple.HIToolbox 0x9348c3f0 HandleMouseEvent(OpaqueEventRef*) + 388
    81 com.apple.HIToolbox 0x9329d1fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    82 com.apple.HIToolbox 0x93296b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    83 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    84 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    85 Illustrator 0x028d3d40 EventLoopEventHandler + 224
    86 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    87 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    88 com.apple.HIToolbox 0x93295f08 SendEventToEventTargetWithOptions + 40
    89 com.apple.HIToolbox 0x9329d2cc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 704
    90 com.apple.HIToolbox 0x93296b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    91 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    92 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    93 com.apple.HIToolbox 0x932ddc04 ToolboxEventDispatcher + 92
    94 com.apple.HIToolbox 0x932ddb90 HLTBEventDispatcher + 16
    95 com.apple.HIToolbox 0x932dc148 RunApplicationEventLoop + 148
    96 Illustrator 0x028d39d8 MiEventMainLoop__Fv + 344
    97 Illustrator 0x0203fca4 RunApp__14CAIApplicationFv + 196
    98 Illustrator 0x02030eec main + 76
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90c034cc MPWaitOnSemaphore + 184
    3 ACECarbonLib 0x00449dd4 0x405000 + 282068
    4 ACECarbonLib 0x0044a010 0x405000 + 282640
    5 ACECarbonLib 0x00449a28 0x405000 + 281128
    6 ...ple.CoreServices.CarbonCore 0x90c36cd4 MPCFMTaskProc + 32
    7 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.ColorSync 0x9159f060 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x9159e2fc CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002f08c kevent + 12
    1 com.apple.DesktopServices 0x92af3eb0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf8410 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c003ac TimerThread + 60
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc59a0 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92af452c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bc59a0 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92b1eb78 TPropertyTask::PropertyTaskProc(void*) + 72
    4 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bc59a0 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92b20558 TIconRefTask::IconRefTaskProc(void*) + 72
    4 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000931dc278 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24022404 xer: 0x0000000000000000 lr: 0x0000000093216f78 ctr: 0x00000000900015c8
    r0: 0x0000000093216f60 r1: 0x00000000bfffaf70 r2: 0x00000000a0001fac r3: 0x0000000001a4fda0
    r4: 0x00000000fffffff0 r5: 0x0000000000000000 r6: 0x0000000001a4fda0 r7: 0x0000000000000000
    r8: 0x0000000000000001 r9: 0x0000000000000000 r10: 0x00000000931d1500 r11: 0x00000000a31cd660
    r12: 0x00000000900015c8 r13: 0x0000000000000002 r14: 0x0000000000000000 r15: 0x00000000a3296698
    r16: 0x0000000008fc1ed0 r17: 0x00000000bfffb240 r18: 0x000000006d656e75 r19: 0x0000000000000001
    r20: 0x0000000008fac520 r21: 0x00000000ffffd96e r22: 0x0000000000000000 r23: 0x00000000bfffb390
    r24: 0x00000000fffffff0 r25: 0x0000000000000000 r26: 0x0000000000000001 r27: 0x00000000bfffafc0
    r28: 0x0000000001a4fda0 r29: 0x00000000018a82e8 r30: 0x0000000001a4fda0 r31: 0x0000000093206194
    Binary Images Description:
    0x1000 - 0x2fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0xd5000 - 0xff427 BIBCarbonLib PEF binary: BIBCarbonLib
    0x27f000 - 0x2aff0c BIBUtilsCarbon PEF binary: BIBUtilsCarbon
    0x2b6000 - 0x2e7b49 ARECarbon PEF binary: ARECarbon
    0x2e8000 - 0x2f8720 AdobeSplashKitLib PEF binary: AdobeSplashKitLib
    0x2f9000 - 0x2fd4b4 AdobeCoreGraphics PEF binary: AdobeCoreGraphics
    0x314220 - 0x3142d2 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x3146a0 - 0x314755 CFMPriv_DVComponentGlue PEF binary: CFMPriv_DVComponentGlue
    0x314970 - 0x314a13 CFMPriv_QuickTime PEF binary: CFMPriv_QuickTime
    0x314a80 - 0x314af7 CFMPriv_System PEF binary: CFMPriv_System
    0x314d80 - 0x314e50 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x314ed0 - 0x314fa3 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x315080 - 0x31513b CFMPriv_Help PEF binary: CFMPriv_Help
    0x315140 - 0x31520a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x315290 - 0x315366 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x3153e0 - 0x3154b3 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x315540 - 0x315625 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x3156a0 - 0x315776 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x315850 - 0x31590e CFMPriv_Print PEF binary: CFMPriv_Print
    0x315930 - 0x3159fd CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x315a80 - 0x315b62 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x315be0 - 0x315cb3 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x315d30 - 0x315e03 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x315ee0 - 0x315fa2 CFMPriv_AE PEF binary: CFMPriv_AE
    0x315fb0 - 0x316075 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x3160f0 - 0x3161c7 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x316250 - 0x316333 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x3163b0 - 0x31648a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x316500 - 0x3165e0 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x316670 - 0x316756 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x316830 - 0x316907 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x316910 - 0x3169d2 CFMPriv_QD PEF binary: CFMPriv_QD
    0x316ad0 - 0x316bb9 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x405000 - 0x4a1144 ACECarbonLib PEF binary: ACECarbonLib
    0x4a2000 - 0x6b86cc CoolTypeCarbonLib PEF binary: CoolTypeCarbonLib
    0x6b9000 - 0x7083c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x7083d0 - 0x7206bd Apple;Carbon;Multimedia PEF binary: Apple;Carbon;Multimedia
    0x724000 - 0x75176b AWSCommonSymbols.dll PEF binary: AWSCommonSymbols.dll
    0x751770 - 0x7534f1 pthread_bridge PEF binary: pthread_bridge
    0x754000 - 0x78c9ec asn.ear.ca.dll PEF binary: asn.ear.ca.dll
    0x78d000 - 0x7c7b5e MSLAllCarbon.Shlb PEF binary: MSLAllCarbon.Shlb
    0x7fe000 - 0x7ff97b ASLib PEF binary: ASLib
    0x1008000 - 0x13b12aa AGMCarbonLib PEF binary: AGMCarbonLib
    0x13bc000 - 0x170524f MPSLib PEF binary: MPSLib
    0x1706000 - 0x17a2e4b JP2KLibCarbon PEF binary: JP2KLibCarbon
    0x2008000 - 0x2f4067a Illustrator PEF binary: Illustrator
    0x2f41000 - 0x30671ee AWSCommonUI.dll PEF binary: AWSCommonUI.dll
    0x3068000 - 0x368c981 PDFL60 Carbon.lib PEF binary: PDFL60 Carbon.lib
    0x368d000 - 0x38945ae AWSSCL PEF binary: AWSSCL
    0x3895000 - 0x3905b22 WebAccessUtils.dll PEF binary: WebAccessUtils.dll
    0x6d0e000 - 0x6d1efff com.adobe.coretech.adobesplashkit AdobeSplashKit version 1.0 (1.0) /Applications/Adobe Illustrator CS/Illustrator CS.app/Contents/Frameworks/AdobeSplashKit.framework/AdobeSplashKit
    0x6e7a000 - 0x7117512 PEF binary:
    0x7118000 - 0x717c4ed WebAccesHttp.dll PEF binary: WebAccesHttp.dll
    0x717c4f0 - 0x7202362 WAHttplibwwwCarbon(R) PEF binary: WAHttplibwwwCarbon(R)
    0x85bb000 - 0x85bb537 3D.localized PEF binary: 3D.localized
    0x862b000 - 0x8638a44 Navigator PEF binary: Navigator
    0x863d000 - 0x865e179 Links Palette PEF binary: Links Palette
    0x8664000 - 0x869b193 Layers Palette PEF binary: Layers Palette
    0x883d000 - 0x8858b92 FindReplaceUI PEF binary: FindReplaceUI
    0x8875000 - 0x8891f50 Calligraphic Brush Tool PEF binary: Calligraphic Brush Tool
    0x8892000 - 0x889ead3 KinsokuDlg PEF binary: KinsokuDlg
    0x88ff000 - 0x8902623 Pucker and Bloat PEF binary: Pucker and Bloat
    0x894b000 - 0x894e345 Geometry Suite PEF binary: Geometry Suite
    0x8995000 - 0x899cfdf Roughen PEF binary: Roughen
    0x89dd000 - 0x89eb37a MojiKumiUI PEF binary: MojiKumiUI
    0x8af6000 - 0x8afc9fe Tweak PEF binary: Tweak
    0x8b04000 - 0x8b04fff com.apple.URLMount.AFPPlugin 1.1.6 /System/Library/Filesystems/URLMount/afp.URLMounter/Contents/MacOS/afp
    0x8b1c000 - 0x8b225c5 ArtConverters PEF binary: ArtConverters
    0x8b4b000 - 0x8b7edc0 Art Brush Tool PEF binary: Art Brush Tool
    0x8bb0000 - 0x8bc09fb Drop Shadow PEF binary: Drop Shadow
    0x8c58000 - 0x8c5f079 Path Construction Suiteuite PEF binary: Path Construction Suiteuite
    0x8c6f000 - 0x8c824f6 FuzzyEffect PEF binary: FuzzyEffect
    0x8c99000 - 0x8cd85ab Scribble PEF binary: Scribble
    0x8d92000 - 0x8dd5f21 Offset Path PEF binary: Offset Path
    0xb3b8000 - 0xb41ce28 Photoshop Adapter PEF binary: Photoshop Adapter
    0xb51d000 - 0xb5265fd Framework Server PEF binary: Framework Server
    0xb608000 - 0xb87a333 ADM Plugin PEF binary: ADM Plugin
    0xb901000 - 0xb90ce4d ADM-PNG PEF binary: ADM-PNG
    0xb90d000 - 0xb930cc8 Action PEF binary: Action
    0xb931000 - 0xb94058a ZString PEF binary: ZString
    0xb941000 - 0xb965662 ASDataStream PEF binary: ASDataStream
    0xb973000 - 0xb980f81 Flatten PEF binary: Flatten Transparencyred/Flatten
    0xb99d000 - 0xb9b8642 FOConver PEF binary: FOConversionSuitequired/FOConver
    0xb9b9000 - 0xba0b469 AIPortCarbonLib PEF binary: AIPortCarbonLib
    0xba71000 - 0xbab0f36 PDF Suite PEF binary: PDF Suite
    0xbab1000 - 0xbb45794 PDFPortCarbonLib PEF binary: PDFPortCarbonLib
    0xbb79000 - 0xbbb09fd Pencil Tool PEF binary: Pencil Tool
    0xbbba000 - 0xbbccbfa Rasterize PEF binary: Rasterize
    0xbbd1000 - 0xbc1413b Art Style PEF binary: Art Style
    0xbc23000 - 0xbc562c6 Brush Manager PEF binary: Brush Manager
    0xbc6b000 - 0xbcc348e Envelope and Warplustrator%20CS PEF binary: Envelope and Warplustrator%20CS/
    0xbcdd000 - 0xbd3ab96 Paint Style Palettes PEF binary: Paint Style Palettes
    0xbd44000 - 0xbea59c4 Scripting Supporti PEF binary: Scripting Supporti
    0xbea6000 - 0xbef622a ScCoreCLib PEF binary: ScCoreCLib
    0xbef7000 - 0xbf5f56c ExtendScriptCLib PEF binary: ExtendScriptCLib
    0xbff2000 - 0xc001991 <Unknown disk fragment> PEF binary: <Unknown disk fragment>
    0xc013000 - 0xc03a487 Swatch Libraries)com.apple.print.PaperInfo.ppd.PMPaperName PEF binary: Swatch Libraries)com.apple.print.PaperInfo.ppd.PMPaperName
    0xc054000 - 0xc0733f6 Symbol Palette PEF binary: Symbol Palette
    0xc07c000 - 0xc082759 Tool Selector PEF binary: Tool Selector
    0xc083000 - 0xc0bec1c Variables Palettelug-ins.localiz PEF binary: Variables Palettelug-ins.localiz
    0xc0d1000 - 0xc0d6abd TextWrapDlg PEF binary: TextWrapDlg
    0xc0ea000 - 0xc25a083 SVG Format PEF binary: SVG Format
    0xc25b000 - 0xc33ed47 SVGExportCarbon PEF binary: SVGExportCarbon
    0xc33f000 - 0xc62af21 SVGRECarbon PEF binary: SVGRECarbon
    0xc76e000 - 0xc79aeb2 Slicing PEF binary: Slicing
    0xc7a8000 - 0xc7ea545 Pathfinder Suite PEF binary: Pathfinder Suite
    0xc7f8000 - 0xc80c728 Expand Suite PEF binary: Expand Suite
    0xc869000 - 0xc86e962 Shape Construction Suite PEF binary: Shape Construction Suite
    0xc875000 - 0xc8a1e45 Live Blends PEF binary: Live Blends
    0xc8ae000 - 0xc8d29b5 Snap PEF binary: Snap
    0xc8dc000 - 0xcdc0e6a Save for Web PEF binary: Save for Web
    0xd0fa000 - 0xd101d45 Tool Palette PEF binary: Tool Palette
    0xd102000 - 0xd16dddb Symbolism PEF binary: Symbolism
    0xd1dd000 - 0xd1e7f14 Magic Wand PEF binary: Magic Wand
    0xd215000 - 0xd2593b7 Flare PEF binary: Flare
    0xd2aa000 - 0xd2ba496 Bounding Box PEF binary: Bounding Box
    0xd405000 - 0xd41c5d6 Advanced Select PEF binary: Advanced Select
    0xd4b6000 - 0xd4b9b27 Change Case PEF binary: Change Case
    0xdd85000 - 0xddab9fd MPS Export PEF binary: MPS Export
    0xddbb000 - 0xddbc5fe MPS Common PEF binary: MPS Common
    0xdfec000 - 0xdff99c8 Pathfinderb PEF binary: Pathfinderb
    0xe095000 - 0xe0a4dfd Transparency Palette PEF binary: Transparency Palette
    0xe0a9000 - 0xe0b1708 Transform Paletteette PEF binary: Transform Paletteette
    0xe0b2000 - 0xe0bb8db Transform Each PEF binary: Transform Each
    0xe0c0000 - 0xe0eb629 SVG Filter Effectlustrator%20CS PEF binary: SVG Filter Effectlustrator%20CS/
    0xe140000 - 0xe18f61e Flattening Preview5{ PEF binary: Flattening Preview5{
    0xe1a3000 - 0xe1b0d68 FileClipboardPreflustrator%20CS PEF binary: FileClipboardPreflustrator%20CS/
    0xe1b5000 - 0xe1c2160 Document Info PEF binary: Document Info
    0xe1c3000 - 0xe221419 CharParaStylesli PEF binary: CharParaStylesli
    0xe239000 - 0xe2c6e0e Asset Management PEF binary: Asset Management
    0xe2c7000 - 0xe3b436d FileInfo.dll PEF binary: FileInfo.dll
    0xe41e000 - 0xe436186 Alternate Glyphs PEF binary: Alternate Glyphs
    0xe43c000 - 0xe441b14 Align Palette PEF binary: Align Palette
    0xe446000 - 0xe45afdb Adobe Online PEF binary: Adobe Online
    0xe460000 - 0xe499458 Action Palette PEF binary: Action Palette
    0xe4ba000 - 0xe6816a5 AI3DVMX.shlb PEF binary: AI3DVMX.shlb
    0xe6f1000 - 0xe74f36a PDF Format PEF binary: PDF Format
    0xe771000 - 0xe81caf5 ADMEveParser PEF binary: ADMEveParser
    0xf7f5000 - 0xf7fdfff com.apple.print.converter.plugin 4.3 (157.7) /System/Library/Printers/CVs/Converter.plugin/Contents/MacOS/Converter
    0xfc69000 - 0xfc732c9 DiffusionRasterI PEF binary: DiffusionRasterI
    0x78e00000 - 0x78e07fff libLW8Utils.dylib /System/Library/Printers/Libraries/libLW8Utils.dylib
    0x79200000 - 0x7923efff libLW8Converter.dylib /System/Library/Printers/Libraries/libLW8Converter.dylib
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd2fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918eefff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91902000 - 0x91927fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193a000 - 0x9197cfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91998000 - 0x919acfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ba000 - 0x91a00fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a17000 - 0x91adefff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2c000 - 0x91b41fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b46000 - 0x91b64fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6a000 - 0x91c21fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c70000 - 0x91c74fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c76000 - 0x91cdefff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce3000 - 0x91d20fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d27000 - 0x91d40fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d45000 - 0x91d48fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4a000 - 0x91e28fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e48000 - 0x91e48fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4a000 - 0x91f2ffff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f37000 - 0x91f56fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc2000 - 0x92030fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203b000 - 0x920d0fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ea000 - 0x92672fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a5000 - 0x929d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a00000 - 0x92aeefff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af1000 - 0x92b79fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bba000 - 0x92de5fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f03000 - 0x92f0dfff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x92fb3000 - 0x92fb3fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb5000 - 0x92fc9fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe1000 - 0x92ff1fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffd000 - 0x93012fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93024000 - 0x930abfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930bf000 - 0x930cafff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d4000 - 0x93101fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311b000 - 0x9312afff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93136000 - 0x9319cfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931cd000 - 0x9321cfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324a000 - 0x93267fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93279000 - 0x93286fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9328f000 - 0x9359dfff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x941de000 - 0x942a2fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f4000 - 0x942f4fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9475b000 - 0x9476afff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94772000 - 0x9477ffff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947c5000 - 0x947defff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947e5000 - 0x94a93fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b57000 - 0x94bc8fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94f9d000 - 0x94fbafff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x954c0000 - 0x955eefff edu.mit.Kerberos 5.5.24 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96045000 - 0x9604afff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x96559000 - 0x9656ffff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96571000 - 0x96591fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x9659f000 - 0x965adfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x965b5000 - 0x965c8fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x97b99000 - 0x97bd7fff com.apple.AppleShareClientCore 1.5.2 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x9a501000 - 0x9a502fff com.apple.iokit.dvcomponentglue 1.7.9 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xeab00000 - 0xeab25fff libConverter.dylib /System/Library/Printers/Libraries/libConverter.dylib
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.0), 2 GHz, 3 GB
    Graphics: NVIDIA GeForce 6600LE, GeForce 6600LE, PCI, 128 MB
    Memory Module: DIMM0/J6700, 512 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 512 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM4/J7100, 1 GB, DDR2 SDRAM, PC2-3200U-266
    Memory Module: DIMM5/J7200, 1 GB, DDR2 SDRAM, PC2-3200U-266
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: GeForce 6600LE, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: Maxtor 6L160M0, 152.67 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Wireless Optical Mouse® 1.00, Microsoft, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    Hi there,
    You could try performing a clean installation: [[Knowledge Base Article]] :
    Some Firefox issues can be resolved by downloading a new Firefox installer from Mozilla.com, then closing Firefox, deleting the Firefox application folder (program files) and reinstalling Firefox. If this does not help, or if you would rather completely remove Firefox and start over instead of completing all the troubleshooting steps, follow these steps:
    1. Download the latest official version of Firefox from Mozilla.com.
    * You should avoid unofficial download sites that bundle Firefox with other software such as the Google Toolbar.
    2. If you wish to retain your current profile, you should make a backup copy of it. See Backing up your information for instructions.
    3. Uninstall Firefox and make sure you remove the Firefox application (program) folder and your Firefox personal data (user data and settings) - see Uninstalling Firefox for instructions.
    4. Reinstall Firefox - see Installing Firefox for instructions.
    5. When Firefox is started for the first time, the Import Wizard will appear and a new profile will be created.
    6. Verify that the issue no longer appears.
    7. If you made a backup of your old profile and wish to restore your old information, see Recovering important data from an old profile. For troubleshooting purposes, only copy the files corresponding to your bookmarks and saved passwords.
    8. Reinstall your extensions and themes one by one to determine if any specific one is causing the issue.
    source: https://support.mozilla.com/en-US/kb/Basic+Troubleshooting?s=clean+installation&as=s#Clean_reinstall

  • How can i validate the data in the control file?

    Consider that the SQLLoader reads the Input data File from the path and it loads the data into the tables based up on the descrition specified in the control File.
    First, the table to be filled is created:
    create table sql_loader_1 ( load_time date, field_1 Numeric, field_2 varchar2(10)
    Sample Control File :
    load_1.ctl
    load data
    infile 'load_1.dat' "str '\r\n'"
    insert into table sql_loader_1
    load_time sysdate,
    field_2 position( 1:10),
    field_1 position(11:20)
    Note that the positions 11 through 20 are loaded into field_1 and positions 1 through 10 into field_2. The field load_time is filled with the current time (sysdate) of the load.
    Here's the data. The name of the file (load_1.dat) had been specified with the infile statement in the control file.
    load_1.dat
    0123456789abcdefghij
    foo bar
    here comes a very long line
    and the next is
    short
    Here i want to validate the field_1 (Numeric Datatype) since the data file contains the character value (i.e)abcdefghij

    Good question for this forum:
    Export/Import/SQL Loader & External Tables
    Werner

  • Using a Variable to Substitute the path\filename of a Batch file in the Start_Process Command

    I am trying to write a script that will execute a batch file on a remote Windows server.
    This line below is basically what I'm trying to do and it works without error, however I would like to use a variable for the path\filename of the batch file.
    invoke-command -computername QSC-A-ICE01 -scriptblock {Start-Process "\\qsc-a-ice01\D$\Test\RunThis.bat" }
    If I try to use a variable as in this example below I receive the error below. The error seems to indicate it's it expecting a "FilePath" parameter. Is this true? How would I change this script to make it work when substituting a variable.
    $MyProcess =  "\\qsc-a-ice01\D$\Test\RunThis.bat"
    Write-Host $MyProcess
    invoke-command -computername QSC-A-ICE01 -scriptblock {Start-Process "$MyProcess"}
    This is the error text I receive when using a variable:
     PS C:\Windows\system32> D:\Test\ThisWorks.ps1
    \\qsc-a-ice01\D$\Test\RunThis.bat
    Cannot validate argument on parameter 'FilePath'. The argument is null or empty. Supply an argument that is not null or
    empty and then try the command again.
        + CategoryInfo          : InvalidData: (:) [Start-Process], ParameterBindingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.StartProcessCommand
        + PSComputerName        : QSC-A-ICE01
    PS C:\Windows\system32>

    Mike,
    Thanks for providing the link, it was very informative. The link described how to use the args in a ScriptBlock and provided me with an explaination as to why it works the way it does on a remote server. This is my 1st post to the forum and I don't know
    how the points system works yet.
    I would like to split the points , but I don't see that this is possible.
    You're very welcome, I'm glad that the information was helpful.
    You can mark as many posts as answers as you'd like, there's not a restriction on only having a single answer per thread. You certainly don't have to though, David's answer is more than sufficient to help any future people who find this thread.
    Also, on a side note, you may want to post in the thread below. Posting there will get your account verified so you'll be able to post links and images.
    http://social.technet.microsoft.com/Forums/en-US/200c33c9-abe9-494a-953a-bf53fccb3c76/verify-your-account-11?forum=reportabug
    (Future people - don't use that link.
    Click here and look for the current thread as a sticky.)
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Trying to understand the PATH variable

    Greetings,
    I read that the PATH variable specifies a set of directories where executable programs are located. But if I use "echo $PATH" in Terminal to view the directories, it does not list the Applications folder or the Downloads folder or any of the other places I have programs. So how to they run?
    Thanks

    The PATH variable is a list of search paths used by a particular shell. Basically, when you enter a command in a command-line context (such as from within Terminal.app), the unix system will search for executables in all of the folders listed in the PATH variable, running the first it finds.
    Apps that are run from the GUI are launched by the launch services daemon, which takes care of all the details of locating and loading executable. Launch services maintains a database of app locations, so it wouldn't need to search along unix PATHs to find what it needs.

  • Information Broadcast Email File - Where is the file in Unix directory?

    Hi,
    I am using Information Broadcasting to email the BI report.   We use Unix as the application server.
    In transaction SOSV, I can get detailed information on the file (attachment) and the send status.  There is a requirement to encrypt the file in Unix server.   Does anyone know where the file resides in Unix when the report is generated from Information Broadcasting?   What's the Unix directory?
    Any information would be appreciated.
    Thank you.
    Rebecca

    I added the path of the servlet.jar to the CLASSPATH. Now my modified
    file content is as follows:
    WINDOWS 2000 Environmental variable changes:(CLASSPATH)
    C:\Program Files\PhotoDeluxe BE 1.1\AdobeConnectables;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;C:\jakarta-tomcat-4.1.12\common\lib\servlet.jar
    AUTOEXEC.BAT:
    set path=%path%;c:\onnet32
    SET PATH=C:\jdk1.3.1\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;
    SET JAVA_HOME=C:\jdk1.3.1
    SET CATALINA_HOME=C:\jakarta-tomcat-4.1.12
    SET CLASSPATH=.;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;C:\jakarta-tomcat-4.1.12\common\lib\servlet.jar
    With this I am executing the command: javac test.java. However, it is still giving lot of error messages
    All the messages are 'cannot resolve symbol' associated with the Servlet class, Servlet Request, Server Exception etc. In the very first error message it states that: 'package javax.servlet does not exist'.
    I would appreciate any help. Thanks in advance.

  • PatchPro download failure | Failed to validate the digital signature

    Hi,
    Patchpro failing to validate some patches on 2 of our servers. One is throwing an error (1, below), the other is echoing an error to screen(2).
    We are patching around a dozen servers (all SPARC, versions 8, 9 and 10) and these are the only 2 with problems.
    Thanks for any help you can provide.
    1)
    Sol 9, SunFire 440
    Error: PatchPro failed: ERROR: Failed to validate the digital signature(s).
    /var/tmp/patches/124215-01.jar.tmp cannot be validated.
    2)
    Sol 8, SunFire 890
    117557-04 cannot be validated.
    com.sun.patchpro.model.PatchProRuntimeException: Unexpected throwable
    at com.sun.patchpro.cli.PatchServices.waitForThread(PatchServices.java:1284)
    at com.sun.patchpro.cli.PatchServices.downloadAllPatches(PatchServices.java:835)
    at com.sun.patchpro.cli.PatchServices.main(PatchServices.java:502)
    Caused by:
    java.lang.Throwable: ERROR: Failed to validate the digital signature(s).
    at com.sun.patchpro.model.PatchProModel$InnerDownloadPatchThread.downloadPatchFailed(PatchProModel.java:2855)
    at com.sun.patchpro.server.GroupPatchDownloader.dispatchFailedEvent(GroupPatchDownloader.java:384)
    at com.sun.patchpro.server.GroupPatchDownloader.downloadPatchFailed(GroupPatchDownloader.java:335)
    at com.sun.patchpro.server.ServerPatchServiceProvider.dispatchFailedEvent(ServerPatchServiceProvider.java:2577)
    at com.sun.patchpro.server.ServerPatchServiceProvider.validatePatchBundle(ServerPatchServiceProvider.java:2196)
    at com.sun.patchpro.server.ServerPatchServiceProvider.requestDownload(ServerPatchServiceProvider.java:1780)
    at com.sun.patchpro.server.ServerPatchServiceProvider.performDownloadPatches(ServerPatchServiceProvider.java:1082)
    at com.sun.patchpro.server.ServerPatchServiceProvider.downloadPatches(ServerPatchServiceProvider.java:860)
    at com.sun.patchpro.server.PatchServerProxy.downloadPatches(PatchServerProxy.java:142)
    at com.sun.patchpro.server.GroupPatchDownloader.downloadPatches(GroupPatchDownloader.java:124)
    at com.sun.patchpro.model.PatchProModel.performPatchDownload(PatchProModel.java:1932)
    at com.sun.patchpro.model.PatchProStateMachine$10.run(PatchProStateMachine.java:526)
    at com.sun.patchpro.util.State.run(State.java:266)
    at java.lang.Thread.run(Thread.java:536)
    #

    Not Working - Solaris9
    ===========
    uname -a
    =========
    SunOS 05alpha 5.9 Generic_118558-28 sun4u sparc SUNW,Sun-Fire-V440
    smpatch get
    ===========
    # smpatch get
    Unknown subcommand was specified.
    Usage:
    smpatch add -i <patchid> [-i <patchid> ...] |
    -x idlist=<patchlist_file> [-d <patchdir>] [-h] where:
    add Subcommand used to install the patches.
    -d <patchdir>
    Used to specify the directory where patches are
    expected to be installed from.
    -h Used to display help information for the add
    subcommand.
    -i <patchid>
    Used to specify the id of the patch to install.
    One or more patches can be specified using this
    option.
    -x idlist=<patchlist_file>
    Used to specify the path of the file that contains
    a list of patches to install.
    Usage:
    smpatch analyze [-h] where:
    analyze Subcommand used to analyze a host and list needed
    patches.
    -h Used to display help information for the analyze
    subcommand.
    Usage:
    smpatch download [-i <patchid> [-i <patchid> ...] |
    -x idlist=<patchlist_file>] [-d <patchdir>] [-h] where:
    download Subcommand used to download patches from SunSolve.
    -d <patchdir>
    Used to specify the directory where the patches
    from SunSolve are to be downloaded.
    -h Used to display help information for the download
    subcommand.
    -i <patchid>
    Used to specify the id of the patch to download.
    One or more patches can be specified using this
    option.
    -x idlist=<patchlist_file>
    Used to specify the path of the file that contains
    a list of patches to download.
    Usage:
    smpatch remove -i <patchid> [-h] where:
    remove Subcommand used to remove a patch.
    -h Used to display help information for the remove
    subcommand.
    -i <patchid>
    Used to specify the id of the patch to remove.
    Usage:
    smpatch update [-d <patchdir>] [-h] where:
    update Subcommand used to download and install required
    patches for the local host.
    -d <patchdir>
    Used to specify the directory where the patches
    from SunSolve which are required by the local host
    are to be downloaded and installed from.
    -h Used to display help information for the update
    subcommand.
    smpatch analyze
    ==============
    smpatch analyze
    Assessing required patches for machine "05alpha/150.3.84.207" . Please wait...
    113434-33 SunOS 5.9: /usr/snadm/lib Library and Differential Flash Patch
    111711-16 32-bit Shared library patch for C++
    111712-16 64-Bit Shared library patch for C++
    111722-05 SunOS 5.9: Math Library (libm) patch
    117560-04 SunOS 5.9: Microtasking libraries (libmtsk) patch
    115835-03 SunOS 5.9: Ghostscript patch
    114344-21 SunOS 5.9: kernel/drv/arp Patch
    117453-01 SunOS 5.9: libwrap Patch
    114131-03 SunOS 5.9: multi-terabyte disk support - libadm.so.1 patch
    120441-03 SunOS 5.9: libsec patch
    113319-24 SunOS 5.9: libnsl nispasswdd patch
    112960-40 SunOS 5.9: patch libsldap ldap_cachemgr libldap
    118465-03 SunOS 5.9: rcm_daemon Patch
    123762-01 SunOS 5.9: Chicago audio driver Patch
    113318-26 SunOS 5.9: patch /kernel/fs/nfs and /kernel/fs/sparcv9/nfs
    114718-05 SunOS 5.9: usr/kernel/fs/pcfs Patch
    115544-02 SunOS 5.9: nss_compat patch
    118463-01 SunOS 5.9: du Patch
    116016-03 SunOS 5.9: /usr/sbin/logadm patch
    123182-01 SunOS 5.9: iwscn patch
    115542-02 SunOS 5.9: nss_user patch
    116014-06 SunOS 5.9: /usr/sbin/usermod patch
    117433-02 SunOS 5.9: FSS FX RT Patch
    117431-01 SunOS 5.9: nss_nis Patch
    123770-01 SunOS 5.9: Netra-CP3010 platform libraries patch
    118558-35 SunOS 5.9: Kernel Patch
    116561-15 SunOS 5.9: Volume System H/W Series platmod patch
    123769-01 SunOS 5.9: Netra-CP3010 platform binaries patch
    115336-04 SunOS 5.9: /usr/bin/tar, /usr/sbin/static/tar Patch
    123767-01 SunOS 5.9: locator patch
    117426-03 SunOS 5.9: ctsmc and sc_nct driver patch
    123766-02 SunOS 5.9: pcf8584/pmugpio/ebus patch
    121319-01 SunOS 5.9: devfsadmd_mod.so Patch
    123765-01 SunOS 5.9: Chicago platform Patch
    123764-01 SunOS 5.9: Boston platform Patch
    123763-02 SunOS 5.9: Sun Fire V215/V245 platform Patch
    121316-02 SunOS 5.9: kernel/sys/doorfs Patch
    121314-01 SunOS 5.9: tl driver patch
    120445-01 SunOS 5.9: Toshiba platform token links (TSBW,Ultra-3i)
    112964-16 SunOS 5.9: /usr/bin/ksh Patch
    113032-04 SunOS 5.9: /usr/sbin/init Patch
    114259-02 SunOS 5.9: usr/sbin/psrinfo Patch
    116543-04 SunOS 5.9: vmstat Patch
    112958-04 SunOS 5.9: patch pci.so
    112954-15 SunOS 5.9: uata Driver Patch
    122716-01 SunOS 5.9: kernel/fs/lofs patch
    122713-01 SunOS 5.9: expr patch
    117168-02 SunOS 5.9: mpstat Patch
    116498-02 SunOS 5.9: bufmod Patch
    116495-03 SunOS 5.9: specfs Patch
    117160-01 SunOS 5.9: /kernel/misc/krtld patch
    118586-02 SunOS 5.9: cp/ln/mv & XPG4 cp/ln/mv Patch
    120025-01 SunOS 5.9: ipsecconf Patch
    117155-10 SunOS 5.9: pcipsy Patch
    116486-03 SunOS 5.9: tsalarm Driver Patch
    121998-01 SunOS 5.9: two-key mode fix for 3DES Patch
    116482-02 SunOS 5.9: modload Utils Patch
    117746-04 SunOS 5.9: patch platform/sun4u/kernel/drv/sparcv9/pic16f819
    121992-01 SunOS 5.9: fgrep Patch
    120768-01 SunOS 5.9: grpck patch
    119438-01 SunOS 5.9: usr/bin/login Patch
    116510-02 SunOS 5.9: wscons Patch
    114224-06 SunOS 5.9: csh Patch
    116670-04 SunOS 5.9: gld Patch
    114383-04 SunOS 5.9: Enchilada/Stiletto - pca9556 driver
    114370-05 SunOS 5.9: libumem.so.1 patch
    124498-01 SunOS 5.9: tail patch
    117483-01 SunOS 5.9: ntwdt Patch
    112908-27 SunOS 5.9: gl_kmech_krb5 Patch
    117480-01 SunOS 5.9: pkgadd Patch
    117123-07 SunOS 5.9: wanboot Patch
    115030-03 SunOS 5.9: Multiterabyte UFS - patch mount
    113335-04 SunOS 5.9: devinfo Patch
    113493-03 SunOS 5.9: libproc.so.1 Patch
    113330-03 SunOS 5.9: rpcbind Patch
    115028-02 SunOS 5.9: patch /usr/lib/fs/ufs/df
    117471-03 SunOS 5.9: fifofs Patch
    118897-01 SunOS 5.9: stc Patch
    115022-03 SunOS 5.9: quota utilities
    113720-02 SunOS 5.9: rootnex Patch
    113329-18 SunOS 5.9: lp Patch
    123056-01 SunOS 5.9: ldterm patch
    114349-04 SunOS 5.9: sbin/dhcpagent Patch
    113278-15 SunOS 5.9: NFS Daemon Patch
    113471-09 SunOS 5.9: truss Patch
    113277-48 SunOS 5.9: sd and ssd Patch
    117457-01 SunOS 5.9: elfexec Patch
    113077-18 SunOS 5.9: /platform/sun4u/kernal/drv/su Patch
    113072-08 SunOS 5.9: patch /usr/sbin/format
    112839-08 SunOS 5.9: patch libthread.so.1
    114331-02 SunOS 5.9: power Patch
    112998-04 SunOS 5.9: patch /usr/sbin/syslogd
    114133-03 SunOS 5.9: mail Patch
    119937-02 SunOS 5.9: inetboot patch
    115553-23 SunOS 5.9: USB drivers patch
    117443-01 SunOS 5.9: libkvm Patch
    114329-02 SunOS 5.9: /usr/bin/pax Patch
    114128-03 SunOS 5.9: sd_lun patch
    119929-01 SunOS 5.9: /usr/bin/xargs patch
    113459-05 SunOS 5.9: udp patch
    116009-05 SunOS 5.9: sgcn & sgsbbc patch
    123761-04 SunOS 5.9: PCIE/Fire drivers Patch
    123760-01 SunOS 5.9: platform driver Patch
    116557-04 SunOS 5.9: sbd Patch
    120241-04 SunOS 5.9: bge patch
    116530-02 SunOS 5.9: bge.conf Patch
    116488-03 SunOS 5.9: Lights Out Management (lom) patch
    117131-01 SunOS 5.9: adm1031 Patch
    117124-12 SunOS 5.9: platmod, drmach, dr, ngdr, & gptwocfg Patch
    118539-02 SunOS 5.9: schpc Patch
    118472-01 SunOS 5.9: pargs Patch
    122002-01 SunOS 5.9: kstat patch
    122709-01 SunOS 5.9: /usr/bin/dc patch
    117067-04 SunOS 5.9: awk nawk oawk Patch
    115259-03 SunOS 5.9: patch usr/lib/acct/acctcms
    112959-03 SunOS 5.9: patch libfru
    112913-02 SunOS 5.9: fruadm Patch
    113027-06 SunOS 5.9: libfrureg.so.1 Patch
    114564-09 SunOS 5.9: /usr/sbin/in.ftpd Patch
    117441-01 SunOS 5.9: FSSdispadmin Patch
    118191-01 gtar patch
    114818-06 GNOME 2.0.0: libpng Patch
    117177-02 SunOS 5.9: lib/gss module Patch
    116340-05 SunOS 5.9: gzip and Freeware info files patch
    113579-09 SunOS 5.9: ypserv/ypxfrd Patch
    122673-01 SunOS 5.9: sockio.h header patch
    116474-03 SunOS 5.9: libsmedia Patch
    116669-20 SunOS 5.9: md Patch
    112965-06 SunOS 5.9: patch /kernel/drv/sparcv9/eri
    112838-12 SunOS 5.9: pcicfg Patch
    117127-02 SunOS 5.9: header Patch
    123768-02 SunOS 5.9: byteorder.h and ddi_impldefs.h patch
    121321-03 SunOS 5.9: ldap Patch
    116231-03 SunOS 5.9: llc2 Patch
    122976-01 SunOS 5.9: /usr/lib/mdb/kvm/ipc.so Patch
    117179-01 SunOS 5.9: nfs_dlboot Patch
    121194-01 SunOS 5.9: usr/lib/nfs/statd Patch
    116502-03 SunOS 5.9: mountd Patch
    113320-06 SunOS 5.9: patch se driver
    114731-09 SunOS 5.9: kernel/drv/glm Patch
    114716-02 SunOS 5.9: usr/bin/rcp Patch
    112915-04 SunOS 5.9: snoop Patch
    116778-01 SunOS 5.9: in.ripngd patch
    119447-01 SunOS 5.9: ses Patch
    114356-08 SunOS 5.9: /usr/bin/ssh Patch
    113273-11 SunOS 5.9: /usr/lib/ssh/sshd Patch
    113575-08 SunOS 5.9: sendmail Patch
    116780-02 SunOS 5.9: scmi2c Patch
    112972-17 SunOS 5.9: patch /usr/lib/libssagent.so.1 /usr/lib/libssasnmp.so.1 mibiisa
    122485-01 SunOS 5.9: 1394 mass storage driver patch
    113716-02 SunOS 5.9: sar & sadc Patch
    117473-01 SunOS 5.9: fwtmp Patch
    116472-02 SunOS 5.9: rmformat Patch
    120443-01 SunOS 5.9: sed core dumps on long lines
    121588-01 SunOS 5.9: /usr/xpg4/bin/awk Patch
    123058-01 SunOS 5.9: /usr/xpg4/bin/more Patch
    123184-02 SunOS 5.9: Bug fixes for Arabic fonts
    113584-17 SunOS 5.9: yesstr, nostr nl_langinfo() strings incorrect in S9
    117100-04 SunOS 5.9: New Euro UTF-8 locales needed
    114600-06 SunOS 5.9: vlan driver patch
    112817-29 SunOS 5.9: Sun GigaSwift Ethernet 1.0 driver patch
    113042-16 SunOS 5.9: qlc driver patch
    113041-13 SunOS 5.9: fcip driver patch
    113039-17 SunOS 5.9: Sun StorEdge Traffic Manager patch
    113040-21 SunOS 5.9: fctl/fp/fcp driver patch
    117595-05 SunOS 5.9: Manual Page updates for Solaris 9
    112622-19 SunOS 5.9: M64 Graphics Patch
    116126-05 Fixes to general release PatchPro 2.2
    119480-10 SUNWppro SUNWsy1cf SUNWsdb Bug fixes and updated keystore file with new patch signing certificate.
    117985-03 SunOS 5.9: XIL 1.4.2 Loadable Pipeline Libraries
    114538-38 SunOS 5.9: Sun XVR-100 Graphics Accelerator Patch
    112661-11 SunOS 5.9: IIIM and X Input & Output Method patch
    114677-12 SunOS 5.9: International Components for Unicode Patch
    116039-02 SunOS 5.9: sun4u platform links patch
    112804-02 CDE 1.5: sdtname patch
    113244-09 CDE 1.5: dtwm patch
    114312-02 CDE1.5: GNOME/CDE Menu for Solaris 9
    119976-01 CDE 1.5: dtterm patch
    112771-33 Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 9
    117728-01 CDE1.5: dthello patch
    124215-01 CDE 1.5: dtterm patch
    112785-56 X11 6.6.1: Xsun patch
    112807-18 CDE 1.5: dtlogin patch
    118759-01 X11 6.6.1: Font Administration Tools patch
    117577-03 X11 6.6.1: TrueType fonts patch
    117663-02 X11 6.6.1: xwd patch
    113764-05 X11 6.6.1: keyboard patch
    /etc/release
    ==========
    # cat /etc/release
    Solaris 9 9/04 s9s_u7wos_09 SPARC
    Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 29 June 2004
    CLUSTER
    =========
    # cat /var/sadm/system/admin/CLUSTER
    CLUSTER=SUNWCuser
    pkginfo
    =======
    # pkginfo -l SUNWpmgr SUNWppror SUNWpprou
    PKGINST: SUNWpmgr
    NAME: Solaris Patch Manager Base 1.0.1 1.0.1
    CATEGORY: system
    ARCH: all
    VERSION: 1.0.1
    BASEDIR: /
    VENDOR: Sun Microsystems, Inc.
    DESC: Patch Manager CLI for Solaris 2.6, 2.7 and 2.8
    PSTAMP: ute15320031103164007
    INSTDATE: May 16 2006 14:51
    HOTLINE: Please contact your local service provider
    STATUS: completely installed
    FILES: 4 installed pathnames
    3 shared pathnames
    3 directories
    1 executables
    9 blocks used (approx)
    ERROR: information for "SUNWppror" was not found
    ERROR: information for "SUNWpprou" was not found

  • How to get the path of OS(whether it is linux or Windows or Mac OS)

    hi..
    i want to know the path of the operating system currently running(whatever it is windows or Linux or Mac).Is it possible to know.... please respond me if anyone knows

    Bharath.N.Kumar wrote:
    why im dying to write a file on OS drive is, my application is portable and he can carry that app in a Compact-Disc(CD), can run on any machine(OS).If he runs that application from CD,the file generated cant be written on CD,so that i need to create this file on a Common folder(folder which must exists and independent of OS) in that system.Since the "directory where the OS resides" is
    a.) a pretty pointless question in Unix and
    b.) definitely not writable by most users on all major operating systems
    I strongly suggest you choose another directory. "user.home" has already been mentioned. It is a System property that tells you where the current users home directory is. That's almost universally available and almost always writable, so that's definitely the better choice.

  • Is there a way to find libjvm.so on Linux without it being in the path?

    On Windows, I know it's possible to find the location of jvm.dll using the RuntimeLib key in the registry, and I've used this technique in a program. Is there a UNIX/Linux equivalent to this?
    In other words, is it possible for me to find out the location of libjvm.so without the user having to enter it manually, or the path to the library be in an environment variable?

    From man ldconfig:
    ldconfig, being a user process, must be run manually and has no means
    of dynamically determining and relinking shared libraries for use by
    ld.so when a new DLL is installed.
    That said, you could run something like locate on the library, and then put it in the LD_LIBRARY_PATH for the user that's running the program.

  • How to set the PATH in Terminal?

    As a newbie to Bash and the Terminal, in connection with installing a new version of Ruby and various add-ons, I have been messing around with changing the PATH via various methods I've found on the internet, and trying to add a new directory to my PATH. Unfortunately, I cannot figure out how to set the PATH correctly. Here is what I understand so far:
    1. Bash first looks to ".bash_profile" in the home directory for PATH settings.
    2. If none, Bash then looks to ".bash_login" for PATH settings.
    3. If none, Bash then looks to ".profile".
    4. If none, Bash then looks to a system file in "/etc/profile" for default PATH settings.
    5. For a new shell after login, Bash looks for a ".bashrc" file.
    I cannot find any of the above files (I have Finder set to show hidden files already). Somehow, following some instructions from the internet without really knowing what I was doing over the past week I have set my PATH as follows:
    /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Users/*****/src:/usr/X11/bin
    but I cannot find the file that is setting this PATH. I have tried creating a new ".bash_profile" shell file and putting it in various places such as "/bin" and "/usr/bin" but the file is not being read.
    * As a temporary workaround I tried using the command "source .bash_profile" upon login to set the PATH using the .bash_profile file that I created, but it does not work.
    * I am able to temporarily alter the path using the command "PATH=/usr/local/bin:$PATH" but this only lasts for an active shell; when I close out and reopen a new shell, it reverts to the default.
    So my questions are:
    Is it correct that there is a "/etc/profile" somewhere that is setting the default PATH? If so where is it? Should I alter it, or create a new ".bash_profile" somewhere to set the PATH? If not, where is my PATH being set? If I should create a new ".bash_profile", what exactly should go in it?
    Thanks in advance for any assistance.

    ... I created a new ".bash_profile" file directly under my home directory and it worked like a charm. Below is the content of the file:
    "PATH=/usr/local/bin:/bin/:/sbin/:/usr/bin/:/usr/sbin/:/Users/******/Ruby:/Users/*******/src:/Users/******/Java Programs/"
    What are the "..."'s? Is that just you, or is the contents of the file actually inside of double quotes?
    is there an 'export PATH' also in the file? As in
    PATH=/usr/local/bin:/bin/:/sbin/:/usr/bin/:/usr/sbin/:/Users/******/Ruby:/Users/*******/src:/Users/******/Java Programs/
    export PATH
    And did you either restart your Terminal session so your .bash_profile was read, or issue a 'source .bash_profile' command to execute the .bash_profile after your change?
    The only remaining problem is that from the home directory, I'm unable to directly run programs in the above-designated subdirectories (without first navigating to the subdirectory containing the file. Is there something wrong with the syntax or order of the directories I put in the path?
    For example: there is a file called "newprogram.rb" in the "Ruby" directory listed above. I should be able to execute it from the home directory using "ruby newprogram.rb" but it does not work. The same command works fine from within the "Ruby" directory.
    Does the 'ruby' command search PATH to find its scripts?
    Have you read the "man ruby" man page to see if it talks about PATH?
    A common Unix feature is that programs and scripts with the executable bit set, and are located in a PATH directory, will be run if you just type their names.
    For example, if the first line of newprogram.rb script starts with
    #!/usr/bin/ruby
    and if the script is executable
    chmod +x newprogram.rb
    And if it is in a directory in PATH, then just typing
    newprogram.rb
    should run your perl script using /usr/bin/ruby. If you want to use a different version of Ruby, then change the #! line so it point to your version of Ruby. Or if your version of Ruby is found earlier in PATH then the /usr/bin/ruby, you can use
    #!/usr/bin/env ruby
    as your script's first line which will search PATH for 'ruby' and use the first one it finds.
    Message was edited by: BobHarris

  • Seperating file name from the path

    Hi,
    im trying to validate the file path and trying to seperate file name from the path.
    for eg.
    if the path is f:\sapfilepath\doc\ext.txt
    need to get f:\sapfilepath\doc  im looking for a dynamic way of doing this.
    your help will be appreciated.
    Regards,
    ravi.

    Hi,
    Use the function module
    SO_SPLIT_FILE_AND_PATH
    Thanks,
    Naren

Maybe you are looking for

  • Problems with the new flash version.

    Turned on my computer (win 7, ff5) and found that both skype and youtube are crippled. After some digging, it becomes clear that there has been a new flash version and im far from the only one with problems. I try to use the uninstaller - which works

  • Duplicate Vendor Invoice

    Hi All, while doing a direct posting in F-43, i want to avoid the duplicate vendor invoice. For this i know we can go to OMRDC and there we can activate it and also for that particular vendor in XK03 we need to tick the double invoice check and also

  • ICloud and Photos app are not showing full resolution photos

    Since migrating my iPhoto library to Photos, it has had problems showing the full resolution of photos. I initially had "Optimize Mac Storage" selected, but even when I had space available, it would not download the full resolution version of a photo

  • ACS 5.4 snmp problem - sysoid

    I've looked through the posts and haven't found anything on this yet. We have 2 ACSs, 5.4, running on VMs.The ovas were initially deployed via the 5.3 image, then upgraded. The secondary had a storage problem over the weekend and the vm was not backe

  • MAX does not show scanner card

    I'm using an Allen-Bradley 1784-PCDIS PCI scanner card, and it does not show up in MAX. I've un-installed the card, un-installed NI-DNET 1.41, then re-installed NI-DNET, installed the scanner card, and it still doesn't show up. The card does communic