How can I use the same catalog on PC and MAC?

I keep my catalog and photos on an external hard drive.  I have both PCs and a MAC and I would like to be able to access the same catalog of photos on both my PC and my MAC using LR2.  I am using v 2.3.  The problem is the location of the photo is referenced differently on the PC than on the MAC.  Does any one have any idea how I might accomplish this?
If this is impossible, then can anyone at least tell me how I can convert my catalog file (lrcat) so that the location of photos that are currently referenced using a drive and path (eg, p:\myphotos\...) to a format that can be used on the MAC so Lightroom running on the MAC will know about the photos on my external drive?

I have figured out the answer to my question.  Thanks to those who tried to help.
First of all, I found that Lightroom's 'Locate folder' didn't work for me.  It might have if I had tried that the first time I tried to convert things, but I had tried to locate a few photos already, so I was always told that the folder I was trying to locate was already in the catalog.
Breifly, what did work was to locate individual photos using the ? you see on the photo when in grid mode in the Library view and specify that other photos nearby should also be relocated.  By choosing a photo at the top of the directory tree, Lightroom will search for all photos in the directory containing your photo and all subdirectories of it.
The details:
What did work, was to individually locate photos using the ? you see on the photo when in grid mode in the Library view.  If you turn on the choice to locate other photos nearby, then Lightroom will search for other photos in this directory and in all subdirectories of the one containing your located photo.  This was a good start, but the problem for me is that my photos are stored in many directories below an organizing directory (eg, \2009\2009-01-02) and the organizing directory (\2009 in this example) does not contain any photos to locate.  Furthermore, each of my orgainizing 'yearly' directories are organized in one top directory (\Photos) that also has no photos in it to locate.  So, to make use of this feature, I had to create a photo in at least the top directory that I could use for finding the rest.  I call this a 'FindMe' photo.  I found that it needed to have a totally different file name than any other photo in my library.  So, I created on be exporting another photo (with very poor resolution to keep the size small) and giving it a name of FindMe-<directory_name>.  I also found it helpful to give it a caption of 'FindMe' to use in locating the photo.  I imported this photo into the top directory (\Photos) on the PC.
The next step was to open the .lrcat on the Mac.  Looking at the grid of all photos, I narrowed down the photos to just those that had a caption of 'FindMe' or a file name of FindMe.  That located the photo in \Photos that I could use to start the search for all the rest.  (Note that giving your locating photo a name you can easily find is important because all you will be able to see when you look at all of the photos is just a blank square and I couldn't find any way to tell Lightroom to only show me photos in this one directory, excluding subdirectories (this is a feature they should add to Lightroom).)
Now theoretically, this trick should have located all of my photos.  However, in a library of over 55,000 photos, there's bound to be some problems.  It turns out that my library that started in Adobe Photoshop Elements had some entries that didn't point to the file properly...in fact there was a blank space at the beginning of the filename.  We had caught this problem and renamed the file on the hard drive properly, but a few catalog entries had missed the correction of the filename before we converted this to a Lightroom catalog.  (Elements tolerated the blank space in the file name, Lightroom does not).  This caused Lightroom to hang when it was locating file.  I solved this problem by fixing a lot of these in the PC catalog.  (This took some doing, because Lightroom would first give me a ? to let me locate the file, but it quickly realized it had a problem and changed the ? to a danger sign that would not allow me to do anything with the photo.  So, I had to act quickly to correct the problem with these photos.)  That fixed a lot, but there were apparently still some problems in the library that caused Lightroom to hang when locating photos.  Also, as the number of photos that were properly relocated grew, I found that it took too long to let Lightroom try to fix the entire library.  So, I started creating FindMe photos in the few remaining 'yearly' organizing directories and locating files in each of these.  That pretty much did the trick.
My wishlist for Lightroom new features:
1.   I would like it if I could tell Lightroom to locate all photos within a directory (with the choice to includ subdirectories) in a particular place.  By this, I mean to go from the directory, not from a specific photo within a directory.
2.  I want to be able to tell Lightroom to only display photos within a particular directory (excluding those in the subdirectory).  This would make it a lot easier to locate my 'find me' photos and would eliminate the need to make the so identifiable.

Similar Messages

  • How can I use the same domain.sites2 on two macs?

    I know iWeb is no longer supported but I still find it ok to manage my web site.
    I would like to work on the site from two macs. I thought I could just use the same Domain.sites2 on both macs but: if I move Domain.sites2 to dropbox folder, when I launch iWeb it does not know about it and creates a new empty Domain.sites2 in the Library/iWeb folder
    I do not want to have to manually make a copy of Domain.sites2 to Dropbox and then to the other mac's Library every time I switch computer.

    You may want to use :
    http://wyodor.byethost8.com/iwebsites/iWebSites.html
    Select "Choose new folder" from the File menu to select the folder on Dropbox where your domain file is.
    If that does not work, use:
    http://wyodor.byethost8.com/iwebsites/iWebDrop.zip
    (Unzip the file and drop the domain file on top of it)
    After that, you can open iWeb with your currently used domain file.

  • Can I used the same MSN  with Windows and Mac?

    I have a emachine PC. And I just purchase a ibook G4. My concern is: I am about to connect to the internet witn MSN. Can i used the same with both, Mac and Windows? I mean, the same internet connection?
    LightBearer.

    All you'll need is a router. You can get a wireless one or a wired one. They're pretty cheap.

  • How can i use the same cursor in a loop fro multipletimes.

    I am using two cursors.One to fetch sites and the other to fetch participants under each site.I am performing some job with that participants data.Now the problem is i am using the 2nd cursor in a loop.So it fetches the data of participants falling under one state.But when it comes to the second state,as the second cursor is already open it is unable to fetch the records.Please help me .How can i use the same cursor in a loop fro multipletimes.
    I am sending the code which i have written in When-Button-Pressed-Trigger...
    declare
         sid number;
         pid number;
    cursor csid is select distinct(site_id) from cyber_ppt;
    cursor cpid is select pc_id,st_dt,ed_dt from cyber_ppt where site_id = sid;
         stdt varchar2(10);
         eddt varchar2(10);
         nom number;
         stmonth varchar2(10);
         edmonth varchar2(10);
         cjan number:=0;
         cfeb number:=0;
         cmar number:=0;
         capr number:=0;
         cmay number:=0;
         cjun number:=0;
         cjul number:=0;
         caug number:=0;
         csep number:=0;
         coct number:=0;
         cnov number:=0;
         cdec number:=0;
         i number:=1;
    begin
         open csid ;
         loop
         fetch csid into sid;
              exit when csid %notfound;
              message(sid);
         open cpid;
         loop
         fetch cpid into pid,stdt,eddt ;
         exit when cpid %notfound;
         message(sid||'-'||pid);
         stmonth:=substr(stdt,4,3);
         edmonth:=substr(eddt,4,3);
         nom:= months_between(eddt,stdt);
    while i <= round(nom)
         loop
         stmonth:=substr(stdt,4,3);
    if stmonth='JAN' then
              cjan:=cjan+1;
    elsif stmonth='FEB' then
              cfeb:=cfeb+1;
    elsif stmonth='MAR' then
              cmar:=cmar+1;
    elsif stmonth='APR' then
              capr:=capr+1;
    elsif stmonth='MAY' then
              cmay:=cmay+1;
    elsif stmonth='JUN' then
              cjun:=cjun+1;
    elsif stmonth ='JUL' then
              cjul:=cjul+1;
    elsif stmonth ='AUG' then
              caug:=caug+1;
    elsif stmonth ='SEP' then
              csep:=csep+1;
    elsif stmonth ='OCT' then
              coct:=coct+1;
    elsif stmonth ='NOV' then
              cnov:=cnov+1;
    elsif stmonth ='DEC' then
              cdec:=cdec+1;
    end if;
         stdt:=add_months(stdt,1);
         i:=i+1;
         end loop;
         end loop;
         end loop;
         end;
         

    try this /* untested */
    DECLARE
    sid           NUMBER;
    pid           NUMBER;
    CURSOR csid IS SELECT DISTINCT(site_id) FROM cyber_ppt;
    CURSOR cpid(nSid NUMBER) is SELECT pc_id,st_dt,ed_dt FROM cyber_ppt WHERE site_id = nSid;
    stdt        VARCHAR2(10);
    eddt        VARCHAR2(10);
    nom         NUMBER;
    stmonth     VARCHAR2(10);
    edmonth     VARCHAR2(10);
    cjan         NUMBER:=0;
    cfeb         NUMBER:=0;
    cmar         NUMBER:=0;
    capr         NUMBER:=0;
    cmay         NUMBER:=0;
    cjun         NUMBER:=0;
    cjul         NUMBER:=0;
    caug         NUMBER:=0;
    csep         NUMBER:=0;
    coct         NUMBER:=0;
    cnov         NUMBER:=0;
    cdec         NUMBER:=0;
    i            NUMBER:=1;
    BEGIN
    FOR rec IN csid
    LOOP
                      sid := rec.csid;
    FOR cRec IN cpid(sid)
    LOOP
                     pid := cRec.pc_id;
                     stdt := cRec.st_dt;
                     eddt := cRec.ed_dt;
    stmonth:=  SUBSTR(stdt,4,3);
    edmonth:= SUBSTR(eddt,4,3);
    nom:= months_between(eddt,stdt);
    WHILE i <= round(nom)
    LOOP
              stmonth := SUBSTR(stdt,4,3);
    IF stmonth='JAN'
    THEN
             cjan:=cjan+1;
    ELSIF stmonth='FEB' THEN
             cfeb:=cfeb+1;
    ELSIF stmonth='MAR' THEN
              cmar:=cmar+1;
    ELSIF stmonth='APR' THEN
              capr:=capr+1;
    ELSIF stmonth='MAY' THEN
              cmay:=cmay+1;
    ELSIF stmonth='JUN' THEN
              cjun:=cjun+1;
    ELSIF stmonth ='JUL' THEN
              cjul:=cjul+1;
    ELSIF stmonth ='AUG' THEN
              caug:=caug+1;
    ELSIF stmonth ='SEP' THEN
              csep:=csep+1;
    ELSIF stmonth ='OCT' THEN
              coct:=coct+1;
    ELSIF stmonth ='NOV' THEN
              cnov:=cnov+1;
    ELSIF stmonth ='DEC' THEN
              cdec:=cdec+1;
    END IF;
             stdt:=add_months(stdt,1);
             i:=i+1;
    END LOOP;
    END LOOP;
    END LOOP;
    END;

  • How can you use the same e-mail address for multiple ipads?

    I have two iPads.. an iPad and an ipad 2.  I registared my new ipad 2 and now my old ipad is will not let me log on and is telling me that my e-mail address is already in use.  how can you use the same e-mail address for multiple ipads?

    And by using the same Apple ID you can also share purchases.  If you have a different Apple ID for each iPhone then you can't share purchases.

  • How can i use the same front panel graph in more than one events in an event structure?

    i want to display the signals from my sensorDAQ in a graph.but i have more than one event in the event structure to acquire the signal and display it in the graph.the first event is to acquire the threshold signals and its displayed in the graph as a feedback.after the first event is executed, i will call the second event,where the further signals are acuired and compared with the threshold signals from the event 1.my question is how can i use the same front panel control in more than two events in the event structure?please answer me i'm stuck.
    Solved!
    Go to Solution.

    Hi,
    I have attached here an example of doing the same using shift registers and local variables. Take a look. Shift register is always a better option than local variables.
    Regards,
    Nitzz
    (Give kudos to good answers, Mark it as a solution if your problem is Solved) 
    Attachments:
    Graph and shift registers.vi ‏12 KB
    graph and local variables.vi ‏12 KB

  • How can we use the same package in our report used by some other report

    how can we use the same package in our report used by some other report

    Hi,
    You just need to assign package while saving your report.
    No extra is required providing you are aware of package to be used.

  • HT4614 How can i use the Thunderbolt cable to link my Mac computers

    How can i use the Thunderbolt cable to link my Mac computers

    Connect them with it and start up one computer with the T key held down.
    (76624)

  • How can I use the "Correct camera distortion" filter and process multiple files in PSE 11?

    How can I use the "Correct camera distortion" filter and process multiple files in PSE 11?

    Did you check the help page for Correct Camera Distortion and Process multiple file
    Correct Camera Distortion: http://helpx.adobe.com/photoshop-elements/using/retouching-correcting.html#main-pars_headi ng_5
    Process multiple files: http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f89cffc612e28adab65-7 fff.html#WS287f927bd30d4b1f89cffc612e28adab65-7ff6

  • How can I use the same master catalog in Lightroom 5 on my PC and Mac?

    I have been using a PC with a Sinology NAS for picture storage. The master catalog has been generated from this PC. I would like to use the same catalog on my Macbook Pro. Is there a way to sync the two computers using one common catalog?

    Some users have a shared catalog on an external hard drive, which if portable can be carried around. I’ve never use network storage; but in theory it could work if all the file paths were identical on both machines.
    The alternative is to use a travel catalog. I dpo this on my Macbook Pro using a 128gb SD card. It means I can then process, edit photos and add metadata etc. When I get home, I import the travel catalog to Lightroom on the Windows PC to combine it with the master catalog.
    Here is a video tutorial which demonstrates the use of a catalog on location.
    http://tv.adobe.com/watch/the-complete-picture-with-julieanne-kost/how-to-use-lightroom-5- on-location/

  • How can I use the same "I Tunes" on two different computers

    I’m using two different kinds of Personal Computer: One is Desktop PC And the other one is Notebook .
    In each computer there are the same songs and when I get the new ones to the Desktop I want them to be placed on the Notebook or reverse.
    Where does the I Tunes save the playlist on the hard drive ?
    I have prepared a playlist on my Notebook and want it to be seen on the Desktop but I dont want to fallow the steps File > Library > Export Playlist on the Notebook. Is there any other way to make this issue instead of the mentioned steps.
    How can I see the same Playlists and songs on two different computers ( notebook and desktop) including the updating processes.
    Operating systems of the computers:
    Desktop: XP Pro
    Notebook: Vista Bussiness

    I use SyncToy 2.0 to keep two instances of my library in sync. SyncToy's preview will show which files it is about to update giving you a chance to spot unexpected changes and during the run only the changed files will be copied saving lots of time.
    As long as I sync after making updates at one instance of the library before making any updates at the other then everything works just fine. I periodically run iTunes Folder Watch to check for any orphaned entries or new items that haven't been imported into the active library. If your machines are regularly networked together this process is fairly straightfoward. Mine are in disparate locations so I use one of the (physically) small WD My Passport host powered drives which I take between home & work, synchronising at either end. This gives me three complete copies of my library so I'm covering backup & synchronisation in the same operation.
    When connecting my iPod at either location iTunes recognises itself as the "home" library for the iPod so I'm able to use the sync with selected playlists option without getting warning messages about the iPod being synced with a different library.
    tt2

  • How can i get the same itunes library on 2 macs

    how can i get the same itunes library on two different macs, without having to pay for icloud please.

    Copy everything from one computer to the other.

  • How can I use the mousewheel to scroll forward and back in Safari?

    I really like Safari. As I see it, the only short coming is a feature that is present in Internet Explorer and Firefox. In both of these applications I can hold down a modifier key (CTRL) and roll the mouse wheel to go back 1 page in history. I would be really glad to know how to do this in Safari, as just about everything else I can do in IE and Firefox is in Safari. This roll back feature is one of the things I use more often than almost anything else.
    Question: How can I use the mousewheel to move backward in the browser history?

    Yes, I could move my hand from the mouse to keyboard to use a key combo... I could even use the delete key... but it's not really as effient as using the mouse's scrollwheel. Not that it's really all that bad, since Firefox is a great browser, but am I stuck with it if I want that one solitary additional feature?

  • How can I use the same sleepimage over and over?

    Hi, this was asked a while ago for Tiger, but had no real answer. Now I hope things have changed in Leopard 10.5.4.
    I have a STATIC system on a car that should boot over and over in exactly the same way. The idea is to make a good sleepimage (/var/vm/sleepimage) and then force the computer to read it at every startup AS IF it was waking up from sleep mode all the times.
    This MUST be possible because OSX does it every time it wakes up from safesleep (sudo pmset hibernatemode 1). All I need it to find out WHERE OSX writes down that at the next wake it should use the sleepimage instead of a normal boot. Then, once I know where it write this, I simply force that flag to be active all the times.
    Please also be aware of the following notes and constraints:
    0. The boot should be as fast as possible
    1. I can't to use the regular sleep function: the system must drain zero power while shut down
    2. There are no dangers in using the same sleepimage multiple times: the disk contents do not change. The system should be absolutely identical at every boot (or "wake")
    3. The system is ALWAYS shut down by pulling the plug of the MacMini. Thereshould be no possibility for the system to "update" the sleepimage
    I hope some of you OSX experts will give me a hint concerning where this information is stored (and maybe how to override it)
    thanks a lot
    Lele
    Message was edited by: Leelx

    Hi, this was asked a while ago for Tiger, but had no real answer. Now I hope things have changed in Leopard 10.5.4.
    I have a STATIC system on a car that should boot over and over in exactly the same way. The idea is to make a good sleepimage (/var/vm/sleepimage) and then force the computer to read it at every startup AS IF it was waking up from sleep mode all the times.
    This MUST be possible because OSX does it every time it wakes up from safesleep (sudo pmset hibernatemode 1). All I need it to find out WHERE OSX writes down that at the next wake it should use the sleepimage instead of a normal boot. Then, once I know where it write this, I simply force that flag to be active all the times.
    Please also be aware of the following notes and constraints:
    0. The boot should be as fast as possible
    1. I can't to use the regular sleep function: the system must drain zero power while shut down
    2. There are no dangers in using the same sleepimage multiple times: the disk contents do not change. The system should be absolutely identical at every boot (or "wake")
    3. The system is ALWAYS shut down by pulling the plug of the MacMini. Thereshould be no possibility for the system to "update" the sleepimage
    I hope some of you OSX experts will give me a hint concerning where this information is stored (and maybe how to override it)
    thanks a lot
    Lele
    Message was edited by: Leelx

  • How can I use the same parameter to use elsewhere by Manage Variables ?

    Hello,
    I have a little problem that I need to know. I want to use the same parameter to use elsewhere.
    Example,
    I have a parameter on page 1 and I wish to use this parameter in the other page by Manage Variables.
    How can I do this ?
    Thank you.

    ..just open ManageVariables (right click on the a page and select Manage Variables)...
    then you select the parameter on the page where you want to insert your previous value (your variable)...use the dropdown list to select the variable that contains your value...and it should work
    /m

Maybe you are looking for

  • In the Production Order, Sales Quotation is displayed not the Sales Order

    Hello to All, I need a kind help from you. My scenario is as follows There is a Configurable Material (Finished Product) Sales quotation (VA21/2/3) were made for this material. Sales Order (VA01/2/3) with reference from the Sales Quotation were made

  • Integrating Weblogic Portal with Oracle BPMS

    Hello, I need to integrate the Weblogic Portal with the OBPMS, but i need to show only the portlet with the work list. Anyone here already did something like this ? I have a tutorial at Oracle with that but in this document says that i need to : Add

  • Why won't Network load?

    When I click on the Network icon within System Preferences it just keeps telling me that it is uploading, but never does.  I don't have any recent backups, and would not know how to just reload (correct word?) just the Network icon anyway.  I do have

  • ICal vs Google Calender issue fixed in Lion 10.7.3??

    As we all know, Google has disabled DELETE requests from iCal until Apple fixes the 'Setting up iCloud deletes entire Google Calender Agenda' thing. However, with the release of Lion 10.7.3 today to developers I would like to ask people to check if t

  • Audigy 2 ZS soundtrouble

    back again  with another issue :/    hopefully they will end soon or ill buy a new mobo from another manufacturer so.the issue then ......  i got a audigy 2 zs soundcard  installed in pci (slot 4) but the sound is damn laggy ..  the whole system gets