Trouble tethering my Canon 1Ds mk II with Lightroom 4.1 on Mac OSX 10.6.8.

I had to get a Mac just to be able to use tethered shooting with my brand new 1Ds mk III (yes, brand new after 8 years not being used by it's previous owner, had 200 exposures on it)
Windows XP was not an option and Canon support told me that they never had any intentions towards supporting the Camera on Win Vista or Win 7 (even though these OSs were released when the camera was still the top end of their product line on the market!)
Long story short, I researched compatibility for Lightroom and found out, that 4.1 would be the last to support the 1Ds mk II. (Can somebody confirm that?!)
I bought LR 4 last year and am waiting for LR6 with my Win machine, so I installed LR 4 on the mac and denied any updates to be able to use my Camera..
The mac runs OSX 10.6.8, which is, to my knowledge, the last version to support the 1Ds mk II and it's EOS utility, etc. (How about that one?)
Sure, I should've bought the 1Ds mk III, considering all the money I invested just to be able to properly use the 1Ds mk II.. but that's not the issue here and if I should happen to have any success with my work, I will upgrade to a used 1Dx in a few years.
To my problem at hand:
I installed LR4.1 on my mac and set up tethered shooting with the Camera connected to the mac. (It works fine with EOS utility too)
Camera with its settings is recognized by the tool and can be set off remotely.
Pictures are displayed and develop preset is applied.
However, sometimes it works just fine but then the camera stops taking pictures (Exposure is made, with AF, Shutter, etc. working fine, but pictures aren't saved to CF card nor transferred to Lightroom) Also, sometimes the camera isn't recognized anymore.. This happened repeatedly within 10 to 20 exposures, so not a rare issue here!
When I turn the camera off and back on, it sometimes does and sometimes doesn't work again..
same goes for the firewire cable that sometimes does and sometimes doesn't reset the tool when I unplug it.
I also sometimes noticed the CF-card LED continuously indicating whatever.. had to remove the CF card to stop it from doing that.
In short:
What could be the problem with my setup and is there an easy way around that?
I really depend on this feature working properly.
Your help is really appreciated
Mischa

My camera is a 1Ds mk II..
and for that one it says
All versions tested. All versions tested. Supported only through Lightroom 4.1.
however, it also says
Windows XP, Vista, 7; Mac OS X 10.5 or 10.6
which is plain wrong, because Canon never supported any drivers for Windows Vista or Win 7, not to speak of XP 64bit. (You cannot connect the camera via firewire, without the device drivers!)

Similar Messages

  • How do I bundle a jre with an RCP appl on Mac OSX

    Hi,
    We are making an RCP appl with kepler.
    I want to ship the jre's with the appl.
    On windows I can just ship a jre dir in the root, no problem.
    On the Mac (10.8.4) it does not seem to work, at least not in an obvious way.
    I downloaded the latest 1.7 jre (25) for Mac from the oracle website.
    I tried the following:
    unzip it and put it in a jre dir in the root => not used, falling back to system jre
    same and put '-vm' in the ini => error saying 1.6.0_51 is not supported (huh? I do not even have 1.6)
    I tried exporting an appl (with bundled jre) from eclipse using the product definition. That works but when I look at the generated appl tree I see a jre dir with another jre dir inside it ??? The inner jre dir seems to be a (partial) duplicate of the outer one.
    Ok, sort of at least, now I tried to copy my downloaded jre dir inside itself. That works, but if I remove the contents of one of them it does not work anymore and I do not really want to ship a double jre.
    Can anybody shed some light here?
    What is the optimal way to bundle a jre with an RCP application on Mac OSX?
    Thanks,
    Tom

    I have done this within our product and have it working. It's tricky because if you're using Maven to build, OS X's JRE symlink's libjvm.dylib - which Java's unzip invariably screws up.
    I was only able to get this to work by using Tycho, as the app export within the PDE is just plain broken (and seemingly unmaintained). This bug has been there for quite some time - I don't have any faith in it ever getting fixed, regardless of whatever bugzilla says.
    If you're building RCP apps for distribution - you should probably consider using Tycho anyways; admittedly there's a lot of BS that comes with it, but it's the only seemingly straightforward way to build and package an RCP app in a headless manner for continuous integration. Buckminster is supposedly also a solution - but it has less information and support than Tycho - so YMMV.
    Anyways back to your problem. Using Tycho with some custom maven magic, I was able to solve this. Essentially I downloaded the JRE from Oracle, and uploaded to our Artifactory so I could reference it using maven coordinates. I unpack that tar.gz package into the OS X distribution directory and place the package under the <your app name>.app/jre. Because of the symlink munging - you have to go and fix that, so remove the existing zero byte libjvm.dylib and relink it using ant exec. Now that you have a good JVM, you need to modify the config.ini to use the right JRE. Unfortunately you can only build this on OS X or Linux - Windows is SOL unless you can find a way to use Cygwin or equivalent. Since I'm doing this outside of Tycho's archiving phase (and theres not apparently way to slip my changes in between), I have to recreate the OS X archive.
    Hopefully this helps you solve your problem... I beat my head against the wall trying to fix this for several weeks trying to find a working solution as the error reporting is completely incorrect.
    Anyways, good luck!
    <profiles>
    <profile>
    <id>fix-jre-archives</id>
    <activation>
    <os><family>unix</family></os>
    </activation>
    <dependencies>
    <dependency>
    <groupId>com.sri</groupId>
    <artifactId>oracle-jre</artifactId>
    <version>${distrib.oracle-jre.version}</version>
    <classifier>macosx-x64</classifier>
    <type>tar.gz</type>
    </dependency>
    </dependencies>
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.8</version>
    <executions>
    <execution>
    <id>unpack-mac-jre</id>
    <phase>prepare-package</phase>
    <goals>
    <goal>unpack</goal>
    </goals>
    <configuration>
    <artifactItems>
    <artifactItem>
    <groupId>com.sri</groupId>
    <artifactId>oracle-jre</artifactId>
    <version>${distrib.oracle-jre.version}</version>
    <classifier>macosx-x64</classifier>
    <type>tar.gz</type>
    <outputDirectory>${distrib.macosx.x86_64}</outputDirectory>
    </artifactItem>
    </artifactItems>
    </configuration>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.7</version>
    <executions>
    <execution>
    <id>fix-jre-mac</id>
    <phase>package</phase>
    <goals>
    <goal>run</goal>
    </goals>
    <configuration>
    <target>
    <mkdir dir="${distrib.macosx.x86_64}/${distrib.bin.name}.app"/>
    <move file="${distrib.macosx.x86_64}/jre${distrib.jre.version}.jre" tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre"/>
    <symlink action="delete" link="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre/Contents/MacOS/libjli.dylib" />
    <symlink link="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre/Contents/MacOS/libjli.dylib"
    resource="../Home/lib/jli/libjli.dylib" overwrite="true"/>
    <concat destfile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_temp.ini" fixlastline="yes">
    <header filtering="no" trimleading="yes">
    -vm
    ../../jre/Contents/Home/lib/server/libjvm.dylib
    </header>
    <fileset file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini"/>
    </concat>
    <move file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini"
    tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_bak.ini" />
    <move file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_temp.ini"
    tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini" />
    </target>
    </configuration>
    </execution>
    <execution>
    <id>remove-director-archive-mac</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>run</goal>
    </goals>
    <configuration>
    <target>
    <delete file="${archive.macosx.x86_64}" />
    </target>
    </configuration>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.3.1</version>
    <executions>
    <execution>
    <id>manual-archive-mac</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>exec</goal>
    </goals>
    <configuration>
    <executable>zip</executable>
    <workingDirectory>${distrib.macosx.x86_64}/..</workingDirectory>
    <arguments>
    <argument>-r</argument>
    <argument>-q</argument>
    <argument>-dd</argument>
    <argument>--symlinks</argument>
    <argument>${archive.macosx.x86_64}</argument>
    <argument>${distrib.root}</argument>
    </arguments>
    </configuration>
    </execution>
    </executions>
    </plugin>
    </plugins>
    </build>
    </profile>
    </profiles>

  • My MacBook Pro version 10.7.5 4GB (keeps crashing with the error message 'Your MAC OSX start up disk has no more space available for application memory' - what do i do

    My MacBook Pro (version 10.7.5 4GB)keeps crashing with the error message 'Your MAC OSX start up disk has no more space available for application memory' - what do i do.  I keep force quitting the applications and turning the computer off but it happens again after a while

    Hhow much goal and free hard disk space is available? Sounds like you need to move some things off of that hard drive.

  • Finder is still crashing with Lightroom 1.3 and Mac OS X 10.5.1

    The problem reported with Lightroom 1.2 and Mac OS X 10.5 (Finder crashes when trying to read a JPG whose metadata contain some Lightroom specific development settings) is still present with both updates... Any hope Adobe would provide us with a way to fix existing pictures/metadata?

    The Lightroom XMP data for snapshots, which is totally valid XMP data makes Leopard barf because Apple's implementation of XMP in Leopard is not capable of parsing the snapshot XMP. This is most totally Apple's fault...and only Apple can fix it...
    The Photoshop CS3 & Leopard issue with text entry in certain tools is another Apple Leopard fault that Apple will need to fix...
    There is also an issue with Epson print drivers running under Leopard and Lightroom 1.3 where printing is not picking up the correct data and print come out light...the same drivers will work with CS3 because CS3 is using the older, none Leopard pipeline. Also note that CS3 will NOT be able to print out using the Leopard 16 bit pipeline while Lightroom 1.3 will be able to...as soon as Epson revs their drivers...
    Look, Leopard has introduced MAJOR changes well above and beyond the marketing features Apple promotes....eveybody is scrambling...but to Adobe's credit, they HAVE responded well and quickly to those issues Adobe can fix. Those Adobe CAN'T fix will have to be fixed by the companies responsible....

  • I just wrote over firefox 3.6 with 5.0 for my mac OSX and discovered my mac won't support it. Is there a way I can recover all my lost files and get the old version back?

    i just wrote over firefox 3.6 with 5.0 for my mac OSX and discovered my mac won't support it. Is there a way I can recover all my lost files and get the old version back?

    You can download and install Firefox 3.6 from http://www.mozilla.com/firefox/all-older.html

  • Anyone having problems with AirPrint HP 5520 and Mac OSX 10.8.2

    Hi guys,
    I just bought my new Mini and my second HP Wireless printer.
    For some reason it does not connect to any of my devices. I have installed all updates, added the printer many times to my network etc.
    When I start my HP laptop is does work perfect to print wireless - but I am unable to find the printer with my iPhone, iPad or Mac Mini. Anyone having an idea what to do?
    I also configured the printer on Mac OSx many times..
    Regards!

    You can check the Net log in the Web Console (Web Developer > Web Console;Ctrl+Shift+K) console to see if there are errors with retrieving files.
    You need reload the web pages and bypass the cache to refresh possibly outdated or corrupted files from the server.
    *Press and hold Shift and left-click the Reload button.
    *Press "Command + Shift + R" (MAC)
    See also:
    *https://developer.mozilla.org/en/Tools/Web_Console

  • IPhone 4 version 5.0 has sync problems with iTunes 10.5 on Mac OsX 10.6.8

    Hi there,
    I have Mac OsX 10.6.8, iTunes 10.5 and iPhone 4 version 5.0; all up to date.
    When I try to sync my phone with iTunes, the sync goes well until the apps start to sync .... then iTunes closes and I get varying error reports.
    I have tried updating everything (Mac, iTunes, iPhone) to no avail.
    I tried restoring the iPhone, that didn't help whatsoever.
    Does anyone have a solution? I am now tempted to downgrade to an earlier version of iTunes (ie: 10.4.3) as some people suggest in different posts.
    Thank you for your time in replying!
    Marmotte

    There is definitely a problem with iTunes 10.5 and iOS 5.0 syncing correctly.  I've seen lots of workarounds on the forums here.  Just search for it and see if you can come up with something that works.

  • 802.1x authentication with ACS 4.1 for MAC OSX

    Hi,
    I simply wanted to know if it's possible to have 802.1x authentication with MAC OSx on ACS Plateform 4.1?
    If yes, what pre-required on ACS and MAC OSx? Methods of authentification which are recommended ?
    I'm sorry, but i don't find documents which show validated test on 802.1x implementation method on ACS 4.1 with MAC OSx supplicant.
    Thanks in advance
    Best regards
    Thanks

    Yes, Refer to the below DOC
    http://support.apple.com/kb/HT2717
    Port settings and ACS configuration remain the same as you do it for windows based clients

  • HT204135 I have a MacBook Air and bought a Canon MP495 printer scanner with WiFI. Since the Mac gas no disk drive and had to down load the printer, scanner drivers and a navigation and network software from Canon's website. How do I get the software to wo

    I have down loaded printer,scanner drivers and 2 applications Navigator and Network from Canon's website. I cannot seem to get these to run althought the printer works when connected to the Mac with a LAN cable Canon's documentation is useless because it relies on downloading a disc which you cannot do without a CD drive that MacBook Air does not have. Any suggestions appreciated.

    Hi John. Thanks for that input. At Step 6, after clicking "Next" I get a window telling me my OS version is unsupported and the installation may not complete. I am prompted to go to Canon's web site to "Check Latest Info".
    I've had this window on previous attempts and from Canon's web site I downloaded two drivers as follows
    - ICA Driver V4.0.0
    - Canon IJ Network Tool V4.5.0
    I'm not sure if these are the correct / complete drivers I need for this install or not.
    I continue to follow all the steps. At step 9 I click "Wireless Set Up using USB" amd get a License Agreement (a little different than instructions)
    I click "Agree" and it goes to a Setup window with two progress bars showing the installation. I've not been prompted to connect the USB?
    After the Setup window is done, I am then prompted to connect the printer via USB. I connect the printer and click on "Redetect". It is not detected.
    I then try following the Canon on screen instructions for connecting to the wireless LAN amd enter the password. It searches and indicates "Connecting" on the window, but it never connects and the blue light just blinks
    So, at this point I am stuck??
    Thanks
    Stephen

  • Canon 20D import issue with lightroom 4

    I have recently upgraded to Lightroom 4 and when I connect my Canon 20D the import screen finds the camera, displays thumbnails.  However, when I press the import key the software displays a message that no photos have been found.  I tried several times one time it identified the photos however it gave an error message that the photos could not be imported because of an error.  What gives

    I'm having the same exact issue, using a Canon G11.
    Looking on other forums, I've found this:
    This issue is fixed in the second Lightroom 4.1 pulic Release Candidate, available for download here:
    http://labs.adobe.com/downloads/lightroom4-1.html

  • My new Canon eos 6d come with Lightroom 5 in the box, how to install it on a iMac whitout a cd/dvd player?

    Need help now, sorry my bad english.

    Please use the following link:
    1.Photo editor app | Download free Adobe Photoshop Lightroom 5 trial
    2. New Adobe Lightroom 5: Direct Download Links + Difference vs. LR4 | ProDesignTools
    Regards
    Rajshree

  • Has anyone had problems with Lightroom not recognizing a D750 during a tethered capture? It is supported with 5.7.1. Mac OS 10.10.1.

    Mac OS 10.10.1.

    Thanks Jim. Thought I had read differently. Guess I was wrong and will need to be patient.

  • Trouble with Standalone Flash 9 for Mac OSX

    I cant get the flashplayer 9 standalone player to download
    correctly for my mac osx10.4
    when it downloads and unzips it says, "You cannot open the
    application "sa_flashplayer_9" because it may be damaged or
    incomplete.
    Ive attempted reinstalling it again and again, but it wont
    work.
    Any ideas?

    Have you tried this?
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&P2_Pla tform=MacOSX
    or
    http://www.versiontracker.com/dyn/moreinfo/macosx/11622

  • Can't pause flash with right mouse click on mac osx 10.6 after update from firefox 3 to 6

    After updating my firefox 3... to firefox 6 I can no longer right click in a flash video and pause it

    My camera is a 1Ds mk II..
    and for that one it says
    All versions tested. All versions tested. Supported only through Lightroom 4.1.
    however, it also says
    Windows XP, Vista, 7; Mac OS X 10.5 or 10.6
    which is plain wrong, because Canon never supported any drivers for Windows Vista or Win 7, not to speak of XP 64bit. (You cannot connect the camera via firewire, without the device drivers!)

  • Problem with HP Printer Utility and Mac OSX 10.5.4

    I have a problem with HP printer Utility. When a standard user adds a new paper profile HP Printer Utility asks to type an administrator's name and password to allow HP printer Utility to make changes. Is it possible to avoid this? Otherwise I have to give admin rights to every user because they have to be able to add new papers. HP printer Utility sharing and permisssions are set to read and write to everyone.
    HP designjet Z3200
    MacOSX 10.5.4 (Mac pro intel)
    HP printer utility 3.6.0.

    Just found an email HP Support sent to me back in January 2008, about this issue
    "Hello Hunter,
    Thank you for contacting HP Total Care.
    There currently is not proper driver for 10.5, so it is surprising that the printer is printing correctly on your Mac from any application.
    Your issue cannot be resolved until the 10.5 driver is developed and released.
    To sign up for an update as soon as it is available ...click on the link below:
    HP's subscriber's choice is a free service where you can select to receive timely email notifications ranging from software and driver updates to creative ways to do more with your HP products.
    http://h71036.www7.hp.com/hho/html/3618-0-0-225-121.html
    If you need further assistance, please reply to this message and we will be happy to assist you further.
    You may receive an e-mail survey regarding your e-mail support experience. We would appreciate your feedback.
    For information on keeping your HP and Compaq products up and running, please visit our Web site
    at:
    http://www.hp.com/go/totalcare
    Sincerely,
    Dave
    HP Total Care"
    I just sent them an email today on any updates regarding a release date on the Leopard driver for P1005, i'll post any info i receive.

Maybe you are looking for

  • Error while Scheduling InfoPackage

    When i am scheduling a full load in the infopackage to load data to PSA but am getting an DBIF_RSQL_INVALID_REQUEST error. The desciption is "An invalid request was made to the SAP database interface in a statement  in which the table "EDID4 " was ac

  • Checkbox Value in where condition of query

    Hi, I have a check box which shows values based on the LOV's . If i check on the checkbox the values that are selected on the check box must be used in the where condition to update the table. Please suggest me how to take the check box values. Am us

  • Lacie HD and iMac G3

    Hi everybody, I have an external HD Lacie Hub mini with my new macbook. I have formatted The Lacie Hd in two partitions both in mac os extended journaled with guid partition table. With the macbook no problem, but if I connect the HD to my old iMac G

  • Live Cache Installation Error

    Hi, While trying to install Livecache, i am getting the error as bleow. INFO       2007-11-28 07:54:10 [iaxxejsexp.cpp:106]            EJS_Installer::invokeModuleCall() Working directory changed to /tmp/sapinst_instdir/NW04S/STANDALONE/LC/SERVER. ERR

  • Configurable Material Problem

    Hi to All, I've the following problem: during the material creation (via /SAPMP/BAPI_MATERIAL_SAVEDATA) I cannot ale to add Configurable Material (MRP3 view in MM02 Transaction). I Use the FM BAPI_OBJCL_CREATE to create new classifications. How can I