Time Machine restore left disk info on icons

The other day I had to use Time Machine to restore my system back a couple of days. Everything seemed to work fine, but afterwards all my disk icons on the desktop have fonts under them showing disk size and remaining free space.
This doesn't seem to affect anything, but it looks kinda hinky. Is there any way I can get rid of this info?

control-click anywhere on the desktop and select 'show view options" . in the resulting popup uncheck the box "show item info".

Similar Messages

  • Time Machine restore system disk, get back to work such a thing ?

    Someone please tell me if it is possible to ask time machine to restore the system disk that has been fully backed up that includes all apps and documents. I want to make a brand new startup hard drive that is exactly what I was just working with due to a failure that I am trying to resolve. It seems like a myth that this can take place. Please tell me how to do this. I want to believe that Time Machine will allow for me to choose a date and time and the entire system 10.5.8 disk drive that I have been backing up, and walla poof my computer is fresh and running like nothing ever happened and booting from a brand new drive and all my programs are running and remember all the passwords and serials that were entered to authorize them. Isn't this why we all use Time Machine ? HOW DO I DO THIS ???  Thank you

    Well, mostly I use Tri-Backup to have everything, but keep a clone or 2 of good solid Installs so I can continue with my work in a minute or two.
    Truthfully, I haven't even bothered with TM for some time, & I know it's improved, but not once did I ever get a useful/good restore even though supposedly the "backup" went well.
    With TB I've had flawless clones/backups/restores/evolutive backups/Incremental backups/Syncronizatinon of Disks or Folders, & restores from these since at least OS9, maybe OS 8.6
    Also it's error reporting & recovery is supperior & it continues backups & such without failing at every error, yet reporting the errors when done so you cn deal with those files.
    Also, Tri-edre's Back-in-time blows away TM's restore incomprehensibleness to this uneducated soul.

  • Can't Boot After New HD + Time Machine Restore

    So a couple days ago my 27" iMac running Snow Leopard started making some weird noises and stalling out. Annoyed, I talked for a couple hours with apple tech support which eventually lead me to run an Apple Hardware Test. This test returned the error
    "Alert! Apple Hardware Test has detected an error.
    4HDD/11/40000000 SATA(0,0)"
    I scheduled an appointment at the Genius Bar, and they replaced the hard drive.
    After that I got it home and did a System restore from my time machine backup. It finished fine, but when I restarted it got stuck on the grey apple screen with the spinning dial thing.
    I called apple back and they had me do a couple things like repair disk, verify disk, and one person had me reboot into this command line mode and type some stuff in. Nothing worked. After that They had me try to reinstall the OS first from archive, and next by erasing the hard drive and doing it. Both times the install fails with a big yellow exclamation point saying that it couldn't install support files and the OS couldn't be installed.
    Any ideas how to fix this?
    I'm currently trying to restore from my time machine backup again, but I'm not hopeful.

    Here's what I got - apologies for any formatting peculiarities.
    The problem: 10.6.6 mac won't boot after time machine restore to disk.
    Further symptoms: Booting with Command-v shows several errors: usually blued and loginwindow collapse with errors from launchd. Errors will be of the style "dyld: Symbol not found: CSSMOID_APPLE_TP_MACAPPSTORERECEIPT" and other CommerceKit / CommerceCore framework errors.
    A solution: Your Framework Security library may be an older version (possible cause with Time Machine below). The easiest way to fix this is to find another, working 10.6.6 Mac, and update the Security library on the broken machine.
    Identifying if you're affected:
    1) Boot the broken machine into "target" mode - hold "Command-t" during boot until the [Firewire|http://itunesu.utah.edu/terms/images/Firewire_Icon.png] icon appears.
    2) Connect the broken machine to the working 10.6.6 machine with a firewire cable.
    3) On the working machine, the disk of the broken machine should mount.
    4) Open Terminal
    5) Run "ls /Volumes" - the name of disk you mounted should be there (in this example, we'll use "Macintosh HD".)
    6) Typing in the path of the broken machine, run:
    <pre>
    nm /Volumes/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security | grep random_fd | cut -d. -f2
    </pre>
    (this does a dump of the library, looking for the version value)
    If this comes back with the value 22457 (or less?), your Mac is not booting because it does not have the updated version of the Security library, which is required in 10.6.6 since Snow Leopard added the Appstore / Commerce framework.
    Fixing if you're affected:
    1) First, make sure the working 10.6.6 Mac has a correct version of the framework:
    <pre>
    nm /System/Library/Frameworks/Security.framework/Versions/A/Security | grep random_fd | cut -d. -f2
    </pre>
    For 10.6.6, this should be at least "22458"
    2) *Be extremely careful at this point* - Make sure on the mounted disk (not the machine you are working on!) run the following
    <pre></pre>
    2a) Make a backup of the broken library
    <pre>
    mkdir /Volumes/Macintosh HD/savedLibrary
    cp /Volumes/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security /Volumes/Macintosh HD/savedLibrary
    </pre>
    2b) Copy the working version over the non-working version:
    <pre>
    cp /System/Library/Frameworks/Security.framework/Versions/A/Security /Volumes/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security
    </pre>
    3) Eject the mounted disk from the working Mac, disconnect the firewire cable, and reboot the "broken" Mac. It should come up.
    If it doesn't, you have problem(s) that are probably outside the scope of this. I'd also suggest restoring your original security library that you saved off.
    Suspected cause:
    It appears that Time Machine never recorded the change to the Security library after the update. If the library hadn't changed, the machine should have failed to boot like it did after restore the moment a 10.6.6 update was applied.
    Inspecting the contents of my Time Machine backups before and after updating shows that Time Machine never updated the Security Framework library - why is still not 100% determined, but restoring from it is definitely broken. Combing through the backup databases on my Time Machine disk:
    (I upgraded to 10.6.6 on January 6)
    <pre>
    for name in 2010-12-30-093337 2011*
    do
    echo -n "In backup on ${name}, version of Security library is: "
    nm "${name}/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security" | grep random_fd | cut -d. -f2
    done
    </pre>
    In backup on 2010-12-30-093337, version of Security library is: 22457
    In backup on 2011-01-04-100707, version of Security library is: 22457
    In backup on 2011-01-05-082402, version of Security library is: 22457
    In backup on 2011-01-06-092846, version of Security library is: 22457
    In backup on 2011-01-07-094827, version of Security library is: 22457
    In backup on 2011-01-10-093559, version of Security library is: 22457
    In backup on 2011-01-11-110542, version of Security library is: 22457
    In backup on 2011-01-12-094137, version of Security library is: 22457
    In backup on 2011-01-13-103238, version of Security library is: 22457
    In backup on 2011-01-14-113145, version of Security library is: 22457
    In backup on 2011-01-18-112856, version of Security library is: 22457
    In backup on 2011-01-20-114953, version of Security library is: 22457
    In backup on 2011-01-21-103642, version of Security library is: 22457
    In backup on 2011-01-24-102321, version of Security library is: 22457
    In backup on 2011-01-27-002508, version of Security library is: 22457
    In backup on 2011-01-27-011931, version of Security library is: 22457
    In backup on 2011-01-27-104406, version of Security library is: 22457
    In backup on 2011-01-27-114322, version of Security library is: 22457
    In backup on 2011-01-27-123928, version of Security library is: 22457
    In backup on 2011-01-27-134523, version of Security library is: 22457

  • Disks Locked after Time Machine restore

    All my disks appear locked in the finder after having to do a Time Machine restore. I can't write to them.
    If I go to "Get Info" there's nothing indicating that it's locked.
    I also tried changing "Permissions" to everyone Read & WRite, but it wouldn't let me and repairing permissions.
    What's going on here? Some kind of permission problems I assume.

    It keeps on asking for the password but won't let me type, or it just gives me a new line:
    Last login: Thu Apr 10 11:47:39 on ttys000
    new-host-2:~ erland$ ls -aldeO@ /Volumes/"Samples"
    drwxrwxr-t 16 erland staff - 612 Oct 29 12:43 /Volumes/Samples
    new-host-2:~ erland$ sudo chflags nouchg /Volumes/"Samples""
    sudo chflags nouchg /Volumes/"Samples"
    This is what happened with the second command:
    Last login: Thu Apr 10 11:47:39 on ttys000
    new-host-2:~ erland$ ls -aldeO@ /Volumes/"Samples"
    drwxrwxr-t 16 erland staff - 612 Oct 29 12:43 /Volumes/Samples
    new-host-2:~ erland$
    Message was edited by: bamse5
    Message was edited by: bamse5

  • Is it possible to boot or Time Machine restore from an external Thunderbolt disk drive?

    (There are several questions - search for "?".)
    I purchased a Seagate Backup Plus for Mac Desktop Drive 3 TByte with default USB 3.0 interface, and also acquired the Seagate Thunderbolt Adapter for Backup Plus Desktop Drives and Thunderbolt cable.
    I do a redundant backup to the Seagate Drive using both Carbon Copy Cloner (nightly) and Time Machine (hourly) using its Thunderbolt adapter.  BTW:  One never knows when Time Machine will choke - see discussion titled, "UPDATED: Serious Time Machine bug on Mountain Lion", which I had; Rest In Peace Pondini (James Lewis Pond).
    Booting from the external Seagate Backup Plus via Thunderbolt inteface from System Preferences -> Startup Disk:
    I select the Time Machine OS X, 10.8.5 Startup Disk (Thunderbolt attached drive), click Restart, confirm my choice, the computer reboots, however, it reboots from the internal Macintosh HD OS X, 10.8.5, NOT the selected external Thunderbolt drive.  The SSD drive was used as the Startup Drive, not the selected external Time Machine volume as indicated by the display free disk space command (df(1)) and seeing that the Macintosh HD OS X, 10.8.5 volume is mounted as root.  That is very deceptive in that both the internal and external drives will appear in the same manner from a GUI point of view!  OS X doesn't even inform me that it did not boot off the selected volume.  This is the first half of the problem, that is, Is it possible to boot from an external Thunderbolt disk drive?  In my case, the answer is deceptively No.  Can anybody else boot off a Thuderbolt attached disk drive?  Note that if I remove the Thunderbolt adapter, and attach the drive via its USB 3.0 cable, the MBP boots off the external Seagate Backup Plus just fine, as is expected.
    Booting from the external Seagate Backup Plus via Thunderbolt inteface from boot-time "Option - Select startup disk" method:
    When I restart the MBP using the startup Option key to select the startup volume, the externally connected Seagate drive ONLY SHOWS UP if it is attached with the USB 3.0 cable, not when it is attached with via the Thunderbolt interface.  Can anyone else boot off a Thunderbolt drive with the startup Option key sequence?  At least the MBP doesn't deceive me in this case - I know right away that the external Thunderbolt drive is not an option when connected as such.
    Time Machine restore from the external Seagate Backup plus via Thunderbolt interface from the "command-R - Recovery Parition" method:
    After booting from the recovery partition, I attempt to perform a Time Machine restore from the Thunderbolt connected Seagate Backup drive.  When Time Machine attempts to present me with a viable backup Time Machine volume, the external Thunderbolt drive is never offered as an option.  So I switch the Time Machine volume to use its USB 3.0 interface, and then Time Machine displays that drive as an option, and the MBP proceeds with the restoration as expected.  The interesting thing to note is that while booted in the recovery partition via the Thuderbolt cable, the MBP Disk Utility may be selected, and the Thunderbolt attached drive may be operated on just fine.  Can anybody else restore their MBP using Time Machine and the Recovery Partition via the Thunderbolt interface?
    This is also a big problem for me in that I am forced to restore my MBP via Carbon Copy Cloner using the USB 3.0 interface, because I cannot even boot off that volume's Thunderbolt interface.  Of course, the option may be that I could use yet another eternal USB 3.0 drive, boot from it, and then use Carbon Copy Cloner to restore the Macintosh HD via the aforementioned drive connected by a Thunderbolt cable, but that is less than ideal and not elegant, so I'm not going there.
    Another side issue is that the commercially available program, TechTool Pro 7's eDrive, which I installed on the Time Machine volume, will not boot off that eDrive as advertised, but I won't got through those steps here, because that would be beyond the scope of this issue, however, I must say, It does not work either when the Time Machine volume is connected via the Thunderbolt interface, but works just fine when connected via the USB 3.0 interface.

    If this helps anybody else make a decision about whether to consider Apple because of Apple's superior customer service:
    Apple sells this entire line of drives right in their store, from 1TB to 4TB.  I spent 1 and 1/2 hours, yesterday, confirming that  the 3TB model IS NOT 100% Thunderbolt compliant.  A MBP cannot boot, nor can it Time Machine restore from this drive, though EVERYTHING about the drive is normal.
    Apple's South Coast Plaza store management had at least two responses to me personally about how to proceed:
    1.  Buy a different drive from another drive manufacturer, and to attempt to return the drive to COSTCO.  A lead genius suggested going with GTech drives, for instance.
    2.  Wait for Seagate to fix their problem.
    I told Apple management in the store that the drive is advertised as Mac Compatible (see  picture) and that it is advertised as being a Thunderbolt drive (see picture).  I pressed management that my purchasing decsion to get the best possible MBP Retina was based on the availablity of Inexpensive Devises (raID), and that not having this complete compatibility is a show-stopper for my needs, and that I wanted a refund.  Their response?  They needed to talk with "Merchendising" to see if they are on or off the hook for these kind of 3rd party assertions, and would get back to me.
    I am not holding my breath.
    Note:  I do not hold this against the Geniuses that helped me, nor against the management I've dealt with, nor the upper level engineers that I've corresponded with through Apple Care - their problem solving skills were helpful - although I could have arrived at similar conclusions given enough $$$.  (For instance, try a Lacie TB drive and see if that works - we did, and it did not work.  Or, we have a different TB cable and a different TB adapter, let's try those - we did, and it did not work.)  I blame myself for not doing enough homework before going with Apple's solutions.

  • FCP X does not recognize projects and events on USB drive after a time machine restore of the MBP macintosh disk

    FCP X does not recognize projects and events on USB drive after a time machine restore of the MBP macintosh disk.
    I upgraded from an i5 to an i7 15" MBP and restored my files using my time machine backup. All seemed to go ok, except I had to use the migration assistant because on the initial boot the MAC didn't recognize the backup database on the USB device. MAybe this is a hint.
    Since when I start FCPX it too cannot finnd the project or event directories.
    Before my upgrade, I had a choice of files either on the Macintosh disk or the 2TB USB disk.
    Now only files on the Macintosh are accessible to FCPX. The USB drive is visible under events and project but it finds no projects or events.
    Please help if you can.
    Thanks
    Barry

    Thanks... alas no one has responded.
    I think I have the structure that you are recommending.
    I have a root level directory (Final Cut Events) with the files in them.
    The puzzling thing is that it used to work before the migration!.
    Anyway I'm going to move the contents to the root and see what happens.
    On a slightly different note...
    I also posted a question about CPU utilization. Can I ask a question or two?
    While rendering a short clip, I noticed burst of disk activity when the render started (likely loading the media files into ram since I have about 4Gigs available, then almost no activity while the render is happening, then more disk activity when its done.
    However the cpu activity is not as high as I would have expected since rendering requires a lot of cpu.
    What is your experience? I know some render is done by the GPU, but in my older i5 the CPU was about 100%, now in my i7 its about 50%.
    Please look at the attached utilization for CPU and disk activity.
    Thanks for any thoughts... Barry

  • Music icon changed after time machine restore

    I recently did a Time Machine restore and everything went well, except now my audio icon files are white instead of black like they were before I did the restore.
    Here is what they look like now:
    but before they were black with the grey music symbol. Does anyone know if this is a setting that changes this?
    Thanks.

    If the user account is associated with an Apple ID, and you know that account password, the Apple ID can be used to reset your user account password.
    Otherwise, boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, type this:
    resetpassword
    That's one word with no spaces. Then press return. A Reset Password window opens.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select  ▹ Restart from the menu bar.
    You should now be able to log in with the new password, but you won't be able to unlock the Keychain. If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it. You’ll need to reset your keychain in the preferences of the Keychain Access application.

  • Time Machine Restore Mangles Permissions and Groups

    Circumstance:
    My Macbook Pro running 10.5.5 gave a gray spinner after a restart last week. The restart was to clear out a couple of system processes eating up CPU when I had left it alone for a few hours.
    Action:
    After Disk Utility, zapping PRAM, and the probably some other standard trouble-shooting actions didn't fix the stuck start-up problem, I decided to try a full system restore from my Time Machine backups. I had previously successfully restored individual folders and files. Time Machine backs up wireless to a USB hard drive connected to my AirPort Extreme. To speed up the restore, I ran an Ethernet cable to the MBP from the Airport. The restore completed successfully. All the folders & files are correct, looks the same, etc. I restarted using the restored boot drive.
    Problem:
    The MBP is like a museum now--I can look but I can't touch. I first noticed something was wrong after logging in the first time because I couldn't move a file into a folder via drag-n-drop. Then Terminal went into a spinning beach ball when I opened it. Spotlight was not running. Then I noticed that my entire boot disk was read-only. I got info on the boot disk, and the Users & Groups list was strange--everyone was read-only, "wheel" had read-write and was the owner, and staff had read-write. Basically, it's like me, the Finder, an all applications have lost all their write/execute permissions on the entire drive.
    *Unsuccessful Steps Taken:*
    Ran Disk Utilities' Repair Permissions from Leopard dvd. Ran fsck -fy after mount / -uw from Leopard dvd Terminal and from single-user boot mode. Time Machine restore direct from TM disk via USB. Joined my user to wheel group. Changed my user password from Leopard dvd (which repairs home folder permissions). Played with chown to make all wheel-owned items staff-owned.
    *Open Theories:*
    Airport Time Machine restores strips ACLs and Permissions. I have to restore over wireless, not ethernet or usb. My TM backup is screwed up somehow.
    Whew. This has been going on for a while, so I'm ready to give up and do an Archive & Install and begin manual migration from the backups, but my MPB is a fine-tuned machine and I hate to lose that, especially since it taunts me by being so close to normal (I can see everything! My desktop background and apps are there!).
    Any help much appreciated!

    The "full restore" from Time Machine is only for OSX drives.
    For data-only drives, use the Time Machine browser (the "Star Wars" display).  See Time Machine - Frequently Asked Question #15.
    Depending on your setup, you may also want to review Transferring Home Folders not on a Startup volume.

  • Time machine restore help

    I've recently been having issues with my early 2008 black Macbook. I ran the apple HW diagnostics and determined it is a bad hard drive. I went out and bought a new 500GB SATA HD, and attempted to restore my system using a Time Machine backup. I booted into the Leopard Disc that came with my computer, formatted the drive, and ran the Time machine restore. Everything appeared to go fine (took about 2 hours, no error messages). However, after the machine rebooted and attempted to boot into OSX an error similar to this popped up. http://img149.imageshack.us/img149/7792/pict0017lo8.jpg
    Any thoughts as to why this is happening? I don't really want to start over with a clean install, that's why I have Time Machine!
    Other information:
    My computer originally had Leopard, and was upgraded to Snow Leopard.
    I have boot camp setup on my mac for Win 7. (I know this isn't backed up or restored as part of a time machine backup, which I'm O.K. with.)
    Thanks in advance for all your help.

    Any number of possibilities. First, did you prep the drive properly:
    Extended Hard Drive Preparation
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.)
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area. If it does not say "Verified" then the drive is failing or has failed and will need replacing. SMART info will not be reported on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs) then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    Any brand new drive should be setup per the above because they usually are configured for use on PCs rather than Macs.
    Second, depends on how you went about the process of restoring your system. Select Mac Help from the Finder's Help menu and search for "time machine." Look for an article specifically about performing a full system restore. Also, see User Tips for Time Machine for help with TM problems. Also you can select Mac Help from the Finder's Help menu and search for "time machine" to locate articles on how to use TM. See also Mac 101- Time Machine.
    What you saw was a kernel panic screen. Panics at startup may be indicative of a hardware problem. You might give this a try:
    How to run hardware diagnostics for an Intel Mac
    Boot from your original OS X Installer Disc One that came with your computer. After the chime press and hold down the "D" key until the diagnostic screen appears. Run the extended tests for a minimum of two or three hours. If any error messages appear note them down as you will need to report them to the service tech when you take the computer in for repair.
    Some "common" error indicators:
    SNS - sensor error
    MEM - memory error
    HDD - hard disk drive error
    MOT - fan error
    To assure the problem isn't with your backup you might consider installing OS X by itself. If all is OK, then you can complete the TM restore using Migration Assistant.

  • ALL Photos missing after Time Machine restore  (help)

    So, I accidently formated the wrong drive while in Windows, (big oops) which gave me the opportunity to take Time Machine for a test drive.
    I put the DVD in, and was able to restore from the TIme Machine drive. Very impressed! Everything came back just as I had left it except - whats this? The default Leopard wallpaper instead of a picture of my son? Huh strange, I thought. Until I noticed I had no photos in iPhoto.
    There seems to be reminents of photos in the iphoto database - the size is 1.3gb instead of the 7gb it used to be. But 0 photos in iPhoto 08.
    I went into iPhoto and choose File/Browse Backups. I selected Nov 8th, which was the last day of my backup and showed all 7000+ photos, and clicked "Restore All". This brought up something odd - a 2nd iPhoto icon in the dock, which showed a progress bar for the restore. Once the restore was completed, I still had a 2nd iPhoto icon the the bar, which was iPhoto running - but no photos in iphoto! I exited the 2nd iphoto, which disappeared, and launched my normal Iphoto icon. Still no photos! (That just seems odd that it would launch iPhoto with a 2nd icon)
    So, I moved my iphoto database, and launch iPhoto in order to create a fresh database - thinking maybe that was the issue. I then did File/Restore again, and went through the whole processes again, including the odd 2nd icon. Still, no photos! And another 1.3gb iphoto database!
    Is it normal for a Time Machine restore to not include your photos? Surely you are not supposed to restore them separately from within Iphoto?
    What do I do now? At this point, everything went very well - except no photos! Which is awful and not at all expected! 7000+ family photos! At least, if I ask iPhoto/Time Machine to restore 'all photos' you would think it would restore 'all photos' - not show a progress bar, and then show me no photos!
    p.s. I just tooked at the iPhoto Library. The 1.3gb is in /Data/ which contains folders 2000-2007, my Events, and thumbnails of all the photos - but no actual photos (the 'Originals' folder is missing).
    I then went back in time, and found the 8gb iPhoto Library database. I supposed I could copy it over manually via Time Machine, and not iPhoto's Restore/TM - but - i'm so far off track of how this should have went I don't know what to think!
    p.s.s. So I did just that - copied the 8gb iPhoto Library manually from TM, and pasted it in place. I help down option, and launch iPhoto, selecting the 8gb library - and BOOM... no photos!
    Something is #$%# up here.
    Message was edited by: metzen79

    This is what it says in the help file:
    Reverting to a previous Mac OS X version
    If you’ve used Time Machine to back up your computer, you can easily revert to a previous version of Mac OS X if you’re experiencing trouble after installing an update.
    IMPORTANT: Reverting to the previous version of Mac OS X will erase any additions or changes you’ve made to the files on your computer after installing the new version of Mac OS X. To save new or revised files, copy them onto a different disk or back them up using Time Machine before you follow these instructions. Use Time Machine only if you’re reverting to a previous version of Mac OS X 10.5 (Leopard), since Time Machine is not available with Mac OS X 10.4 or earlier.
    To revert to a previous version of Mac OS X:
    Insert the disc you used to install the new version of Mac OS X, and double-click the Install Mac OS X icon.
    In the Installer, choose Utilities > Restore System From Backup.
    In the Restore Your System dialog, click Continue.
    Select your Time Machine backup volume.
    Select the Time Machine backup you want to restore. To restore your computer to the state it was in before you installed a new version of Mac OS X, choose the most recent backup.
    Follow the onscreen instructions.
    If you backed up any individual files as described under the Important message above, you can restore them now. If you backed them up using Time Machine, recover them using the Time Machine application. (You’ll find the Time Machine application in the Dock or in the Applications folder.)
    Hope this helps
    Denisimo

  • Time Machine Restore with downloaded Lion 10.7

    Hello,
    I have a laundry list of questions, I hope you answer one for me, thanks.
    My system disk has version 10.6.2 , and I'm pretty sure when I booted from this disk,
    it presented a large icon saying it was 10.7, is this true or imagination?
    Anyway, I had some sort of virus or other problem that forced the imac to keep
    flashing the restore window modal panel, I couldn't resolve it by clicking on anything,
    so I did a restore from a month old backup.
    Questions
    It restored the system to 10.7, because that's what the backup copy was.  But,
    booting from the disk and following through the prompts, it was asking if I wanted
    to continue and instal version 10.7, (from my original system disk), how is this
    possible?  Or rather, this confused me, because I didn't have any idea what version
    number coresponded to the latest Lion(10.7)
    So I opted to do the Time Machine restore.
    So, did I have to use time machine, or could I have continued with the system disk instal,
    and gotten the latest version 10.7, AND not lost all my files since this last backup?
    I lost some files, and I don't think I would have needed too.
    So far it looks like all my software has been restored, and everything Mac seems to be working.
    Parallels isn't quite working yet, but it looks close.
    Thanks again for any info.
    Your heart really does start to beat when the computer starts getting dodgy...

    How do I restore my entire system?
    Regards,
    Colin R.

  • Problem after Time Machine restore

    So i just did a time machine restore since i replaced the HD in my old macbook, and whenever i start up the machine it stays at grey screen and eventually pulls up a folder with a ? mark. But if I hold down option at start up and select the drive, it boots fine, even if i do a restart from start up settings in system preferences it works fine. Just if I'm booting after shut down, it won't work without holding option key, Is there something I did wrong, or anyway I could fix it?

    Are the specs for the replacement drive, especially for power consumption, similar to those for the original drive? If not, it may be that new drive takes too long to spin up from a cold start or some similar, specification related issue is causing this problem.
    You also should make sure that the partition scheme of the drive is not MBR & that the file format of the startup volume is "Mac OS Extended (Journaled)." Disk Utility will tell you both of these characteristics when you select the drive & the volume respectively from the list on the left. (Look at the bottom of the window for this info.)
    You can also try resetting PRAM & then reselecting the startup disk in the system preference.

  • Time Machine restore password problem

    I had my HDD replaced by Apple. Was running latest Lion OS version before the fault, and had fully backed up with Time Machine. Booting up the iMac with the restored Lion was going well. Had selected restore from time machine. Then i was asked for my password. I know 100% that the password i entered (several times) is correct. There isn't any possibility at all that it is wrong but my iMac will not proceed further saying the password is wrong.
    As I can't get past this stage I cannot access anything including the operating system - I can't get to the desktop even without any data. So I cannot get to any Lion recovery partition either. Have tried Lion interent recovery but that simply hasn't worked. Apparently I didn't purchase Lion through my Apple ID - utter rubbish. I've tried every Apple ID that I have used and no records of Lion purchase in any of them - how the **** did I download it and use it for ages then?!!
    I bought the iMac originally with Snow Leopard so have that install disk but it seems I can't go back to that.
    Going back to the apple store is a real pain the proverbial.
    I am happy to wipe the HDD completely and start over, with Snow Leopard then pay (again) for Lion and then copy across the data I need from Time Machine manually and/or thru migration assistant. So here's the main question: How should I do that - wipe the HDD when I have no access to the desktop?  I guess I'm going to have to boot up using Cmd C or similar and then type in some code. I have no experience/knowledge of that code so any help will need to be idiot proof please!.

    As I had a brand new HDD installed by the Apple store this was the sequence of events (slightly different from the original post due some new info):
    1     The external HDD which was the original Time Machine back up was plugged into the firewire port.
    2     Booted up (as normal) for the very first time to be met with a fresh installation process just the same as when you buy an entirely new iMac - setting up language etc.
    3     During that set up sequence I was asked if I wanted to restore from Time Machine, I selected that option.
    4     About 3 hours later, c450GB of data is seemingly successfully loaded from the Time Machine external HDD to the internal, new HDD
    5     The only option I now have available on screen is to log in using the same password as had on my original set up (before the internal HDD replacement). The forgot password hint is available, and clearly indicates that I should be able to enter my password to move, but no matter how many times I input the correct password (and, just in case, all other possible password options each with all conceivable varieties of CAPS on and off etc.). Nothing is accepted. No option to go backwards (eg uninstall the restore or anything else), and no ability to get to the desktop.
    6     Several expletives later....I decide the only option is cmd+R reboot, internet recovery....and this is the udpate from the original post....
    7     I'm in the UK and I try doing internet Lion recovery at about 11pm UK time. Indications are this will take 4+ hours. The trick is, I have now discovered, instead, if based in the UK at least, is to try this at 6am (when most people in the US will be asleep) and it takes about 10 minutes!
    8     That brings up a chance to recover the "OS X". Great I think, just enter my Apple ID....error: "This Apple ID did not buy Mountain Lion"...cannot proceed. Mountain Lion? Where was the Lion only option? Doesn't exist seemingly. (Q: has Lion internet recovery been withdrawn? If not how on earth does one get to it?) BTW, I cannot see any partition on the internal HDD with the Lion recovery.
    9     However, with the failed internet recovery (inviting me to install Mountain Lion, if only I'd actuall bought that before, but no option to select Lion or buy Mountain Lion there an then!), what I do get is a menu option to "Choose Startup Disk". "Choose the the system disk you want to use to start up your computer". One icon is there...my internal HDD...BUT I see that says "Mac HD OS X 10.6.8" - what? That's Snow Leopard, not Lion. I bought my iMac (from new) with Snow Leopard then upgrade to Lion when that came out. On the original set up (step 2 above) there's nothing to indicate what OS is running. I just assumed that as I had Lion the Apple store would have reinstalled Lion when the swapped by HDD. Likely then this is not the case. V annoying Apple Store (Brent Cross, London!). Idiots.
    I guess there's a possibility that my Time Machine restore won't work because it is a Lion based backup.
    Not had time to do this next step yet but likely to be my only option before admitting defeat and driving to the store again...internet recovery, get to disk utility from there, wipe the internal HDD and load Snow Leopard from the installation CD I still have (phew). BTW have tried to cmd+C and boot from the Snow Leopard CD. No joy..just ejects. Doesn't want to know!
    If you've got this far..thanks for your patience. Thanks even more if you've got any ideas.

  • Time Machine:The backup disk ran out of space unexpectedly. .....

    Hi,
    I upgraded to Mountain Lion when it was released and yesterday I began getting this notice from Time Machine:
    "The backup disk ran out of space unexpectedly. Time Machine will try to make more space available by removing expired backups during the next scheduled backup."
    I have a one terra external hard drive with exclusively Time Machine.  It says it has 3.4 gigabytes available, but isn't deleting old backups and making room for new, like before.  I tried the "encrypting" solution, but it still keeps on giving me this message.  Should I erase and format?  If so, what option should I chose to format?
    My Hard Drive has 240 gigabytes, so 1Tb should be more than enough.
    Thank you!
    Gloria

    SuperDuper and Time Machine are two completely different backup utilities. If you want something like what SuperDuper does then don't use Time Machine. You have many other options that won't use up all the space on your backup drive:
    Backup Software Recommendations
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    SuperDuper!
    Synk Pro
    Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.
    Do the following to erase your drive:
    Erase a Drive
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.

  • Mail import fails after Time Machine restore

    Running 10.9.3 on a MacBook Pro and just replaced the hard drive. I did a Time Machine restore and Mail is now hanging part way through the import. I saw a number of threads on this issue and and fixed permissions and deleted the Envelope Index files. Still no luck. I'm unsure what else I can do to isolate the problem. Is there anything that I can restore that would not require Mail to re-import?
    Thanks,
    - Phil

    Start time: 17:01:21 06/22/14
    Model Identifier: MacBookPro6,2
    System Version: OS X 10.9.3 (13D65)
    Kernel Version: Darwin 13.2.0
    Boot Mode: Normal
    Time since boot: 1 day3:41
    USB
      Hub (Belkin Corporation)
      My Book (Western Digital Technologies, Inc.)
      S600 Series (Lexmark International Inc.)
      iMic USB audio system (Griffin Technology, Inc)
      ImageMate 5 in 1 Reader/Writer (SanDisk Corporation)
      My Book (Western Digital Technologies, Inc.)
      USB2.0 Hub Controller (NEC Corporation)
    FileVault: FileVault master keychain appears to be installed
    Diagnostic reports
      2014-06-22 Creative Cloud crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
      2014-06-22 mdworker32 crash
    Log
      Jun 21 13:25:03 process InterCheck[119] thread 5931 caught burning CPU! It used more than 50% CPU (Actual recent usage: 50%) over 180 seconds. thread lifetime cpu usage 90.731473 seconds, (83.258534 user, 7.472939 system) ledger info: balance: 90001129850 credit: 90001129850 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 179175480984
      Jun 21 13:26:07 process Creative Cloud[395] caught causing excessive wakeups. Observed wakeups rate (per sec): 181; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45063
      Jun 21 13:31:49 process WindowServer[156] caught causing excessive wakeups. Observed wakeups rate (per sec): 709; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 96198
      Jun 21 13:36:46 process Creative Cloud H[759] caught causing excessive wakeups. Observed wakeups rate (per sec): 277; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45314
      Jun 21 14:07:03 process Mail[1166] thread 140735 caught burning CPU! It used more than 50% CPU (Actual recent usage: 69%) over 180 seconds. thread lifetime cpu usage 90.738969 seconds, (58.829759 user, 31.909210 system) ledger info: balance: 90044849375 credit: 90044849375 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 130102462851
      Jun 21 14:15:14 process backupd[1092] thread 110962 caught burning CPU! It used more than 50% CPU (Actual recent usage: 59%) over 180 seconds. thread lifetime cpu usage 255.166286 seconds, (106.206786 user, 148.959500 system) ledger info: balance: 90001745092 credit: 253956163363 debit: 163954418271 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 151335832295
      Jun 21 14:20:49 USBF:    3620.488    AppleUSBEHCI::Found a transaction past the completion deadline on bus 0xfd, timing out! (Addr: 10, EP: 1)
      Jun 21 14:24:22 process WindowServer[1257] caught causing excessive wakeups. Observed wakeups rate (per sec): 190; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45046
      Jun 21 14:24:35 process Creative Cloud[1376] caught causing excessive wakeups. Observed wakeups rate (per sec): 194; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45099
      Jun 21 15:29:21 process backupd[1799] thread 190554 caught burning CPU! It used more than 50% CPU (Actual recent usage: 61%) over 180 seconds. thread lifetime cpu usage 250.523461 seconds, (182.585119 user, 67.938342 system) ledger info: balance: 90002145770 credit: 249765281757 debit: 159763135987 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 145513797973
      Jun 21 16:53:03 USBF:    12755. 22    AppleUSBEHCI::Found a transaction past the completion deadline on bus 0xfd, timing out! (Addr: 7, EP: 1)
      Jun 21 16:53:34 USBF:    12786. 50    AppleUSBEHCI::Found a transaction past the completion deadline on bus 0xfd, timing out! (Addr: 7, EP: 1)
      Jun 21 18:09:46 process Mail[2545] thread 295410 caught burning CPU! It used more than 50% CPU (Actual recent usage: 65%) over 180 seconds. thread lifetime cpu usage 91.297902 seconds, (60.292085 user, 31.005817 system) ledger info: balance: 90005174013 credit: 90005174013 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 136371965594
      Jun 21 18:19:40 process Mail[2612] thread 319633 caught burning CPU! It used more than 50% CPU (Actual recent usage: 81%) over 180 seconds. thread lifetime cpu usage 91.233254 seconds, (59.910135 user, 31.323119 system) ledger info: balance: 90003452590 credit: 90003452590 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 109930363589
      Jun 21 19:41:30 process ScreenSaverEngin[2772] caught causing excessive wakeups. Observed wakeups rate (per sec): 4272; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45348
      Jun 21 22:52:02 process ScreenSaverEngin[3150] caught causing excessive wakeups. Observed wakeups rate (per sec): 3777; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45072
      Jun 21 23:18:18 process Mail[3231] thread 529736 caught burning CPU! It used more than 50% CPU (Actual recent usage: 55%) over 180 seconds. thread lifetime cpu usage 92.524634 seconds, (57.326357 user, 35.198277 system) ledger info: balance: 90009825321 credit: 90009825321 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 163522093465
      Jun 21 23:40:18 process ScreenSaverEngin[3391] caught causing excessive wakeups. Observed wakeups rate (per sec): 3592; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45327
      Jun 22 00:35:36 process ScreenSaverEngin[3513] caught causing excessive wakeups. Observed wakeups rate (per sec): 4392; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45011
      Jun 22 01:22:35 process CrashPlanService[126] thread 229409 caught burning CPU! It used more than 50% CPU (Actual recent usage: 50%) over 180 seconds. thread lifetime cpu usage 1247.124216 seconds, (897.074367 user, 350.049849 system) ledger info: balance: 90011218847 credit: 1233957194406 debit: 1143945975559 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 176834293240
      Jun 22 08:49:27 process ScreenSaverEngin[4053] caught causing excessive wakeups. Observed wakeups rate (per sec): 4697; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 50238
      Jun 22 12:14:16 process ScreenSaverEngin[4379] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
      Jun 22 13:00:47 process ScreenSaverEngin[4499] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
      Jun 22 14:38:57 process Console[4656] thread 1053267 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
      Jun 22 16:47:38 process ScreenSaverEngin[4916] caught causing excessive wakeups. Observed wakeups rate (per sec): 3096; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45174
    I/O per process: kernel_task (UID 0) is using 1 MB/s
    Memory: CrashPlanService (UID 0) is using 1128 MB
    kexts
      com.rim.driver.BlackBerryUSBDriverInt (0.0.74)
      at.obdev.nke.LittleSnitch (4092)
      com.apple.GeForceTesla (8.2.4)
      com.sophos.nke.swi (9.0.53)
      com.parallels.virtualsound (1.0 22731.929773)
      com.sophos.kext.sav (9.0.61)
    Daemons
      com.Growl.GrowlHelperApp.GNTPClientService
      com.sophos.scan
      com.sophos.intercheck
      org.postfix.master
      org.ntp.ntpd
      org.cups.cupsd
      com.vix.cron
      org.macosforge.xquartz.privileged_startx
      org.gpgtools.gpgmail.uuid-patcher
      com.sophos.webd
      com.sophos.sxld
      com.sophos.notification
      com.sophos.configuration
      com.sophos.autoupdate
      com.smithmicro.vzwwirelessd
      com.sheepsystems.BookMacster
      com.rim.BBDaemon
      com.parallels.mobile.kextloader.launchdaemon
      com.parallels.mobile.dispatcher.launchdaemon
      com.oracle.java.JavaUpdateHelper
      com.microsoft.office.licensing.helper
      com.klieme.TimeMachineScheduler
      com.jungledisk.service
      com.crashplan.engine
      com.barebones.textwrangler
      com.barebones.authd
      com.adobe.versioncueCS4
      com.adobe.SwitchBoard
      com.adobe.fpsaud
      com.adobe.ARM.SMJobBlessHelper
      at.obdev.littlesnitchd
    Agents
      com.lexmark.scanner.ica.27312.UUID
      2BUA8C4S2C.com.agilebits.onepassword4-helper
      com.growl.GrowlLauncher
      com.evernote.EvernoteHelper
      QA2G25RMZ4.com.wunderkinder.wunderlist-helper
      org.macosforge.xquartz.startx
      org.gpgtools.macgpg2.updater
      org.gpgtools.Libmacgpg.xpc
      org.gpgtools.gpgmail.user-uuid-patcher
      org.gpgtools.gpgmail.enable-bundles
      net.culater.SIMBL.Agent
      com.sophos.uiserver
      com.rim.BBLaunchAgent
      com.rim.RimAlbumArtDaemon
      com.parallels.mobile.prl_deskctl_agent.launchagent
      com.lexmark.hostregister
      com.lexmark.hostinfoupdater
      com.lexmark.hbnlistener
      com.adobe.CS4ServiceManager
      com.adobe.AdobeCreativeCloud
      at.obdev.LittleSnitchUIAgent
      ws.agile.1PasswordAgent
      com.parallels.mobile.startgui.launchagent
      com.google.keystone.user.agent
      com.akamai.single-user-client
      com.adobe.ARM.UUID
    launchd
      /Library/LaunchAgents/at.obdev.LittleSnitchUIAgent.plist
      (at.obdev.LittleSnitchUIAgent)
      /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
      (com.adobe.AAM.Startup-1.0)
      /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
      (com.adobe.AdobeCreativeCloud)
      /Library/LaunchAgents/com.adobe.CS4ServiceManager.plist
      (com.adobe.CS4ServiceManager)
      /Library/LaunchAgents/com.lexmark.hbnlistener.plist
      (com.lexmark.hbnlistener)
      /Library/LaunchAgents/com.lexmark.hostinfoupdater.plist
      (com.lexmark.hostinfoupdater)
      /Library/LaunchAgents/com.lexmark.hostregister.plist
      (com.lexmark.hostregister)
      /Library/LaunchAgents/com.parallels.mobile.prl_deskctl_agent.launchagent.plist
      (com.parallels.mobile.prl_deskctl_agent.launchagent)
      /Library/LaunchAgents/com.rim.BBAlbumArtCacher.plist
      (com.rim.RimAlbumArtDaemon)
      /Library/LaunchAgents/com.rim.BBLaunchAgent.plist
      (com.rim.BBLaunchAgent)
      /Library/LaunchAgents/com.sophos.uiserver.plist
      (com.sophos.uiserver)
      /Library/LaunchAgents/com.teamviewer.teamviewer.plist
      (com.teamviewer.teamviewer)
      /Library/LaunchAgents/com.teamviewer.teamviewer_desktop.plist
      (com.teamviewer.desktop)
      /Library/LaunchAgents/net.culater.SIMBL.Agent.plist
      (net.culater.SIMBL.Agent)
      /Library/LaunchAgents/org.gpgtools.gpgmail.enable-bundles.plist
      (org.gpgtools.gpgmail.enable-bundles)
      /Library/LaunchAgents/org.gpgtools.gpgmail.patch-uuid-user.plist
      (org.gpgtools.gpgmail.user-uuid-patcher)
      /Library/LaunchAgents/org.gpgtools.Libmacgpg.xpc.plist
      (org.gpgtools.Libmacgpg.xpc)
      /Library/LaunchAgents/org.gpgtools.macgpg2.updater.plist
      (org.gpgtools.macgpg2.updater)
      /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
      (org.macosforge.xquartz.startx)
      /Library/LaunchDaemons/at.obdev.littlesnitchd.plist
      (at.obdev.littlesnitchd)
      /Library/LaunchDaemons/com.adobe.ARM.SMJobBlessHelper.plist
      (com.adobe.ARM.SMJobBlessHelper)
      /Library/LaunchDaemons/com.adobe.fpsaud.plist
      (com.adobe.fpsaud)
      /Library/LaunchDaemons/com.adobe.SwitchBoard.plist
      (com.adobe.SwitchBoard)
      /Library/LaunchDaemons/com.adobe.versioncueCS4.plist
      (com.adobe.versioncueCS4)
      /Library/LaunchDaemons/com.barebones.authd.plist
      (com.barebones.authd)
      /Library/LaunchDaemons/com.barebones.textwrangler.plist
      (com.barebones.textwrangler)
      /Library/LaunchDaemons/com.crashplan.engine.plist
      (com.crashplan.engine)
      /Library/LaunchDaemons/com.jungledisk.service.plist
      (com.jungledisk.service)
      /Library/LaunchDaemons/com.klieme.TimeMachineScheduler.plist
      (com.klieme.TimeMachineScheduler)
      /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
      (com.microsoft.office.licensing.helper)
      /Library/LaunchDaemons/com.oracle.java.JavaUpdateHelper.plist
      (com.oracle.java.JavaUpdateHelper)
      /Library/LaunchDaemons/com.parallels.mobile.dispatcher.launchdaemon.plist
      (com.parallels.mobile.dispatcher.launchdaemon)
      /Library/LaunchDaemons/com.parallels.mobile.kextloader.launchdaemon.plist
      (com.parallels.mobile.kextloader.launchdaemon)
      /Library/LaunchDaemons/com.rim.BBDaemon.plist
      (com.rim.BBDaemon)
      /Library/LaunchDaemons/com.sheepsystems.BookMacster.plist
      (com.sheepsystems.BookMacster)
      /Library/LaunchDaemons/com.smithmicro.vzwwirelessd.plist
      (com.smithmicro.vzwwirelessd)
      /Library/LaunchDaemons/com.sophos.autoupdate.plist
      (com.sophos.autoupdate)
      /Library/LaunchDaemons/com.sophos.configuration.plist
      (com.sophos.configuration)
      /Library/LaunchDaemons/com.sophos.intercheck.plist
      (com.sophos.intercheck)
      /Library/LaunchDaemons/com.sophos.notification.plist
      (com.sophos.notification)
      /Library/LaunchDaemons/com.sophos.scan.plist
      (com.sophos.scan)
      /Library/LaunchDaemons/com.sophos.sxld.plist
      (com.sophos.sxld)
      /Library/LaunchDaemons/com.sophos.webd.plist
      (com.sophos.webd)
      /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist
      (com.teamviewer.service)
      /Library/LaunchDaemons/org.gpgtools.gpgmail.patch-uuid.plist
      (org.gpgtools.gpgmail.uuid-patcher)
      /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist
      (org.macosforge.xquartz.privileged_startx)
      Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
      (com.adobe.AAM.Scheduler-1.0)
      Library/LaunchAgents/com.adobe.ARM.UUID.plist
      (com.adobe.ARM.UUID)
      Library/LaunchAgents/com.akamai.single-user-client.plist
      (com.akamai.single-user-client)
      Library/LaunchAgents/com.google.keystone.agent.plist
      (com.google.keystone.user.agent)
      Library/LaunchAgents/com.parallels.mobile.startgui.launchagent.plist
      (com.parallels.mobile.startgui.launchagent)
      Library/LaunchAgents/ws.agile.1PasswordAgent.plist
      (ws.agile.1PasswordAgent)
    Bundles
      /System/Library/CoreServices/SecurityAgentPlugins/HomeDirMechanism.bundle
      (com.apple.SecurityAgentPlugin.HomeDirMechanism)
      /System/Library/CoreServices/SecurityAgentPlugins/KerberosAgent.bundle
      (com.apple.KerberosAgent)
      /System/Library/CoreServices/SecurityAgentPlugins/loginwindow.bundle
      (com.apple.securityAgentPlugins.loginwindowUI)
      /System/Library/CoreServices/SecurityAgentPlugins/MCXMechanism.bundle
      (com.apple.securityAgentPlugin.MCXMechanism)
      /System/Library/CoreServices/SecurityAgentPlugins/PKINITMechanism.bundle
      (com.apple.PKINITMechanism)
      /System/Library/CoreServices/SecurityAgentPlugins/RestartAuthorization.bundle
      (com.apple.securityAgentPlugin.RestartAuthorization)
      /System/Library/Extensions/AMDRadeonVADriver.bundle
      (N/A)
      /System/Library/Extensions/AMDRadeonX3000.kext
      (com.apple.AMDRadeonX3000)
      /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle
      (com.apple.AMDRadeonX3000GLDriver)
      /System/Library/Extensions/AMDRadeonX4000.kext
      (com.apple.AMDRadeonX4000)
      /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle
      (com.apple.AMDRadeonX4000GLDriver)
      /System/Library/Extensions/AppleIntelHD3000Graphics.kext
      (com.apple.driver.AppleIntelHD3000Graphics)
      /System/Library/Extensions/AppleIntelHD3000GraphicsGA.plugin
      (com.apple.driver.AppleIntelHD3000GraphicsGA)
      /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle
      (com.apple.driver.AppleIntelHD3000GraphicsGLDriver)
      /System/Library/Extensions/AppleIntelHD3000GraphicsVADriver.bundle
      (com.apple.AppleIntelHD3000GraphicsVADriver)
      /System/Library/Extensions/AppleIntelHD4000Graphics.kext
      (com.apple.driver.AppleIntelHD4000Graphics)
      /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle
      (com.apple.driver.AppleIntelHD4000GraphicsGLDriver)
      /System/Library/Extensions/AppleIntelHD4000GraphicsVADriver.bundle
      (com.apple.AppleIntelHD4000GraphicsVADriver)
      /System/Library/Extensions/AppleIntelHD5000Graphics.kext
      (com.apple.driver.AppleIntelHD5000Graphics)
      /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle
      (com.apple.driver.AppleIntelHD5000GraphicsGLDriver)
      /System/Library/Extensions/AppleIntelHD5000GraphicsVADriver.bundle
      (com.apple.AppleIntelHD5000GraphicsVADriver)
      /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle
      (com.apple.driver.AppleIntelHDGraphicsGLDriver)
      /System/Library/Extensions/AppleIntelHSWVA.bundle
      (com.apple.AppleIntelHSWFBVA)
      /System/Library/Extensions/AppleIntelIVBVA.bundle
      (com.apple.AppleIntelIVBFBVA)
      /System/Library/Extensions/ATIRadeonX2000.kext
      (com.apple.ATIRadeonX2000)
      /System/Library/Extensions/ATIRadeonX2000GA.plugin
      (com.apple.ATIRadeonX2000GA)
      /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle
      (com.apple.ATIRadeonX2000GLDriver)
      /System/Library/Extensions/ATIRadeonX2000VADriver.bundle
      (com.apple.ATIRadeonX2000VADriver)
      /System/Library/Extensions/EPSONUSBPrintClass.kext
      (com.epson.print.kext.USBPrintClass)
      /System/Library/Extensions/GeForce.kext
      (com.apple.GeForce)
      /System/Library/Extensions/GeForceGA.plugin
      (com.apple.GeForceGA)
      /System/Library/Extensions/GeForceGLDriver.bundle
      (com.apple.GeForceGLDriver)
      /System/Library/Extensions/GeForceTesla.kext
      (com.apple.GeForceTesla)
      /System/Library/Extensions/GeForceTeslaGLDriver.bundle
      (com.apple.GeForceTeslaGLDriver)
      /System/Library/Extensions/GeForceTeslaVADriver.bundle
      (com.apple.GeForceTeslaVADriver)
      /System/Library/Extensions/GeForceVADriver.bundle
      (com.apple.GeForceVADriver)
      /System/Library/Extensions/hp_designjet_series.kext
      (com.hp.print.hpio.Designjet.kext)
      /System/Library/Extensions/hp_Deskjet_io_enabler.kext
      (com.hp.print.hpio.Deskjet.kext)
      /System/Library/Extensions/hp_fax_io.kext
      (com.hp.kext.hp-fax-io)
      /System/Library/Extensions/hp_Inkjet1_io_enabler.kext
      (com.hp.print.hpio.Inkjet1.kext)
      /System/Library/Extensions/hp_Inkjet2_io_enabler.kext
      (com.hp.print.hpio.Inkjet2.kext)
      /System/Library/Extensions/hp_Inkjet3_io_enabler.kext
      (com.hp.print.hpio.Inkjet3.kext)
      /System/Library/Extensions/hp_Inkjet4_io_enabler.kext
      (com.hp.print.hpio.Inkjet4.kext)
      /System/Library/Extensions/hp_Inkjet5_io_enabler.kext
      (com.hp.print.hpio.Inkjet5.kext)
      /System/Library/Extensions/hp_Inkjet7_io_enabler.kext
      (com.hp.print.hpio.inkjet7.kext)
      /System/Library/Extensions/hp_Inkjet8_io_enabler.kext
      (com.hp.print.hpio.inkjet8.kext)
      /System/Library/Extensions/hp_Inkjet_io_enabler.kext
      (com.hp.print.hpio.Inkjet.kext)
      /System/Library/Extensions/hp_io_printerclassdriver_enabler.kext
      (com.hp.hpio.hp_io_printerclassdriver_enabler)
      /System/Library/Extensions/hp_Laserjet_io_enabler.kext
      (com.hp.print.hpio.Laserjet.kext)
      /System/Library/Extensions/hp_Officejet_io_enabler.kext
      (com.hp.print.hpio.Officejet.kext)
      /System/Library/Extensions/hp_Photosmart_io_enabler.kext
      (com.hp.print.hpio.Photosmart.kext)
      /System/Library/Extensions/hp_PhotosmartPro_io_enabler.kext
      (com.hp.print.hpio.PhotosmartPro.kext)
      /System/Library/Extensions/hp_psa640_io_enabler.kext
      (com.hp.hpio.hp_psa640_io_enabler)
      /System/Library/Extensions/hp_qc_io_enabler.kext
      (com.hp.hpio.hp_psa530_630_io_enabler)
      /System/Library/Extensions/NovatelWirelessWWAN.kext
      (com.novatelwireless.kext.wwan)
      /System/Library/Extensions/PTUMWDrv.kext
      (com.devguru.driver.PTUMWDrv)
      /System/Library/Extensions/RIMBBUSB.kext
      (com.rim.driver.BlackBerryUSBDriverInt)
      /System/Library/Extensions/RIMBBVSP.kext
      (com.rim.driver.BlackBerryUSBDriverVSP)
      /System/Library/Extensions/SierraDevSupport.kext
      (com.sierrawireless.driver.SierraDevSupport)
      /System/Library/Extensions/SierraFSCSupport.kext
      (com.sierrawireless.driver.SierraFSCSupport)
      /System/Library/Extensions/SierraFSRSupport.kext
      (com.sierrawireless.driver.SierraFSRSupport)
      /System/Library/Extensions/SierraHSRSupport.kext
      (com.sierrawireless.driver.SierraHSRSupport)
      /System/Library/Extensions/SMSIWirelessModem.kext
      (com.smithmicro.driver.SMSIWirelessModem)
      /System/Library/Extensions/SophosNetworkInterceptor.kext
      (com.sophos.nke.swi)
      /System/Library/Extensions/SophosOnAccessInterceptor.kext
      (com.sophos.kext.sav)
      /System/Library/Extensions/ZTEUSBCDCACMData.kext
      (com.ZTE.driver.ZTEUSBCDCACMData)
      /Library/Audio/Plug-Ins/Components/Flip4Mac WMA Import.component
      (net.telestream.wmv.import)
      /Library/Audio/Plug-Ins/Components/Freeverb.component
      (uk.co.dreampoint.Freeverb)
      /Library/Audio/Plug-Ins/Components/SmartMusicSoftSynth.component
      (com.makemusic.audiounit.smartmusicsoftsynth)
      /Library/Audio/Plug-Ins/HAL/AirPlay.driver
      (com.apple.audio.AirTunesHALPlugin)
      /Library/Audio/Plug-Ins/HAL/AppleAVBAudio.driver
      (com.apple.audio.AppleAVBAudio)
      /Library/Audio/Plug-Ins/HAL/BluetoothAudioPlugIn.driver
      (com.apple.audio.BluetoothAudioPlugIn)
      /Library/Audio/Plug-Ins/HAL/iSightAudio.driver
      (com.apple.iSightAudio)
      /Library/Audio/Plug-Ins/VST/BIAS Freq-2.vst
      (com.bias-inc.freq2-vst)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Ambience.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Bandisto.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Combo.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda De-ess.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Degrade.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Delay.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Detune.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Dither.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda DubDelay.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda DX10.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Dynamics.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Image.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Leslie.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Limiter.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Loudness.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda MultiBand.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Overdrive.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda RePsycho!.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda RezFilter.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda RingMod.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda RoundPan.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Shepard.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Splitter.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Stereo.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda SubBass.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Talkbox.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda TestTone.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda ThruZero.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Tracker.vst
      (N/A)
      /Library/Audio/Plug-Ins/VST/mda Plug-Ins/mda Vocoder.vst
      (N/A)
      /Library/Extensions/LittleSnitch.kext
      (at.obdev.nke.LittleSnitch)
      /Library/Extensions/SophosNetworkInterceptor.kext
      (com.sophos.nke.swi)
      /Library/Extensions/SophosOnAccessInterceptor.kext
      (com.sophos.kext.sav)
      /Library/Input Methods/ParallelsIM.app
      (com.parallels.inputmethod.ParallelsIM)
      /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
      (com.AdobeAAMDetectLib.AdobeAAMDetect)
      /Library/Internet Plug-Ins/AdobeExManDetect.plugin
      (com.AdobeExManDetectLib.AdobeExManDetect)
      /Library/Internet Plug-Ins/AdobePDFViewer.plugin
      (com.adobe.acrobat.pdfviewer)
      /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
      (com.adobe.acrobat.pdfviewerNPAPI)
      /Library/Internet Plug-Ins/Default Browser.plugin
      (com.apple.DefaultBrowser.PlugIn)
      /Library/Internet Plug-Ins/Flash Player.plugin
      (N/A)
      /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
      (net.telestream.wmv.plugin)
      /Library/Internet Plug-Ins/GarminGpsControl.plugin
      (com.garmin.GarminGpsControl)
      /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
      (com.apple.plugin.iPhotoPhotocast)
      /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
      (com.apple.java.JavaAppletPlugin)
      /Library/Internet Plug-Ins/Quartz Composer.webplugin
      (com.apple.QuartzComposer.webplugin)
      /Library/Internet Plug-Ins/QuickTime Plugin.plugin
      (N/A)
      /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
      (com.microsoft.sharepoint.browserplugin)
      /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
      (com.microsoft.sharepoint.webkitplugin)
      /Library/Internet Plug-Ins/Silverlight.plugin
      (com.microsoft.SilverlightPlugin)
      /Library/Internet Plug-Ins/Unity Web Player.plugin
      (com.unity.UnityWebPlayer)
      /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle
      (com.apple.QuartzComposer.iTunesPlugIn)
      /Library/Mail/Bundles/GPGMail.mailbundle
      (org.gpgtools.gpgmail)
      /Library/Mail/Bundles/Letter Opener.mailbundle
      (com.creativeinaustria.LetterOpener.MailPlugin)
      /Library/PreferencePanes/Flash Player.prefPane
      (com.adobe.flashplayerpreferences)
      /Library/PreferencePanes/Flip4Mac WMV.prefPane
      (net.telestream.wmv.prefpane)
      /Library/PreferencePanes/MacFUSE.prefPane
      (com.google.MacFUSE)
      /Library/PreferencePanes/TimeMachineScheduler.prefPane
      (com.klieme.TimeMachineScheduler)
      /Library/QuickTime/AppleMPEG2Codec.component
      (com.apple.AppleMPEG2Codec)
      /Library/QuickTime/Flip4Mac WMV Advanced.component
      (net.telestream.wmv.advanced)
      /Library/QuickTime/Flip4Mac WMV Export.component
      (net.telestream.wmv.export)
      /Library/QuickTime/Flip4Mac WMV Import.component
      (net.telestream.wmv.import)
      /Library/ScriptingAdditions/Adobe Unit Types.osax
      (N/A)
      /Library/ScriptingAdditions/SIMBL.osax
      (net.culater.SIMBL.osax)
      /Library/Services/GPGServices.service
      (org.gpgtools.gpgservices)
      /Library/Spotlight/Finale.mdimporter
      (com.makemusic.MDImporter.Finale)
      /Library/Spotlight/GBSpotlightImporter.mdimporter
      (com.apple.garageband.spotlightimporter)
      /Library/Spotlight/iBooksAuthor.mdimporter
      (com.apple.MDImporter.iBooksAuthor)
      /Library/Spotlight/iWork.mdimporter
      (com.apple.MDImporter.iWork)
      /Library/Spotlight/Microsoft Office.mdimporter
      (com.microsoft.MDImporter.Office)
      /Library/Spotlight/PeakPlaylist.mdimporter
      (com.bias-inc.peak5.playlistmidimprter)
      Library/Caches/com.apple.Safari/Extensions/1Password-2.safariextension
      (com.agilebits.onepassword4-safari)
      Library/Caches/com.apple.Safari/Extensions/OpenIE.safariextension
      (com.parallels.openinie)
      Library/Internet Plug-Ins/Picasa.plugin
      (com.google.PicasaPlugin)
      Library/Internet Plug-Ins/SheepSystemsNPAPIPlugin.plugin
      (com.SheepSystems.SheepSystemsNPAPIPlugin)
      Library/Internet Plug-Ins/WebEx64.plugin
      (com.cisco_webex.plugin.gpc64)
      Library/Mail/Bundles/MailTags.mailbundle
      (ca.indev.MailTags)
      Library/Mail/Bundles (Disabled 1)/MailTags.mailbundle
      (ca.indev.MailTags)
      Library/Mail/Bundles (Disabled 2)/MailTags.mailbundle
      (ca.indev.MailTags)
      Library/Mail/Bundles (Disabled)/GPGMail.mailbundle
      (org.gpgtools.gpgmail)
      Library/PreferencePanes/AkamaiNetSession.prefPane
      (com.yourcompany.AkamaiNetSession)
      Library/PreferencePanes/AkamaiNetSession.prefPane/Contents/Resources
      (com.yourcompany.${PRODUCT_NAME)
      Library/PreferencePanes/GPGPreferences.prefPane
      (org.gpgtools.gpgpreferences)
      Library/PreferencePanes/GPGTools.prefPane
      (org.gpgtools.GPGTools)
      Library/PreferencePanes/teleport.prefPane
      (com.abyssoft.teleport)
      Library/ScriptingAdditions/TextExpander Addition.osax
      (com.smileonmymac.textexpander.osax)
      Library/Services/GraphicConverter.service
      (com.lemkesoft.graphicconverter.GraphicConverter-Service)
      Library/Services/Share with Jungle Disk.workflow
      (N/A)
      Library/Services/ToastIt.service
      (com.roxio.ToastItService)
      Library/Widgets/kuler.wdgt
      (com.adobe.kuler.widget.KulerWidget)
    dylibs
      /usr/lib/dtrace/libdtrace_dyld.dylib
      /usr/lib/libgmalloc.B.dylib
      /usr/lib/libruby.2.0.0.dylib
      /usr/lib/libXplugin.1.dylib
    Contents of /etc/ssh_config
       Host *
         SendEnv LANG LC_*
      Host *
          XAuthLocation /opt/X11/bin/xauth
    Font issues: 37
    Firewall: On
    DNS: 208.67.220.222 (static)
    Listeners
      launchd: afpovertcp
      launchd: microsoft-ds
      cupsd: ipp
      kdc: kerberos
    Restricted files: 45
    Safari extensions
      OpenIE
      1Password
    Elapsed time (s): 193

Maybe you are looking for

  • Connection reset when uploading a report to ras server.

    Hi, We're running the jboss app in the linux box and use the java sdk to extract the crystal report with the ras on the remote window box. We got the below exception when extracting one of the crystal report. Any idea what's going on? The trace log i

  • Adobe CS2 on a Macbook Pro

    I have installed Adobe CS2 on my Macbook pro. Everything runs except Photoshop and Version Cue. Have uninstalled twice. Still the same problem. Photosop gets to "loading Twain drivers" and then quits. Any Ideas?

  • JDBC Adapter Call a Table-Valued Function

    Hello to all, we're using the JDBC adapter to access a MS SQL-Server 2008. I have to call a "Table-Valued Function" via JDBC. Has anybody done this? I've tried to call it like a stored procedure with the following: <ns1:LGBuchungSAP_REQ xmlns:ns1="ht

  • Program doesnt work, tried to make it into array list

    I tried to change this from an array to arraylist and all i got was allot of errors! i was wondering if anyone could help? import java.util.*; import chn.util.*; public class final_proj public void quicks(int first, int last); int g = first, h = last

  • How can I get app in spanish?

    I need to buy some apps but I need them in spanish and at the store they are only in english, what can i do?