Old previews bogging down hard drive backups

When I backup my hard drive to another hard drive, using Vica-Versa software, there are often lots (thousands) of older LR preview files that need to be deleted off the backup drive.  With Vica-Versa the entire process just bogs down and can take forever.  I have tried several other backup programs and have found no solutions.  Is there a way to keep LR from creating previews at all?  I know that would slow me down as I work with Lightroom, but right now I'd be willing to wait a little longer for a preview to be rebuilt than to have to deal with the incredible amounts of time it takes to backup my hard drive.  Any suggestions?  Thanks.  Frank.  [email protected]

Frank,
fjlfourteen wrote:
... Thanks for the suggestion, but would I put the preview files somewhere else manually, or is there a way to set up LR so that preview files would be directed to a place other than where the main image files are located?  It seems to me that I remember seeing that kind of an option somewhere, but I'm not finding it either in general preferences or in catalog settings.
Unfortunately there is no way (I know of) of telling LR where to put the preview files, they're put into a subfolder of the folder where the catalog resides (and not where the original image files are located!).
b_gossweiler wrote:
 ... But what would make the entire process easier to control would be the ability to put your preview files where you wanted to, like the ACR cache. That way, you could put them onto a (fast) drive never backed up and used for cache type data only. ...
This was a wish only :-)
fjlfourteen wrote:
... The idea about simply not backing up the preview files is a good one, but I have lots of catalogs, and setting each one up to have its preview files not backed up would be quite a piece of work all in itself. ...
That's exactly the reason why I would like the option of telling LR where to put the previews. But, unfortunately, not (yet) possible.
I have excluded the previews from my backups with the following mask:
D:\*.lrdata\*.*
Beat Gossweiler
Switzerland

