Run exec on cron script carefully

i would like to change permissions of a file after rsync backups a file in my cron script, i was going to append an exec command to this command line, but i would like to know how to do it carefully so im not blowing up any other files.
rsync -a --delete /home/backup/sqldumps /mnt/smb/backup/ &> /dev/null
i was considering something like
rsync -a --delete /home/backup/sqldumps /mnt/smb/backup/ &> /dev/null && -exec chmod 550 {} \;
but i was fearing that it might exec on the entire root, and or not run at the right time on the right file.
im having a hard time finding documentation on the latter portion of the exec command to know what the {} and \; does again.  i forget.....  im assuming that part may not be needed and causes recursion. 
im going about it a bit lazy as well, and to keep the overhead lower, otherwise i would just run the rsync command first, then on the 2nd line do a find exec for a matching file for some criteria.
can anyone shed some light on this?
Last edited by wolfdogg (2014-01-06 18:41:41)

wolfdogg wrote:im having a hard time finding documentation on the latter portion of the exec command to know what the {} and \; does again.
There is no `-exec` command.  There is an -exec option to the `find` command, but you are not running find.  Unless the current man page is out of date, rsync has no -exec option like that.
Further, if you put it after the && you would not be passing an -exec option to rsync.  Instead you'd be trying to run /usr/bin/-exec, or an -exec somewhere else in your path.
The '{}' and \; are documented in the find man page as (again) they are specific to the syntax for find's -exec flag.  They are not a separate command or shell option.

