Archive Notes in Notes App in OSX 10.10.1

Is it possible to archive all notes in the Notes App within OS X 10.10.1. I just want to make a backup of all the Notes.
Cheers,
c.

This much I can tell you, the Target machine is pretty much a super expensive external drive.
If you set the MacBook Pro in Target mode with the 'T' key on the MacBook Pro, and then connect that to your Powerbook, it will essentially become a working optical drive for the Powerbook.  Be sure to have the proper Firewire cable to connect the two machines.  http://www.macsales.com/ offers 6 pin to 9 pin Firewire cables if your MacBook Pro only has Firewire 800.
1. T key on MacBook Pro.  Wait for Firewire logo on it.
2. Insert the disk in the MacBook Pro.
3. Boot with the Option key on the Powerbook until the Startup Manager appears.
4. Connect the Powerbook to the MacBook Pro.
5. Refresh with the curly icon on the Powerbook screen.
6. The optical disk on the MacBook Pro should now appear on the Powerbook screen.  Select it.
7. Select the arrow button on the Powerbook to continue booting from it.
If it is a Mac OS X installer, you should be able to run the Disk Utility from the installer's menu to repair the disk if the hard disk on the Powerbook is at all in working order.  If not, you may need to get an older version of Alsoft Disk Warrior for PowerPC Macs to do so.  And if that doesn't work, get a new hard drive from http://www.macsales.com/ for the Powerbook.  2.5 Parallel ATA 9.5mm hard drives that are compatible with Powerbooks is what you need to ask for.

