Unsuccessful Back up

Can anyone decipher and explain to me this error on my log file? Regarding back up.
/Applications/Adobe Photoshop CS2/Legal.localized/Tiếng Việt.html -> /Volumes/iMac Lacie/Applications/Adobe Photoshop CS2/Legal.localized/Tiếng Việt.html : [ dupFNErr (-48): Duplicate filename (rename) ]
symlink(/,/Volumes/iMac Lacie/Volumes/iMac 1 HD) failed at /usr/local/bin/psync line 240.
I have sent the following email to Deju vu and waiting for a reply. I realize this is third party software but I need an explanation of the log. Any help or advice would be appreciated.
Thank you
Dick Lund
I backed this up last month for the first time and it functioned correctly.
Backing up my imac for the 2nd time it was not successful it told me to check the log file and this was the error that was recorded.
I got this window:
Dejuvu encountered a problem while backing up your files
You can find out what went wrong by opening déjà vu and clicking the appropriate log button near the top of the window.
/Applications/Adobe Photoshop CS2/Legal.localized/Tiếng Việt.html -> /Volumes/iMac Lacie/Applications/Adobe Photoshop CS2/Legal.localized/Tiếng Việt.html : [ dupFNErr (-48): Duplicate filename (rename) ]
symlink(/,/Volumes/iMac Lacie/Volumes/iMac 1 HD) failed at /usr/local/bin/psync line 240.
In the dv_temp.log after the attempted the log says the following:
====Log file does not exist=========
The imac is a g5 with 2.5 gig of ram. I had trouble last month on the first back up and you had me uninstall and reload 3.2.1 and the back up was successful then.
I am using 3.2.1 I have a yellow triangle with an exclamation on the left side of the date of the recent backup.
I have tried a 2nd time and the same error.
It takes almost 1.25 hours and there is no percentage of files copied in the menu bar and I have it checked in the options. The drive is 250 gigs with 93 gigs free.
I am backing up to a Lacie ext fire wire HD. Tiger OS 10.4.5

Hi Dr. Smoke
did as you suggested and it did solve the problem. Before I did as you suggested I followed Jeff Hollands advice with using the update he suggested of which did not resolve the issue.
for your informatiion below is what he suggested, What is interesting though, the disk was backed up.
Thank You for your help
Dick Lund
On Apr 13, 2006, at 12:45 AM, Dick Lund wrote:
symlink(/,/Volumes/iMac Lacie/Volumes/iMac 1 HD) failed at
/usr/local/bin/psync line 240.
These are not true errors, but unfortunately they are being flagged
as such. You can download and run this updater to fix this.
<http://propagandaprod.com/software/UpdateDejaVu3.2.1.zip>
(Be sure you have Deja Vu 3.2.1 installed first.)
You can also download and install Deja Vu 3.3b3 if you like. It's
linked on our site.
Kind Regards,
-jeff
Jeff Holland
http://propagandaprod.com