Similar Messages

  • How often should you do the maintenace cron scripts??

    Hi all,
    As the subject suggests, I just like to know how often should you run those maintenace cron scripts???
    thanks...
    Johnny
    * I don't know if this is the place for this question, if not, then I am sorry. *

    macuserguy,
    You may find Dr. Smoke's excellent FAQ about Running the Mac OS X maintenance scripts helpful.
    The FAQ suggests approximately weekly basis (especially if your Mac is shutdown or in sleep mode overnight) though perhaps more frequently if you have a smaller HD as these log files can take up alot of room.
    Hope that helps some,
    littleshoulders [:-)

  • Run cron scripts at startup

    I would like to set up an apple script where I can run all cron scripts as well as repair disk permissions at startup.

    The actual code needed for the script is:
    do shell script "periodic daily weekly monthly" password "yourpass" with administrator privileges
    do shell script "diskutil repairPermissions /" password "yourpass" with administrator privileges
    Copy and paste the code into the Script Editor in the /Applications/AppleScript/ folder, provide your administrator password where the blue text is in this post, save it as an application, and add it to the list of login items for your account in the Accounts pane of System Preferences. If you don't want to store your password in the script:
    display dialog "Your password is required." default answer "" buttons {"Cancel","OK"} default button "OK"
    set the_pass to the text returned of the result
    do shell script "periodic daily weekly monthly" password the_pass with administrator privileges
    do shell script "diskutil repairPermissions /" password the_pass with administrator privileges
    (18701)

  • Why can't cron run one of my scripts [SOLVED]

    I'm confused why cron can't run one of my scripts which runs just fine interactively.  I see no errors in messages.log or crond.log.
    My crontab:
    $ crontab -l
    # * * * * command to be executed
    #| | | | |
    #| | | | +----- day of week (0 - 6) (Sunday=0)
    #| | | +------- month (1 - 12)
    #| | +--------- day of month (1 - 31)
    #| +----------- hour (0 - 23)
    #+------------- min (0 - 59)
    #MAILTO=""
    25 20 * * * ~/bin/cpuz s
    Here is the code to that script:
    run() {
    tmpfile=/tmp/.sensors_unique.txt # temp output
    verbose=/tmp/.verbose_unique.txt # verbose temp output with three decimals
    logfile=/scratch/unique.csv # data file to write
    sensors >$tmpfile && sensors -u >$verbose
    phys=$(grep Physical $tmpfile | cut -c 18-21)
    c0=$(grep "Core 0" $tmpfile | cut -c18-21)
    c1=$(grep "Core 1" $tmpfile | cut -c18-21)
    c2=$(grep "Core 2" $tmpfile | cut -c18-21)
    c3=$(grep "Core 3" $tmpfile | cut -c18-21)
    vcc=$(grep in0_input $verbose | cut -c14-18)
    fan1=$(grep fan1 $tmpfile | cut -c24-27)
    pwm1=$(cat /sys/class/hwmon/hwmon3/device/pwm1)
    per1=$(echo "scale=2; $pwm1/2.55" | bc)
    fan3=$(grep fan3 $tmpfile | cut -c24-27)
    pwm3=$(cat /sys/class/hwmon/hwmon3/device/pwm3)
    per3=$(echo "scale=2; $pwm3/2.55" | bc)
    fan4=$(grep fan4 $tmpfile | cut -c24-27)
    pwm4=$(cat /sys/class/hwmon/hwmon3/device/pwm4)
    per4=$(echo "scale=2; $pwm4/2.55" | bc)
    fan5=$(grep fan5 $tmpfile | cut -c24-27)
    pwm5=$(cat /sys/class/hwmon/hwmon3/device/pwm5)
    per5=$(echo "scale=2; $pwm5/2.55" | bc)
    dts=$(date +"%m-%d-%y %r")
    [[ ! -f $logfile ]] && echo "dts,vcc,temp,core0,core1,core2,core3,120mm_rpm,120mm_pwm,140mm_rpm,140mm_pwm,comment" > $logfile
    echo "$dts,$vcc,$phys,$c0,$c1,$c2,$c3,$fan4,$pwm4,$fan5,$pwm5,$comment" >> $logfile
    if [ -n "$output" ]; then
    echo "Vcore : $vcc"
    echo "back : $fan1 ($pwm1/255) = $per1 %"
    echo "top : $fan3 ($pwm3/255) = $per3 %"
    echo "120mm : $fan4 ($pwm4/255) = $per4 %"
    echo "140mm : $fan5 ($pwm5/255) = $per5 %"
    fi
    case "$1" in
    s)
    limit=600 # number of times to run
    wait=2 # delay in sec before taking a new reading
    echo running in silent mode...
    x=0
    while [ "$x" -lt "$limit" ]; do
    x=$(( $x + 1 ))
    run
    sleep "$wait"s
    done
    v)
    export output="not null"
    export -f run
    /usr/bin/watch run
    echo "usage $0 {s|v}"
    echo
    echo "s) silent mode/logfile only"
    echo "v) verbose mode/logfile + output"
    exit 0
    esac
    Last edited by graysky (2012-08-01 00:44:16)

    I hate to suggest something obvious to someone with 4000 posts (and such a scary avatar), but have you tried it with the full path: /home/user/... ?
    Are you sure the script is not being run at all?
    (edit -- never mind, I see the file lines in there)
    Last edited by 2ManyDogs (2012-08-01 00:33:03)

  • Cron scripts run times

    I thought the cron scripts were supposed to run at 3:00 A.M. However, when I checked my daily, weekly, and monthly out files just now (6 Jun) I found the following modified times in Get Info: Daily, 5 Jun @ 8:03 P.M. PDT; Weekly, 1 Jun 11:16 A.M. PDT; Monthly, 4 Jun 6:56 P.M. PDT
    So, do this scripts now run when the computer is awakened from sleep, if the "scheduled time" has passed?

    romad wrote:
    So this is just a Tiger thing? On my G3 Imac running Panther, the times are still fixed at 3:00 A.M.?
    Right, though I think it's 3:15 AM for the daily scripts. Maybe 4:30 AM Saturday for the weekly ones, and 5:30 AM on the 1st of the month for the monthly ones.
    But yes, with Panther, they'll run at the times when they're scheduled. If the computer is off or asleep, then they won't run at all.
    On Tiger, if the computer is off when they should have run, they won't run later, but if the computer is asleep, they'll run at a later time. They don't run as soon as the computer wakes up, but at a later time, taking into account how long the computer has been asleep.
    So, on my laptop, the daily job runs every second or third day. The weekly runs about once a month or so. And the monthly hardly ever runs unless I just force it in the Terminal.
    charlie

  • [solved] Script runs differently in cron, than in command line

    I have a script that I made to control the notorious memory leak in checkgmail:
    #!/bin/bash
    killall checkgmail
    sleep 3
    /usr/sbin/checkgmail-gtk
    Now, if I run it manually
    $ ./.scripts/r_checkgmail
    everything works fine.
    However, if I add the very same line to user cron, all it does is kill checkgmail process, but never restarts it.
    Why?
    Last edited by Lockheed (2014-02-11 11:52:55)

    I'm assuming that checkmail-gtk is a GUI program. If so then you need to tell it which display to run on, try this in your script...
    DISPLAY=:0 /usr/sbin/checkmail-gtk
    Last edited by slithery (2014-02-11 11:38:02)

  • Photoshop CS5.1 crashes using cron script that open application

    Photoshop CS5.1 crashes when trying to launch the application using a cron script. This happens on two different machines running 10.7.3. Photoshop opens without crashing when manually running the bash script. The same script works both manually and as a cronjob on 10.6.8. The cron script:
    open -a "/Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app"
    Any help is appreciated.
    The crash report:
    Process:    
    Adobe Photoshop CS5.1 [1332]
    Path:       
    /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.1 (12.1x20110328.r.145] [12.1)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [801]
    Date/Time:  
    2012-02-21 15:04:07.739 -0800
    OS Version: 
    Mac OS X Server 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    0000000100000000-00000001026fc000 [ 39.0M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Application Specific Information:
    objc[1332]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation 
    0x00007fff919abc12 CFArrayGetCount + 18
    1   com.adobe.Photoshop      
    0x00000001012e11d2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797070
    2   com.adobe.Photoshop      
    0x00000001012e146b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797735
    3   com.adobe.Photoshop      
    0x00000001012e17ec AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16798632
    4   com.apple.Foundation     
    0x00007fff8e59dd32 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    5   com.apple.CoreFoundation 
    0x00007fff919e8aaa _CFXNotificationPost + 2634
    6   com.apple.Foundation     
    0x00007fff8e589fe7 -[NSNotificationCenter postNotificationName:object:userInfo:] + 65
    7   com.apple.AppKit         
    0x00007fff9599b757 -[NSApplication sendEvent:] + 3011
    8   com.adobe.Photoshop      
    0x00000001012e25ce AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16802186
    9   com.adobe.Photoshop      
    0x00000001012e1d81 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800061
    10  com.apple.AppKit         
    0x00007fff959321f2 -[NSApplication run] + 555
    11  com.adobe.Photoshop      
    0x00000001012e0644 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16794112
    12  com.adobe.Photoshop      
    0x00000001012e10a1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796765
    13  com.adobe.Photoshop      
    0x0000000100068286 0x100000000 + 426630
    14  com.adobe.Photoshop      
    0x0000000100237199 0x100000000 + 2322841
    15  com.adobe.Photoshop      
    0x0000000100237229 0x100000000 + 2322985
    16  com.adobe.Photoshop      
    0x0000000100002294 0x100000000 + 8852
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff92ce17e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8bb835be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8bb8214e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.amt.services   
    0x0000000108724247 C_AMTUISwitchSuppressUpdates + 16439
    3   com.adobe.amt.services   
    0x000000010871d39e C_EULA_SetState + 1742
    4   com.adobe.amt.services   
    0x00000001087242b2 C_AMTUISwitchSuppressUpdates + 16546
    5   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff95489dea nanosleep + 164
    2   com.adobe.PSAutomate     
    0x0000000113781fdb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x0000000113763f13 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x00000001137820d6 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff92cded71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff919cc6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff919d4e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff919d4676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO    
    0x00007fff8da78541 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO    
    0x00007fff8da6e6b2 CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d72a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x0000000114587cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x00000001145a406c APXGetHostAPI + 2583276
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d72a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x0000000114587cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x00000001147224ed APXGetHostAPI + 4149101
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000116caf562 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000116cae6bf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000116cad706 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000116cad761 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000116cad7e2 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x0000000116ca7eed Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x0000000116ca8086 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x0000000116ca8b0f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x0000000116ca8bfd Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x0000000116cabeff Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x0000000116cac1a5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x0000000116cac764 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x0000000116cac951 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000116c9e67f Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000116c9fd01 Login + 7535
    16  ServiceManager-Launcher.dylib
    0x0000000116cace88 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x0000000116caf2a1 Invoke + 53315
    18  libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    19  libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fff92cdf67a  rdx: 0x0000000000000024
      rdi: 0x0000000000000000  rsi: 0x0000000000000003  rbp: 0x00007fff5fbff080  rsp: 0x00007fff5fbff070
       r8: 0x0000000000003103   r9: 0x0000000000000000  r10: 0x000000000000002c  r11: 0x0000000000000206
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fff5fbff120
      rip: 0x00007fff919abc12  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
    0x100000000 -   
    0x1026fbfff +com.adobe.Photoshop (12.1 - 12.1x20110328.r.145] [12.1) <568CD2C0-8B76-63A9-A42A-B3D943DD7362> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    0x1032f4000 -   
    0x10336cfef +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <7AAC7875-787B-A4BA-F319-2B4425511ED4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x103378000 -   
    0x10337ffff  org.twain.dsm (1.9.4 - 1.9.4) <466A5B1D-F91A-30D7-93E0-B29B9B8F8F0E> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103387000 -   
    0x103398ff8 +com.adobe.ahclientframework (1.6.0.20 - 1.6.0.20) <AD464E16-20D1-A4FC-878D-CF44322F72BC> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x1033a5000 -   
    0x1033abfff  com.apple.agl (3.1.4 - AGL-3.1.4) <58F15993-D441-3146-9F3F-E03A061A54E3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x1033b2000 -   
    0x1035b8fef +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x10364b000 -   
    0x1037f9fef +com.adobe.owl (AdobeOwl version 3.0.93 - 3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x10389b000 -   
    0x103ccbfef +AdobeMPS (??? - ???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103e25000 -   
    0x104150ff7 +AdobeAGM (??? - ???) <8FE8A26F-F2C4-128B-ECF9-197279A31D70> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x10421d000 -   
    0x104545fe7 +AdobeCoolType (??? - ???) <D55BD5E5-B430-7701-A11E-0FF989536E57> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1045dd000 -   
    0x1045feff7 +AdobeBIBUtils (??? - ???) <B37FD8D7-142F-EE1E-4C63-93C1C59B4318> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x10460b000 -   
    0x104636ff6 +AdobeAXE8SharedExpat (??? - ???) <C59B0A11-E89B-F50C-916C-D09F40C1BAA3> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0x104648000 -   
    0x10478cfef +WRServices (??? - ???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1047d3000 -   
    0x104838fff +aif_core (??? - ???) <0E7876E5-6465-676D-06DE-D8F44E3663EB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x104854000 -   
    0x10486afff +data_flow (??? - ???) <A0C1FB2F-4EB4-7F3E-98E7-82BE18D631B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104882000 -   
    0x104918fff +image_flow (??? - ???) <70C5AE43-18D4-7E41-0BB1-FE9EF1792E6C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x10498f000 -   
    0x1049adfff +image_runtime (??? - ???) <140A4ED7-DAAA-2E4F-D211-7E2A491CFD5C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x1049ca000 -   
    0x104bf9fff +aif_ogl (??? - ???) <4E5A4532-CED3-1A19-C852-1C5560F4017A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x104cd8000 -   
    0x104d6bfff +AdobeOwlCanvas (??? - ???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x104d8b000 -   
    0x1050d4fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x105264000 -   
    0x1053e6fe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x105488000 -   
    0x105800fff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x10594a000 -   
    0x105a5ffff +AdobeACE (??? - ???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105a84000 -   
    0x105aa0fff +AdobeBIB (??? - ???) <C0E29690-D406-8834-CA1D-0A4252A0946E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x105aaa000 -   
    0x105b1cff7 +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <E604CBB8-A3F0-69D1-510B-3D8156D37D29> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x105b33000 -   
    0x105c06ffb +AdobeJP2K (??? - ???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105c26000 -   
    0x105c2aff8 +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <09559AEB-61DE-8DE8-4315-BFA0A7D6394B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x105c2f000 -   
    0x105ca6fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5.0 -i 33 [debug] - 64.140949) <ED51DA76-662A-8156-3D42-2146684A60B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105cc7000 -   
    0x105d25ffd +com.adobe.AdobeXMPCore (Adobe XMP Core 5.0 -c 61 - 64.140949) <D02D367B-FF1E-AD63-993C-5CD907CCFCCE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105d33000 -   
    0x1061cefff +com.nvidia.cg (2.2.0006 - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/Cg.framework/Cg
    0x106754000 -   
    0x1067aafeb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1067ef000 -   
    0x106814ffe +adobepdfsettings (??? - ???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x10684e000 -   
    0x106853ffd +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <5625AF72-323C-27C5-0094-213D09698D11> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x106857000 -   
    0x1069f4fff +com.adobe.PlugPlug (2.5.0.232 - 2.5.0.232) <09F6FBA4-E768-BDFB-35AE-C7EB8EBA2D1A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106aa2000 -   
    0x106b85fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
    0x106bdb000 -   
    0x106bf4feb +libtbb.dylib (??? - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbb.dylib
    0x106c05000 -   
    0x106c0bfeb +libtbbmalloc.dylib (??? - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbbmalloc.dylib
    0x106c12000 -   
    0x106c12fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
    0x106c15000 -   
    0x106c1dff3 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x106fc9000 -   
    0x106fcbfff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1084ec000 -   
    0x1084fbff7  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D30A4333-0953-394D-BB26-739937ED0BD8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x108700000 -   
    0x108774ff3 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <1B6C37A0-570C-14D0-52A3-87C835F530BB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x108791000 -   
    0x1087acfff  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <59FCE9C0-27E6-34CE-89E5-3A83B843B36C> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x1087b1000 -   
    0x1087d2fff  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <25FF31F5-9D1E-35EB-8085-F0AC25C38DAC> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x1087d6000 -   
    0x1087e8ff7  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <66A3625A-6918-3C14-8DF3-2F4924C389EA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1087ec000 -   
    0x1087edff7  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <C8D0607A-A668-36EE-AF03-866BD04B5611> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x1087f1000 -   
    0x1087f9fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x10ba3b000 -   
    0x10ba42fff +Enable Async IO (??? - ???) <9AE049A5-F53E-657B-D0AE-01C42D817A19> /Applications/Adobe Photoshop CS5.1/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x10bff0000 -   
    0x10bff8ffe +ScriptingListener (12.1 - 12.1) <CA77642E-943B-02F2-140E-DD95022E8C22> /Applications/Adobe Photoshop CS5.1/*/ScriptingListener.plugin/Contents/MacOS/ScriptingListener
    0x10d52d000 -   
    0x10d536fff +FastCore (??? - ???) <1565E455-4A86-A3BD-113F-CD828F2C5150> /Applications/Adobe Photoshop CS5.1/*/FastCore.plugin/Contents/MacOS/FastCore
    0x10ecc9000 -   
    0x10ed2cff3 +MMXCore (??? - ???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5.1/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x10edb4000 -   
    0x10ee1fff0 +MultiProcessor Support (??? - ???) <4FEA98F6-A072-F0BF-0E30-BEFDBD623611> /Applications/Adobe Photoshop CS5.1/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x1106f4000 -   
    0x1106f8fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x1108f5000 -   
    0x1108fbfff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x111b1b000 -   
    0x111b49ff7  GLRendererFloat (??? - ???) <0C213C61-C08C-3B5D-85A4-EB4660AF55BF> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x111bc8000 -   
    0x111be8ff7 +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <48D74CFC-E9C7-143A-F971-2C7F0ACF7602> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x113369000 -   
    0x113385ff7 +MeasurementCore (??? - ???) <1BE124EE-A88B-8F47-B9E1-1E276FA54327> /Applications/Adobe Photoshop CS5.1/*/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
    0x113600000 -   
    0x11385cfef +com.adobe.PSAutomate (12.1 - 12.1) <951D5D57-776F-5A95-24A0-D70623A9902F> /Applications/Adobe Photoshop CS5.1/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x113a7a000 -   
    0x113b1effb +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.12764) <C53B3FBF-7530-1DAF-66E7-C2E50F25A6DE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x113b83000 -   
    0x113c23fef +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.12764) <2A61AEB9-8E9D-8136-9B6F-B4394D6AB7AE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x114300000 -   
    0x11516aff3 +com.adobe.adobeswfl (??? - 2.0.0.11360) <39C5D47B-EB0F-9FE5-ABA7-7D925DB9C036> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
    0x116c50000 -   
    0x116c8dfeb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <188E3565-26D6-6A54-01E2-1BBBF73AE24E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotificati ons
    0x116c9c000 -   
    0x116cc4fef +ServiceManager-Launcher.dylib (236.0.0 - compatibility 2.5.0) <DBEE8529-7074-635B-2CAD-DF7BA597D909> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x117900000 -   
    0x117a99fff  GLEngine (??? - ???) <8BA26192-A4D7-362D-8B57-5FCF4B706A25> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x117acd000 -   
    0x117bc6fff  libGLProgrammability.dylib (??? - ???) <B7710703-8652-36B8-83DD-4F216FAF0730> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x117bec000 -   
    0x117ff7ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.18.11 - 7.1.8) <B3612412-7530-3FB9-AF32-C9433755CC76> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver
    0x7fff6171f000 -
    0x7fff61753baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff8b0a8000 -
    0x7fff8b0b2ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
    0x7fff8b0b3000 -
    0x7fff8b0dbff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8baef000 -
    0x7fff8baf4fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8baf5000 -
    0x7fff8bb2afff  libTrueTypeScaler.dylib (??? - ???) <5AB9A51C-AD6B-3E02-B9A6-7B1447CF6134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff8bb2b000 -
    0x7fff8bb7fff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8bb80000 -
    0x7fff8bb8efff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff8bb8f000 -
    0x7fff8bb95fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8bc2f000 -
    0x7fff8bc4cff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff8bc4d000 -
    0x7fff8bce7ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff8bf7e000 -
    0x7fff8bf7efff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8bf7f000 -
    0x7fff8bf95ff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff8bf96000 -
    0x7fff8bfd5ff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8bfd6000 -
    0x7fff8bfd6fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/App

    Well, it's crashing in Apple code while trying to parse information returned from the OS.
    Looks like it's in response to an activation request, and we're trying to get a list of the active windows - but the OS can't parse the values it just returned without error. Nice.
    All I can do is try to add some safety around those calls in the next version of Photoshop.
    If we can get a reproduceable case, then we can write up a bug for Apple.

  • "cannot open display" with cron script

    This works fine from the CLI, but when it runs with the cron daemon, the log file shows "xfburn: cannot open display."  How do I go about fixing this?
    #!/usr/bin/perl -w
    `xfburn --version > /home/tim/scripts/blah.log`;

    Hmm I'm not really sure what to do with that.  I'll post the whole thing.  This is my first time writing in perl, so I'm sure it's really inefficient and ugly.
    It's supposed to grab 'svn info' from all my svn packages in /var/local/abs, find my currently installed versions of the svns, and write the results to ~/scripts/svn-updates/outdated.log file.
    It works correctly when I run it from the command line, but when I put it in cron.daily, "@svninfo = `$pkgname --version --display=:0.0`;" doesn't work.
    #!/usr/bin/perl -w
    use strict;
    our (@svns, %local_revs, %latest_revs);
    our $svn_dir = "/var/abs/local";
    our $outdated_log = "/home/tim/scripts/svn-updates/outdated.log";
    # Get list of local svn packages
    sub get_svns {
    my ($name, @svns_results);
    opendir(DIR, $svn_dir) or die "Error opening $svn_dir: $!";
    foreach $name (readdir(DIR)) {
    if($name =~ /(.*)-svn$/) {
    push(@svns_results,$1);
    closedir(DIR);
    return @svns_results;
    # Get latest svn revisions
    sub get_latest_revs {
    my ($pkgname, $svntrunk, $i, @svninfo, %latest_revs_results);
    foreach $pkgname (@_) {
    # Find trunk path in PKGBUILD
    open(INFILE, "$svn_dir/$pkgname-svn/PKGBUILD");
    while(<INFILE>) {
    if(/^_svntrunk="(.*)"/) {
    $svntrunk = $1;
    close(INFILE);
    # Grab svn info on current package
    @svninfo = `svn info $svntrunk`;
    # Add latest revision to hash table
    foreach $i (@svninfo) {
    if($i =~ /^Revision: (\w*)/) {
    $latest_revs_results{$pkgname} = $1;
    return %latest_revs_results;
    # Get local svn revisions
    sub get_local_revs {
    my ($pkgname, $j, @svninfo, %local_revs_results);
    foreach $pkgname (@_) {
    @svninfo = `$pkgname --version --display=:0.0`;
    # Add local revision to hash table
    foreach $j (@svninfo) {
    if($j =~ /^.*svn-(\w*)/) {
    $local_revs_results{$pkgname} = $1;
    return %local_revs_results;
    # Write outdated packages to $outdated_log
    sub write_outdated {
    my $pkg;
    `echo > $outdated_log`;
    foreach $pkg (@_) {
    unless($local_revs{$pkg}==$latest_revs{$pkg}) {
    `echo "$pkg $local_revs{$pkg} ($latest_revs{$pkg})" >> $outdated_log`;
    # Main
    @svns = &get_svns;
    %latest_revs = &get_latest_revs(@svns);
    %local_revs = &get_local_revs(@svns);
    &write_outdated(@svns);

  • What exactly are the cron scripts doing?

    Hi,
    Hope the subject says it all: I have searched but not found a detailed explanation as what the cron scripts (daily, weekly, monthly) actually do, and if the utilities (Onyx, Cocktail, Xupport, etc) are doing exactly the same.
    Can someone point to a site or explain?
    TIA
    Dan

    Hi Dan,
    (in addition to Barry's reply)
    Yes,
    1) running the Daily, the Weekly and the Monthly tasks manually with an utility, or
    2) running them yourself with the
    sudo periodic daily
    sudo periodic weekly
    sudo periodic monthly
    Terminal commands
    (or this one: sudo periodic daily weekly monthly), or
    3) leaving your computer running 24/7/365 so that they run automatically,
    all three ways do exactly the same thing.
    --> To see what they do exactly, the best way is to open Console, and in the /var/log section, look for "daily.out", "weekly.out" and "monthly.out".
    What exactly are the "cron scripts" doing?
    (Periodic tasks)
    In Console, you'll find a lot of different files that grow with more and more information every minute, even every second for some of them.
    The three Periodic tasks regularly rearrange them and compresses them so that they don't take too much disk space.
    They also rebuild some system database so that the data never gets unusable by the system.
    HTH
    Axl
    201

  • Run jobs in CRON in redhat linux

    I am a Novice DBA and have followed Google pages to run jobs in CRON in redhat linux  But in vain, I could Not jobs in cron.  Can any one provide me step by step config to run jobs in cron

    Good documentation how to automate tasks using cron is indeed a bit difficult to find and much information I've seen out there on the web is incomplete. And unfortunately, it is difficult for a newbie or student to determine.
    In addition to the information already provided by the previous resopnes, the product documentation is usually a good start. For example: https://linux.oracle.com/documentation/
    The information about cron is in the Deployment guide, for instance chapter 20 of
    https://linux.oracle.com/documentation/OL6/Red_Hat_Enterprise_Linux-6-Deployment_Guide-en-US.pdf
    To my experience, many questions or problems releated to cron can be avoided if the user keeps the following in mind:
    Cron does not perform a user login and only knows a minimum OS or user environment. For instance, it only knows about /usr/bin:/sbin:/bin PATH environment. If you wish to schedule a cron job using a shell command script that does anything Oracle database related, you will have to set the appropriate environment variables. Simply put the following header into your script:
    ORACLE_SID=your_oracle_SID
    ORAENV_ASK=NO
    . oraenv -s
    Also keep in mind that many programs produce output to stdout. Cron, by default, mails such output to the user account running the cron task.

  • Capturing Users with running sql in shell script after every 10min

    Hi All,
    we have a strange prob. of database crash, therefore decided to check what users do when OS/DB crashes,
    i need your input in RUNNING/SCHEDULING such a script which gathers all active users with running SQL and append in a logfile so that we are aware of what happened when DB/OS Crashed.
    i can run this run a query from V$SESSION,V$SQL, and V$PROCESS but i need your input writing such a SHELL Script and scheduling can run by CRON.
    Regards.

    Here ya go.
    (Assuming you want a script to run against one sid)
    script:
    #!/bin/ksh
    # Set environment
    . $HOME/.profile
    export ORACLE_SID=your sid
    sqlplus <<! > /some_report_file
    / as sysdba
    sql you want to execute here*
    exit
    cron entry:
    0,5,10,15,20,25,30,35,40,45,50,55 * * * * /your/script/name/here > /dev/null 2>&1

  • Sample shell script - to run procedures and shell script

    Hi ,
    I would like run some procedures in one shell script which passing parameters as username/password@dbname.
    1. Execute proce1
    2.Execute proce3
    3.Execute proc4
    Can you please give some script/idea how we will create shell script . I am using SunSolaris Unix operating system.I would appreciate your help.
    Regards,
    Clark

    user10818198 wrote:
    I would like run some procedures in one shell script which passing parameters as username/password@dbname.
    1. Execute proce1
    2.Execute proce3
    3.Execute proc4
    At a very basic level, based on the information you have provided, your shell script would be something like this:
    sqlplus /nolog <<EOF
    connect username/password@dbname
    exec proce1;
    exec proce2;
    exec proce3;
    exit
    EOFBesides this, you could:
    (1) Add the shebang at the top, to specify the shell you are using, e.g. #!/bin/ksh for the Korn shell etc.
    (2) Ensure that "sqlplus" is recognized by the shell, by maybe running an "ora_env.sh" script that sets Oracle parameters. More likely, if you are using this Unix account for interaction with Oracle, then you may want to add the Oracle parameter information in your .profile or .bash_profile or .csh_profile etc. in the home directory.
    (3) Run a few sqlplus commands right before calling those stored procedures, if needed. For example, if you want to exit from sqlplus (and Oracle) if an error occurs while executing any procedure, then add this -
    whenever sqlerror exit 1Thus your script becomes:
    #!/bin/ksh
    # Ensure that Oracle parameters are set by this point
    sqlplus /nolog <<EOF
    connect username/password@dbname
    whenever sqlerror exit 1
    exec proce1;
    exec proce2;
    exec proce3;
    exit
    EOF(There are other settings as well; it really depends on your requirements.)
    Can you please give some script/idea how we will create shell script . I am using SunSolaris Unix operating system.
    How to create a shell script ? Well,
    (1) Save the commands shown above in a file, using your favorite text editor. Name the file "my_script.sh" or "<a_better_name>.sh" etc. (or maybe ".ksh" for the Korn shell - it's just a best practice, the shell doesn't really care.)
    (2) Make your script executable, like so -
    $ chmod 744 myscript.sh(3) And then execute it -
    $ ./myscript.sh- You could also execute the script in the current shell (as against a child shell) by doing this after Step (1):
    $ . myscript.shHope that helps.
    If there are specific questions, then post them here.
    isotope

  • Executing a unix kill from APEX or running a bash shell script from Apex

    I'm writing a browser based app that I would like to write with APEX and that will identify and kill a very specific process name and Unix user name combo.
    I can identify the unix PID in V$SESSION if I want so, I know how to to the first part (identify the process/PID).
    How can an APEX app execute the Linux kill command? I'm not seeing anyway to host out of APEX. I was looking for something like that where you create processes...
    Please provide only suggestions on how to do this from APEX. I know there are lots of other ways (CGI from Apache etc.).

    I have this working, though it's kinda clunky.
    Apex calls Oracle Stored Procedure which calls Java stored procedure which defines a class that runs exec to execute an OS command, and waits for the return value.
    The DBA had to grant special permission for my oracle schema to execute the script name that is passed into the Java.
    Others may have a better way of doing this.

  • Error while running the root.sh script during Grid installation on a pre-installed 11g database .

    Hi Oracle Experts,
    I am trying to setup a new GRID Standalone Infrastructure on a previously installed Oracle 11g database.
    It runs all fine but when prompts to run the root.sh script it does not allow to proceed as it prompts to overwrite the existing path for /usr/bin/local
    well, I google'd and tried with overwrite : Y . It prompted to run the script but it failed ...
    Could you please help me on this ..
    [root@asm ~]# /u01/app/11.2.0/grid/root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
        ORACLE_OWNER= oracle
        ORACLE_HOME=  /u01/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [/usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying dbhome to /usr/local/bin ...
    The file "oraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying oraenv to /usr/local/bin ...
    The file "coraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying coraenv to /usr/local/bin ...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    To configure Grid Infrastructure for a Stand-Alone Server run the following command as the root user:
    /u01/app/11.2.0/grid/perl/bin/perl -I/u01/app/11.2.0/grid/perl/lib -I/u01/app/11.2.0/grid/crs/install /u01/app/11.2.0/grid/crs/install/roothas.pl
    [root@asm ~]# /u01/app/11.2.0/grid/perl/bin/perl -I/u01/app/11.2.0/grid/perl/lib -I/u01/app/11.2.0/grid/crs/install /u01/app/11.2.0/grid/                              crs/install/roothas.pl
    2015-03-18 01:42:25: Checking for super user privileges
    2015-03-18 01:42:25: User has super user privileges
    2015-03-18 01:42:25: Parsing the host name
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    Creating trace directory
    LOCAL ADD MODE
    Creating OCR keys for user 'oracle', privgrp 'oinstall'..
    Operation successful.
    CRS-4664: Node asm successfully pinned.
    Adding daemon to inittab
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting
    acfsroot: ACFS-9320: Missing advmutil.
    acfsroot: ACFS-9320: Missing advmutil.bin.
    acfsroot: ACFS-9320: Missing fsck.acfs.
    acfsroot: ACFS-9320: Missing fsck.acfs.bin.
    acfsroot: ACFS-9320: Missing mkfs.acfs.
    acfsroot: ACFS-9320: Missing mkfs.acfs.bin.
    acfsroot: ACFS-9320: Missing mount.acfs.
    acfsroot: ACFS-9320: Missing mount.acfs.bin.
    acfsroot: ACFS-9320: Missing acfsdbg.
    acfsroot: ACFS-9320: Missing acfsdbg.bin.
    acfsroot: ACFS-9320: Missing acfsutil.
    acfsroot: ACFS-9320: Missing acfsutil.bin.
    acfsroot: ACFS-9301: ADVM/ACFS installation can not proceed:
    acfsroot: ACFS-9302: No installation files found at /u01/app/11.2.0/grid/install/usm/EL5/x86_64/2.6.18-8/2.6.18-8.el5xen-x86_64/bin.
    asm     2015/03/18 01:43:06     /u01/app/11.2.0/grid/cdata/asm/backup_20150318_014306.olr
    Successfully configured Oracle Grid Infrastructure for a Standalone Server
    when I checked for ASM instance its not running ... but just ohasd service and nothing else ..
    [root@asm grid]# ps -ef | grep pmon
    oracle    5831     1  0 01:15 ?        00:00:01 ora_pmon_db11g1
    root     12625  8794  0 02:30 pts/2    00:00:00 grep pmon
    [root@asm grid]#
    [root@asm grid]#
    [root@asm grid]# ps -ef | grep d.bin
    oracle   12643     1  5 02:30 ?        00:00:00 /u01/app/11.2.0/grid/bin/ohasd.bin reboot
    root     12715  8794  0 02:30 pts/2    00:00:00 grep d.bin
    [root@asm grid]#
    Could you please help .

    hi,
    The issue not with /usr/bin/local.  When you excute root.sh, it will try configure the ASM with New GRID HOME. Issue started, whent tried to start
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting <<=================================================================
    acfsroot: ACFS-9320: Missing advmutil.
    Please let us know the below details
    ==> Acfs is configured the servers??
         ==>acfsutil registry
                   acfsutil info fs output.
    ==> With out ASM instance , How the database, CRS STarted ???
    ==> Please try stop and start the crs.
    ==> crsctl query crs activeversion output
    Regards
    Krishnan

  • DDLIMP utility is failing while running the DDL_OLTP.ctl script for Siebel

    DDLIMP utility is failing while running the DDL_OLTP.ctl script for Siebel source on DB2.
    Below is the the log details:
    2021 2012-11-08 03:23:46 2012-11-08 03:25:56 -0700 0000002a 001 003f 0001 09 ddlimp 604 736 C:\OBIA\Upgrade\CTLFiles\DDL_.log
    ContextInit     ContextInit     0     0     2012-11-08 03:23:46     Message Facility failed to init. Siebel Root: C:\DAC\client\utilities
    Trace     Trace     3     0     2012-11-08 03:23:46     Siebel Enterprise Applications ODBC DDL Import Utility, Version 7.7 [18030] ENU
    Trace     Trace     3     0     2012-11-08 03:23:46     Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.
    Trace     Trace     3     0     2012-11-08 03:23:46     
    This software is the property of Siebel Systems, Inc., 2207 Bridgepointe Parkway,
    San Mateo, CA 94404.
    User agrees that any use of this software is governed by: (1) the applicable
    user limitations and other terms and conditions of the license agreement which
    has been entered into with Siebel Systems or its authorized distributors; and
    (2) the proprietary and restricted rights notices included in this software.
    WARNING: THIS COMPUTER PROGRAM IS PROTECTED BY U.S. AND INTERNATIONAL LAW.
    UNAUTHORIZED REPRODUCTION, DISTRIBUTION OR USE OF THIS PROGRAM, OR ANY PORTION
    OF IT, MAY RESULT IN SEVERE CIVIL AND CRIMINAL PENALTIES, AND WILL BE
    PROSECUTED TO THE MAXIMUM EXTENT POSSIBLE UNDER THE LAW.
    If you have received this software in error, please notify Siebel Systems
    immediately at (650) 295-5000.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:46     ddlimp /U SIEBEL /P ***** /C siebel /G SSE_ROLE /F C:\OBIA\Upgrade\CTLFiles\DDL_OLTP.CTL /L C:\OBIA\Upgrade\CTLFiles\DDL_
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:46     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:46     Connecting to the database...
    DBCLog     DBCLogError     1     0     2012-11-08 03:23:52     SQL Warning, SQL State 01004, 0, [DataDirect][ODBC DB2 Wire Protocol driver]String data, right truncated.
    DBCLog     DBCLogError     1     0     2012-11-08 03:23:52     SQL Warning, SQL State ”, 40042692, CLog     DBCLogError     1     0     2012-11-08 03:23:52     SQL Warning, SQL State 01004, 0, [DataDirect][ODBC DB2 Wire Protocol driver]String data, right truncated.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Connected.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Reading tables and indexes from DDL file...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Read 522 tables and 1084 indexes from DDL file...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Reading existing schema...
    SARMLog     SARMInformation     3     0     2012-11-08 03:23:52     SARM is OFF -change param SARMLevel to enable
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Read 0 tablespaces, 6137 tables and 24846 indexes from existing schema...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Running SQL statements against the database...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Merging table S_ETL_COSTLST ...
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID varchar(15)
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]ILLEGAL SYMBOL modify; VALID SYMBOLS ARE table S_ETL_COSTLST. ADD
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID varchar(15)
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]An error occurred during implicit system action type '2'. Information returned for the error includes SQLCODE '-104', SQLSTATE '42601' and message tokens 'modify|table S_ETL_COSTLST|ADD'.
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID default '0'
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]ILLEGAL SYMBOL modify; VALID SYMBOLS ARE table S_ETL_COSTLST. ADD
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     37000: [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]ILLEGAL SYMBOL modify; VALID SYMBOLS ARE table S_ETL_COSTLST. ADD
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID default '0'
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]An error occurred during implicit system action type '2'. Information returned for the error includes SQLCODE '-104', SQLSTATE '42601' and message tokens 'modify|table S_ETL_COSTLST|ADD'.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     56098: [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]An error occurred during implicit system action type '2'. Information returned for the error includes SQLCODE '-104', SQLSTATE '42601' and message tokens 'modify|table S_ETL_COSTLST|ADD'.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     alter table S_ETL_COSTLST modify
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     CONFLICT_ID default '0'
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     ;
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     writeExecDDL error (UTLOdbcExecDirectDDL pDDLSql).
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     writeExecDDL error (UTLDbDdlColModify).
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Error in MainFunction (UTLDbDdlDbMerge).
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Error in Main function...
    GenericLog     GenericError     1     0     2012-11-08 03:25:56     (logapi.cpp (167) err=1 sys=126) SBL-GEN-00001: (logapi.cpp: 167) error code = 1, system error = 126, msg1 = (null), msg2 = (null), msg3 = (null), msg4 = (null)

    If you run DAC on a 64-bit windows Operating System, you must create the ODBC data source using the ODBC Administrator tool in %windir%\SysWOW64\odbcad32.exe. for creating the data warehouse tables.
    If helps pls mark

Maybe you are looking for

  • Time Machine - Migration Assistance Failure

    Hard drive failure on Mac... installed new drive.  When using migration assistant in conjunction with time machine encountering error mid way through data transfer process...unable to create user name.. any insight is appreciated.. This event occurre

  • Photoshop CS4 issues with Snow Leopard

    Hi all, I recently upgraded my OS from Leopard to Snow Leopard ( 10.6.4 ). I keep a clone of my OS/Apps drive on an external firewire. After upgrading the OS on my main drive, I initialized the OS/Apps drive and made a bootable clone of the main driv

  • HT1438 How do you edit the content of i cloud?

    How do you edit the content of i cloud?

  • Photoshop elements wont download on mac

    i purchased photoshop elements 11 for my mac osx 10.8.2 and its not downloading. ive also tried downloading the trial version so that i can just punch in the product key after but it wont download all the way keeps saying theres an error. need help o

  • Emca fails - ORA-04043: object HA_HOST_CREDS_ARR does not exist

    I'm recreating an EM repository in an 11g database which I upgraded from 10g recently. Its running on Solaris 10 and its repository wasn't working so I dropped it with plans to recreated it. As part of the prep work I did the following: - Dropped use