Application Details:
Version: | GOG |
License: | Retail |
URL: | http://mirror.deusexnetwork.co... |
Votes: | 1 |
Latest Rating: | Gold |
Latest Wine Version Tested: | 6.1 |
Maintainers: About Maintainership
What works
Everything
Single Player (Full game completed)
Multi Player (New masterserver needed, just install one file)
Save / Load
Sound / Music
Graphics / Textures
Mouse / Keyboard
What does not
Cant set 1680x1050 resolution although is avaiable in game options - my native desktop resolution.
After running the game, operating system brightness value is switching to same value as in game
Less stable multiplayer mode, some times like to crash but overall is very playable
Workarounds
What was not tested
Game mods
Hardware tested
Graphics:
Additional Comments
Some times dropping FPS when much in game action, like almost every other games under wine on my low-end PC. Lubuntu 14.04 2x Intel Pentium Dual CPU E2180 @ 2.00 GHz 1025 MB Ram Nvidia Geforce 9500 GT - 340.96 proprietary driver Wine 1.9.19 Fix multiplayer description: http://www.deusexnetwork.com/masterserver File needed for multiplayer: http://www.deusexnetwork.com/files/DX1/multiplayer/patches/2493/DeusEx_Masterserver.zip JUST INSTALL ONE FILE FROM LINK ABOVE and you can search servers in multiplayer mode. GOG version is same as GOTY 1.112fm. Just different looks installer. I have also CD with Deus Ex GOTY 1.112fm from gaming newspaper and works same as GOG version. THATS SAME.
Operating system | Test date | Wine version | Installs? | Runs? | Used Workaround? | Rating | Submitter | ||
Show | Artix Linux | Feb 13 2021 | 6.1 | Yes | Yes | Yes | Gold | Joel H. | |
Show | Artix Linux | Jan 07 2021 | 5.22 | Yes | Yes | Yes | Gold | Joel H. | |
Show | Arch Linux x86_64 | Feb 02 2020 | 5.0-staging | Yes | Yes | Yes | Silver | gardenapple | |
Current | Ubuntu 14.04 "Trusty" i386 (+ variants like Kubuntu) | Oct 01 2016 | 1.9.19 | Yes | Yes | Gold | AAAAAAAAAAAAAA | ||
Show | openSUSE Factory i686 | Nov 24 2014 | 1.7.31 | Yes | Yes | Silver | Maik Wagner |
Bug # | Description | Status | Resolution | Other apps affected |
Out-of-the box the stock OpenGL renderer will generate a segmentation fault:
This BASH script will fix the DeusEx.ini file settings to correct this. Note it is recommended to use the newer OpenGL renderer (which is significantly better)
#export WINEPREFIX="âšâšâšâšâšâš"
export DEUS_EX_PATH
# Read install path for Deus Ex, from the Wine Registry.
# Note: this requires a first run, when DeusEx is installed under Steam.
DEUS_EX_PATH="$(
wine reg query 'HKEY_LOCAL_MACHINE\Software\Unreal Technology\Installed Apps\Deus Ex' /v Folder 2>/dev/null \
| awk '{ if (sub("^[[:blank:]]*Folder[[:blank:]]*REG_SZ[[:blank:]]*","")) print $0 }' \
| dos2unix
)"
# Fallback to 'C:\DeusEx'
DEUS_EX_PATH="${DEUS_EX_PATH:-C:\\DeusEx}"
printf "Using DeusEx (Windows) install path: '%s'\\n" "${DEUS_EX_PATH}"
# Convert path from Windows to Unix format
DEUS_EX_PATH="$(winepath -u "${DEUS_EX_PATH}" 2>/dev/null)"
if [[ ! -d "${DEUS_EX_PATH}" ]]; then
printf "DeusEx install path: '%s' ; does not exist\\n" "${DEUS_EX_PATH}" >&2
exit 1
fi
# Patch settings to make the game work properly on OpenGL devices
# Uses the default DeusEx install path (for the current WINEPREFIX)
if ! sed -i -e '/FrameRateLimit=60/d' \
-e 's/^GameRenderDevice=.*$/GameRenderDevice=OpenGLDrv.OpenGLRenderDevice/g' \
-e '/^GameRenderDevice=OpenGLDrv.OpenGLRenderDevice$/a\FrameRateLimit=60' \
-e 's/FirstRun=.*$/FirstRun=1100/g' \
"${DEUS_EX_PATH}/System/DeusEx.ini"
then
printf "Unable to update DeusEx.ini file: '%s'\\n" "${DEUS_EX_PATH}/System/DeusEx.ini" >&2
exit 1
fi
printf "Successfully updated DeusEx.ini file: '%s'\\n" "${DEUS_EX_PATH}/System/DeusEx.ini"
The Kentie Launcher Deus Exe is a replacement executable for Deus Ex. It's compatible with the GOTY edition of the game, which includes the Steam version. Note: the enhanced Steam version of DeusEx appears to lose support for the high resolution/wide screen fixes, when the Kentie Launcher is installed.
The launcher:
Kentie Launcher homepage
This script will download version 8.1 of the Kentie Launcher and automatically install it, to the specified WINEPREFIX.
Update the KENTIE_VERSION variable as required.
export DEUS_EX_PATH PATH_7ZIP KENTIE_LAUNCHER_ARCHIVE KENTIE_LAUNCHER_URL KENTIE_VERSION
KENTIE_VERSION="8.1"
KENTIE_LAUNCHER_URL="http://kentie.net/article/dxguide/files/DeusExe-v${KENTIE_VERSION}.zip"
KENTIE_LAUNCHER_ARCHIVE="$(basename "${KENTIE_LAUNCHER_URL}")"
# Install winetricks verbs: vcrun2015 7zip
if ! winetricks vcrun2015 7zip; then
printf "winetricks vcrun2015 7zip failed\\n" >&2
exit 1
fi
# Read install path for Deus Ex, from the Wine Registry.
# Note: this requires a first run, when DeusEx is installed under Steam.
DEUS_EX_PATH="$(
wine reg query 'HKEY_LOCAL_MACHINE\Software\Unreal Technology\Installed Apps\Deus Ex' /v Folder 2>/dev/null \
| awk '{ if (sub("^[[:blank:]]*Folder[[:blank:]]*REG_SZ[[:blank:]]*","")) print $0 }' \
| dos2unix
)"
# Fallback to 'C:\DeusEx'
DEUS_EX_PATH="${DEUS_EX_PATH:-C:\\DeusEx}"
printf "Using DeusEx (Windows) install path: '%s'\\n" "${DEUS_EX_PATH}"
# Convert path from Windows to Unix format
DEUS_EX_PATH="$(winepath -u "${DEUS_EX_PATH}" 2>/dev/null)"
if [[ ! -d "${DEUS_EX_PATH}" ]]; then
printf "DeusEx install path: '%s' ; does not exist\\n" "${DEUS_EX_PATH}" >&2
exit 1
fi
# Download Kentie Launcher
if ! wget "${KENTIE_LAUNCHER_URL}" -O "${DEUS_EX_PATH}/System/${KENTIE_LAUNCHER_ARCHIVE}"; then
printf "Kentie Deus Ex Launcher unavailable @: '%s'\\n" "${KENTIE_LAUNCHER_URL}" >&2
exit 1
fi
# Hack to determine path of 7-zip (32-bit or 64-bit)
PATH_7ZIP='C:\Program Files (x86)\7-Zip\7z.exe'
if ! wine "${PATH_7ZIP}" &>/dev/null; then
PATH_7ZIP='C:\Program Files\7-Zip\7z.exe'
fi
if ! cd "${DEUS_EX_PATH}/System"; then
printf "cd to path: '%s' ; failed\\n" "${DEUS_EX_PATH}/System" >&2
exit 1
fi
# Extract Kentie Launcher archive (case-insensitive)
if ! wine "${PATH_7ZIP}" e -y """$(winepath -w "${KENTIE_LAUNCHER_ARCHIVE}" )"""; then
printf "Unable to extract Kentie Deus Ex Launcher: '%s'\\n" "${DEUS_EX_PATH}/System/${KENTIE_LAUNCHER_ARCHIVE}" >&2
exit 1
fi
printf "Successfully extracted Kentie Deus Ex Launcher: '%s'\\n" "${DEUS_EX_PATH}/System/${KENTIE_LAUNCHER_ARCHIVE}"
The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
by GreatEmerald on Saturday January 11th 2014, 3:16