How can I make sure my computer wont be interrupted while backing up?

I've been wanting to upgrade to Mavericks for a while (but I haven't had a backup in case something went wrong) so this is a real treat
I finally got mybookworld to work with time machine! It's late and I want to let it sit overnight while plugged in so it can finish the backup.
If the computer goes to sleep or the screen goes dim, will it be interrupted? Any other precautions I should take? I once left mine to sit a few months ago but it was constantly interrupted by family :/

Mike Bombich at Carbon Copy Cloner answered this question this way:
Can I run a backup while I'm using my computer? If I have open files, will they be backed up?
Yes and no, it really depends. Performance will be affected during the clone (especially the first one) as CCC reads the entire source volume and writes to the destination volume. If your work is "disk bound" -- that is your applications are reading or writing to either the source or destination, then you'll notice a performance hit. If you're just reading email or writing a Pages document, then you probably won't notice the performance hit.
Affecting the accuracy of the backup task is something else that should be considered. Typically it's OK to work from the source volume while you're copying it, with the understanding that if CCC copied a file, then you open it, make changes, save it, then CCC completes the backup task, the modified version of your document is not backed up (this time around). Typically that's no big deal, the modifications will get backed up the next time the backup task runs. More importantly, though, if you're working with large files (mounted disk image, Entourage email database, VMWare/Parallels container) during the backup operation, it is possible that those large files could be modified while CCC is backing up that file. This won't affect the source file, but there's a good chance that the backup version of that file will be corrupt. For this reason it is a good idea to stop using applications that may be modifying large files.
http://help.bombich.com/kb/troubleshooting/can-i-run-a-backup-while-im-using-my- computer-if-i-have-open-files-will-they-be-backed-up
Looks like the main consideration in the "average case" is a hit to performance only. Very large files (see the link above for a definition) are another matter.

