Template:AdobeDngConverterLinux: Difference between revisions

From RawPedia
Jump to navigation Jump to search
(Updated URL yet again, this time to third-party service as Adobe archive no longer works)
No edit summary
Line 1: Line 1:
# Install [http://www.winehq.org/ Wine], preferably using your package manager.
# Install [http://www.winehq.org/ Wine], preferably using your package manager.  
# [https://www.filehorse.com/download-adobe-dng-converter/old-versions/ Download Adobe DNG Converter for Windows].
# [https://www.filehorse.com/download-adobe-dng-converter/old-versions/ Download Adobe DNG Converter] for Windows. Get version 13.4, as versions newer than that will not work in wine (the latest version of wine at the time of writing is 7.1 and Adobe DNG Converter versions 14.0 or newer fail with an error due to missing <code>api-ms-win-core-versionansi-l1-1-1.dll</code>).
# Install Adobe DNG Converter:
# Install Adobe DNG Converter:
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" wine ~/Downloads/DNGConverter_version.exe</pre>
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" wine ~/Downloads/AdobeDNGConverter_x64_13_4.exe</pre>
#: It will install to <code>$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe</code>
#: It will install to <code>$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe</code>
# There is an issue affecting all versions of Wine older than 5.0-rc5 when using Adobe DNG Converter version 11.2 or newer. The issue results in Wine crashing on startup. The issue was fixed in Wine 5.0-rc5, see Wine bug [https://bugs.winehq.org/show_bug.cgi?id=46972 #46972]. If you use any version of Wine lower than 5.0-rc5, you can easily circumvent the issue.
# There is an issue affecting all versions of Wine older than 5.0-rc5 when using Adobe DNG Converter version 11.2 or newer. The issue results in Wine crashing on startup. The issue was fixed in Wine 5.0-rc5, see Wine bug [https://bugs.winehq.org/show_bug.cgi?id=46972 #46972]. If you use any version of Wine lower than 5.0-rc5, you can easily circumvent the issue.

Revision as of 00:27, 9 February 2022

  1. Install Wine, preferably using your package manager.
  2. Download Adobe DNG Converter for Windows. Get version 13.4, as versions newer than that will not work in wine (the latest version of wine at the time of writing is 7.1 and Adobe DNG Converter versions 14.0 or newer fail with an error due to missing api-ms-win-core-versionansi-l1-1-1.dll).
  3. Install Adobe DNG Converter:
    WINEPREFIX="$HOME/wine-dng" wine ~/Downloads/AdobeDNGConverter_x64_13_4.exe
    It will install to $HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe
  4. There is an issue affecting all versions of Wine older than 5.0-rc5 when using Adobe DNG Converter version 11.2 or newer. The issue results in Wine crashing on startup. The issue was fixed in Wine 5.0-rc5, see Wine bug #46972. If you use any version of Wine lower than 5.0-rc5, you can easily circumvent the issue.
    Run Wine configuration:
    WINEPREFIX="$HOME/wine-dng" winecfg
    Go to the "Libraries" tab, add a new override for api-ms-win-core-winrt-error-l1-1-0, then edit it and select "Disable". Done.
  5. Run Adobe DNG Converter:
    WINEPREFIX="$HOME/wine-dng" wine "$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe"
  6. Add an alias so that you can run Adobe DNG Converter from a console with ease:
    echo "alias dng='WINEPREFIX=\"\$HOME/wine-dng\" wine \"\$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe\"'" >> ~/.bashrc && exec bash
  7. To run Adobe DNG Converter, just type dng in a console.