Similar Messages

  • How can I upgrade from an older OSX to Lion, I do have the requisite processor.  I did not have Snow Leopard, so I do not have the App Store.

    The people at the Apple Store told me to wait on an upgrade to Snow Leopard because Lion was coming out soon.   However, without Snow Leopard, I can not get the App Store.
    I have OSX 10.58 and a processor big enough to support Lion.

    So you need to upgrade to Snow Leoapard first so you can access the Mac App Store in order to download Lion.
    Snow Leoapard is available from the online store >  http://store.apple.com/us/product/MC573Z/A?mco=MTY3ODQ5OTY
    Lion requires an Intel-based Mac with a Core 2 Duo, i3, i5, i7 or Xeon processor and 2GB of RAM.

  • HT4759 My mac mini is not updating its software to OSX Lion v10.7.5.  I would like to use iCloud on my desktop along with my iphone and ipad but the auto updates are only upto 10.6.8.

    My mac mini is not updating its software to OSX Lion v10.7.5, which I need for iCloud.  I would like to use iCloud on my desktop along with my iphone and ipad but the auto updates are only upto 10.6.8. 

    You need to get the newer version from the Mac App Store.
    (70404)

  • BPEL Archive directory {0} not found

    Hello,
    I have created deploy.xml,to deploy bpel processes on SOA server which is on unix based machine.
    xml is like
    <?xml version="1.0" encoding="windows-1252" ?>
    - <project default="Install" xmlns:oracle="antlib:oracle" basedir=".">
    <property name="process.dir" value="${basedir}" />
    <property name="package.dir" value="${basedir}/Package" />
    <echo>$(basedir) $(process.dir) $(package.dir)</echo>
    - <!-- Accounts Payable WorkFlow Version
    -->
    <property name="FlowVersion" value="1.0" />
    <property environment="env" />
    - <!-- First override from build.properties in process.dir, if available
    -->
    - <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME
    -->
    - <condition property="bpel.home" value="${env.BPEL_HOME}">
    <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
    </condition>
    <xmlproperty file="${process.dir}/bpel/bpel.xml" />
    <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}" />
    - <!-- If bpel.home is not yet using env.BPEL_HOME, set it for JDev
    -->
    - <!--      <property name"bpel.home" value="/apps/soa/product/10.1.3.1/OracleAS_1/bpel">
    -->
    <property name="bpel.home" value="C:/product/10.1.3.1/OracleAS_1/bpel" />
    <property name="bpel.home" value="${oracle.home}/integration/bpel" />
    <property file="${bpel.home}/utilities/ant-orabpel.properties" />
    <property name="bpel.home" value="${bpel.home}" />
    - <!-- import custom ant tasks for the BPEL PM
    -->
    <import file="${bpel.home}/utilities/ant-orabpel.xml" />
    - <!-- Use deployment related default properties
    -->
    - <!--
    This Task is Used to Unjar the jar file & replace the Token value,but needs to identify
    required or not. & if required from where it is get called.
    -->
    - <!-- Define the deployer URL
    -->
    <echo>Deployer URI : deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}</echo>
    <property name="deployer.url" value="deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}" />
    <echo>------------------------------------------------------------------- | ${env.BPEL_HOME} | Deploying to Server deployer:oc4j:opmn://${j2ee.hostname}/${oc4jinstancename} -------------------------------------------------------------------</echo>
    <property name="process" value="process1" />
    - <target name="FixURLLocations">
    <echo>------------------------------------------------------------------- | Updating Web Service Location Information | JAR file to update: ${p.jarfile} | Web Service Location base: http://${http.hostname}:${http.port} -------------------------------------------------------------------</echo>
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    <mkdir dir="${package.dir}/temp" />
    <mkdir dir="${package.dir}/Save" />
    <copy file="${p.jarfile}" todir="${package.dir}/Save" />
    <unjar src="${p.jarfile}" dest="${package.dir}/temp" overwrite="yes" />
    <!-- Code to replace some hardcoded values -->
    <delete file="${p.jarfile}" verbose="no" quiet="yes" failonerror="no" />
    <jar destfile="${p.jarfile}" basedir="${package.dir}/temp" update="yes" />
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    </target>
    <target name="Test">
    <echo>---------------------------------------------------------------- | Deploying process GWT_SP_L1WipBPELProcess ----------------------------------------------------------------</echo>
    <antcall target="FixURLLocations">
    <param name="p.jarfile" value="${package.dir}/Test.jar" />
    </antcall>
    <deployProcess user="${admin.user}" password="${admin.password}" domain="${domain}" process="${process.name}" rev="${rev}" dir="${package.dir}/output" hostname="${http.hostname}" httpport="${http.port}" verbose="${verbose}" isSSL="${isSSL}" trustStore="${trustStore}" trustPassword="${trustPassword}" />
    </target>
    <target name="Install" depends="bpel, apps_webservice">
    <tstamp />
    <echo>--------------------------------------------------------- | Deployed all process ---------------------------------------------------------</echo>
    </target>
    <target name="apps_webservice" depends="Test">
    <tstamp />
    <echo>--------------------------------------------------------- | Webserivces and application Installation completed directory "{0}" ---------------------------------------------------------</echo>
    </target>
    <target name="bpel" depends="">
    <tstamp />
    <echo>--------------------------------------------------------- | BPEL Process Installation completed ---------------------------------------------------------</echo>
    </target>
    </project>
    but when I try to run this xml using Ant It,unjar file files replaces code ,make jar again and on deploying it gives following error
    BPEL Archive directory {0} not found.
    Could you please tell me why this error is coming and how i can resolve it?

    Hello,
    Could any one help regarding this.
    Please suggest why d<deployprocess> is failing and giving BPEL Archive directory {0} not found.
    Could
    <copy file="${p.jarfile}" todir="C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\deploy" />
    replace <deployprocess>
    Thanks & Regards,
    Jignya

  • Why iPhoto 9.5.1 will not complete download on my OSX 10.9.2?

    Why iPhoto 9.5.1 will not complete download on my OSX 10.9.2?

    Contact App Store support. There's a link on the right hand side of the App Store Window.

  • Archive Logs Will Not Delete from OS

    Hi Everyone,
    Here's my issue. Somehow i have a few archivelogs that are corruptued, plus a backup of the database that is corrupted. Since then, I have made a new backup of the database and everything is running smoothly. WHen i try to delete the files from DISK (which i cannot delete), i get this error: CANNOT DELETE <file_name>: The file or directory is corrupted and unreadable. I try to search for the corrupted files in rman, but i get this message "specification does not match any archived log in the recovery catalog". It seems that rman doesn't recognize that the files exist.
    I go to the alert log and I have this error:
    Corrupt block seq: 10511 blocknum=1.
    Bad header found during deleting archived log
    Data in bad block - seq:0. bno:0. time:0
    beg:0 cks:0
    calculated check value: 0
    Reread of seq=10511, blocknum=1, file=APP\ORACLE\FLASH_RECOVERY_AREA\PPROD\ARCHIVELOG\2010_11_04\O1_MF_1_10511_6F5SOFC7_.ARC, found same corrupt data
    Reread of seq=10511, blocknum=1, file=APP\ORACLE\FLASH_RECOVERY_AREA\PPROD\ARCHIVELOG\2010_11_04\O1_MF_1_10511_6F5SOFC7_.ARC, found same corrupt data
    Reread of seq=10511, blocknum=1, file=APP\ORACLE\FLASH_RECOVERY_AREA\PPROD\ARCHIVELOG\2010_11_04\O1_MF_1_10511_6F5SOFC7_.ARC, found same corrupt data
    Reread of seq=10511, blocknum=1, file=APP\ORACLE\FLASH_RECOVERY_AREA\PPROD\ARCHIVELOG\2010_11_04\O1_MF_1_10511_6F5SOFC7_.ARC, found same corrupt data
    Reread of seq=10511, blocknum=1, file=APP\ORACLE\FLASH_RECOVERY_AREA\PPROD\ARCHIVELOG\2010_11_04\O1_MF_1_10511_6F5SOFC7_.ARC, found same corrupt data
    I would really appreciate some help to delete these files from the OS. Thanks in advance to anyone that can help.

    RMAN> Change Archivelog All Validate;
    released channel: ORA_DISK_1
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=363 device type=DISK
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_04\O1_MF_1_10514_6F6SJ9D6_.ARC RECID=11389 STAMP=734220234
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_07\O1_MF_1_10546_6FDRCHQX_.ARC RECID=11421 STAMP=734412064
    validation succeeded for archived log
    archived log file name=\APP\ORACLE\FLASH_RECOVERY_AREAPPROD\ARCHIVELOG\2010_11_07\O1_MF_1_10556_6FGTGZNJ_.ARC RECID=11431 STAMP=734479760
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_07\O1_MF_1_10557_6FGX6CG5_.ARC RECID=11432 STAMP=734482556
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_07\O1_MF_1_10558_6FGZ9SLK_.ARC RECID=11433 STAMP=734484714
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10559_6FH12R00_.ARC RECID=11434 STAMP=734486537
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10560_6FH6OJRW_.ARC RECID=11435 STAMP=734492259
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10561_6FHL3J98_.ARC RECID=11436 STAMP=734503969
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10562_6FHTF2QX_.ARC RECID=11437 STAMP=734512468
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10563_6FJ32ZSD_.ARC RECID=11438 STAMP=734521361
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10564_6FJB1OMK_.ARC RECID=11439 STAMP=734528486
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10565_6FJJH3TV_.ARC RECID=11440 STAMP=734535062
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10566_6FJKJ6PY_.ARC RECID=11441 STAMP=734536118
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10567_6FJV244W_.ARC RECID=11442 STAMP=734545911
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10568_6FK5BMYR_.ARC RECID=11443 STAMP=734556421
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10569_6FK68QRW_.ARC RECID=11444 STAMP=734557384
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10570_6FKDM74D_.ARC RECID=11445 STAMP=734563863
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10571_6FKGK4LK_.ARC RECID=11446 STAMP=734565848
    validation failed for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_08\O1_MF_1_10572_6FKH42MK_.ARC RECID=11447 STAMP=734566452
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10573_6FKOQX6C_.ARC RECID=11448 STAMP=734573238
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10574_6FKVHC8S_.ARC RECID=11449 STAMP=734579100
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10575_6FL6T300_.ARC RECID=11450 STAMP=734590708
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10576_6FLJ3NMK_.ARC RECID=11451 STAMP=734600229
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10577_6FLO72K2_.ARC RECID=11452 STAMP=734605459
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10578_6FLTF31G_.ARC RECID=11453 STAMP=734610772
    validation succeeded for archived log
    archived log file name=APP\ORACLE\FLASH_RECOVERY_AREA\PROD\ARCHIVELOG\2010_11_09\O1_MF_1_10579_6FM1N500_.ARC RECID=11454 STAMP=734618166
    Crosschecked 26 objects

  • Why I can not Download Any Apps by Itunes11.3 on my MacBook Pro?

    At first I wanna give you a thanks for All you guys.....
    I'm facing a great trouble now-a-days. I can not Download Any Apps by Itunes11.3 on my MacBook Pro. But I can do ti by 10.1 or before version. When I see such this problem, I thought if I update my OsX, my problem gonna be all right. But nothing gonna fine. till I'm facing same problem. I download Itunes again and again but nothing gonna change. Now please say me, what can I do???

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Are you running any anti-viral software or a firewall? Little Snitch?

  • HT1725 I can not get any app to finish loading from the app store.  Anyone else having this problem

    I can not get any app to finish loading from the app store.  Anyone else having this problem?

    Why has nothing been done on this? I still have this problem today on Chrome and on the latest OSX.

  • Pages 09 (updated) will not start up using Lion OSX

    iWork Pages 09 (updated) will not start up using Lion OSX. It did work at one time but now it won't. I reinstalled iWork several times with updates but the applications say to reinstall or check the developer.  I'm using an i-Mac Intel with updated downloads for all applications.  Thank You in Advance for your thoughts to solving this concern.

    What else have you been doing just before this problem started? Any other updates on the computer? If you need to reinstall iWork which some has when upgrading to Lion after a complete uninstall.
    To uninstall correctly iWork, go to Yvans iDisk :
    <http://public.me.com/koenigyvan>
    Download :
    For_iWork:iWork '09:uninstall iWork '09.zip
    Expand the archive and run the script.
    Now you can instal iwork again and do the updates.

  • IPad App Store not downloading updated apps

    I have an iPad 3 64GB that has been updated to iOS 8. In the last two days, the App Store will not download updated apps. It shows them with a red number, but when I click on Update, I get the circle with a square in the middle but then nothing proceeds. If I go to the individual app, it says "waiting…" but if I click it, it does not change to "paused" as it used to when waiting was shown.
    My iPhone 5S is not having a problem, nor is iTunes on my computer.
    Sometimes, if I sync the iPad with iTunes, the updated apps will copy over to the iPad, but not every time.
    I have done a forced restart on the iPad and have also done a Reset All Settings under the General setting.
    It appears that something has gone wrong with the App Store app. Does anyone have a suggestion as to how to fix this short of restoring the iPad to new status and reinstalling everything?

    Hi,
    Try deleting the apps with the issue from iTunes, and then download and update them again.
    This article: http://support.apple.com/kb/TS1702 provides additional tips for troubleshooting issues with applications.
    -Jason

  • Iphone 4 sound is not working in apps

    My iphone 4 sound is only working in my music app and my videos and my ringtone but not on any apps such as snapchat,facebook,youtube,instagram, and more. what should i do?

    Standard user troubleshooting as outlined in the manual are restart, reset, restore, restore as new. Start with a simple power off, and back on. Any change?

  • New OSX not does not work with RED Rocket Card and old OSX Randomly Logs Out - UNSTABLE

    It looks like my MBPR 16GB (MacBook Pro) randomly logs out and causes my programs to quit unsaved.  I can not update to the new OSX mountain Lion because the new Apple release is no longer compatible with the RED Rocket card needed for debaying RED Scarlet footage.  Mountain Lion causes the RED Rocket to not run correctly with Adobe Premiere. 
    At the same time, I am on Lion and my computer randomly logs me out and I lose all my work.  It seems as though the Retina is unstable. 
    Any help would be greatly appreciated.  Can someone tell me how I can return this.  It seems as though I may have to switch the entire company over to PC if this is not figured out soon. 

    You probably have not received responses for two reasons.
    1. There are not many here that know what this is "RED Rocket card needed for debaying RED Scarlet footage"
    2. Your post appears to contain some sort of threat to Apple about moving to PCs. You are not addressing Apple here. We are users just like you. We don't care if you change over to PCs.
    MBPs and Lion are very stable. Maybe your unsupported third party Red card is causing issues. Their answer seems to be that Mountain Lion is not supported. I wonder why?
    My suggestion if this is a business environment is to not mess with this. If you know for a fact that your Red card works with PCs, change over to PCs. I know that if some tool was not working for my business I would not hesitate to get something that worked.

  • App store for iphone does not know my apps

    I have a second iphone. When I log in with my user id in App Store in this second iphone I cannot see my apps already bought and if I search for one of them instead of having the availability to download theam again I need to pay again.
    I know this is not the right behaviour because in my other ipad all the apps are available for download without paying again and there is even a functionality to find all apps in my user and not in my device. But in this ocassion it seems my ihpone do not see any app for my user.
    Anyone know the problem?
    PS I am using a common user id for the App Store

    Update:
    Just reboot the iphone and now it works.

  • My iphone4s can not update any apps. Nor is it able to download any new apps. What should I do?

    my iphone4s can not update any apps. Nor is it able to download any new apps. What should I do?
    I have two Apple Accounts. One in Switzerland and one in China. I used to be able to updates all of my apps by clicking individual apps. One day I clicked update all by accident. Ever since that, my iphone cannot update any of the apps. Nor is it able to download any new apps. Please kindly let me know how to make the phone back into work with the apps.
    Many thanks.

    I find it difficult to believe that it took you a year to realize your phone was defective.
    Restore the phone as new. Wait a couple of days before adding any apps to see if it's running ok. Then, add apps a couple at a time so that, if any of them cause issues, you'll have an idea which one.

  • I bought new Macbook Pro 13" around two months before .My Apple ID is working on all other things except app store . It is buffering for a lot of time and lastly coming on screen " can not connect to app store " Please help me

    I bought new Macbook Pro 13" around two months before .My Apple ID is working on all other things except app store . It is buffering for a lot of time and lastly coming on screen " can not connect to app store " Please help me

    Have you tried repairing disk permissions : iTunes download error -45054

  • I gave my ipad 2 to my brother last month. After that he erased all content and settings, sign in with his apple id. The next day until now, I found out that I can not udpate my apps both on my iPhone and iPad Air. What should I do? Thank you in advance.

    I gave my ipad 2 to my brother last month. After that he erased all content and settings, sign in with his apple id. The next day until now, I found out that I can not udpate my apps both on my iPhone and iPad Air. I had create new apple id, change my password, delete the icloud acc. But still I can not update my apps. I have many of red notifications on iPhone and iPad Air. What should I do? Thank you in advance.

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

Maybe you are looking for