Similar Messages

  • Unsuccessful back-up/restore Z3 Dual 5.0.2

    I made a backup of my Z3 dual prior doing "repair".
    All was successful, however after restore, nearly all music is gone, settings are not restored and none of the screens (panes) is made the same way it was before.
    Although I am not sure if the last one shall happened then what about music and playlists?

    I'm sorry I'm not fully aware of the options in Bridge for Mac, I use PCC. But if you did back up your music they should be there in the back up folder.
    And homescreens are not available for back up and restore, coz they are dependant on installed apps and widgets. For Setting, some of then are in the back up and some are not.
    A proud Sony User since 2002
    If I was helpful to you, thank me by Kudos

  • Java - Axis2: How to get an error code / error message from the Javascript via SOAP

    Hi
    In our Java applicsation we call a Javascript in a Indesign CS Server using the following code:
    --- SNIP BEGIN ---
    // calls the remote service on the indesign server
    try {
    // create service
    ServiceStub oIndsgnSrvStub = new
    ServiceStub(sIndesignServer);
    // create service parameter
    ServiceStub.RunScriptParameters
    oIndsgnSrvRSParams = new ServiceStub.RunScriptParameters();
    // create arguments with source- and target-file for parameter
    ServiceStub.IDSPScriptArg[] oIndsgnSrvSArgs = new ServiceStub.IDSPScriptArg[2];
    oIndsgnSrvSArgs[0] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[0].setName("xml-input");
    oIndsgnSrvSArgs[0].setValue(sSourceFile);
    oIndsgnSrvSArgs[1] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[1].setName("output-file");
    oIndsgnSrvSArgs[1].setValue(sTargetFile);
    // define service parameter
    oIndsgnSrvRSParams.setScriptArgs(oIndsgnSrvSArgs);
    oIndsgnSrvRSParams.setScriptFile(sScriptFile);
    oIndsgnSrvRSParams.setScriptLanguage("javascript");
    oIndsgnSrvRSParams.setScriptText("");
    // create runscript
    ServiceStub.RunScript oIndsgnSrvRS = new ServiceStub.RunScript();
    // set parameter
    oIndsgnSrvRS.setRunScriptParameters(oIndsgnSrvRSParams);
    //$$$ there should be an answer returned by the InddSrvr
    // execute SOAP call
    ServiceStub.RunScriptResult oIndsgnSrvRes = oIndsgnSrvStub.RunScript(oIndsgnSrvRS);
    if(oIndsgnSrvRes.getErrorNumber() == 0) {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_SUCCESS);
    bOK = true;
    } else {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_FAILURE);
    bOK = false;
    //$$$ should be set, if there is something returned by inddsrvr
    //oServerProdJob.setErrorMsg(sErrorMsg);
    } catch(Exception e) {
    sError += e.getMessage() + "\n";
    bOK = false;
    --- SNIP END -----
    The problem is that we don't get the error code and/or the error message from the Javascript in oIndsgnSrvRes. The error code is always 0 if I set an Integer value as return in the Javascript. If I set a String, there is an Exception in the Java application.
    Here is the Java script we use:
    --- SNIP BEGIN ---
    main();
    main()
    var sError = "";
    var sXMLInput = "";
    var sLayoutPath = "";
    // get the SDKCodeSnippetRunner object
    var cbpAdapter = app.cbpCbpadapterObject
    if (cbpAdapter) {
    sXMLInput=app.scriptArgs.get("xml-input");
    sLayoutOutputFile=app.scriptArgs.get("output-file");
    sError = cbpAdapter.doProcess(sXMLInput, sLayoutOutputFile);
    return sError; // This give an Exception; if I return an Integer the ScriptResult is always 0
    --- SNIP END -----
    If I try this with the test application from Adobe I get the error code correctly. But in the Java application, using SOAP, I can't get the error code.
    What could be wrong?
    Any ideas?
    Thanks a lot for the support.
    Kind regards
    Hans

    user11340104 wrote:
    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Well, let google be your friend,
    http://www.google.co.in/search?rlz=1C1GGLS_enIN327IN327&sourceid=chrome&ie=UTF-8&q=sqlplus+error+codes
    There are many threads I guess talking about the same issue.
    HTH
    Aman....

  • Song in iTunes library won't play in iMovie

    +The song "Autumn to Winter - New Age Piano Music for Relaxation" could not be used because the original file could not be located.+
    I would like to use the song mentioned above in an iMovie project. I just bought and downloaded it from the iTunes store; it plays when I click on it in my music library and it appears in the music list in iMovie. However, when I try to play it in iMovie, the message above appears.
    Help please.

    Thanks for the advice.
    I had never had any problems using songs downloaded into iMovie/iDVD projects from my iTunes library. As it turned out, there was a problem with the song itself - for some reason iTunes didn't know where it was on my computer. After several unsuccessful back and forth emails to iTunes help, I chose another song, purchased and downloaded it as a test. Everything worked as it should.
    I will remember your process if anything happens in the future.

  • WLAN issue using Nokia 5530

    After that i did a hard factory reset.
    Everything works on my phone except WLAN.
    Everythime i try to connect with a router (no matter which) the phone says "Connection not available".
    I have nearly the same problem with the data connection...
    Could anyone help me please?
    I Hope that i must not do the hard reset again... 

    Hey thomasvdp1994,
    Welcome to the Nokia Discussions forum! Check out the WLAN section in user guide from the page 127 onwards. If you can't succeed by following the steps there, try to create the WLAN access point manually like instructed on the page 130.
    Try to recreate the data connection as per on the page 132.
    If the connection is still unsuccessful, back up your data with Nokia Suite and do the hard reset again. You can also try to reinstall the phone software with Nokia Suite > SW updates > Reinstall
    Hope you get it working again!
    Jampe
    If the answer solves your issue, please click the ACCEPT AS SOLUTION button so other users can benefit from it as well. Giving a kudos (the white star) if my answer has helped will be appreciated.

  • How to get an error code from from calling sqlplus from shell script?

    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Thanks!

    user11340104 wrote:
    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Well, let google be your friend,
    http://www.google.co.in/search?rlz=1C1GGLS_enIN327IN327&sourceid=chrome&ie=UTF-8&q=sqlplus+error+codes
    There are many threads I guess talking about the same issue.
    HTH
    Aman....

  • Why can't my computer find the Internet since I loaded Lion?

    Any help out there? All my other devices work just fine...

    Disconnect all USB and Firewire devices (except keyboard and mouse, if applicable.) Delete and try to recreate your Ethernet connection.
    If unsuccessful, reset the SMC and try again.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    If still unsuccessful, back up all data, then boot into Recovery and reinstall the Mac OS.
    OS X Lion: About Lion Recovery
    If still unsuccessful, make a "Genius" appointment at an Apple Store to have the machine tested.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros (do this only if you have at least two complete, independent backups, and you know how to restore to bare metal from any of them.) Don’t erase the Lion recovery partition, if present.

  • After updating to IOS 8.2 my iphone 5 constantly searches for a network. I have tried resetting network, restoring from an earlier back up, resetting as a new phone - all of which have been unsuccessful- HELP !!

    After updating to IOS 8.2 my iphone 5 constantly searches for a network. I have tried resetting network, restoring from an earlier back up, resetting as a new phone - all of which have been unsuccessful… HELP !!

    Hi chuckrabaw,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like the iPhone is searchiong for a network. It looks like you have already done some troubleshooting. There are a few steps listed in this article you did not mention trying, they may be able to help the issue.
    If you see No Service in the status bar of your iPhone or iPad - Apple Support
    Cheers,
    Mario

  • TS1702 I purchased an audiobook from itunes on my ipod touch yesterday.  Following an unsuccessful update to the ipod today, I had to restore it to factory settings and the audiobook has gone. How do I get it back without having to pay for it again?

    I purchased an audiobook from itunes on my ipod yesterday.  Following an unsuccessful update on the ipod today I had to restore factory settings and the audiobook has gone.  How do I get it back without paying for it again?

    Hi Jen.  My daughter just compleated her nursing program and is now working as a full time nurse.  Focus and study hard and soon you will be there too.  Now to the problem at hand.  I have the same problem.  I gave up on it and satisfied myself with my iPod without the upgrade.  Reason being I've read so many posts of people having problems after the upgrade.  But I'm sure other factors are involved.  Nevertheless here is the fix most say works to solve the problem:  What ever virus protection you have installed on your computer, disable it.  Then try to install the update. After that enable the protection. I had Kaspersky, and it does it's job well. The thinking is, the virus protection is blocking the upgrade.  Hope this works.   Charlie

  • After unsuccessfully updating to Yosemite, back on Mavericks. But now my Timemachine or system not recognizing hard drive.

    After unsuccessfully updating to Yosemite, back on Mavericks. But now my Timemachine or system not recognizing the hard drive. Is there any way to manually locate or find the hard drive?

    Hi kruione,
    If you are having an issue with an external drive not being detected by your iMac, I would suggest resetting the computer's parameter RAM. See this article for how -
    OS X Mavericks: Reset your computer's PRAM - Apple
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • At Apple Store we reset my Iphone 4s to factory settings in an unsuccessful bit to fix my Wi-fi problem.  Now I'm home trying to get my contacts, pics, etc. back.  I'm lost...

    At Apple Store we reset my Iphone 4s to factory settings in an unsuccessful bit to fix my Wi-fi problem.  Now I'm home trying to get my contacts, pics, etc. back.  I'm lost...

    Okay - see if the instructions here help: http://support.apple.com/kb/ph12521
    ~Lyssa

  • Have been unsuccessful uninstalling mywebsearch. Mozilla Firefox shortcut key takes me to mywebsearch. mywebsearch was apparently installed on 5/23/2010 when i thought i was accessing a cool screensaver website. I WANT MY FIREFOX BACK!

    I have been unsuccessful uninstalling mywebsearch. Mozilla Firefox shortcut key
    takes me to mywebsearch. mywebsearch was apparently installed on 5/23/2010
    when i thought i was accessing a cool screensaver website. I WANT MY FIREFOX
    BACK! Today's response from Bugzilla is "Mywebsearch is malware, and is most easily removed by running malwarebytes
    anti-malware. Not a firefox issue though. support.mozilla.com can possibly
    help."
    PLEASE HELP

    Hello Anon and Goran,
    This is Jason with Mindspark Interactive Network Customer
    Support.
    We would like to assure you that contrary to what you may have read or heard, My Web Search® and its related suite of products is not and has never been malware, spyware, or adware. In fact, the My Web Search toolbar has been tested by top security software companies and has repeatedly been shown to be free of any threats.
    The toolbar can be removed using the standard Add/Remove functionality of your Windows operating system.
    For step by step instructions, please visit:
    http://www.mindspark.com/main/toolbar-info/remove-mws/removemwsinst/index.shtml
    Important: It is not advisable to manually delete any files or registry entries, or to use 3rd party software which may leave artifacts behind.
    Please note that you will continue to see the My Web Search toolbar until you close and reopen all instances of your Web browser. A reboot will be required to complete the removal process.
    To reset your homepage back to your desired choice, use the following instructions that correspond to your browser of choice:
    FOR INTERNET EXPLORER 7 AND ABOVE:
    1. Navigate to the webpage you would like to set as the home page.
    2. Click the arrow to the right of the "Home button" and then click "Add or Change Home Page".
    3. In the "Add or Change Home Page" dialog box, do one of the following:
    • To make the current webpage your only home page, click "Use this Webpage" as your only home page.
    • To start a home page tab set or to add the current webpage to your set of home page tabs, click "Add this Webpage" to your home page tabs.
    • To replace your existing home page or home page tab set with the webpages you currently have open, click Use the current tab set as your home page. This option will only be available if you have more than one tab open in Internet Explorer.
    4. Click Yes to save your changes.
    FOR MOZILLA FIREFOX USERS:
    1. Navigate to the page you want set as your home page.
    2. At the top of the Firefox window on the menu bar, click on "Tools" and select "Options".
    3. If it isn't already selected, click the "Main" icon. The "Main" options panel is displayed.
    4. Click on "Use Current Page".
    • If you have a group of tabs open, the entire group of tabs will be set as your home page.
    • You can also use the "Use Bookmark" button to set one of your bookmarks as your home page.
    5. Click OK to close the "Options" window.
    We hope this helps, and that in the future, you will take a second look at the My Web Search toolbar.
    For further information on the My Web Search toolbar, or Mindspark, please see http://www.mindspark.com/main/toolbar-info/index.shtml

  • Fail back unsuccessful in Prime Infrastructure 2.0

    Fail back unsuccessful in Prime Infrastructure 2.0.
    Getting foll error while starting NCS services:
    health monitor running with an error....

    Hi Yusuf,
    there could be many reasons of the failure of the health monitor services ... could be a databases faulty..
    If you have  backup  or if your PI was running on VM and you have some snap shot then I would suuggest you to Restore(backup)  it.
    ***Try to reboot the server once before you try to restore the backup..
    Thanks-
    Afroz
    ****Ratings Encourages Contributors****

  • HT4623 I just tried updating my iPad through iTunes and it said it was unsuccessful and now is telling me to restore my iPad!! why is this and I'm not sure if it did back up because my iPad will not turn on.

    I just tried updating my iPad through iTunes and it said it was unsuccessful and now is telling me to restore my iPad!! why is this and I'm not sure if it did back up because my iPad will not turn on.

    Try:                                               
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Yesterday I was pushed into the sea with my Iphone 5s in my back pocket, as I got out I took my phone out of my pocket and it turned itself off. I have tried many ways but still is unsuccessful and wont turn on, what shall I do?

    I was pushed into the sea with my iphone 5s in my back pocket, I got out and pulled my phone out of my back pocket and it turnt itself off. I went straight home and tried using a hair dryer but was unsucessful, put it in rice which also failed and i left it screen up on the radiator over night but still wouldnt turn on. It has charge on it although i still tried plugging it in to give it power and still was unable to power up. Can anyone give any suggestions on how i can fix it as for its not even 2 months old.

    Watamu wrote:
    Try putting it in rice for a few hours. It does sound daft but it did work for mine
    If you're going to put a phone in rice (not daft at all, the rice acts as a dessicant), it needs to be for a few days, not a few hours. The OP stated in their post that the did put it in rice. In addition to the liquid damage, salt water is also much more corrosive to electronics than plain water. The rice won't help with the salt.

Maybe you are looking for