Template:AdobeDngConverterLinux: Difference between revisions

From RawPedia
Jump to navigation Jump to search
(Created page with "# Install [http://www.winehq.org/ Wine], preferably using your package manager. # [http://supportdownloads.adobe.com/product.jsp?product=106&platform=Windows Download Adobe DN...")
 
(Added workaround for crash affecting Adobe DNG Converter >=11.2)
Line 4: Line 4:
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" wine /path/to/DNGConverter_version.exe</pre>
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" wine /path/to/DNGConverter_version.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>
# Adobe DNG Converter versions >= 11.2 will crash on startup (the issue affects all versions of wine, see wine bug [https://bugs.winehq.org/show_bug.cgi?id=46972 #46972]), but the cause of the crash can be easily circumvented.
#: Run Wine configuration:
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" winecfg</pre>
#: Go to the "Libraries" tab, add a new override for <code>api-ms-win-core-winrt-error-l1-1-0</code>, then edit it and select "Disable". Done.
# Run Adobe DNG Converter:
# Run Adobe DNG Converter:
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" wine "$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe"</pre>
#: <pre style="white-space:pre-wrap;">WINEPREFIX="$HOME/wine-dng" wine "$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe"</pre>

Revision as of 12:21, 8 July 2019

  1. Install Wine, preferably using your package manager.
  2. Download Adobe DNG Converter for Windows.
  3. Install Adobe DNG Converter:
    WINEPREFIX="$HOME/wine-dng" wine /path/to/DNGConverter_version.exe
    It will install to "$HOME/wine-dng/drive_c/Program Files (x86)/Adobe/Adobe DNG Converter.exe"
  4. Adobe DNG Converter versions >= 11.2 will crash on startup (the issue affects all versions of wine, see wine bug #46972), but the cause of the crash can be easily circumvented.
    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.