Dropbox automator script no longer working with Mavericks

Hi,
I use two versions of the following shell script (found on the net), launched by automator, to set up two Dropbox accounts :
Since upgrading to Mavericks, the script hangs when execution is requested. If the execution is then stopped and then requested a second time, the script terminates normally. Anyone have any idea why this might be (I am no expert of either shell scripts or automator) ?

ok then do this. Once you have your first Dropbox account set up try the following steps:
1. Create a folder named "Dropbox-second" anywhere you like.
2. Open terminal, write "bash" and press enter.
3. paste the line below and press enter. (Dont close the terminal window)
HOME=$HOME/Dropbox-second /Applications/Dropbox.app/Contents/MacOS/Dropbox &
4. A second dropbox instance will open requiring you to sign in. Go ahead sign-in and then click advanced and point to the "Dropbox-second" folder you created.
5. Close the terminal window and close the second instance of the dropbox from the topbar. (Click on the icon -> Click on the gear -> Quit Dropbox)
6. Now open AppleScript Editor and paste the following
do shell script "HOME=$HOME/Dropbox-second /Applications/Dropbox.app/Contents/MacOS/Dropbox > /dev/null 2>&1 &"
7. Click run and you will see the second icon of Dropbox in the topbar appear again.
8. Click stop and then from file save this as an application anywhere you like. Give a name like "DBMore" or anything you like.
9.Now to make sure everytime you login to your account the second dropbox starts, go to system preferences->users & groups-> select the current user-> click login items on the right->click the + sign to add "DBMore" application you created.
That's it you're done.
10. If you want to be able to differentiate between the two dropbox accounts click on the second dropbox icon in the topbar -> click the gear -> click preferences -> general -> use black and white menu bar icons.
Enjoy! Hope this really helps