Similar Messages

  • Restore from external hard drive backup

    How do I restore from an external hard drive backup of my old system. How do you import into iTunes 8?

    Hello,
    Sorry to tap into this thread but it was the only one that made sense.
    I have been trying to restore my kid's libraries from an external HD. I assumed I needed to be logged into their Windows profile to launch each of their own itunes applications. As I tried to launch with the Shift key held down, I got the appropriate request about choosing a library. But when I navigated to the HD and found their .itl file, it said it was locked or I had inadequate permissions and would not proceed.
    I then logged in as myself (admin) & then dragged & dropped the files into their respective folders. When I went back to open itunes, the songlist was where it should be but nothing played when I tried them.
    Is this where "consolodating" comes in and what is it and how do you do it?
    Thanks for your patience.

  • I'm trying to back up 10.6.8 (snow leopard) and all my files before upgrade to Mavericks.  I have an old but sturdy external hard drive...how many GB available will I probably need to back up the whole thing? thanks!

    I'm trying to back up 10.6.8 (snow leopard) and all my files before upgrade to Mavericks.  I have an old but sturdy external hard drive...how many GB available will I probably need to back up the whole thing? thanks!

    You will need a separate partition unless you plan to use the entire drive. You will need an amount of space somewhat larger than the total space now used on your startup drive. If you select the startup drive's Desktop icon, then press COMMAND-I to open the Get Info window. Used space will be shown in the topmost panel. Add a GB or two to that number to determine how much space you'll need for the backup.
    Do not backup on a drive that has any files you want to keep. You can make a bootable backup as follows:
    Clone using Restore Option of Disk Utility
      1. Open Disk Utility in the Utilities folder.
      2. Select the destination volume from the left side list.
      3. Click on the Restore tab in the DU main window.
      4. Select the destination volume from the left side list and drag
           it to the Destination entry field.
      5. Select the source volume from the left side list and drag it to
          the Source entry field.
      6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.

  • Backing up .mdf's and .ldf's using hard drive backup utility deleting SQL Server backup devices...

    I am a software developer using Windows 8.1, Visual Studio 2013, and SQL Server 2014. I have a number (30+) of SQL Server databases that I use in my development and support activities.
    Every time I run a backup (full or incremental) all of the backup devices in my instance of SQL Server 2014 are being deleted. I can add them all back in (a time-consuming and irritating process after about the 5th time), and the very next time I run either
    the Acronis Backup and Paragon Hard Drive Backup against the volume (D:) that contains all of the .mdf and .ldf files, all of the backup devices are again deleted.
    I hope someone can give me some idea of how to get around this problem or how to eliminate it completely.  Should I not be using these types of backup utilities to copy the .mdf's and .ldf's?  I've just never seen backup devices be deleted from SQL
    Server.  I have dumped the contents of the backup devices data within SQL Server and the rows are definitely gone after the either of the backups run.
    Thanks in advance for any light you can shed on this problem. It is very time-consuming and seems pretty silly to me -- but it's happening nonetheless.

    The last backup location you use is never stored in sys.backup_devices.  That's an instance-wide table for registering shared backup locations, mosly for tape backups in the old days.
    Per-database backup history is stored in msdb, and AFAIK the database backup dialog in SSMS is pre-populated with a location from msdb.  It looks like it runs this query
    exec sp_executesql N'SELECT
    bkpmf.media_family_id AS [ID],
    bkpmf.family_sequence_number AS [FamilySequenceNumber],
    bkpmf.media_count AS [MediaCount],
    bkpmf.logical_device_name AS [LogicalDeviceName],
    bkpmf.physical_device_name AS [PhysicalDeviceName],
    CASE WHEN bkpmf.device_type > 100 THEN bkpmf.device_type - 100 ELSE bkpmf.device_type END AS [BackupDeviceType],
    CAST(CASE WHEN bkpmf.device_type > 100 THEN 1 ELSE 0 END AS bit) AS [IsBackupDevicePermanent],
    bkpmf.physical_block_size AS [PhysicalBlockSize]
    FROM
    msdb.dbo.backupmediaset bkpms
    INNER JOIN msdb.dbo.backupmediafamily bkpmf ON bkpmf.media_set_id=bkpms.media_set_id
    WHERE
    (bkpms.media_set_id=@_msparam_0)',N'@_msparam_0 nvarchar(4000)',@_msparam_0=N'3'
    So it's possible that your backup software is purging that table, eg by runningmsdb.dbo.sp_delete_database_backuphistory. 
    Or perhaps more likely, your backup software is adding data to the SQL Server backup history that prevents SSMS from pre-populating the backup dialog with your last TSQL backup location.
    In any case, you don't need to manually take the bakcups through SSMS every day.  You can just save a script of your backup commands (by hitting the Script button on the backup dialog) and run that.  Or create a SQL agent job to run the script
    or use a database maintence plan.
    David
    David http://blogs.msdn.com/b/dbrowne/

  • I need to install photoshop cs4 extended from a disk to a new computer because my old computer had a hard drive crash. There is no serial number on the back of the case.  How can I obtain a usable serial number?

    I have to install Photoshop CS4 extended on a new computer from a disk because my old computer had a hard drive crash.  There is no serial number on the back of the case.  How can I obtain a usable serial number?

    Find your serial number quickly
    You can activate software without following up and registering it... at least that was the case in the past.  The serial number is normally located on the disc case or a box inside the main box.  If you did not purchase the disc from Adobe then it is possible you would have dealt with a redemption code, in which case it would have been up to you to keep a record of the serial number, especially if you did not follow up and register the software.

  • Hard Drive Backup Utility - Question

    I have a P67A-GD55 and everything is working wonderfully. I would like more information concerning the Hard Disk Drive Backup Utility in the BIOS.  The BIOS Version is 1.9 and that came on the board from the time of purchase.
    I can get to the HARD DRIVE BACKUP option in BIOS and it seems like it times out waiting for something...which I have yet to figure out.
    My intention is to do a complete backup to an another drive LETTER: which is currently the identical sized partition on the same physical drive. I was able to use CLONEZILLA x64 but would prefer to use the built in Utility.
    Any help would be greatly appreciated.
    My System;
    MSI P67A-GD55 B3 Stepping (Bios version 1.9)
    I7 2600K             
    G.SKILL 8Gb DDR3 1600   F3-12800CL9D-8GBRL
    MSI N5500GTX-Ti Video card
    Hitachi 2Tb 7200 6Gb SATA Hardrive
    Win 7 Home Prem x64

    i dont recommend windows backup utility, not comprehensive enough.
    if u are a home user, there are many free utilities out there.
    drive backup, true image and todo backup are all good backup tools.
    they are all can help you.
    personally, i use todo backup.
    http://www.todo-backup.com/products/home/free-backup-software.htm

  • I'm an avid Mac enthusiast who works in a creative field. However, I simply cannot afford a new Mac after my old one's internal hard drive failed. Can anyone recommend an affordable Mac option? I don't want to consider a non-Apple product.

    I'm an avid Mac enthusiast who works in a creative field. However, I simply cannot afford a new Mac after my old one's internal hard drive failed. Can anyone recommend an affordable Mac option? I don't want to consider a non-Apple product.

    Macs with a FireWire port will also boot happily from an External drive. You don't even need to open the MacBook.
    Some users buy a drive they would like to have as a future Internal drive, and also buy an external enclosure. They get the External set up the way they want it, then swap with the Internal drive.

  • How to export photos with editing from preview mode to hard drive and external hard drive?

    I have applied changes to the photos in the preview mode. Unfortunately, I can't export them from preview mode to hard drive and external drives. Whenever the external drive is plugged, the changes I made are not applied to the photos on the both hard drives.

    Sorry what do you mean Preview Mode? There is no Preview mode or module in LR. There is a Library and Develop module in LR. The Library module does have the ability to do some adjustments and the Develop module has all the image adjustments.
    In any event to export an image you can either right click on it and select Export or when in the Library module you click the button that says Export.

  • How do I put aperture in the "vault" on my WD Smartware external hard drive backup?

    How do I put aperture in the "vault" on my WD Smartware external hard drive backup?

    How do I put aperture in the "vault" on my WD Smartware external hard drive backup?

  • I backed up my old macbook onto a hard drive through time machine. now need to restore to new macbook air. HOw??

    I backed up my old macbook onto a hard drive through time machine. now need to restore to new macbook air. HOw??

    If you've not started the new computer yet, after you've started it you'll answer a few questions and then be asked whether you want to restore the computer. If you answer yes you'll be asked the source. Choose hard drive - make sure the TimeMachine drive is plugged in. Choose the TM drive from the list and let it go. It will take a while.
    If you've already started the computer look for Migration Assistant in the Utilities folder. You'll be asked the same question about the source. Follow the instructions above.

  • I used an external hard drive for my backups via Time Capsule.  I bought a new computer and I want to transfer all my old fonts over to the new one but when I go into the Font Library from the hard drive backup but my downloaded fonts aren't there?

    I used an external hard drive to back up my computer using Time Capsule before I bought a new one.  I am slowly transferring information fromt he backup to my new computer and I want to transfer over my old font book.  When I go into the Font folder on the hard drive the only fonts that show up are the ones that came stock with the computer not any of the ones I have downloaded over time.  Could they be downloaded somewhere else?

    The answer to that would probably be "Yes." If you don't remember where your fonts were stored, you may want to search your backups for any of the font files you know the names to. See where that takes you.
    Ideally, Font Book and other font managers will temporarily store the fonts you "installed" into the System when you run the OS. When you shut down, etc. they are removed and reloaded on restart. The permanent place fonts reside is where you saved them when or after you downloaded them. I typically create a Resources folder on the root level of the computer and place a Fonts folder there. Then I install fonts from there, and they are available to all users on that iMac.
    Perhaps if you did not have that kind of a strategy, perhaps many of them are still in your Downloads folder?

  • HT1296 How do I load my old macbook data onto my new macbook using an external hard drive backup?

    I have a new macbook pro that I bought and started to use.  I then went back to using my old macbook because I couldn't learn some of the new keystrokes and software and it was slowing my ability to get work done.  i am now ready to use my new computer but want to update my new computer with my external time machine hard drive to have all my current work on one computer.

    See this Excellent Advise from Pondini...
    Setting-up a new Mac from an old one, its backups, or a PC
    See the  Second Chance to Use Setup Assistant  here...
    http://Pondini.org/OSX/SetupLion.html

  • There is not enough disk space to download new messages. How can I backup my old emails onto my hard drive to create room for new message?

    When trying to download new email messages I receive an error "There is not enough disk space to download new messages. Try deleting old mail, emptying the Trash folder, and compacting your mail folders, and then try again." I have emptied my trash, removed all the junk, deleted about 1gig worth of email and im still having problems.
    I have a ton of folders that I store all of my emails in, so that I can easily find older emails. This email has been working fine for me for about the pass 5-6 years and now I have problems. I would like to be able to back up my emails onto my hard drive so that I have them on hand. What is the best way to go about this? Because of my file structure I am not able to see all of my messages on one screen. Is there a way to select emails from a certain year?
    Thanks in advance for any help or suggestions.

    ''Try deleting old mail, emptying the Trash folder, and'' '''compacting your mail folders'''
    If you did not compact the folders after marking the messages for deletion, you have not deleted anything.
    http://kb.mozillazine.org/Keep_it_working_-_Thunderbird

  • How do I make space on my MBP and transfer old files to External Hard Drive?

    I recently ran out of the 250 GB space on my 2010 Macbook Pro, so I bought a non-apple external hard drive. I plugged it in and Time Machine automatically popped up.
    I just wanted to know what the correct way to transfer all my old files that I'm not using any more and still want to keep to the external hard drive and not use the external hard drive as a "backup" for my laptop but rather as just a place to keep all the files I'm not currently using. Do I just use Time Machine and turn off the automatic back ups? Is there a certain way to transfer individual files to the EHD later (does this happen through Time Machine or just dragging them in through Finder?)?
    I've never used an EHD so I'm really unsure on how all this works on a Mac since the instruction manual only gave instructions for PC's even though it is Mac compatible.
    Thanks in advance!

    Apple doesnt make hard drives, they use Toshiba/Hitachi inside current macbook pro non-retina.
    You should always have a backup regardless, and 2 at that. One backup, and one archive, unless losing valuable data is no consideration to you.
    use time machine as a backup for restoration /emergency backup and use a separate HD for archiving valuable data.
    Using an external HD is as easy and falling down. Buy a nice Hitachi/Toshiba or Seagate external HD, format it in disk utility for MAC OSX extended journaled and drag and drop ALL your valuable data to same and updata as needed.
    a nice 1TB external HD is currently running $65
    backup with time machine,
    ARCHIVE all valuable data, ,music, pics, files, videos etc etc onto ANOTHER hard drive.
    2 backups is 1, and 1 is none. 
      If you always follow that rule that should be written in stone, you'll never be sorry.... (and I know countless 1000s that have been)

  • Retrieving old photos from external hard drive without replacing current library

    Hi everyone,
    This problem has probably been discussed before but I have not been able to find a definitive answer.  Hopefully I can find a solution to this problem here.
    I am having trouble with my workflow in iPhoto.  Right now when I place an SD card full of digital photos into my Macbook Pro, I import all of them directly into iPhoto.  I use iPhoto to organize my photos and do simple edits and changes.  However, recently I have begun to fill up my 250GB hard drive with photos and HD video, so I use an external hard drive to backup my computer before deleting unneeded items.  Obviously, the purpose of backing up is to be able to go back and retrieve those items.  With items saved in Documents>Photos, they can be easily organized, and then retrieved later from whatever date they were saved on the external drive, adding them back to the existing photos currently on my computer.  However, iPhoto is a great tool, so I prefer to use it instead.  But I notice that saving an iPhoto library onto a backup drive is not the same as saving a folder full of pictures.  When I try to open an iPhoto library from my external hard drive, it tells me something about not being able to open it, or replacing my current library with the old one just to view my pictures.  I simply want to find old photos saved within iPhoto, and add them to my existing library.  Does iPhoto really only allow you to open one library at a time, and not browse them and add them together?  If so, then just saving photos outside of iPhoto in Documents seems like a better workflow for retrieval, but at the cost of not being able to utilize iPhoto's capabilities.
    If my view of how iPhoto works here is very wrong, please let me know.  I just don't want to have to save my photos outside of iPhoto just to be able to find them again without replacing my current photos.  Thanks everyone for your help. 

    iPhoto can only open one library at a time.
    Here's one way to do what you want:
    1. Quit iPhoto.
    2. Copy the iPhoto Library from your Pictures Folder to the external drive.
    Now you have two full copies of the Library. To choose between them:  Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Choose Library'
    3. On the Internal Library, remove the pics you don't want with you all the time.
    Now you have one full library on the external and another smaller sub-set on the Internal.
    A couple of comments:
    a. The external disk needs to be formatted Mac OS Extended (Journaled)
    b: When you're removing the unwanted pics from the Internal Library you need to delete them in batches of about 100 or so. Trashing more at one time can cause problems with the database.
    c: Managing Multiple Libraries - including moving pics/albums/rolls and metadata between them - is greatly facilitated by using iPhoto Library Manager

Maybe you are looking for

  • How can I turn a iPhoto slide show into a DVD to share with friends?

    First time I have used this forum. Also, am new to Mac. I went to a lot of trouble creating an iPhoto slideshow thinking I could make a DVD to mail to friends. I could do this easily on a PC with Adobe Photoshop. Thanks in advance.

  • Keyword Filtering and Acrobat Connect Meetings

    Interesting discovery this morning. We've had ongoing issues with remote users in other companies connecting to our meetings for the past several years, even after we'd enabled and verified communication over port 1935 as well as 443 and 80. Turns ou

  • Query panel validation message

    1. in the query panel if my user doesnt select a value for a field state ...i want to display message as please select the value for state 2. And also in query panel their are two fields from serial no and to serial no... if from serial no greater th

  • Can't publish - greyed out options

    Trying to explore publishing an iCalender for the first time but all my options for publishing are greyed out. What am I missing out here? Surely it must be something obvious that i'm overlooking. Calender>Publish (greyed out along with Unpublish, an

  • Process Multiple Files is not working correctly

    When using Process Multiple Files to resize several images, the resulting files are way too small.  I am resizing to 12"x8" at 150dpi which used to result in about a 2 meg file.  Now the files are about 200k.  Something has changes and I can't find i