GOG.com - Alpha Centauri
Informations
Creator | Message |
---|---|
petch
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks2 1 DescriptionEnglish: One of the reference 4X ("explore, expand, exploit, and exterminate") games. 7 human factions have landed on first planet of Alpha Centauri and must cooperate or compete with each other. GOG now has installers for Mac GOG propose maintenant des installeurs pour Mac ScreenshotsSource code#!/bin/bash # Date : (2012-08-11 16-50) # Last revision : see changelog # Wine version used : 1.4.1, 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2014-02-15 19-30) # First script. # [Dadu042] (2019-12-19 20:50) # Wine 1.6.2 -> system version [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="sid_meiers_alpha_centauri" PREFIX="AlphaCentauri_gog" TITLE="GOG.com - Alpha Centauri" SHORTCUT_NAME1="Alpha Centauri" SHORTCUT_NAME2="Alpha Centauri - Alien Crossfire" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1361 POL_SetupWindow_presentation "$TITLE" "Firaxis Games / Electronic Arts" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" # For OS/X we automatically download sox if [ "$POL_OS" != "Mac" ]; then sox --version || POL_Debug_Fatal "Please install sox before installing $TITLE" fi POL_Debug_Init POL_Call POL_GoG_setup "$GOGID" "6c9bd7e1cf88fdbfa0e75f694bf8b0e5" POL_Wine_SelectPrefix "$PREFIX" # POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Wine_PrefixCreate # fake sdbinst.exe POL_Call POL_Install_nop "$WINEPREFIX/drive_c/windows/system32/sdbinst.exe" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_SetupWindow_VMS "2" if [ "$POL_OS" = "Mac" ]; then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://files.playonlinux.com/sox-osx.7z" "3c97904fa3799513a31fbbb48c8edf4b" POL_System_ExtractSingleFile "$PWD/sox-osx.7z" "sox" "$PWD/sox" chmod +x sox PATH="$POL_System_TmpDir:$PATH" fi cd "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/fx" || POL_Debug_Fatal "Could not find sounds directory" # Activate pulsebar if you want to turn a 4 seconds job into a 3 minutes one (POL 4.1.6) #POL_SetupWindow_pulsebar "$(eval_gettext 'Fixing sounds gain')" "$TITLE" PULSE=0 # 2s of silence (for what I'm about to do :D) sox -n -r 22050 -c 1 silence.wav trim 0 2 for i in *.wav; do # 355 files #POL_SetupWindow_set_text "$i" case "$i" in "CPU please don't go.wav"|"CPU review your options.wav") # those loop if modified - possibly more to go ;; "opening menu.wav") # Need looping, but the whole sound! mv "$i" "$i.orig" && sox "$i.orig" "$i.orig" "$i.orig" "$i.orig" "$i.orig" "$i.orig" silence.wav "$i" && rm "$i.orig" ;; *) # avoid clipping mv "$i" "$i.orig" && sox "$i.orig" "$i" gain -3 && rm "$i.orig" ;; esac let PULSE++ #POL_SetupWindow_pulse "$((PULSE*20/71))" done # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "terran.exe" "$SHORTCUT_NAME1" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME1.png" POL_Shortcut_QuietDebug "$SHORTCUT_NAME1" POL_Shortcut_Document "$SHORTCUT_NAME1" "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/Manual.pdf" # C:\GOG Games\Sid Meier's Alpha Centauri\readme.txt POL_Shortcut "terranx.exe" "$SHORTCUT_NAME2" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME2.png" POL_Shortcut_QuietDebug "$SHORTCUT_NAME2" POL_Shortcut_Document "$SHORTCUT_NAME2" "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/readme_ac.txt" # C:\GOG Games\Sid Meier's Alpha Centauri\facedit.exe POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Thursday 2 January 2020 at 23:06 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,19 +1,24 @@ #!/bin/bash # Date : (2012-08-11 16-50) -# Last revision : (2014-02-15 19-30) +# Last revision : see changelog # Wine version used : 1.4.1, 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : +# +# CHANGELOG +# [Pierre Etchemaite] (2014-02-15 19-30) +# First script. +# [Dadu042] (2019-12-19 20:50) +# Wine 1.6.2 -> system version [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="sid_meiers_alpha_centauri" PREFIX="AlphaCentauri_gog" -WORKING_WINE_VERSION="1.6.2" TITLE="GOG.com - Alpha Centauri" SHORTCUT_NAME1="Alpha Centauri" @@ -36,7 +41,8 @@ POL_Call POL_GoG_setup "$GOGID" "6c9bd7e1cf88fdbfa0e75f694bf8b0e5" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +POL_Wine_PrefixCreate # fake sdbinst.exe POL_Call POL_Install_nop "$WINEPREFIX/drive_c/windows/system32/sdbinst.exe" New source code#!/bin/bash # Date : (2012-08-11 16-50) # Last revision : see changelog # Wine version used : 1.4.1, 1.6.2 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2014-02-15 19-30) # First script. # [Dadu042] (2019-12-19 20:50) # Wine 1.6.2 -> system version [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="sid_meiers_alpha_centauri" PREFIX="AlphaCentauri_gog" TITLE="GOG.com - Alpha Centauri" SHORTCUT_NAME1="Alpha Centauri" SHORTCUT_NAME2="Alpha Centauri - Alien Crossfire" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1361 POL_SetupWindow_presentation "$TITLE" "Firaxis Games / Electronic Arts" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" # For OS/X we automatically download sox if [ "$POL_OS" != "Mac" ]; then sox --version || POL_Debug_Fatal "Please install sox before installing $TITLE" fi POL_Debug_Init POL_Call POL_GoG_setup "$GOGID" "6c9bd7e1cf88fdbfa0e75f694bf8b0e5" POL_Wine_SelectPrefix "$PREFIX" # POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Wine_PrefixCreate # fake sdbinst.exe POL_Call POL_Install_nop "$WINEPREFIX/drive_c/windows/system32/sdbinst.exe" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_SetupWindow_VMS "2" if [ "$POL_OS" = "Mac" ]; then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://files.playonlinux.com/sox-osx.7z" "3c97904fa3799513a31fbbb48c8edf4b" POL_System_ExtractSingleFile "$PWD/sox-osx.7z" "sox" "$PWD/sox" chmod +x sox PATH="$POL_System_TmpDir:$PATH" fi cd "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/fx" || POL_Debug_Fatal "Could not find sounds directory" # Activate pulsebar if you want to turn a 4 seconds job into a 3 minutes one (POL 4.1.6) #POL_SetupWindow_pulsebar "$(eval_gettext 'Fixing sounds gain')" "$TITLE" PULSE=0 # 2s of silence (for what I'm about to do :D) sox -n -r 22050 -c 1 silence.wav trim 0 2 for i in *.wav; do # 355 files #POL_SetupWindow_set_text "$i" case "$i" in "CPU please don't go.wav"|"CPU review your options.wav") # those loop if modified - possibly more to go ;; "opening menu.wav") # Need looping, but the whole sound! mv "$i" "$i.orig" && sox "$i.orig" "$i.orig" "$i.orig" "$i.orig" "$i.orig" "$i.orig" silence.wav "$i" && rm "$i.orig" ;; *) # avoid clipping mv "$i" "$i.orig" && sox "$i.orig" "$i" gain -3 && rm "$i.orig" ;; esac let PULSE++ #POL_SetupWindow_pulse "$((PULSE*20/71))" done # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "terran.exe" "$SHORTCUT_NAME1" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME1.png" POL_Shortcut_QuietDebug "$SHORTCUT_NAME1" POL_Shortcut_Document "$SHORTCUT_NAME1" "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/Manual.pdf" # C:\GOG Games\Sid Meier's Alpha Centauri\readme.txt POL_Shortcut "terranx.exe" "$SHORTCUT_NAME2" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME2.png" POL_Shortcut_QuietDebug "$SHORTCUT_NAME2" POL_Shortcut_Document "$SHORTCUT_NAME2" "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/readme_ac.txt" # C:\GOG Games\Sid Meier's Alpha Centauri\facedit.exe POL_SetupWindow_Close exit 0 Replies |
Kurvivor | Saturday 8 July 2017 at 0:17 |
Kurvivor
|
MessageI am running 64-bit Lnux mint After i run the installation script (using latest gog installer), i have following situation^ - faction designer and other small excutablke work fine - there is no reaction on the attempt of the game launch (both terranx exe and terran.exe) - simply no reaction save for "error" message from POL about Wine closing. When ron from wine console, nothing is printed, and nothing occurs - uninstaller fails to find some of its files and fails What is wrong? How can i determine and fix the reason? Replies |
Trucosuso | Monday 26 December 2016 at 0:48 |
Trucosuso
|
WarningThis update has not been approved yet by the team. MessageIt works well once you install sox, but you have to change the Wine version to 1.9.24 Differences@@ -1,19 +1,20 @@ #!/bin/bash # Date : (2012-08-11 16-50) -# Last revision : (2014-02-15 19-30) -# Wine version used : 1.4.1, 1.6.2 +# Last revision : (2016-12-26 00-79) +# Wine version used : 1.4.1, 1.6.2, 1.9.24 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com +# Edited by: Trucosuso # Script licence : GPL v.2 # Program licence : Retail # Depend : - + [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + GOGID="sid_meiers_alpha_centauri" PREFIX="AlphaCentauri_gog" -WORKING_WINE_VERSION="1.6.2" +WORKING_WINE_VERSION="1.9.24" TITLE="GOG.com - Alpha Centauri" SHORTCUT_NAME1="Alpha Centauri" New source code#!/bin/bash # Date : (2012-08-11 16-50) # Last revision : (2016-12-26 00-79) # Wine version used : 1.4.1, 1.6.2, 1.9.24 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Edited by: Trucosuso # Script licence : GPL v.2 # Program licence : Retail # Depend : [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="sid_meiers_alpha_centauri" PREFIX="AlphaCentauri_gog" WORKING_WINE_VERSION="1.9.24" TITLE="GOG.com - Alpha Centauri" SHORTCUT_NAME1="Alpha Centauri" SHORTCUT_NAME2="Alpha Centauri - Alien Crossfire" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1361 POL_SetupWindow_presentation "$TITLE" "Firaxis Games / Electronic Arts" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" # For OS/X we automatically download sox if [ "$POL_OS" != "Mac" ]; then sox --version || POL_Debug_Fatal "Please install sox before installing $TITLE" fi POL_Debug_Init POL_Call POL_GoG_setup "$GOGID" "6c9bd7e1cf88fdbfa0e75f694bf8b0e5" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # fake sdbinst.exe POL_Call POL_Install_nop "$WINEPREFIX/drive_c/windows/system32/sdbinst.exe" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_SetupWindow_VMS "2" if [ "$POL_OS" = "Mac" ]; then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://files.playonlinux.com/sox-osx.7z" "3c97904fa3799513a31fbbb48c8edf4b" POL_System_ExtractSingleFile "$PWD/sox-osx.7z" "sox" "$PWD/sox" chmod +x sox PATH="$POL_System_TmpDir:$PATH" fi cd "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/fx" || POL_Debug_Fatal "Could not find sounds directory" # Activate pulsebar if you want to turn a 4 seconds job into a 3 minutes one (POL 4.1.6) #POL_SetupWindow_pulsebar "$(eval_gettext 'Fixing sounds gain')" "$TITLE" PULSE=0 # 2s of silence (for what I'm about to do :D) sox -n -r 22050 -c 1 silence.wav trim 0 2 for i in *.wav; do # 355 files #POL_SetupWindow_set_text "$i" case "$i" in "CPU please don't go.wav"|"CPU review your options.wav") # those loop if modified - possibly more to go ;; "opening menu.wav") # Need looping, but the whole sound! mv "$i" "$i.orig" && sox "$i.orig" "$i.orig" "$i.orig" "$i.orig" "$i.orig" "$i.orig" silence.wav "$i" && rm "$i.orig" ;; *) # avoid clipping mv "$i" "$i.orig" && sox "$i.orig" "$i" gain -3 && rm "$i.orig" ;; esac let PULSE++ #POL_SetupWindow_pulse "$((PULSE*20/71))" done # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "terran.exe" "$SHORTCUT_NAME1" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME1.png" POL_Shortcut_QuietDebug "$SHORTCUT_NAME1" POL_Shortcut_Document "$SHORTCUT_NAME1" "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/Manual.pdf" # C:\GOG Games\Sid Meier's Alpha Centauri\readme.txt POL_Shortcut "terranx.exe" "$SHORTCUT_NAME2" "" "" "Game;StrategyGame;" # "$SHORTCUT_NAME2.png" POL_Shortcut_QuietDebug "$SHORTCUT_NAME2" POL_Shortcut_Document "$SHORTCUT_NAME2" "$WINEPREFIX/drive_c/GOG Games/Sid Meier's Alpha Centauri/readme_ac.txt" # C:\GOG Games\Sid Meier's Alpha Centauri\facedit.exe POL_SetupWindow_Close exit 0 Replies |
BristolGarry | Thursday 15 December 2016 at 3:59 |
BristolGarry
|
MessageAssistance please: I am attempting to install GOG- Alpha Centauri from the downloaded exe file using PlayOnLinux, and the installation seems to go well until the very end, when I get an error box stating that the installation has encountered a serious error and has to shut down. This is the log file from the crash:
Unhandled exception: page fault on read access to 0x00001930 in 32-bit code (0x00001930). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b EIP:00001930 ESP:0c62d97c EBP:7c2e9cf4 EFLAGS:00010212( R- -- I -A- - ) EAX:ff892ea4 EBX:00000000 ECX:ff892ea4 EDX:7c2e9f04 ESI:00000004 EDI:ff892ea4 Stack dump: 0x0c62d97c: f775a485 00000004 ff892ea4 ff892eb8 0x0c62d98c: f776f000 7b753964 00000000 f776f000 0x0c62d99c: 00000001 00000036 00000010 f775a3eb 0x0c62d9ac: 00000006 00000014 7b600538 ff892ea4 0x0c62d9bc: f775a5ae ff892eb8 00000000 00000000 0x0c62d9cc: 00000000 00000000 00000004 00000000 Backtrace: =>0 0x00001930 (0x7c2e9cf4) 0x00001930: -- no code accessible -- Modules: Module Address Debug info Name (146 modules) PE 400000- 537000 Deferred setup_sid_meiers_alpha_centauri_C:\users\twinroses\Temp\is-UN1OR.tmp\setup_sid_meiers_alpha_centauri_2.0.2.23.tmp PE 7b0000- 7c5000 Deferred innocallback PE 7d0000- 7ea000 Deferred gameuxinstallhelper PE 7f0000- 805000 Deferred crcdll PE 810000- 81e000 Deferred botva2 PE 10000000-10014000 Deferred get_hw_caps PE 4ec50000-4edfb000 Deferred gdiplus ELF 77023000-788a1000 Deferred libicudata.so.57 ELF 788a3000-7abfb000 Deferred libnvidia-glcore.so.367.57 ELF 7ac00000-7ac58000 Deferred riched20<elf> \-PE 7ac10000-7ac58000 \ riched20 ELF 7b26b000-7b419000 Deferred libicuuc.so.57 ELF 7b41b000-7b5fc000 Deferred libxml2.so.2 ELF 7b753000-7b7fc000 Deferred msxml3<elf> ELF 7b800000-7ba4b000 Deferred kernel32<elf> \-PE 7b810000-7ba4b000 \ kernel32 ELF 7baf3000-7bb6c000 Deferred libpcre.so.3 ELF 7bb73000-7bbff000 Deferred libvorbisenc.so.2 ELF 7bc00000-7bcc8000 Deferred ntdll<elf> \-PE 7bc10000-7bcc8000 \ ntdll ELF 7bccb000-7bcf7000 Deferred libvorbis.so.0 ELF 7bcfb000-7bd14000 Deferred libresolv.so.2 ELF 7bd1b000-7bd7b000 Deferred libflac.so.8 ELF 7bd7b000-7bd99000 Deferred libgcc_s.so.1 ELF 7bd9b000-7be69000 Deferred libgcrypt.so.20 ELF 7be6b000-7befb000 Deferred libsystemd.so.0 ELF 7bf00000-7bf03000 Deferred <wine-loader> ELF 7bf0b000-7bf84000 Deferred libsndfile.so.1 ELF 7bf8b000-7c0a9000 Deferred libasound.so.2 ELF 7c2b3000-7c2bc000 Deferred libogg.so.0 ELF 7c2c3000-7c2eb000 Deferred liblzma.so.5 ELF 7c2eb000-7c376000 Deferred libpulsecommon-9.0.so ELF 7c40b000-7c435000 Deferred libselinux.so.1 ELF 7c43b000-7c445000 Deferred libwrap.so.0 ELF 7c8f3000-7c8fa000 Deferred libasyncns.so.0 ELF 7c8fb000-7c955000 Deferred libdbus-1.so.3 ELF 7c95b000-7c968000 Deferred libjson-c.so.3 ELF 7c96b000-7c9c5000 Deferred libpulse.so.0 ELF 7c9d3000-7c9f5000 Deferred gameux<elf> \-PE 7c9e0000-7c9f5000 \ gameux ELF 7c9fb000-7ca28000 Deferred winealsa<elf> \-PE 7ca00000-7ca28000 \ winealsa ELF 7cd03000-7cd23000 Deferred mmdevapi<elf> \-PE 7cd10000-7cd23000 \ mmdevapi ELF 7cd6b000-7ce7f000 Deferred libglx_nvidia.so.0 ELF 7ce83000-7ce87000 Deferred libgpg-error.so.0 ELF 7ceb3000-7cf49000 Deferred libgldispatch.so.0 ELF 7cf4b000-7cfb8000 Deferred libgl.so.1 ELF 7d20b000-7d22b000 Deferred libglx.so.0 ELF 7d22b000-7d23e000 Deferred sfc_os<elf> \-PE 7d230000-7d23e000 \ sfc_os ELF 7d2b3000-7d34e000 Deferred msvcrt<elf> \-PE 7d2d0000-7d34e000 \ msvcrt ELF 7d353000-7d36b000 Deferred msftedit<elf> \-PE 7d360000-7d36b000 \ msftedit ELF 7d373000-7d378000 Deferred libnvidia-tls.so.367.57 ELF 7d37b000-7d38e000 Deferred sfc<elf> \-PE 7d380000-7d38e000 \ sfc ELF 7d393000-7d3d2000 Deferred usp10<elf> \-PE 7d3a0000-7d3d2000 \ usp10 ELF 7d3db000-7d49d000 Deferred crypt32<elf> \-PE 7d3e0000-7d49d000 \ crypt32 ELF 7d4a3000-7d4c2000 Deferred cabinet<elf> \-PE 7d4b0000-7d4c2000 \ cabinet ELF 7d4c3000-7d536000 Deferred wininet<elf> \-PE 7d4d0000-7d536000 \ wininet ELF 7d53b000-7d5cd000 Deferred urlmon<elf> \-PE 7d550000-7d5cd000 \ urlmon ELF 7d5d3000-7d6bf000 Deferred msi<elf> \-PE 7d5e0000-7d6bf000 \ msi ELF 7d6c3000-7d7a8000 Deferred opengl32<elf> \-PE 7d6e0000-7d7a8000 \ opengl32 ELF 7d7ab000-7d8de000 Deferred wined3d<elf> \-PE 7d7c0000-7d8de000 \ wined3d ELF 7d8e3000-7d94b000 Deferred ddraw<elf> \-PE 7d8f0000-7d94b000 \ ddraw ELF 7d94b000-7d973000 Deferred msacm32<elf> \-PE 7d950000-7d973000 \ msacm32 ELF 7d973000-7da28000 Deferred winmm<elf> \-PE 7d980000-7da28000 \ winmm ELF 7da2b000-7da3e000 Deferred shfolder<elf> \-PE 7da30000-7da3e000 \ shfolder ELF 7da93000-7dac6000 Deferred uxtheme<elf> \-PE 7daa0000-7dac6000 \ uxtheme ELF 7dacb000-7dad2000 Deferred libxfixes.so.3 ELF 7dadb000-7dafd000 Deferred imm32<elf> \-PE 7dae0000-7dafd000 \ imm32 ELF 7db03000-7db10000 Deferred libxrandr.so.2 ELF 7db1b000-7db26000 Deferred libxcursor.so.1 ELF 7db2b000-7db3e000 Deferred libxi.so.6 ELF 7db43000-7db4a000 Deferred libxdmcp.so.6 ELF 7db4b000-7db4f000 Deferred libxau.so.6 ELF 7db53000-7db79000 Deferred libxcb.so.1 ELF 7db7b000-7dcc6000 Deferred libx11.so.6 ELF 7dccb000-7dce0000 Deferred libxext.so.6 ELF 7dceb000-7dcef000 Deferred libxcomposite.so.1 ELF 7dcf3000-7dcff000 Deferred libxrender.so.1 ELF 7dd03000-7dd0a000 Deferred libxxf86vm.so.1 ELF 7dd0b000-7dd0f000 Deferred libxinerama.so.1 ELF 7dd13000-7dd9d000 Deferred winex11<elf> \-PE 7dd20000-7dd9d000 \ winex11 ELF 7e0fb000-7e125000 Deferred libexpat.so.1 ELF 7e12b000-7e174000 Deferred libfontconfig.so.1 ELF 7e17b000-7e1b5000 Deferred libpng16.so.16 ELF 7e1bb000-7e1cf000 Deferred libz.so.1 ELF 7e1d3000-7e286000 Deferred libfreetype.so.6 ELF 7e2bb000-7e2f8000 Deferred winspool<elf> \-PE 7e2c0000-7e2f8000 \ winspool ELF 7e2fb000-7e3e0000 Deferred comdlg32<elf> \-PE 7e300000-7e3e0000 \ comdlg32 ELF 7e3e3000-7e452000 Deferred shlwapi<elf> \-PE 7e3f0000-7e452000 \ shlwapi ELF 7e453000-7e66f000 Deferred shell32<elf> \-PE 7e460000-7e66f000 \ shell32 ELF 7e673000-7e76b000 Deferred comctl32<elf> \-PE 7e680000-7e76b000 \ comctl32 ELF 7e76b000-7e790000 Deferred mpr<elf> \-PE 7e770000-7e790000 \ mpr ELF 7e793000-7e7a6000 Deferred msimg32<elf> \-PE 7e7a0000-7e7a6000 \ msimg32 ELF 7e7ab000-7e823000 Deferred rpcrt4<elf> \-PE 7e7c0000-7e823000 \ rpcrt4 ELF 7e823000-7e930000 Deferred gdi32<elf> \-PE 7e830000-7e930000 \ gdi32 ELF 7e933000-7ea7a000 Deferred user32<elf> \-PE 7e950000-7ea7a000 \ user32 ELF 7ea7b000-7eae1000 Deferred advapi32<elf> \-PE 7ea90000-7eae1000 \ advapi32 ELF 7eae3000-7ebf8000 Deferred ole32<elf> \-PE 7eb00000-7ebf8000 \ ole32 ELF 7ebfb000-7ed13000 Deferred oleaut32<elf> \-PE 7ec10000-7ed13000 \ oleaut32 ELF 7ed13000-7ed26000 Deferred libnss_files.so.2 ELF 7ed2b000-7ed38000 Deferred libnss_nis.so.2 ELF 7ed3b000-7ed56000 Deferred libnsl.so.1 ELF 7ed5b000-7ed65000 Deferred libnss_compat.so.2 ELF 7ef6b000-7efc1000 Deferred libm.so.6 ELF 7efc3000-7efcc000 Deferred librt.so.1 ELF 7efe3000-7effb000 Deferred version<elf> \-PE 7eff0000-7effb000 \ version ELF f737b000-f7380000 Deferred libdl.so.2 ELF f7383000-f753d000 Deferred libc.so.6 ELF f7543000-f7560000 Deferred libpthread.so.0 ELF f7593000-f7745000 Dwarf libwine.so.1 ELF f774b000-f7770000 Deferred ld-linux.so.2 ELF f7777000-f7778000 Deferred [vdso].so Threads: process tid prio (all id:s are in hex) 0000000e services.exe 0000001e 0 0000001d 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001a 0 00000017 0 00000013 0 0000001b plugplay.exe 00000020 0 0000001f 0 0000001c 0 00000029 setup_sid_meiers_alpha_centauri_2.0.2.23.exe 0000002a 0 0000002b explorer.exe 0000002d 0 0000002c 0 0000002e (D) C:\users\twinroses\Temp\is-UN1OR.tmp\setup_sid_meiers_alpha_centauri_2.0.2.23.tmp 00000009 0 <== 00000036 0 00000035 0 00000034 0 00000033 0 00000030 0 0000002f 0 System information: Wine build: wine-1.6.2 Platform: i386 Host system: Linux Host version: 4.8.0-30-generic
I am in over my head here and would appreciate any assistance possible. Thanks!
Replies |
Donnern | Thursday 4 August 2016 at 21:29 |
Donnern
|
MessageI'm getting some errors that I am unfamiliar with when trying to install this. I tried deducing what the issue is, but came to not conclusion. Figured that I'd post here in case anyone else is having the same problem. Here's the log: http://pastebin.com/eMpGxwVx RepliesThursday 4 August 2016 at 22:07
|
lolmaus | Saturday 26 December 2015 at 16:26 |
lolmaus
|
MessageThe installer tries to download WindowsXP-KB975337-x86-ENU.exe from Microsoft.com, but the file is no longer available. It was diffictult to find the file manually, so I've shared it on my Dropbox: https://www.dropbox.com/s/4svroi5fmimdd1f/WindowsXP-KB975337-x86-ENU.exe?dl=0 Just put the file into ~/.PlayOnLinux/ressources/ RepliesSaturday 26 December 2015 at 16:43
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com