Cronjob to run in every 40 days

HI,
I want to schedule one cronjob to run once in every 40 days.
Please suggest what would be exact cronscript for this.
Thanks,
Saurabh

Yeah, an "at" job sitting out there running itself every 40 days isn't going to be easy to keep track of.
On Linux the "date" utility supports the "+%s" format, which is seconds since the epoch. Divide that by 86400 and you have days since the epoch. Something like this:
#!/bin/bash
now=`date "+%s"`
today=$(( $now / 86400 ))
rem=$(( $today % 40 ))Put that in a cron job, and if the remainder is whatever single value you pick, run your job. Else do nothing.
That will run every 40 days.
The "%s" format specification to the date utility is a non-POSIX extension, so it's not available on strictly POSIX-compliant systems. Though it's pretty trivial to write something in C that will emit the current time in seconds since epoch. Perl probably can be used, too.

Similar Messages

  • IChat AV 3.1.9 Keeps Wanting Setup at startup every few days--Why?

    I have three Macs and all are setup using mobile accounts so that my data on each machine is pretty much identical; however, my office machine does not have an iSight for video chat, whereas, my home and laptop both do. My User/Library does not sync, but everything else does. Any ideas why iChat AV wants me to run setup every few days?

    What does happen when you try to synch the Library ?
    The Library has a Sub folder for Preferences.
    It hold amoungst other things the iChat .plists Removing all of these will get iChat to Redo the Start Up Screens.
    8:17 PM Saturday; April 19, 2008

  • How to run process chain in day of 20 and 2 every month?

    Dear all,
    I have to run process chain in day of 20 and 2 every month,but the settting of PC just allow Scheduled start every month once
    time.
    Please tell me the way of setting process chain.
    Thanks.

    Hi,
    (1) Create an event in the BW system
    Define a system event (for example SAP_BW_TRIGGER) with Transaction SM62. Lets says it is "EVENTX". Use this even in the Process chain and execute the process chain as repeative job.
    (2) Use the below lines of code in the program for calling a Fucntion which trigeres the event created above . Here in this program you will call the the Below FM if and only id the sy-datum is 20 th or 2nd of the month ( as mentioned by our friend suggested).
    call function 'BP_EVENT_RAISE'
    exporting
    eventid = EVENTX
    exceptions
    bad_eventid = 1
    eventid_does_not_exist = 2
    eventid_missing = 3
    raise_failed = 4
    others = 5.
    endfunction.
    Regards,
    Anil Kumar Sharma .P

  • Running an AppleScript every 3 days in the background

    Hi. I would like to run an applescript every 3 days in the background. I know this can be easily done by just using iCal. However, I think there must be another way to do it if system events is used... but how?
    Message was edited by: HREsquivelO

    Most likely you will need to create a LaunchAgent.

  • How to get lauchctl daemons/agents to run only once a day

    How do you get a daemons/agents to run only once a day regardless of the error code of the .sh you are running?
    (not I'm not looking for run once or run on reboot. I want a job to run at 3am every day and it has several bash commands in it. Regardless of the returns by any of the commands in the script, I only want this to run once - NO RESPAWN).

    Ok still not working.. here is the plist
    the .sh file does file processing and then uploads xml files to my server and should run once a day. Here I have it running at 11:45am. It completes and then runs again and again and again.
    The plist is placed in LaunchAgents and loaded with $launchctl load com.iclassicnu.crontabtest.plist
    ideas?
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>label</key>
    <string>com.iclassicnu.crontabtest</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Users/dan/Desktop/iClassicNu/Idea/Forexite/ForexUpdate.sh</string>
    </array>
    <key>WorkingDirectory</key>
    <string>/Users/dan/Desktop/iClassicNu/Idea/Forexite</string>
    <key>OnDemand</key>
    <false/>
    <key>Nice</key>
    <integer>1</integer>
    <key>StartCalendarInterval</key>
    <dict>
    <key>Hour</key>
    <integer>11</integer>
    <key>Minute</key>
    <integer>45</integer>
    </dict>
    <key>StandardErrorPath</key>
    <string>/Users/dan/tmp/icnTest1.err</string>
    <key>StandardOutPath</key>
    <string>/Users/dan/tmp/icnTest1.out</string>
    </dict>
    </plist>

  • Scheduling a filter to run only once a day

    Hi All,
    I am trying to build a filter running once every day, so far i am using "scheduledSystemEvent" which executes the filter every 5 mins.
    I tried doing this via "CustomScheduleEvnet" also but did not have any luck with it.
    Following is the snap shot of the table that i am mergin with the IdcScheduledSystemEvents
    &lt;td&gt;CustomDailyEvent&lt;/td&gt;
    &lt;td&gt;CustomDailyEventInterval&lt;/td&gt;
    &lt;td&gt;&lt;$include dailyEvent$&gt;&lt;/td&gt;
    &lt;td&gt;inDays&lt;/td&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;ScheduledWork&lt;/td&gt;
    Your any pointers will be hightly appriciated.
    many thanks,
    sapan

    Hey sapan,
    The quick and dirty way I've done this before is with a java filter hooked into "checkScheduledEvents" (emphasis on "quick and dirty"). Example below:
         public int doFilter(Workspace ws, DataBinder binder, ExecutionContext cxt)
                   throws DataException, ServiceException
              try
                   //sleep to make sure the server is completely initialized
                   Thread.sleep(30000);
              catch(Exception e)
              //get last time the filter was run
              String lastRunString = SharedObjects.getEnvironmentValue("customProccessLastRunTime");
              long lastRunMillis = 0;
              //handle case were the server has been restarted and the environment value is empty
              if(lastRunString != null && lastRunString.length() > 0)
                   lastRunMillis = Long.parseLong(lastRunString);     
              //if it has been a day since the last check,
              //run the queries to check that the contract files have their workflow flag synced
              Date now = new Date();
              long nowMillis = now.getTime();
              if((nowMillis - lastRunMillis) > 86400000)
    //do daily processing here
                   //update last run time
                   SharedObjects.putEnvironmentValue("customProccessLastRunTime", ""+nowMillis);
    Hope that helps,
    Andy Weaver - Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw >

  • Every other day, my mac won't start up

    every other day, my mac won't start up. my keyboard would light up and i hear the system start but nothing is appearing in the screen. i would have to press the start button until the screen actually shows up.. why does it do that?

    Have you just tried repairing with Disk Utility?
    Repair the Hard Drive and Permissions - Lion/Mountain Lion
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu. Select Restart from the Apple menu.

  • Late 2012 iMac Freezes every few days

    My iMac has been in the Apple Store for a week with the Geniuses and they came back saying they couldn't find anything so putting this out to this community in the hope someone else can help. Here are the details.
    Model: 21.5 inch Late-2012 iMac
    RAM: 8Gb
    Processor: 2.9Ghz Intel Core i5
    Graphics: NVIDIA GeForce GT 650M 512 MB
    Hard Drive: 1.12 Tb Fusion (653Gb free)
    OS: 10.8.4
    Software: Fairly vanilla with no MS or Adobe Apps. No system extensions or hacks installed.
    Symptom: Every few days or so the iMac locks up. Certain running applications will still work but many common ones such as Pages, Aperture, App Store & TextEdit will hang when trying to open. Force Quitting them doesn't affect them. When I try to shut down the computer it goes to the grey screen and stays there. Eventually the power needs to be turned off to reboot it. This has been doing this for the last several months.
    Solutions Tried:
    - Fixed permissions
    - Reset PRAM
    - Re-install OS X
    I can't replicate the crash but today it happened again. At around 3:50pm I went to the iMac and noticed that Pages wouldn't load. Force quitting the App didn't do anything. Aperture was not responding so force quit that. Still wouldn't re-open. Mail was working fine and I was able to send a test message. Safari worked fine. Launched System Preferences ok but could not launch TextEdit or App Store. Calendar opened and closed fine. Attempted to restart the Mac but got the grey screen and after 5 minutes of waiting turned the computer off & relaunched it.
    Here is a snapshot of some Console entries:
    5/09/13 2:27:41.316 PM coreaudiod[122]: Enabled automatic stack shots because audio IO is inactive
    5/09/13 2:28:16.449 PM coreaudiod[122]: Disabled automatic stack shots because audio IO is active
    5/09/13 2:28:17.262 PM coreaudiod[122]: Enabled automatic stack shots because audio IO is inactive
    5/09/13 2:28:50.579 PM com.apple.usbmuxd[68]: _heartbeat_failed heartbeat detected detach for device 0xdf3-10.0.1.10:0!
    5/09/13 2:37:54.690 PM com.apple.usbmuxd[68]: _heartbeat_failed heartbeat detected detach for device 0xdfc-10.0.1.10:0!
    5/09/13 2:42:04.656 PM lsboxd[209]: @AE relay 61657674:6f646f63
    5/09/13 2:47:21.156 PM com.apple.usbmuxd[68]: _heartbeat_failed heartbeat detected detach for device 0xe05-10.0.1.11:0!
    5/09/13 4:03:23.428 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    5/09/13 4:03:23.428 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    5/09/13 4:03:24.934 PM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    5/09/13 4:03:26.157 PM airportd[30]: _processDLILEvent: en1 attached (down)
    5/09/13 4:03:26.342 PM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    5/09/13 4:03:26.609 PM fseventsd[39]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (419745 5 419906)
    5/09/13 4:03:26.612 PM fseventsd[39]: log dir: /.fseventsd getting new uuid: A3689432-84D2-4FB0-8C25-0352BC004F8B
    5/09/13 4:03:26.666 PM mDNSResponder[40]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    Notice that the last Console entry was at 2:47pm (in red) and then nothing. I went to use the computer at 3:50pm and did several actions on it. Plugged in iPad, opened iTunes. Copied a file from the iPad to the desktop. Prior to that it hadn't been used for several hours. The shutdown that I selected does not appear in the log (although it only managed to go to the grey screen rather than complete a full shut down).
    Appreciate any clues at all here. This is very frustrating and has been going on for far too long.
    TIA. Jordan

    Back up all data immediately as your boot drive may be failing.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'Channel t|GPU D|I/O|Previous Sh' | tail | open -ef
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. If the command produced no output, the window will be empty. Post the contents of the TextEdit window (not the Terminal window), if any — the text, please, not a screenshot. The title of the window doesn't matter, and you don't need to post that.

  • Smtp in Hangs for every fews days.

    I am running iPlanet Messaging Server 5.2 sp1 on solaris 2.8 with kernel patch level 23 .
    For every few days say for 3-4 days once smtp process stops hanging. When I do a telnet to port 25 , it just stop as "Escape character is '^]'." It is not displaying the iMS banner.
    If a do a restart of services , it is ready to accept the requests.
    imsimta version o/p
    iPlanet Messaging Server 5.2 Patch 1 (built Aug 19 2002)
    libimta.so 5.2 Patch 1 (built 23:25:07, Aug 19 2002)
    Please help.
    Rgds
    Prem.

    Hi
    Please find below the truss o/p of tcp_smtp_server & dispatcher process ..
    tcp_smtp_process:
    lwp_sema_wait(0xFE0C1E30) (sleeping...)
    signotifywait() (sleeping...)
    lwp_sema_wait(0xFE111E30) (sleeping...)
    poll(0xFE0F01C0, 1, -1) (sleeping...)
    lwp_sema_wait(0xFE33FA08) (sleeping...)
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE33FA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFE0C1E30) = 0
    lwp_sema_wait(0xFE0C1E30) = 0
    sigprocmask(SIG_SETMASK, 0xFE34AD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE33F9F8, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE33F9F8, 0x00000000) = 0
    time() = 1072237388
    lwp_sema_post(0xFE33FA08) = 0
    lwp_sema_wait(0xFE33FA08) = 0
    sigprocmask(SIG_BLOCK, 0xFE33F9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE33F9F8, 0x00000000) = 0
    lwp_sema_wait(0xFE0C1E30) (sleeping...)
    signotifywait() (sleeping...)
    lwp_sema_wait(0xFE111E30) (sleeping...)
    poll(0xFE0F01C0, 1, -1) (sleeping...)
    lwp_sema_wait(0xFE33FA08) (sleeping...)
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE33FA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFE0C1E30) = 0
    lwp_sema_wait(0xFE0C1E30) = 0
    sigprocmask(SIG_SETMASK, 0xFE34AD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE33F9F8, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE33F9F8, 0x00000000) = 0
    time() = 1072237448
    lwp_sema_post(0xFE33FA08) = 0
    lwp_sema_wait(0xFE33FA08) = 0
    sigprocmask(SIG_BLOCK, 0xFE33F9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE33F9F8, 0x00000000) = 0
    lwp_sema_wait(0xFE0C1E30) (sleeping...)
    signotifywait() (sleeping...)
    lwp_sema_wait(0xFE111E30) (sleeping...)
    poll(0xFE0F01C0, 1, -1) (sleeping...)
    lwp_sema_wait(0xFE33FA08) (sleeping...)
    Dispatcher Process
    *** SGID: rgid/egid/sgid = 10 / 1 / 1 ***
    accept(13, 0xFE031CE8, 0xFE031CD4, 1) (sleeping...)
    signotifywait() (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    accept(9, 0xFE0F1C9E, 0xFE0F1C98, 1) (sleeping...)
    lwp_sema_wait(0xFE7EFA08) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_sema_wait(0xFDF0DE30) (sleeping...)
    poll(0xFD530250, 1, -1) (sleeping...)
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE7EFA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFDF0DE30) = 0
    setitimer(ITIMER_REAL, 0xFDE0B730, 0x00000000) = 0
    lwp_sema_wait(0xFDF0DE30) = 0
    sigprocmask(SIG_SETMASK, 0xFE7FAD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    fork1() = 12612
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    mmap(0x00000000, 73728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xFD7E0000
    mprotect(0xFD7E0000, 8192, PROT_NONE) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_self() = 9
    lwp_sema_post(0xFD7F1E30) = 0
    lwp_sema_wait(0xFD7F1E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    time() = 1072237298
    lwp_sema_post(0xFD7F1E30) = 0
    lwp_sema_wait(0xFD7F1E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_wakeup(0xFE7FB1D8) = 0
    lwp_mutex_lock(0xFE7FB1D8) = 0
    lwp_cond_broadcast(0xFE7FB210) = 0
    munmap(0xFE040000, 73728) = 0
    accept(13, 0xFE031CE8, 0xFE031CD4, 1) (sleeping...)
    signotifywait() (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    accept(9, 0xFE0F1C9E, 0xFE0F1C98, 1) (sleeping...)
    lwp_sema_wait(0xFE7EFA08) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_sema_wait(0xFDF0DE30) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    poll(0xFD530250, 1, -1) (sleeping...)
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE7EFA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFDF0DE30) = 0
    setitimer(ITIMER_REAL, 0xFDE0B730, 0x00000000) = 0
    lwp_sema_wait(0xFDF0DE30) = 0
    sigprocmask(SIG_SETMASK, 0xFE7FAD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    time() = 1072237327
    time() = 1072237327
    time() = 1072237327
    time() = 1072237327
    time() = 1072237327
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE7EFA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFE111E30) = 0
    setitimer(ITIMER_REAL, 0xFDE0B730, 0x00000000) = 0
    lwp_sema_wait(0xFE111E30) = 0
    sigprocmask(SIG_SETMASK, 0xFE7FAD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    fork1() = 12666
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    mmap(0x00000000, 73728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xFE040000
    mprotect(0xFE040000, 8192, PROT_NONE) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_self() = 10
    lwp_sema_post(0xFE051E30) = 0
    lwp_sema_wait(0xFE051E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    time() = 1072237328
    lwp_sema_post(0xFE7EFA08) = 0
    lwp_sema_wait(0xFE7EFA08) = 0
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    lwp_sema_post(0xFE051E30) = 0
    lwp_sema_wait(0xFE051E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_wakeup(0xFE7FB1D8) = 0
    lwp_mutex_lock(0xFE7FB1D8) = 0
    lwp_cond_broadcast(0xFE7FB210) = 0
    munmap(0xFD7E0000, 73728) = 0
    accept(13, 0xFE031CE8, 0xFE031CD4, 1) (sleeping...)
    signotifywait() (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    accept(9, 0xFE0F1C9E, 0xFE0F1C98, 1) (sleeping...)
    lwp_sema_wait(0xFE7EFA08) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_sema_wait(0xFDF0DE30) (sleeping...)
    poll(0xFD530250, 1, -1) (sleeping...)
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE7EFA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFDF0DE30) = 0
    setitimer(ITIMER_REAL, 0xFDE0B730, 0x00000000) = 0
    lwp_sema_wait(0xFDF0DE30) = 0
    sigprocmask(SIG_SETMASK, 0xFE7FAD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    fork1() = 12673
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    mmap(0x00000000, 73728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xFD7E0000
    mprotect(0xFD7E0000, 8192, PROT_NONE) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_self() = 9
    lwp_sema_post(0xFD7F1E30) = 0
    lwp_sema_wait(0xFD7F1E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    time() = 1072237358
    lwp_sema_post(0xFD7F1E30) = 0
    lwp_sema_wait(0xFD7F1E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_wakeup(0xFE7FB1D8) = 0
    lwp_mutex_lock(0xFE7FB1D8) = 0
    lwp_cond_broadcast(0xFE7FB210) = 0
    munmap(0xFE040000, 73728) = 0
    accept(13, 0xFE031CE8, 0xFE031CD4, 1) (sleeping...)
    signotifywait() (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    accept(9, 0xFE0F1C9E, 0xFE0F1C98, 1) (sleeping...)
    lwp_sema_wait(0xFE7EFA08) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_sema_wait(0xFDF0DE30) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    poll(0xFD530250, 1, -1) (sleeping...)
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE7EFA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFDF0DE30) = 0
    setitimer(ITIMER_REAL, 0xFDE0B730, 0x00000000) = 0
    lwp_sema_wait(0xFDF0DE30) = 0
    sigprocmask(SIG_SETMASK, 0xFE7FAD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    time() = 1072237387
    time() = 1072237387
    time() = 1072237387
    time() = 1072237387
    time() = 1072237387
    Received signal #14, SIGALRM, in lwp_sema_wait() [caught]
    lwp_sema_wait(0xFE7EFA08) Err#91 ERESTART
    sigprocmask(SIG_SETMASK, 0xFDE0BDE4, 0x00000000) = 0
    lwp_sema_post(0xFE111E30) = 0
    setitimer(ITIMER_REAL, 0xFDE0B730, 0x00000000) = 0
    lwp_sema_wait(0xFE111E30) = 0
    sigprocmask(SIG_SETMASK, 0xFE7FAD68, 0x00000000) = 0
    setcontext(0xFDE0B6C8)
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    fork1() = 12680
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    mmap(0x00000000, 73728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xFE040000
    mprotect(0xFE040000, 8192, PROT_NONE) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_self() = 10
    lwp_sema_post(0xFE051E30) = 0
    lwp_sema_wait(0xFE051E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_cond_signal(0xFE7F5548) = 0
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) = 0
    time() = 1072237388
    lwp_sema_post(0xFE7EFA08) = 0
    lwp_sema_wait(0xFE7EFA08) = 0
    sigprocmask(SIG_BLOCK, 0xFE7EF9F8, 0x00000000) = 0
    setitimer(ITIMER_REAL, 0xFDE0BC68, 0x00000000) = 0
    sigprocmask(SIG_UNBLOCK, 0xFE7EF9F8, 0x00000000) = 0
    lwp_sema_post(0xFE051E30) = 0
    lwp_sema_wait(0xFE051E30) = 0
    lwp_mutex_wakeup(0xFE7F5558) = 0
    lwp_mutex_lock(0xFE7F5558) = 0
    lwp_mutex_wakeup(0xFE7FB1D8) = 0
    lwp_mutex_lock(0xFE7FB1D8) = 0
    lwp_cond_broadcast(0xFE7FB210) = 0
    munmap(0xFD7E0000, 73728) = 0
    accept(13, 0xFE031CE8, 0xFE031CD4, 1) (sleeping...)
    signotifywait() (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    accept(9, 0xFE0F1C9E, 0xFE0F1C98, 1) (sleeping...)
    lwp_sema_wait(0xFE7EFA08) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_cond_wait(0xFE7F5548, 0xFE7F5558, 0xFE7EEDB0) (sleeping...)
    lwp_sema_wait(0xFDF0DE30) (sleeping...)
    poll(0xFD530250, 1, -1) (sleeping...)

  • Acrobat X Pro, continues to need re-installed every 30 days, with a 4 year subscription.

    I'm really, really tired of having to re-install this program every 30 days when I purchased a 4 year subscription.  The first time this happened on a weekend, I missed turning in assignments and then had to reinstall my entire CS6 (per adobe help suggestion) to get it to work.  That takes 8 hours, if I'm lucky.   I have found a way to do it faster, but this is the 6th time having to reinstall it and I'm tired of this glitch in the program.  I have also be made aware it isn't just happening to me.  I want to get this fixed.  This suite wasn't cheap, and the continuous headache this problem keeps creating isn't something I can overlook any more.  I need action Adobe.  So please fix this problem with your Acrobat X Pro program, because your customers aren't happy with it.  Some are so feed up they purchased another program to do it's job.

    I have a PC.  I’m running windows 8  64 bit, but this problem occurred on Windows Vista as well.  There are no error codes it just won’t open.  You can use the program that morning to convert or combine files into a pdf. then 2 hours later you go to repeat the process and nothing.  The icon for it will appear on your desktop for 5 sec. and then disappear.   That’s it nothing else happens.  The same results will occur no matter how you try to open the program, restart your computer, or check for updates.
    The only way to make the program work is to uninstall and reinstall it.  The first time this occurred the adobe rep told me to reinstall the whole suite.  It took 8 hours.  I have now found were I stored the suites setup files to reinstall the individual application verses the entire suite, but it is still annoying to have to re install it ever 30 days or so.  When I do re-install it all the serial numbers are in place and it says I have 36,XXX days left in my trail.
    I don’t know what else you would want, but this is all I can give you because that’s what happens.  I’m currently taking online classes and we are all required to have this exact same suite and I know at least 2 other students who have mentioned this requiring problem.  One was so tired of it the purchased a different program to do it’s job.

  • How force users to change passwords every 60 days

    Hi,
    We're running ebs 12 and would like to know which profile option to set at the site level to force the passwords for all users to expire every 60 days.
    We don't want to expire the database user passwords, just the application user password in ebusiness.
    Kind regards,
    dula

    Are you looking all users to reset their password at once ? If not, as and when you define users (I assume you don't define users in large volumes daily), you can set this to 60. Assuming you've set this policy today (to expire passwords every 60 days) and wish to update this in the database for all users, the update statement that you've specified is correct (with suitable WHERE clause). For all new users, you've got to define this when defining the users, though !

  • Unless I repair my hard drive every other day I am unable to delete songs from iTunes or email messages from Postbox. I've only had an iMac for a few weeks, is this normal?

    Unless I repair my hard drive every other day I am unable to delete songs from iTunes or email messages from Postbox. I've only had an iMac for a few weeks, is this normal?

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take a few minutes to run, or perhaps longer if you have literally millions of files in your home folder. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if it frightens you, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password dialog will open. You’re not going to reset a password.
    In the dialog, select the startup volume ("Macintosh HD," unless you gave it a different name) if it's not already selected.
    Select your username from the menu labeled Select the user account if it's not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • HomeHub 5 Rebooting/Restarting Every 15 Days!!

    Hi All,
    Apologies if this has already been covered but I am at my whits end. I have had Inifinty 2 for over a year now and my HH5 seems to restart every 15 days as if its on a timer.. I recently had an engineer out as my line went iffy as my max speed reduced by about 20mb and the max available was showing incorrectly too. He put my line on to some new pairs up to the cabinet... The speeds are fantastic as they aleady were and my line was back up running in no time.. Sure enough though.... 15 days exactly later and the hub restarted itself albeit the speeds stayed the same... What on earth doe the HH5 do this for or is there something wrong with my line?? I would love to get to the bottom of this as surely these restarts will affect my speed.
      Info from the router:
    Whilst typing this i notice that my hub restarted itself again last night to apply the firmware update.. ending 204... perhaps this might mean the end of the restarts
    Any advice gratefully accepted
    00:39:50, 16 Jan.
    (49636.050000) The system is going DOWN for reboot.
    10:53:08, 15 Jan.
    ( 33.870000) The system is UP!
    10:52:00, 15 Jan.
    (1886357.070000) The system is going DOWN for reboot.
    10:52:00, 15 Jan.
    (1886357.070000) OpenRG is going for reboot by IPC command
    10:51:55, 15 Jan.
    (1886352.070000) OpenRG will go down for reboot in 5 seconds
    14:52:33, 24 Dec.
    ( 35.030000) The system is UP!
    15:34:44, 23 Dec.
    ( 34.400000) The system is UP!
    15:01:27, 23 Dec.
    ( 34.310000) The system is UP!
    00:00:35, 01 Jan.
    ( 35.690000) The system is UP!
    17:48:04, 13 Dec.
    ( 36.600000) The system is UP!
    17:46:54, 13 Dec.
    (726182.170000) The system is going DOWN for reboot.
    08:04:09, 05 Dec.
    ( 35.500000) The system is UP!
    00:05:02, 24 Nov.
    ( 34.800000) The system is UP!
    00:03:52, 24 Nov.
    (1554635.200000) The system is going DOWN for reboot.
    00:03:52, 24 Nov.
    (1554635.200000) OpenRG is going for reboot by IPC command
    00:03:47, 24 Nov.
    (1554630.200000) OpenRG will go down for reboot in 5 seconds
    00:13:16, 06 Nov.
    ( 35.380000) The system is UP!
    00:12:07, 06 Nov.
    (1252254.320000) The system is going DOWN for reboot.
    00:12:07, 06 Nov.
    (1252254.320000) OpenRG is going for reboot by IPC command
    00:12:02, 06 Nov.
    (1252249.320000) OpenRG will go down for reboot in 5 seconds
    13:21:17, 22 Oct.
    ( 35.160000) The system is UP!
    13:20:17, 22 Oct.
    (764067.760000) The system is going DOWN for reboot.
    Stats on Line
    1. Product name:
    BT Home Hub
    2. Serial number:
    +068343+NQ34526038
    3. Firmware version:
    Software version 4.7.5.1.83.8.204 (Type A) Last updated 15/01/15
    4. Board version:
    BT Hub 5A
    5. DSL uptime:
    0 days, 09:38:29
    6. Data rate:
    20000 / 79995
    7. Maximum data rate:
    30944 / 83647
    8. Noise margin:
    12.8 / 7.8
    9. Line attenuation:
    13.7 / 14.9
    10. Signal attenuation:
    13.6 / 14.9
    Solved!
    Go to Solution.

    Another poster {DavidCo} recommend to set the dhcp lease the max 21 day setting on the hh5 to see if that helps.
    15 days is pretty good for the hh5 & shouldn't really attract the dreaded dlm's attention. {Unless its on a counter phase ?}
    Good guide on how the dlm works from BTRetails sister isp pluesnet  . http://community.plus.net/library/browsing/fttc-dlm-what-it-is-how-it-works/
    If you don't want to loss the lines connection when the hh5 updates ( or what ever other mischief it gets upto ) You need to use it in tandem the an openreach modem as "guru ray_d"  often highlights .
    That way the hh5 can concentrate on just being a router , rather than an all singing 'n' dancing all-in-one.

  • My Timecapsule Stops Working every few days!

    I have a 2TB Timecapsule that has worked flawlessly for about 18 months.  Over the last month it has stopped working every few days.  When I say it stops working the wirless networks go off and the wired router stops.  The lights are green on the back where the cables connect and on front I have a green status light.  But the devices stops functioning.  I pull the power and wait a little while and plug it back in and everything works again for a few days (could be a week) could be 2-3 days. 
    It is running the latest firmware and I haven't changed its configuration in many months.
    No idea what to do... Any sugestions?
    Joe

    The lockup is across all devices??
    Are any still working when the computer say is unable to connect?
    It could be the latest firmware that is the problem.. that changed about 1-2months ago.
    You can try doing a factory reset and a new clean setup but more than likely the issue will continue.
    To go back to earlier firmware hold down the option key when you choose firmware. It will then show older as well as new versions.. Select 7.6.1 or even 7.5.2
    Factory reset after the firmware and do the setup again.

  • Linksys E900 Locking up every few days

    Ok, I just got done talking to tech support and really got no where.  What happens is every few days, some reason I can't connect any wireless devices to the wireless in the house.  They just spin and says can't connect.  My desktop that's wired in cannot browse the web, but has a good 192.168.1.x IP address.  
    On my desktop, I'm able to ping the gateway 192.168.1.1.  I cannot pull up the Linksys local router page (192.168.1.1) in a web browser.  I cannot browse the web or ping an outside IP address such as 8.8.8.8.
    If I unplug my router and plug it in, it will work again for a few days and the same thing will happen.
    Linksys support insists there's nothing wrong with the router and this is a modem issue.  They want me to take the router out of the equation and just run off the modem for a few days.  Yes, if I did that, I would prove it isn't that.  But our house phone wouldn't work and everything we run off the Internet would be dead to just prove that's not the problem.  I told the tech that my PC's next "hop" is the router's LAN port.  It then routes to the Internet port, out that to the modem.  If it was the modem that was the issue, wouldn't it make sense I should be able to pull up 192.168.1.1 in a web browser seeing it's before the modem?    I should be able to pull up 192.168.1.1 and get to the status tab but I'd then expect to see all 0s for the IP for the WAN or something weird there.  He said, no... that makes no sense.  Seeing I can't pull up the router in the web browser, it must be the modem and contact them.
    I was hoping when I called they would say there was some firmware they haven't released yet but it's a known issue and they could give me a pre-release copy of it to fix it... no luck.  Does anyone have any ideas how to fix it?

    I solved it by throwing it away and buying a netgear cheapo $30 router.

Maybe you are looking for

  • ADD A LINK AROUND MAIN IMAGE IN PHOTO GALLERY

    Can anyone help with the code for this. I need to add a link to each image as it appear in the spry photo gallery. Each link would be different and set in the xml file can some one help please. I can't figure this one out.

  • Web interaction in local HTML5 publish

    Hi, I have a bit of a hard time to get web interaction working in local html5 publish. We have embedded a web page interaction widget in our presentation. The interaction works fine in LMS, but we need to deliver the content on CD, so the presentatio

  • Rows to column issue

    Hi all, I have the following sql which calculates volume for a given month and displays the month as a column. select cc_num ........., case ............when to_char(trunc(actvy_per_date,'MM'), 'MM') = '01' .................then sum(cc_actual_vol) ..

  • New Ram failed

    Hello, I have a Powerbook G4 1.67 GHz PowerPC G4 Memory: 512 MB DDR SDRAM I have just added another 512MB DDR 2100, SO-DIMM Memory Module by Kingston. After boot up the memory is not visable. When I veiw the hardware diagnostics the following info is

  • Save adjustments to repeat on multiple images?

    Is there a way to save a set of adjustments to repeat on multiple images?  I often scan older slides, and often an entire roll suffers from the same set of lighting color temperature imbalances, faded saturations, sharpening needs, etc.  Having to go