Similar Messages

  • HT1355 If I am playing a song from my phone on speakers, how can I make sure that there are no interruptions like calls or notifications?

    If I am playing a song from my phone on speakers, how can I make sure that there are no interruptions like calls or notifications? My students are performing and it would be terrible if there was to be an interruption.

    You could turn on Do Not Disturb. This would block all notifications and incoming calls.
    Or just turn you're phone's Airplane Mode on if you're not streaming the music

  • How can I sync my ipod to the i tunes library in my computer? and how can I make sure each Cd I play automatically is saved onto the Ipod?

    How can I sync my ipod to the i tunes library in my computer? and how can I make sure each Cd I play is automatically saved onto the Ipod?
    My problem is that if I open I tunes, the Sync ipod option in the menue is grayed out, and so not available.
    This is starting to irritate me, so any help would be much appreciated.
    Thanks!

    I have the same problem. The Sync ipod option in the menue is grayed out, and so not available. HELP!

  • HT4946 how can I make sure that itunes saved my contacts and photos on last back up ?

    How can I make sure that itunes saved contacts and photos FROM my iPhone on last back up ?, i just bought this phone and store transfer contacts from old non-smart phone and dont want to loose them !

    Look in whatever software on your computer handles your contacts and photos. Neither will be part of the backup file. This may be of help:
    http://support.apple.com/kb/HT1296
    Regards.

  • How can I make sure that in RAM our sql server is not facing any mermory crunch issue?

    The SQL server process always show RAM is highly used while its a default behaviour of sql server.
    How can I make sure that in RAM our sql server is not facing any mermory crunch issue?
    Thanks

    The SQL server process always show RAM is highly used while its a default behaviour of sql server.
    How can I make sure that in RAM our sql server is not facing any mermory crunch issue?
    Thanks
    The best way to make sure you are not facing memory pressure is to use perfmon counters and monitor various memory counters
    For SQL Server 2005 - 2008 r2 use below counters
    SQLServer:Buffer Manager--Buffer Cache hit ratio(BCHR): IIf your BCHR is high 90 to 100 Then it points to fact that You don't have memory pressure. Keep in mind that suppose somebody runs a query which request large amount of pages in that
    case momentarily BCHR might come down to 60 or 70 may be less but that does not means it is a memory pressure it means your query requires large memory and will take it. After that query completes you will see BCHR risiing again
    SQLServer:Buffer Manager--Page Life Expectancy(PLE): PLE shows for how long page remain in buffer pool. The longer it stays the better it is. Its common misconception to take 300 as a baseline for PLE.   But it is not,I read it from
    Jonathan Kehayias book( troubleshooting SQL Server) that this value was baseline when SQL Server was of 2000 version and max RAM one could see was from 4-6 G. Now with 200G or RAM coming into picture this value is not correct. He also gave the formula( tentative)
    how to calculate it. Take the base counter value of 300 presented by most resources, and then determine a multiple of this value based on the configured buffer cache size, which is the 'max server memory' sp_ configure option in SQL Server, divided by 4 GB.
      So, for a server with 32 GB allocated to the buffer pool, the PLE value should be at least (32/4)*300 = 2400. So far this has done good to me so I would recommend you to use it.  
    SQLServer:Buffer Manager--CheckpointPages/sec: Checkpoint pages /sec counter is important to know about memory pressure because if buffer cache is low then lots of new pages needs to be brought into and flushed out from buffer pool, 
    due to load checkpoint's work will increase and will start flushing out dirty pages very frequently. If this counter is high then your SQL Server buffer pool is not able to cope up with requests coming and we need to increase it by increasing buffer pool memory
    or by increasing physical RAM and then making adequate changes in Buffer pool size. Technically this value should be low if you are looking at line graph in perfmon this value should always touch base for stable system.  
    SQLServer:Buffer Manager--Freepages: This value should not be less you always want to see high value for it.  
    SQLServer:Memory Manager--Memory Grants Pending: If you see
    memory grants pending in buffer pool your server is facing SQL Server memory crunch and increasing memory would be a good idea. For memory grants please read this article: 
    SQLServer:memory Manager--Target Server Memory: This is amount of memory SQL Server is trying to acquire.
    SQLServer:memory Manager--Total Server memory This is current memory SQL Server has acquired.
       8.  Free List Stalls/sec – Number of requests per second that had to wait for a free page
       9. Free Pages – Total number of pages on all free lists (free lists track all of the pages in the buffer pool that are not currently allocate to a data page, and are therefore available for usage immediately)
    NOTE: If you have NUMA system don't use PLE to monitor memory condition it wont give correct value
    From 2012 Onwards
    Memory management has become easy from 2012 onwards as
    Max server memory also allocated memory for requests which require memory >8KB
    SQLServer:Memory Manager:Free Memory (KB)
    SQLServer:Memory Manager:Target Server Memory (KB)
    SQLServer:Memory Manager:Total Server Memory (KB)
    For NUMA system its also wort monitoring each node.
    Object - SQLServer:Memory Node:Total Node Memory
      (KB)
    Object - SQLServer:Memory Node:Target Node Memory
      (KB)
    Object - SQLServer:Memory Node:Free Node Memory
      (KB)
    Ideally if target server memory is less than or equal to total server memory there wont be memory pressure if target is > total it does not always means its memory pressure
    BCHR would also give you good idea about memory pressure
    If memory grants pending is frequently non zero there is memory pressure
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Nokia C3 How can I make sure it only connects thro...

    Ive just got this phone for my daughter on Vodaphone contract, I am really worried however that it is going to randomly connect itself to the internet like my old Nokia 5800 used to! How can I make sure it doesn't, I don't want it to end up costing me a fortune. Many thanks

    Only the website (server or domain) that sets a cookie can read that cookie, but there can be an iframe embedded with a different domain that sets so called third-party cookies.
    You can disable third-party cookies.
    *https://support.mozilla.org/kb/Disabling+third+party+cookies

  • I currently own an iPod 4th gen. but would like to upgrade to a 5th gen. How can I make sure the info on the 4th is transferred and cleaned off before handing it over to my daughter?

    How can I make sure that my info on 4th gen. iPod has transferred to my new 5th gen iPod and all pertinent content deleted before transferring old iPod to my daughter?

    Go to Settings > General > Reset > Erase all content and settings
    Also... See the wjosten post here...
    https://discussions.apple.com/message/20294697

  • How can I make sure iTunes doesn't stop updating my podcasts

    OK I'm subscribed to multiple podcasts, but I don't always get a chance to listen to them so some of them will stop updating and it says something like "iTunes has stopped updating this podcast because you haven't listened to any episodes lately".
    How can I make sure it doesn't do that? When I do get to listen to my podcasts, I would really like it if they weren't 3 weeks old.
    Message was edited by: MacAttakk

    someone made a script that fixes this. It seems to work for me. If you want it to do it automatically just make an iCal even for every 3 days or something that runs this script.
    http://dougscripts.com/itunes/scripts/download.php?sc=updateexpiredpodcasts

  • My sister and I share an itunes account so she can click on my email and receive my imessages how can I make sure this stops happening?

    My sister and I share an itunes account so she can click on my email and receive my imessages how can I make sure this stops happening?

    One of you needs to use a separate Apple ID for iCloud, FaceTime & iMessage.
    The Apple ID needs to be a verified email address. Once you have an email address, that can be verified, go here & create the ID:
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/createAppleId
    Then on one of the phones, turn off Contacts, Calendars, etc. for iCloud. You'll be prompted to keep the data or delete it from the phone, then turn off iMessage, FaceTime & delete the iCloud account...Settings>iCloud...scroll down...delete account. Then, setup iCloud using the new Apple ID, turn on iMessage & Facetime.
    This will have no affect on the ID you both share for iTunes content, & you can continue to do so.

  • How can I make sure the Presenter Display will show up?

    I use the option "use alternate display to view presenter information", and it works fine with my secondary display at home. The presenter information (Presenter Display) with my notes etc. shows up.
    But when I gave a practice talk at my university, the Presenter Display did not show up, although all settings were the same. Back at home with my own secondary display, it works fine again.
    How can I make sure that the Presenter Display will always show up on the secondary display?

    I have a similar problem. Last year I gave a presention at a client's office using my Macbook. I had the presenter display on my Macbook screen and the presentation on their projector.
    A few months ago I upgraded to the latest Macbook Pro 15" (plus there have been upgrades to OS X and Keynote in that time). This time when I tried to run the same set-up my MBP screen went blank. I tried changing settings for Keynote and System prefs with no success. The only way I cuould give the presentation without needing to look at the projector screen was to mirro the displays (and lose the Notes of course). Maybe there is a bug with the latest Keynote?
    OS 10.5.7
    Keynote 5.0.2 (776)

  • I have changed the email signature on my iPhone, when composing a new email the signature is there, however when I am replying to an email it is not, how can I make sure that the signature is at the end of every email I send?

    I have changed the email signature on my iPhone, when composing a new email the signature is there, however when I am replying to an email it is not, how can I make sure that the signature is at the end of every email I send?

    Yes I know what you mean about it cluttering the thread and for personal emails it is better without the signature. However this relates to sending business emails from an iPhone so I need the signature present on every email.
    I can't find anything in Settings so I was hoping someone may have some knowledge/information/experience regarding this problem.

  • How can I make sure under Windows 8 in Explorer to get a real pdf document content file miniature and not the Adobe logo miniature?

    This is not a typical Windows 8 problem, I had the same problem with all my previous Acrobat versions on all previous Windows versions.
    How can I make sure that when consulting pdf files via Windows explorer the pdf file is represented as a genuine miniature of the document content itself and noit just a document icon with Adobe logo?

    Hi Josialaers,
    Turn the 'Preview Pane' ON and you should be able to see the content of the pdf when clicked.
    When 'Show preview handlers in preview pane ON' is checked in 'Folder Options' of Windows Explorer.
    Regards,
    Rave

  • I HAVE TO INSTAL A PRODUCT C LLED "KUDANI AIR " . FAILURE TO DO SO IS BASED ON  ADOBE AIR , SO I AM TOLD . HOW CAN I MAKE SURE THAT IS THE CASE ?? HOW CAN I SOLVE THE PROBLEM IF THIS IS THE CASE ??

    I HAVE TO INSTALL A PRODUCT CALLED "KUDANI AIR " . FAILURE TO DO SO IS BASED ON  ADOBE AIR , SO I AM TOLD . HOW CAN I MAKE SURE THAT IS THE CASE ?? HOW CAN I SOLVE THE PROBLEM IF THIS IS THE CASE ??

    if you try to install an app that depends on adobe air, you should be prompted to download and install adobe air (unless it's already installed).
    you can download and install directly so you're not prompted by that app, Adobe - Adobe AIR

  • How can i make sure the graphic file from my subcontract create is really llegal?

    how can i make sure the graphic file from my subcontract create is really llegal?
    They have creat the PNG file which creat from Adobe Illustrator CS5.
    I have try checking on Metadata In Adobe Bridge, and it seem to be blank.
    So i would likt to know how can i make sure the graphic file from my subcontract create is really llegal?
    Thanks

    I have try checking on Metadata In Adobe Bridge, and it seem to be blank.
    So i would likt to know how can i make sure the graphic file from my subcontract create is really llegal?
    shoo: if i had to do that for every file i get  i would go insane, as scott said, post contract: files that they (sub contractor) supply you, presume them ok unless you KNOW otherwise, or a copyright flag pops up contradicting ownership.
    G

  • 0sx 10.9.2 says it is installed but latest software shows as 10.9.1.  how can i make sure it is installed?

    how can i make sure 10.9.2 installs?

    I installed 10.9.2 and after restart it still says I am on 10.9.1 also.  I tried downloading the aforementioned files, and when I try to open them it says they are not recognized...?  ***?  I've been a mac user for 20 years, and I'm a split second away from going PC.  Anybody have any guesses?

Maybe you are looking for

  • SSRS Do not Group if the Field value is NULL

    I have an SSRS report that I am doing dynamic grouping on that displays an agenda with time. grouping performed on a field called subheader and then the agenda times (another field) displayed under that group subheader. The problem that I am having i

  • Doubt in the Oracle BPM Tutorial

    Hi All, Iam new to this Oracle BPM.. Moreover i have installed the studio and other files... But at the point of working with the TUTORIAL iam getting an error as... All arguments must be fulfilled when defining the incoming argument mapping of a scr

  • Encoding on mail. Pls help

    Hi, I am getting problem while sending some character thru javax.mail API. I want to send message like �esky ������. When i set this message to MimeMessage it works fine. But in mail, it looks like }}} etcetc junk character. Can anyone tell me on thi

  • How can i copy the variant

    Hi abap gurus, Plz can any one tell how we can copy the variant from one client to another client. Plz give me the answer or any program is there plz send me that. Rgds,

  • Cloning Leopard

    Hi all, looking for some advice from all the experts out there. I've had Leopard now for about six or seven months, no problems what so ever(10.5.2). Thinking about downloading the latest version. I have a 250 GB external drive with Time Machine on o