Similar Messages

  • HT6114 My CanoScan 8600F no longer works with Mavericks- No drivers available from Canon

    My CanoScan 8600F no longer works with Mavericks upgrade.  Canon does not offer new drivers.

    The Canoscan Toolbox works with Mavericks to scan, copy, etc.
    If you have Photoshop or Photoshop Elements the drivers can be installed so one can scan from within those applications.
    All the necessary software (CanoScan Toolbox 5.0.1.2 Installer) can be obtained from the Canon site.
    And, as Eustace mentioned, Vuescan works.
    OT

  • Script no longer working under Maverick

    I just upgraded to Maverick over the weekend and I can not figure out why this script no longer works.  It has been working for the last 5 years.
    The script moves a file my server sends per e-mail to a folder on a partition on my Mac.  Here is the script.
    tell application "Microsoft Outlook"
              set selectedMsg to (current messages)
              set selectedMsg to item 1 of result
              set msgAttachment to attachments of selectedMsg
              set msgAttachment to result's item 1
              set attachmentName to name of msgAttachment
              set attachmentFile to ((path to desktop) & attachmentName) as text
      save msgAttachment in attachmentFile
    end tell
    delay 3
    set submitfolder to "OS E:Users:e:Desktop:" as alias
    set collectionfolder to "/Volumes/Data E/Consulting/Telephone Switch Record/2014" as alias
    tell application "Finder" to move (every file whose name contains ("week ") & (do shell script "date +%U")) to collectionfolder
    delay 2
    tell application "Finder" to move (every file whose name contains ("week ") & (do shell script "date +%U")) to trash
    I now get:
    If I run:
    tell application "Finder"
              open ("/Volumes/Data E/Consulting/Telephone Switch Record/2014" as POSIX file)
    end tell
    it opens the folder no problem so the path must be ok?  or? 
    Any ideas why it is broken? 

    Are you getting the error on this statement
    set collectionfolder to "/Volumes/Data E/Consulting/Telephone Switch Record/2014" as alias
    or when you do the move? And what is the error number you are getting?
    Also try this
    set filePart to "week " & (do shell script "date +%U")
    log filePart
    tell application "Finder" to move (every file whose name contains filePart) to collectionfolder
    to see what the string looks like.

  • HT6114 HP Office Jet Pro 8500 Scanner no longer works with Mavericks upgrade

    I have an all-in-one printer/copier/fax/scanner, HP Office Jet Pro 8500.  The scanner no longer works with the Mavericks upgrade.  Is it possible to get the scanner back in use?  The printer and fax is fine, but I really use the scanner a lot.  Please helap me.

    The following link to the HP Support site indicates that scanning is still supported for the OfficeJet Pro 8500 using Mavericks but also indicates that "you may need to scan in a different way than you did before you installed Mavericks." See the FAQ section of http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03967522&cc=us&dlc=en&lc=en &os=4159&product=3752456&sw_lang=#N1237

  • Script no longer working with OS 10.5

    Since I have upgraded to 10.5 a few weeks ago the following script no longer is working properly. I had been using this script extensively over the last two without any problems. Now it seems to hang up when it gets to the
    "duplicate item i of photoList to "P&M2:CPA JPEG Archive Files:" with replacing"
    Sometimes it eventually copies the file but usually it times out because it takes so long. Have the commands or the way you refer to a server volume changed from 10.4 to 10.5. P&M2 is a server volume. As I said before this script worked fine with 10.4--it only took a matter of seconds to copy a file to my server. I realize that the problem could lie with my server connection but I don't think so.
    Any suggestions??? The script is attached below.
    Thanks.
    Pedro
    global photoList, theFolder, theDate, theSchool, theCats, theEvent, theKeywords, theID, theFileName
    on run
    tell application "Finder"
    set theFolder to ¬
    (choose folder with prompt "Where are my photos?")
    set photoList to (every file of the theFolder whose name ends with ".jpg")
    set cr2List to (every file of the theFolder whose name ends with ".cr2")
    set crwList to (every file of the theFolder whose name ends with ".crw")
    set nefList to (every file of the theFolder whose name ends with ".nef")
    set tifList to (every file of the theFolder whose name ends with ".tif")
    set xmpList to (every file of the theFolder whose name ends with ".xmp")
    set dngList to (every file of the theFolder whose name ends with ".dng")
    end tell
    archiveFiles(photoList)
    end run
    on open theFolder
    tell application "Finder"
    set the photoList to every file of (item 1 of theFolder whose name ends with ".jpg")
    set cr2List to (every file of the theFolder whose name ends with ".cr2")
    set crwList to (every file of the theFolder whose name ends with ".crw")
    set nefList to (every file of the theFolder whose name ends with ".nef")
    set tifList to (every file of the theFolder whose name ends with ".tif")
    set xmpList to (every file of the theFolder whose name ends with ".xmp")
    set dngList to (every file of the theFolder whose name ends with ".dng")
    end tell
    archiveFiles(photoList)
    end open
    to archiveFiles(thePhotos)
    try
    tell application "iMagine Photo"
    close every importer
    quit
    end tell
    on error
    end try
    set Archived to the (count of thePhotos) as integer
    repeat with i from 1 to count of photoList
    --return photoList
    set thisFile to item i of photoList as alias
    set theFileName to the name of item i of photoList
    with timeout of 3000 seconds
    tell application "Finder"
    duplicate item i of photoList to "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" with replacing
    try
    mount volume "afp://username:[email protected]/P&M2"
    on error theMsg
    display dialog theMsg
    return
    end try
    try
    duplicate item i of photoList to "P&M2:CPA JPEG Archive Files:" with replacing --SCRIPT HANGS UP HERE!
    on error
    mount volume "afp://username:[email protected]/P&M2"
    duplicate item i of photoList to "P&M2:CPA JPEG Archive Files:" with replacing
    end try
    try
    duplicate item i of photoList to "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA JPEG Archive Files:" with replacing
    on error
    mount volume "afp://username:[email protected]/Photo [Archive]"
    duplicate item i of photoList to "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA JPEG Archive Files:" with replacing
    end try
    end tell
    end timeout
    set importPhoto to name of item i of photoList
    set fileRef to "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" & importPhoto as alias
    set fileRef2 to "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:"
    tell application "iMagine Photo"
    activate
    try
    set thisImporter to import graphic fileRef
    set exifInfo to the exif data of thisImporter
    close thisImporter
    exifInfo
    set fileInfo to the exif unicode of item 1 of exifInfo --something like that
    set thePhotog to the exif unicode of item 6 of exifInfo
    set myTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ";"
    set schoolInfo to 1st text item of fileInfo
    set AppleScript's text item delimiters to ":" & space
    set theSchool to 2nd text item of schoolInfo --school of the file
    set AppleScript's text item delimiters to ";"
    set catInfo to 2nd text item of fileInfo
    set AppleScript's text item delimiters to ":" & space
    set theCats to 2nd text item of catInfo --catagories of file
    set AppleScript's text item delimiters to ";"
    set theEvent to 3rd text item of fileInfo
    set AppleScript's text item delimiters to ":" & space
    set theEvent to 2nd text item of theEvent
    set AppleScript's text item delimiters to ";"
    set theKeywords to 4th text item of fileInfo
    try
    set AppleScript's text item delimiters to ":" & space
    set theKeywords to 2nd text item of theKeywords
    on error
    set AppleScript's text item delimiters to ":"
    set theKeywords to 2nd text item of theKeywords
    end try
    set AppleScript's text item delimiters to ";"
    set theID to 5th text item of fileInfo
    try
    set AppleScript's text item delimiters to ":" & space
    set theID to 2nd text item of theID
    on error
    set AppleScript's text item delimiters to ":"
    set theID to 2nd text item of theID
    end try
    on error
    if thePhotog is "Sari Goodfriend" then
    set theKeywords to ""
    set theID to ""
    else
    tell application "Finder"
    activate
    display dialog "There appears to be a problem with the archiving information for file" & space & ¬
    theFileName --("OK", "cancel") default button "OK"
    return
    end tell
    end if
    end try
    set AppleScript's text item delimiters to myTID
    tell application "Expression Media"
    open file "Photo Server Data:Photo [Data]:5 PHOTO ARCHIVE:Expression Media catalogs:YU CPA Catalog.ivc"
    tell front catalog
    activate
    tell application "Finder"
    set theNameofFileRef to the name of fileRef
    end tell
    try
    import fileRef
    on error number theNumber
    set theErrNum to theNumber
    if the theErrNum is not -48 then
    display dialog "There appears to be a problem with file" & space & theNameofFileRef & "."
    return
    end if
    --display dialog theErrNum
    end try
    count media items
    set currentMediaItem to result
    set the people of media item currentMediaItem to theID
    set the headline of media item currentMediaItem to ""
    set thePhotographer to author of media item currentMediaItem
    set the keywords of media item currentMediaItem to theKeywords --& "," & space & addKeywords
    set the categories of media item currentMediaItem to theSchool & "," & space & theCats
    set the event of media item currentMediaItem to theEvent
    set the copyright of media item currentMediaItem to "Yeshiva University"
    set theDate to creation date of media item currentMediaItem
    set event date of media item currentMediaItem to theDate
    set the caption of media item currentMediaItem to "ID:" & space & theID & return & "School/Category:" & space & theSchool & "," & space & theCats & return & "Event:" & space & theEvent & return & "Keywords:" & space & theKeywords & return & "Date:" & space & theDate & return & "Photographer:" & space & thePhotographer as text
    end tell
    end tell
    end tell
    end repeat
    tell application "Expression Media"
    save front catalog
    end tell
    tell application "Finder"
    --open file "P&M2:YU CPA Server Catalog.ivc"
    repeat with i from 1 to count of photoList
    end repeat
    end tell
    tell application "Finder"
    duplicate (every file of theFolder whose name ends with ".xmp") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".xmp") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" with replacing
    duplicate (every file of theFolder whose name ends with ".CR2") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".CR2") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" with replacing
    duplicate (every file of theFolder whose name ends with ".dng") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".dng") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    duplicate (every file of theFolder whose name ends with ".CRW") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".CRW") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    duplicate (every file of theFolder whose name ends with ".NEF") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".NEF") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    duplicate (every file of theFolder whose name ends with ".TIF") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".TIF") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    end tell
    tell application "iMagine Photo"
    close every importer
    quit
    end tell
    beep 3
    activate "Finder"
    set dd to display dialog "The number of files cataloged was:" & space & Archived buttons ¬
    {"OK", "cancel"} default button ¬
    "OK" giving up after 10
    end archiveFiles

    It may be but I have not been able to figure it out.
    Thanks.
    Pedro

  • Applications no longer work with mavericks

    After downloading Mavericks,
    1. Applications no longer work, Dreamweaver, Photoshop, microsoft Office, Illustrator, and more
    2. Multiple displays no longer work
    3. Tried restoriing, but would not let me.
    What is the fix to this... Anyone know?

    1. Applications no longer work, Dreamweaver, Photoshop, microsoft Office, Illustrator, and more
    If coming from Snow Leopard, then PowerPC based apps will not run on anything beyond Snow Leopard.
    2. Multiple displays no longer work
    Multiple monitors work for me.  There are people that have some issues with multiple monitors.  Look at
    <http://discussions.apple.com/message/26542996?tstart=0#26542996>
    Does that help?
    Or can you please describe how it doesn't work.
    3. Tried restoriing, but would not let me.
    Restoring what?  the older version of Mac OS X?  What version is that?  Did you make a backup before upgrading?  If so, what kind of backup?

  • Spotlight on NFS no longer working with Mavericks, works with Lion

    We have a muliprotocol NetApp filer with NFS and CIFS. Has been working great with Lion and Windows clients. We now have 2 OSX 10.9 users and although they can connnect and transfer files, the spotlight no longer works on this filer. I have done all the start stop mdutil commands, says it is indexing for a few hours but never gets any results. Spotlight still works on the local drives.
    Any ideas?

    Hi there 1antoine,
    You may find the troubleshooting steps in the article below helpful.
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/ts3970
    FaceTime for Mac: Troubleshooting FaceTime
    http://support.apple.com/kb/ts4185
    -Griff W. 

  • Xerox workcentre 7535 print driver no longer works with Mavericks 10.9.2

    Unable to change any settings in Print dialog pane for Xerox WorkCentre 7535. Xerox says its an Apple software problem. They have issed three revised drivers since Apple released Mavericks OS-X 10.9.2. Not only does latest driver (4-11-14) not work, their universal driver for Mavericks no longer works. Anybody else trying to print on a Xerox device?

    I think I solved this.  Our Canada office has a WorkCentre 7556, and it was having the same problem(s).
    Here's what I found and did:
    Log into the printer's web interface.  Go to the Properties tab.  On that page, expand General Setup.  Then click Configuration Report.
    Find and click the link for Machine Hardware.  In that box, find a line item for Finisher Type.  Scribble down or remember your finisher type (ours was Xerox Professional Finisher).
    On the Mac in question, go to System Preferences, Printers & Scanners.  Find your Xerox printer, click Options & Supplies, and then the Options button.  Now on our machine, from a default installation, the finisher was set to OCT (Offset Catch Tray) and was greyed out.  Changing this to the correct finisher mentioned above made all of our errors go away.
    Cheers, good luck, and um, I guess mark as Answered if this works for you please?

  • Script no longer working with QT 7.2

    Hi,
    I had a script that used QuickTime to save self-contained movies. With QT 7.1.6 it worked fine, but apparently after installing QT 7.2, I get a "NSInternalScriptError" when the script reaches the point where it tries save the self-contained movie. Does anyone know what causes this error, and what I could do to fix it? Is it a problem with my code or is it a QuickTime bug? Thanks.
    Leor

    I think it's a bug in 7.2 because I'm having the same problem. The save function seems to be broken now!

  • Is there a 10.9 Server app available as 10.8 now longer works with Mavericks

    Since updating from Mountain Lion to mavericks the 10.8 Server.app software does not run, is there an update to 10.9

    tbh I'd forgotten about the OS Version mis-match problem with Server.app and because I'd found a version of Work Group Manager that ran under Mavericks thought there'd be a version of Server.app as well
    As there's no way we will be update all our servers to Mavericks, I'll just have to revert to Apple Remote Desktop and run Server.app locally
    Thanks for jogging my memory Semmelroccys about
    PS Since Apple stopped making XServes they don't seem to give a **** about enterprise useage

  • Scanning no longer works with Mavericks (Samsung CLX-6220FX)

    With Mountain Lion I had no problem with the printer. In 10.8 I installed it by going to Printers & Scanners, clicking the plus sign and then clicking Samsung CLX-6220 Series. Then Apple software update would install the required driver automatically and printing and scanning would just work.
    In Mavericks when I click on my printer under the popup that clicking the plus sign opens up, I get the following message:
    Clicking "Use Generic" works, but only with printing. Clicking "Open Scanner..." gives me the following:
    I've tried installing the drivers from Samsung's official web site (Samsung_CLX-6220_Series_PrinterDriver.zip and Samsung_CLX-6220_Series_MACScanner.zip). But then printing would not work, only scanning.
    Any help would be greatly appreciated!

    Hey there Jacob,
    It sounds like your printer is not functioning correctly after having updated to Mavericks. I was researching what is happening and found this article to help troubleshoot what is going on named:
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/TS3147
    Make sure that the printer is powered on, has ink / toner, and that there are no alerts on the printer’s control panel. Note: If you cannot clear an alert on the printer's control panel, stop here and check the printer's documentation or contact the manufacturer for support.
    Ensure the printer is properly connected to a USB port on the Mac or AirPort base station / Time Capsule. If the printer is a network-capable printer, make sure that it is properly connected to your home network.
    Use Software Update to find and install the latest available updates. If an update is installed, see if the issue persists.
    Open the Print & Scan pane or Print & Fax (Snow Leopard) pane in System Preferences.
    Delete the affected printer, then add the printer again.
    If the issue persists, try these additional steps:
    Reset the printing system, then add the printer again.
    If the issue still persists, reset the printing system again.  Download and install your printer's drivers. Then, add the printer again.
    Contact the printer vendor or visit their website for further assistance.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Facetime no longer working with mavericks

    I've used facetime for a while now to talk to family out of the country. Since I've upgraded to mavericks I can't log in with my apple id and password (which are both correct as I can log in to app store with them). Facetime cycles between log in page, then verifying, then back to log in page. Sometimes just gets stuck on verifying. Weird.
    Any help would be appreciated.

    Hi there 1antoine,
    You may find the troubleshooting steps in the article below helpful.
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/ts3970
    FaceTime for Mac: Troubleshooting FaceTime
    http://support.apple.com/kb/ts4185
    -Griff W. 

  • Canon image browser no longer works with Mavericks.

    I didn't realize until it was too late that Mavericks would be unable to run Canon and HP software we've been using for years.
    Now what??

    Canon stopped producing this application several years ago. My Image Garden and Easy PhotoPrint are the new products.

  • Presonus FP-10 no longer works after Mavericks update

    I updated my Mac Mini to Mavericks and now my Presonus FP-10 will not work. I know that Presonus has made a statement that FP-10 is no longer compatible with Maverick or Mountain Lion. I had it up and running in Mountain Lion. My question is can I reinstall Lion or Mountain Lion to fix this urgent problem. I am using my Mac Mini O SX 10.9 as of now.

    I have now managed to get the Canon LBP6300dn printer working on my network (i.e. I did not use USB at all).
    In case it helps others, here are the steps I performed.
    Infrastructure:
    My printer is connected by LAN cable to my Airport Extreme.
    The Airport Extreme has a DHCP reservation defined for the printer (e.g. fixed address of 10.1.2.3).
    I need A4 as the default paper size, so I installed the UK version of the driver (Mac_CAPT_V365_uk_EN.dmg). I do not know if the locale makes any difference.
    I orginally set-up the printer  when I used Mountain Lion.
    My Mavericks installation on my laptop was clean (i.e. the hard disk was reformatted first)
    Set-up:
    The printer was switched on and installation was done on my Mavericks laptop over WiFi.
    Double-click the .DMG file and follow the instructions.
    Open System Preferences | Printers & Scanners.
    Click + to add a new printer, the Add dialog should open.
    For me, nothing appeared under the Default tab.
    Click the IP tab.
    In the Address: field: I entered the fixed IP address of my printer (e.g. 10.1.2.3).
    The IP address should be automatically validated.
    The Protocol: Field was set to Line Printer Daemon - LPD.
    After a few seconds, the Use: field should display “Generic PostScript Printer”
    Click on the Use: field’s menu to display available options and then pick “Select Software …”
    In the Printer Software dialog, select “Canon LBP6300 CAPT (UK)” . Or the equivalent for your locale. Click Ok. Note: I could not get the “Canon LBP6300n CAPT (UK)” to work.
    For me, an error “Unable to verify the printer on your network appeared”, but I clicked Continue.
    I left the Paper Source Options set to none. (I do not have the 500 cassette.)
    I clicked Ok to finish the adding of the printer
    After this the printer was finally working for me, including duplex printing.
    Anyway, I hope this might help others that are struggling with Mavericks and the Canon LBP6300dn printer.

  • Which Apple app's will no longer work in Mavericks?

    I am using OS 10.8.5 on my MacbookAir.  I was contacted by Apple to download a free update to Mavericks, OS 10.9.
    I am very suspicious after having been many times forced to buy new apps working under newer Apple operating systems, because some previouly working apps suddenly no longer did after an Apple System upgrade was installed.
    I lost mountains of important files created with Applesworks, including important spread sheets and data files which suddenly no longer opened because the Apple appllication used to create them was no longer supported by the newer Apple OS.
    I also recall the total mess with earlier iMovie and iDVD updates most of which ensured that previous iMovie and IDVD schemes coukd no longer be opened or used.
    Since Apple does not inform users of such problems before the updates are  downloaded, maybe it will be of great benefit to  get
    a reply from other users who have upgraded already to Mavericks.
    So which apps, if any will no longer work, if the OS is upgraded to Mavericks?  

    You were contacted by Apple to download Mavericks? Really?
    We wouldn't be able to give you a blow by blow description of which apps will or will not work with Mavericks. There are a lot of people who have upgraded to Mavericks and are not having any issues whatsoever.
    There are others who seem to be having every possible issue you can think of.
    I would imagine that the difference in experiences here is due to the types of sofware people are running, the amount of CPU capacitity they are using to run various apps, games, etc. Whether or not they are running non-Apple applications, how often they have dropped their laptop, etc.
    Since you seem concerned with messes, and problems, and losses of files, then unless you have some burning need to upgrade right at this very moment in it, it seem like it might be prudent to wait.
    That's what I am doing. I am perfectly happy with Mountain Lion. There is nothing in Mavericks that I feel I can't live without for awhile. Eventually, I will be upgrading to Mavericks, because I don't want to fall behind in OSX levels for my machine. But for now, there is simply no pressing need to do so.
    Bugs are being worked out. Fine tuning is being done. Enhancements are being made.
    So, why rush into somehting that has been out for only two months....what's the hurry? It's not going anywhere anytime soon....
    GB

Maybe you are looking for