Start Time Machine from Terminal?

Is there a way to start a Time Machine "Backup Now" via Terminal?

/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper

Similar Messages

  • Everytime I start time machine, my computer backs up +/- 250MB, then freezes.  Tried it with 3 different external drives, all stop at about the same point (they all work fine on other macs). Any suggestions?

         The drives I have are Seagate 1TB GoFlex portable drives (one has UBS 3.0, the other USB 2.0), and a WesternDigital 1TB passport (USB 3.0).  I originally tried to backup with Time Machine using the Seagate USB 3.0, and when that didnt work, Seagate suggested maybe since my operating system is a little older, that I try with a USB 2.0, so they sent me another NEW external hard drive, with the USB 2.0.  Had the same issue.  Frustrated and convinced that Seagate just  sucked, I went and bought the 1TB WesternDigital passport (USB 3.0).  Have the exact same issue again.  Every drive was new, and formatted for mac.  When I started time machine it started to back up my files, but froze after copying give or take 250 MB (usually 252.5MB, to be exact).  I went and tried the drive on several other macs, and none of them presented any problems.  I also tried dragging individual files, but it still freezes on pretty much anything bigger than +/- 100MB.  Disk Utility says that all the drives are fine. Obviously this is a problem with my computer, and not the 3 brand new external drives.  I thought about upgrading to OSX 10.6, but don't know if this'll help or not (plus, I'd really prefer to have all the files backed up on a drive before doing that, just in case).  I dont know what else to do.. called apple, but I'm not about to pay them $50 to have them MAYBE give me a solution (done that twice now for previous unrelated issues, and each time they just told me to take it to a computer repair place.)  Just seeing if anyone out there has a solution before I cave and take it back to the certified computer guys for them to figure it out.. Also, I live in Montana and theres no apple store anywhere close (not suprising), so taking it to an Apple Store is just not an option.
    Side note:  Seagate tech support is awesome; they tried everything to solve the problem, and they even bent their rules a little to send me a new drive, even though it wasn't a malfunction issue with their drive.  Really helpful, friendly people, which is much more than I can say for Apple at this point...

    this is what you need to do to exclude everything apart from desktop.
    on time machine preferences, click on Options
    click plus sign, on the new window, click macintosh HD
    do a Control + A then deselect users then click okay
    go to options again, plus sign, go to users, control +A then deselect your user account
    go to options again, plus sign, go to your user account, control + A, deselect desktop
    start the back up.

  • How do I stop Time Machine from backing up Aperture thumbnails?

    Hi,
    My 2TB backup drive recently became full, and I became curious as to what was filling it up. I wrote a perl script to analyze the Time Machine backups, and I noticed that over 50% of my backup was filled with AP.Thumbnails and AP.Minis from the Aperture project directory. In particular, the AP.Thumbnails files in the backup consumed 737 GB of disk space!
    The problem with the thumbnails files is that they are a single file that contains all of the thumbnails for all of the 40,000 photos I have in Aperture and it is now 20gb in size. Every time I add a new file to Aperture, the thumbnail file changes, and I get a new 20gb of data added to my backup. I add photos often which means that most of my backups have 20gb of Aperture files (which are easy to rebuild and don't need to be backed up).
    I decided to try and stop Time Machine from backing up these files, and there seems to be no way of doing so (without telling Time Machine to skip backing up my entire Aperture project which I don't want to do). In Finder, you can do a "show package contents", but the Time Machine GUI doesn't allow this.
    I tried to tell Time Machine to exclude the files via the GUI, but Time Machine sees the Aperture Library as a single package and won't let me exclude individual files from within the package.
    I googled around, and found the attribute that Time Machine puts on files to exclude them from the backup. I used xattr to set the attributes:
    xattr -w com.apple.metadata:comapple_backupexcludeItem com.apple.backupd <filename>
    I also used this command on the iPhoto thumbnail files.
    I used spotlight to find all of the files with this attribute using this command:
    sudo mdfind "comapple_backupexcludeItem = 'com.apple.backupd'"
    This command returned the iPhoto files, but did not return the Aperture files.
    However, if I run "xattr" on the Aperture files, the attribute does exist!
    During my next time machine backup, the iPhoto files were skipped as I wanted them to be, but the Aperture thumbnails were backed up again
    I thought that maybe time machine was looking at the aperture package as an atomic unit, but iPhoto is stored as a package as well, and the attributes worked there on files inside the package.
    Does anyone have any idea why time machine is still backing up these files? Is there any way I can get around this?
    It seems to me to be an incredible oversight on Apple's part since both tools are Apple. The thumbnails files are very expensive to backup, and they are not necessary for backup since the are easy to rebuild from the original photos which are also backed up.
    Thanks,
    Ron

    Shadow99999 wrote:
    Hi,
    My 2TB backup drive recently became full, and I became curious as to what was filling it up. I wrote a perl script to analyze the Time Machine backups,
    No need to write your own script for that. there are a couple of already made nice GUI tools for this - TimeTracker http://www.charlessoft.com/ and BackupLoupe http://soma-zone.com/BackupLoupe/
    and I noticed that over 50% of my backup was filled with AP.Thumbnails and AP.Minis from the Aperture project directory. In particular, the AP.Thumbnails files in the backup consumed 737 GB of disk space!
    The problem with the thumbnails files is that they are a single file that contains all of the thumbnails for all of the 40,000 photos I have in Aperture and it is now 20gb in size. Every time I add a new file to Aperture, the thumbnail file changes, and I get a new 20gb of data added to my backup. I add photos often which means that most of my backups have 20gb of Aperture files (which are easy to rebuild and don't need to be backed up).
    I decided to try and stop Time Machine from backing up these files, and there seems to be no way of doing so (without telling Time Machine to skip backing up my entire Aperture project which I don't want to do). In Finder, you can do a "show package contents", but the Time Machine GUI doesn't allow this.
    I tried to tell Time Machine to exclude the files via the GUI, but Time Machine sees the Aperture Library as a single package and won't let me exclude individual files from within the package.
    I don't have aperture but I think most people exclude the whole thing from TM backups and back it up separately. but if you want to exclude a subfolder in a package that's easy too. just select the package in finder, control-click on it and select "show package contents". in the resulting finder window drill to the folder you want to exclude and drag it to the TM exclusion list in TM system preferences->options.
    I googled around, and found the attribute that Time Machine puts on files to exclude them from the backup. I used xattr to set the attributes:
    xattr -w com.apple.metadata:comapple_backupexcludeItem com.apple.backupd <filename>
    I was not aware of this method for excluding stuff from TM backups. could you provide a link to where you found this?
    I also used this command on the iPhoto thumbnail files.
    I used spotlight to find all of the files with this attribute using this command:
    sudo mdfind "comapple_backupexcludeItem = 'com.apple.backupd'"
    This command returned the iPhoto files, but did not return the Aperture files.
    that's because Spotlight never looks inside packages unless you start a search inside a package directly. iphoto seems to be the only exception. I don't know how it's done.

  • This pops up when exporting in iMovie "Unable to prepare project for publishing: The project could not be prepared for publishing because an error occurred. (ParamErr: error in user parameter list)" I have turned off my Time Machine in terminal.

    This pops up when exporting in iMovie "Unable to prepare project for publishing: The project could not be prepared for publishing because an error occurred. (ParamErr: error in user parameter list)" I have turned off my Time Machine in terminal yet it remains. What do I do, I need your help PLEASE.

    Hi
    Error -50 paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Video codec
    • streamingDV, AIC etc. (not .avi, .mp4, .m4v, .wmv etc as they are containers not codecs)
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    Where do Your material come from
    • Camera
    • External hard disk
    • USB-memory
    And all are connected so that iMovie can find it ?
    Yours Bengt W

  • Can I back up to Time Machine from hard drive of failed Macbook?

    My Macbook has just completely failed (I think an issue with power supply).
    I had a bulging battery and have a new Macbook Pro on the way, but as I live in a very remote area this is taking a while. So, one day, my Macbook just wouldn't start again.
    I hadn't backed up to Time Machine for about a week and would really like to get all the missing data. When the new computer arrives I'm planning to use Migration Assistant to migrate all my data from Time Machine.
    So, my question is, is it possible to back up to Time Machine from the hard drive of my dead Macbook? I was thinking either cloning it somehow, or making a disk image and booting it from another Macbook, but this is stretching the limits of my limited IT skills. I don't want to interfere with the other Macbook I'm using or inadvertently wipe the data on the hard drive or Time Machine disk.
    Any advice much appreciated!
    My Macbook ran Snow Leopard and was up to date with software updates as of two days ago. It was purchased about two years ago, but I think it's manufacture date was about March 2008.

    Thanks Noondaywitch and Pondini!
    The HD of the failed Macbook turned out to be fine. Just to be safe I did a full functional back-up of my Time Machine disk to another external disk as well as cloning my Macbook hard drive using Carbon Cloner to another partition of the external disk.
    I then booted from a friend's Macbook and did an incremental Time Machine backup from the original Macbook HD to the original TM backup (making sure I excluded the host computer's hard drive from the backup!); when I did the backup it asked whether I wanted to "Reuse backup" I clicked yes.
    As said, the hard drive was fine, but at setup I needed an ethernet or firewire connection, which I didn't have on the enclosure, so I migrated my data to the new Macbook Pro using the original TM backup. Strangely, the backup said it was transferring only 120GB, whereas the HD had 150GB of used space. Redundant files, etc. perhaps? Anyway, it's just transferring now, so will sit back and read the paper and see what it looks like in an hour and a half!
    Thanks very much again!
    Now, if anyone's got any suggestions to fix my old Macbook, which I was going to give away to impecunious friends if they bought a new battery……
    HD is fine, power seems buggered, the rest, I don't know. Suggestions welcomed (I live 300+kms from the nearest service centre, so it's strictly DIY or go to local computer shop who know nothing about Macs).

  • HT201250 Time Machine backup then install new SSD HD + Pulling files from Time Machine from 'old' HD

    Hi Guys,
    I currently have a mid 2009 Macbook pro and I decided to upgrade the current HD in it to an Intel 330 SSD. Which might I add was a *gongshow*.
    Anyways before I did the switch I used Time Machine to back up all my information, and to be double redundant I backed up the REALLY important information on a 8gig flashdrive.
    The removal and reinstall of the new drive went smooth, and once lion was installed I did all the usual system updates.
    Once it came to importing files from Time Machine is when my hassle started.
    The last backup I did on Time Machine with the old HD still installed was at 10:00 this morning.
    I had the new SSD up and running and a new backup of that created by 1:00 (3 hours later).
    When I loaded up Time Machine to grab some files off of my 10:00 backup, it would not let me. The current backups have a Grey/Silver snapshot, and the backups from the OLD HD were blacked out and I could not click on them. What can I do to get these files off my Time Machine from the old HD?
    Thanks

    Quick followup question,
    If I do a migrate with the time machine will the system be updated to the version I had when I made it (10.8.6 I think) or will I have to do the system updates afterwards. If so, will that cause any clashes when applying the time machine migration?

  • Lion unresponsive after starting Time Machine

    I accidentally deleted a file so I started Time Machine to restore it.  The machine seems to be hung.  There is no title bar and no dock.  I can see the application windows and I can move the mouse pointer but I can't click on it.  The machine has been in this state for over 90 minutes.  The screen saver didn't start but I can see dialogs that have popped up.  Unfortunately, I can't click on any of these dialogs.
    How do I get out of this?  Do I have to pull the plug?  How do I prevent this from happening in the future?

    I tapped the power button in anticipation of powering down the whole machine.  This closed Time Machine without powering the machine down.  I closed a bunch of applications and restarted Time Machine.  I restored the file successfully.  I wish I did this two hours ago.

  • How do i use a Time Machine from another computer from Time Capsule with multibackups

    Can Iuse a Time Machine from another computer from Time Capsule with multibackups

    Not sure what you are asking here. 
    Time Machine is software on a Mac that is used to backup that Mac to a Time Capsule hard drive.
    Are you asking if another  Mac can backup to the same Time Capsule that other Macs are already using?
    Or, if not....please clarify on exactly what you want to do.

  • How do I move data on time machine from one external hard drive to another

    How do I move data on time machine from one external hard drive to another?

    Although the documentation says you can copy Time Machine backups in the Finder, it's very slow and sometimes doesn't work at all.
    Launch Disk Utility, open the built-in help, and search for the term "Duplicate." Follow the instructions. Turn Time Machine OFF in its preference pane while copying the volume.

  • Just baked up my macbook pro to an external hard drive. my computer died on me and i plugged it in and rebooted it ,started time machine and finished backing up but. just wondering if thats good or should i delete and restart

    just baked up my macbook pro to an external hard drive. my computer died on me and i plugged it in and rebooted it ,started time machine and finished backing up but. just wondering if thats good or should i delete and restart

    I wouldn't trust that backup.
    Make sure the system is connected to AC and Do Over.

  • How do I retrieve data from time machine from an old mac (which was running 10.5) on my new iMac running mavericks?

    How do I retrieve data from time machine from an old mac (which was running 10.5) on my new iMac running mavericks?

    See B 5/6.
    Time Machine Troubleshooting

  • How to stop time machine from backing up encrypted lion partition

    I am using 10.6.8 but I created a Lion partition on the same disk. I am trying out Lion and I do not want Time Machine to back it up. I was able to exclude the Lion volume until I encrypted the Lion partition using Filevault 2. Now when I'm using Snow Leopard, there doesn't seem to be a way of preventing Time Machine from backing up the Lion partition. Am I missing something?

    The FAQ says Snow Leopard can't read the Filevault 2 disk which seems to imply I won't be able to keep Time Machine from backing up the Lion partition. That seems wrong. How can Snow Leopard's Time Machine see the disk to back it up, but can't see it to exclude from backup?

  • How to stop Time Machine from backing up Temp Files?

    Hi folks!
    I am trying to find out how to stop Time Machine from constantly backing up 'useless' temporary files accumulated from web browsing? Although I don't change or add large files to my HD, Time Machine backs up hundreds of MBs every hour. Those file amounts make sense when I consider that I browse a lot to YouTube, SoundCloud, etc to watch videos or listen to music - I just don't want them to be backed up.
    Under Time Machine Options I already excluded the following items from backups:
    ~/Library/Caches
    /Library/Caches
    ~/Downloads
    But even though I did this weeks ago, Time Machine stills finds large files to be backed up every hour and my only guess is that I am still missing a location where either Safari or Firefox - the two web browsers I use - store temporary files.
    Can you help?
    Thanks a lot in advance!

    oas2103 wrote:
    they come from my anti-virus software
    Are you sure you need that? There are no viruses that run on OSX. None. Zip. Zero.
    If you're running Windoze on your Mac, that's the same as running it on a PC, so it needs all the same anti-everything stuff you'd use on a PC.
    There is some "malware," such as Trojans, for Macs, though. But (unlike viruses that can get onto your system without your knowledge), you must approve their installation (via your Admin password) and/or operation (via the "This application was downloaded from the internet ..." prompt).
    Appropriately enough, some of these Trojans are included in pirated versions of Apple software, such as iWork!
    For the gory details, see Thomas Reed's [Mac Virus Guide|http://www.reedcorner.net/thomas/guides/macvirus].
    Thanks a lot again!
    You're quite welcome, and thanks for posting back.

  • How to disable Time Machine from backing up to hard drive

    Mountain Lion (OSX 10.8) will not install onto iMac (under OSX 10.7.4) because: "hard drive is Time Machime backup disk" error message.  However, TM Preferences does not show the iMac HD as a TM backup Location Option - it only shows the LaCie External Drive - which has been the storage drive receiving the Time Machine Backup.  How do I remove/prevent Time Machine from looking for and/or backing up to the iMac Hard Drive if the TM Pref does not list the iMac Hard Drive as an option? Note: The iMac HD icon on the desktop is a "Time Machine image" (blue Drive icon w/white white counter clockwise arrow).  Thanks.

    Check to see if you have a file called backups.backupdb on the hard drive you are attempting to update.
    If the install procedure see such a file, it might think that it is a TM backup drive.
    Allan

  • Just migrated using time machine from MacBook Pro to older Macbook. iPhoto 9.4.3 won't open. Tried reinstall - no change.

    Just migrated using time machine from MacBook Pro to older Macbook. iPhoto 9.4.3 won't open. Tried reinstall - no change. (Mac OS X 10.7.5)

    Did you migrate the app from Time Machine? Reinstall it.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    The reference to NovaMedia is that there is the remanant of an older app in there somewhere that won't run on 10.7
    Regards
    TD

Maybe you are looking for

  • Assign Chart of dep. to company code

    When I try to assign Chart of dep. to company code why it says "Inconsistency between FI company code 0214 and chart of deprec. Z214"? Please help.

  • Error in opening layout in interactive smart forms

    Hi all, I am trying to use intractive adobe forms in IDES version SAP 6.0 ECC but it is throwing an error stating that cannot be opened but when i am trying to open it in my development server I was able to open it , Please suggest me what are the ch

  • I need documentation on Webdynpro

    Hi all , Please give some documents regarding Webdynpro. Will be very thankful for your information. Thanks .

  • How to copy and use the RAID files for ATI SB600 for a new build

    WinXP Home MSI K9A Platinum AMD Athlon X2-3600+ 2 x Seagate 250GB SATA2 3GB/s HHD 2 x HIS X1950Pro in Crossfire 2 x OCZ2A8002GK Crossfire certified modules Enermax Galaxy 850 Hello, I plan on setting this new build up with SATA RAID 0. I tried to fol

  • MacBook stops booting from 2 TB external

    Alright, so it was hard to decide where to post this, and here's why : My 24" iMac ( see specs below ) is currently off with the Apple Geniuses getting it's Super-Drive replaced, should be ready mid next week. In the meantime I'm doing what I've done