Steam
Informations
Créateur | Messages |
---|---|
Quentin PÂRIS
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience17 33 DescriptionThe famous gaming platform from Valve. Has a Linux native release. Wikipedia. Appdb.winehq.org (tests reports). Captures d'écran
Code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog # Wine version used : Please refer to https://appdb.winehq.org/objectManager.php?sClass=application&iId=1163 # Distribution used to test : Xubuntu 18.04 amd64 # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # # FRENCH: Ce script est particulier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, afin que # l'utilisateur puisse les réinstaller à sa guise. # Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. # On installe donc seulement Gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [Quentin Paris] (2018-10-18) # wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 # [Dadu042] (2020-08-10 10-00) # [CHANGED] Wine 4.21 -> 5.0.1 # [CHANGED] POL_SetupWindow_VMS moved. # [CHANGED] Comments # KNOWN ISSUES : # - (2020-08) Wine amd64 4.21, 5.0.1, 5.12: the center of the Steam window is black (top and bottom menus does appear). Tried: Gecko. # # KNOWN ISSUES (FIXED): # - Wine amd64 5.0.1: X [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="5.0.2" GAME_VMS="256" # Starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Forcing x86 to avoid any possible x64 related bugs POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" # Installing Steam POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Make shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" # POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive, you can run this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages | ||
Lelex | Mercredi 24 Mai 2023 à 12:57 | ||
Lelex
|
MessagesI am trying to install Steam and get a blank screen like a lot of other people in this forum. I am using and M1 Pro Macbook with Ventura 13.0.1 I have no programming skills whatsoever so simple help much appreciated. Do the devs ever look at these posts? Looks like this problem has been ongoing for a while....
Réponses |
||
Hoge | Mercredi 1 Mars 2023 à 5:20 | ||
Hoge
|
MessagesI've tried every assortment of the various argument solutions but I'm still unable to get past the initial black login screen. Any suggestions? I am on MacOS Ventura 13.2.1. Réponses |
||
jezieg | Dimanche 20 Novembre 2022 à 20:52 | ||
jezieg
|
MessagesI was able to resolve the issue with a black login screen. For steam configuration put in the arguments field: "wine steam.exe -noreactlogin". This likely disables the new login page version which is broken for now. RéponsesLundi 20 Février 2023 à 3:40
|
||
zurabinho | Vendredi 4 Novembre 2022 à 15:22 | ||
zurabinho
|
MessagesSame here, I'm on a MacBook Pro M1 (2020), and I have a blank page when trying to launch Steam on Playonmac. I've tried putting "wine steam.exe -no-browser +open steam://open/minigameslist" in the Arguments box and it just says "The steam browser is disabled because "no-browser" was specified in the Steam command line". I also don't have a "View" menu at the top of the screen when on Steam, so I can't access the Small mode to see the library. (I've seen it referred to as a solution) Tried the latest update as well, didn't work. I'm also a complete newbie so I might have missed something. Thanks to anyone who can come up with a solution :) Réponses |
||
edam | Mercredi 2 Novembre 2022 à 13:52 | ||
edam
|
MessagesAfter install, Steam shows a blank (black) window and you can do no more... :( Réponses |
||
andykimpe | Vendredi 21 Octobre 2022 à 12:51 | ||
andykimpe
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messagessolve login black screen et update wine version to 7.0 (actual stable work) Differences@@ -13,11 +13,11 @@ # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, afin que # l'utilisateur puisse les réinstaller à sa guise. -# Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. +# Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. # On installe donc seulement Gecko qui est indispensable, et on évite le reste. # ############################################################## - + # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext @@ -29,26 +29,33 @@ # [CHANGED] Wine 4.21 -> 5.0.1 # [CHANGED] POL_SetupWindow_VMS moved. # [CHANGED] Comments +# [andykimpe] (2022-10-20) +# [CHANGED] Wine 5.0.2 -> 7.0 +# [CHANGED] disable libglesv2 dll solve wine bug 44985. +# [CHANGED] POL_Wine_OverrideDLL "" "dwrite" not require and solve block +# [CHANGED] Comments - + + # KNOWN ISSUES : # - (2020-08) Wine amd64 4.21, 5.0.1, 5.12: the center of the Steam window is black (top and bottom menus does appear). Tried: Gecko. # # KNOWN ISSUES (FIXED): # - Wine amd64 5.0.1: X - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Steam" -WINEVERSION="5.0.2" +WINEVERSION="7.0" GAME_VMS="256" - + # Starting the script POL_SetupWindow_Init +#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" - + # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" @@ -56,49 +63,51 @@ else PREFIX="Steam" fi - + # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" - + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" - + # Forcing x86 to avoid any possible x64 related bugs POL_System_SetArch "x86" - + # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WINEVERSION" - + # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB -POL_Wine_OverrideDLL "" "dwrite" - +#POL_Wine_OverrideDLL "" "dwrite" + # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" - + cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" -POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" - +POL_Download_Resource "http://media.steampowered.com/client/installer/SteamSetup.exe" + # Installing Steam POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" - - + + ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" +POL_Wine_OverrideDLL "" "libglesv2" ## End Fix - + # Make shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" +POL_Shortcut_QuietDebug "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" - - + + POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive, you can run this installer again.')" "$TITLE" - + POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog # Wine version used : Please refer to https://appdb.winehq.org/objectManager.php?sClass=application&iId=1163 # Distribution used to test : Xubuntu 18.04 amd64 # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # # FRENCH: Ce script est particulier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, afin que # l'utilisateur puisse les réinstaller à sa guise. # Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. # On installe donc seulement Gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [Quentin Paris] (2018-10-18) # wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 # [Dadu042] (2020-08-10 10-00) # [CHANGED] Wine 4.21 -> 5.0.1 # [CHANGED] POL_SetupWindow_VMS moved. # [CHANGED] Comments # [andykimpe] (2022-10-20) # [CHANGED] Wine 5.0.2 -> 7.0 # [CHANGED] disable libglesv2 dll solve wine bug 44985. # [CHANGED] POL_Wine_OverrideDLL "" "dwrite" not require and solve block # [CHANGED] Comments # KNOWN ISSUES : # - (2020-08) Wine amd64 4.21, 5.0.1, 5.12: the center of the Steam window is black (top and bottom menus does appear). Tried: Gecko. # # KNOWN ISSUES (FIXED): # - Wine amd64 5.0.1: X [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="7.0" GAME_VMS="256" # Starting the script POL_SetupWindow_Init #POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Forcing x86 to avoid any possible x64 related bugs POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB #POL_Wine_OverrideDLL "" "dwrite" # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" POL_Download_Resource "http://media.steampowered.com/client/installer/SteamSetup.exe" # Installing Steam POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" POL_Wine_OverrideDLL "" "libglesv2" ## End Fix # Make shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" POL_Shortcut_QuietDebug "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive, you can run this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 2 Novembre 2022 à 13:45
|
||
tataridayo | Mercredi 19 Octobre 2022 à 1:40 | ||
tataridayo
|
Messagesnew update come and I tried to login but its just black screen and not work. Réponses |
||
AC1993 | Lundi 17 Octobre 2022 à 18:40 | ||
AC1993
|
MessagesJust downloaded Steam with Playonmac and the login page was just a black square. Anyone know how to fix this issue? If this helps i am running this on a 2020 MacBook Air M1. Réponses |
||
petruslx | Mardi 11 Octobre 2022 à 21:51 | ||
petruslx
|
MessagesI recently re-installed playonmac after trying to use porting kit, but now the steam login page never loads, its just black, i've deleted and re-installed playonmac many times and yet, it still doesn't load. Tried to unarchive steamservice.exe and its says it cant because the file is corrupted.
Other people are apparently also getting the same error, someone said it might be due to the new steam login page update. RéponsesSamedi 15 Octobre 2022 à 17:44
Edité par petruslx |
||
ReflexGamez | Jeudi 29 September 2022 à 18:21 | ||
ReflexGamez
|
MessagesHello, this is my first time using PlayOnMac. I tried to run steam after I downloaded it. I logged in fine. But the library page, friends page, news page, was all black. The border is fine, where it says "store""library" my account and thumbnail for it etc. But the area below it, where it will actually show the library or store, is all black. I thought maybe it didn't load in yet, but after a minute it's still all black. During the installation, the PlayOnMac installer asked for GPU storage size or something and I put 256 mbs, because I couldn't find the size for my Macbook chip even when I searched google. Maybe that's the problem? Anyways, I'm using macOS Monterey 12.5.1 and I'm using a 2020 M1 macbook pro with 8GB ram. RéponsesLundi 31 Juillet 2023 à 11:02
|
||
Dadu042 | Mardi 10 Novembre 2020 à 9:15 | ||
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesJust a quick update. Differences@@ -42,7 +42,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="5.0.1" +WINEVERSION="5.0.2" GAME_VMS="256" # Starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog # Wine version used : Please refer to https://appdb.winehq.org/objectManager.php?sClass=application&iId=1163 # Distribution used to test : Xubuntu 18.04 amd64 # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # # FRENCH: Ce script est particulier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, afin que # l'utilisateur puisse les réinstaller à sa guise. # Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. # On installe donc seulement Gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [Quentin Paris] (2018-10-18) # wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 # [Dadu042] (2020-08-10 10-00) # [CHANGED] Wine 4.21 -> 5.0.1 # [CHANGED] POL_SetupWindow_VMS moved. # [CHANGED] Comments # KNOWN ISSUES : # - (2020-08) Wine amd64 4.21, 5.0.1, 5.12: the center of the Steam window is black (top and bottom menus does appear). Tried: Gecko. # # KNOWN ISSUES (FIXED): # - Wine amd64 5.0.1: X [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="5.0.2" GAME_VMS="256" # Starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Forcing x86 to avoid any possible x64 related bugs POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" # Installing Steam POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Make shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" # POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive, you can run this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
sacooley | Mardi 10 Novembre 2020 à 8:24 | ||
sacooley
|
MessagesI am having a similar issue to what someone has previously posted, specifically with Sea of Thieves. When attempting to run it, it tries to install the Microsoft VC Redist Package. I am assuming this is what is causing an error, but Wine ends up having a fatal error and returns the follow error message. How should I approach resolving this issue? Thanks in advance. Unhandled exception: page fault on execute access to 0x00000008 in 64-bit code (0x0000000000000008). Register dump: rip:0000000000000008 rsp:000000000022e7f8 rbp:00000001446ed210 eflags:00010216 ( R- -- I -A-P- ) rax:0000000144abbdcc rbx:0000000035071000 rcx:000000000022e840 rdx:000000000022e828 rsi:0000000003901c01 rdi:0000000000000000 r8:0000000035071000 r9:0000000039080a00 r10:0000000000000040 r11:0000000000000000 r12:0000000000000000 r13:ffffffffffffffff r14:0000000000000000 r15:0000000000000000 Stack dump: 0x000000000022e7f8: 00000001416410c9 000000000022e828 0x000000000022e808: 0000000035071000 0000000035071000 0x000000000022e818: 0000000039080a00 fffffffffffffffe 0x000000000022e828: 0000000035071000 0000000039080a00 0x000000000022e838: 000000000000a604 0000000000000000 0x000000000022e848: 0000000000000000 0000000003901c01 0x000000000022e858: 0000000000000000 000000000022e970 0x000000000022e868: 000000014022e9fb 0000000039080a00 0x000000000022e878: 0000000000000000 0000000000000000 0x000000000022e888: 0000000003901c01 00000001452899d0 0x000000000022e898: 0000000000000000 0000000000000000 0x000000000022e8a8: 0000000000000000 0000000000000000 Backtrace: =>0 0x0000000000000008 (0x00000001446ed210) 0x0000000000000008: -- no code accessible -- Modules: Module Address Debug info Name (106 modules) PE 250000- 3c4000 Deferred shlwapi PE 3e0000- 833000 Deferred oleaut32 PE 840000- a3b000 Deferred setupapi PE a40000- a9d000 Deferred dwmapi PE aa0000- d91000 Deferred d3d11 PE da0000- dfb000 Deferred wer PE e00000- e61000 Deferred powrprof PE e70000- ebf000 Deferred api-ms-win-crt-utility-l1-1-0 PE ec0000- f10000 Deferred api-ms-win-crt-stdio-l1-1-0 PE f10000- f5f000 Deferred api-ms-win-crt-heap-l1-1-0 PE f60000- fad000 Deferred api-ms-win-crt-time-l1-1-0 PE fb0000- ffd000 Deferred api-ms-win-crt-environment-l1-1-0 PE 1370000- 13be000 Deferred psapi PE 13c0000- 140f000 Deferred api-ms-win-core-synch-l1-2-0 PE 1410000- 145d000 Deferred api-ms-win-core-fibers-l1-1-1 PE 1ba30000- 1bb92000 Deferred msctf PE 1bba0000- 1bc57000 Deferred explorerframe PE 21b60000- 21fb6000 Deferred comctl32 PE 2c070000- 2c1ba000 Deferred coherenticuuc PE 2c1c0000- 2c386000 Deferred coherenticuin PE 2c390000- 2c3e0000 Deferred wtf PE 2c3e0000- 2c565000 Deferred renoircore.windowsdesktop PE 2c590000- 2c99f000 Deferred coherentgtjs PE 2c9c0000- 2dcd4000 Deferred coherentgtcore PE 2dd60000- 2dfac000 Deferred coherentuigt PE 307f0000- 30a78000 Deferred partywin PE 30a80000- 30acd000 Deferred api-ms-win-core-synch-l1-1-0 PE 30af0000- 30b3d000 Deferred api-ms-win-core-profile-l1-1-0 PE 30b60000- 30bad000 Deferred api-ms-win-core-version-l1-1-1 PE 30bd0000- 30c1d000 Deferred api-ms-win-core-version-l1-1-0 PE 30c40000- 30c8f000 Deferred api-ms-win-core-winrt-string-l1-1-0 PE 30c90000- 30ceb000 Deferred sspicli PE 30d10000- 30e0f000 Deferred partyxboxlive PE 35160000- 35180000 Deferred amd_ags_x64 PE 351a0000- 35271000 Deferred gameux PE 374a0000- 374b4000 Deferred pxfoundation_x64 PE 374c0000- 37652000 Deferred physx3common_x64 PE 37660000- 37868000 Deferred physx3_x64 PE 37870000- 378b1000 Deferred physx3cooking_x64 PE 4ad00000- 4c18a000 Deferred icudtcoherent53 PE 61540000- 6158f000 Deferred api-ms-win-crt-locale-l1-1-0 PE 61e40000- 61e8d000 Deferred api-ms-win-core-sysinfo-l1-1-0 PE 61f80000- 61fd4000 Deferred normaliz PE 620c0000- 6210f000 Deferred api-ms-win-crt-filesystem-l1-1-0 PE 62600000- 6271c000 Deferred usp10 PE 62740000- 627b2000 Deferred imagehlp PE 63140000- 63190000 Deferred api-ms-win-crt-runtime-l1-1-0 PE 637c0000- 63979000 Deferred winmm PE 63fc0000- 6400f000 Deferred api-ms-win-core-winrt-l1-1-0 PE 64500000- 64559000 Deferred concrt140 PE 64940000- 649c7000 Deferred shcore PE 64b80000- 64be8000 Deferred hid PE 65000000- 655d2000 Deferred ole32 PE 65600000- 6561e000 Deferred xinput1_3 PE 65680000- 656cf000 Deferred api-ms-win-core-sysinfo-l1-2-1 PE 65780000- 657db000 Deferred version PE 65940000- 6598d000 Deferred api-ms-win-core-libraryloader-l1-2-0 PE 66800000- 66857000 Deferred mswsock PE 66a80000- 66d60000 Deferred msvcp140 PE 67280000- 672cd000 Deferred api-ms-win-eventing-classicprovider-l1-1-0 PE 67600000- 6768e000 Deferred combase PE 681e0000- 681e3000 Deferred wow64cpu PE 6a960000- 6a982000 Deferred wininet PE 6aa20000- 6aa2b000 Deferred advapi32 PE 6aad0000- 6aae0000 Deferred msvcrt PE 6abf0000- 6ace1000 Deferred user32 PE 6aea0000- 6aeac000 Deferred gdi32 PE 6b070000- 6b94d000 Deferred shell32 PE 6bb00000- 6bb06000 Deferred ws2_32 PE 6bb40000- 6bb47000 Deferred dbghelp PE 6bbd0000- 6bbd6000 Deferred iphlpapi PE 6bc10000- 6bc15000 Deferred bcrypt PE 6bc30000- 6bc35000 Deferred dxgi PE 6bc90000- 6bc99000 Deferred wined3d PE 6be50000- 6be6e000 Deferred wldap32 PE 6bec0000- 6bf4a000 Deferred imm32 PE 6bf50000- 6bf97000 Deferred crypt32 PE 6c070000- 6c077000 Deferred winhttp PE 6c0f0000- 6c10e000 Deferred ucrtbase PE 6c270000- 6c289000 Deferred msvcr120 PE 6c4c0000- 6c4c7000 Deferred winemac PE 6d3a0000- 6d3a4000 Deferred secur32 PE 6d510000- 6d517000 Deferred netapi32 PE 6d560000- 6d564000 Deferred kerberos PE 6d580000- 6d5d0000 Deferred api-ms-win-crt-convert-l1-1-0 PE 6d9c0000- 6da56000 Deferred mpr PE 6dd80000- 6ddd0000 Deferred api-ms-win-crt-string-l1-1-0 PE 6e6c0000- 6e70f000 Deferred api-ms-win-core-localization-l1-2-1 PE 6eac0000- 6eb15000 Deferred vcruntime140 PE 6ec80000- 6eccf000 Deferred api-ms-win-crt-conio-l1-1-0 PE 6f940000- 6faeb000 Deferred d3d9 PE 6fbc0000- 6fe1d000 Deferred rpcrt4 PE 704c0000- 7050f000 Deferred api-ms-win-eventing-provider-l1-1-0 PE 70580000- 705d2000 Deferred api-ms-win-crt-math-l1-1-0 PE 71040000- 711c1000 Deferred kernelbase PE 71240000- 712c7000 Deferred jsproxy PE 7a810000- 7a818000 Deferred opengl32 PE 7b410000- 7b5db000 Deferred kernel32 PE 7bc10000- 7bc24000 Deferred ntdll ELF 7c400000- 7c404000 Deferred <wine-loader> PE 138000000- 139341000 Deferred steamclient64 PE 13b400000- 13b44b000 Deferred steam_api64 PE 13f000000- 13f174000 Deferred tier0_s64 PE 13f600000- 13f67c000 Deferred vstdlib_s64 PE 140000000- 147b77e00 Deferred sotgame PE 180000000- 1801e1000 Deferred gameoverlayrenderer64 Threads: process tid prio (all id:s are in hex) 00000008 Steam.exe 0000006d 0 00000068 0 00000062 0 00000061 0 0000004d 0 0000004c 0 00000043 0 00000042 0 00000041 0 00000040 0 0000003d 0 0000003c 0 0000003b 0 0000003a 0 00000039 0 00000037 2 00000036 2 00000033 0 00000031 0 00000030 0 0000002f 0 0000002d 0 0000002c 0 0000002b 0 0000002a 0 00000029 0 00000009 0 0000000c services.exe 00000020 0 00000018 0 00000011 0 0000000e 0 0000000d 0 0000000f plugplay.exe 00000015 0 00000014 0 00000010 0 00000016 winedevice.exe 0000001d 0 0000001c 0 0000001b 0 0000001a 0 00000019 0 00000017 0 0000001e winedevice.exe 00000023 0 00000022 0 00000021 0 0000001f 0 00000024 explorer.exe 00000028 0 00000027 0 00000026 0 00000025 0 000000c4 (D) C:\Program Files (x86)\Steam\steamapps\common\Sea of Thieves\Athena\Binaries\Win64\SoTGame.exe 000000da 0 000000d7 0 000000d5 -1 000000d3 0 000000d2 0 000000cf 0 000000ce 0 000000cd 0 000000c5 0 <== System information: Wine build: wine-4.12.1 Platform: x86_64 Version: Windows 7 Host system: Darwin Host version: 19.6.0 Réponses |
||
JumeBug | Mardi 13 Octobre 2020 à 19:38 | ||
JumeBug
|
MessagesAny updates on functionality with Catalina? When I download Steam and run it and login it works, but nothing actually shows up in the Steam window, only the navigation bar at the top of the window, and none of the content. Attached is the debug log. I am trying to run Steam so that I can play Phasmophobia, which I purchased, however it only works on Windows and not Mac. Thanks for your help!
[10/13/20 09:40:44] - Running wine- --version (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python) wine-4.12.1 PlayOnMac logfile ------------------- Date: 10/13/20 09:40:44 > PlayOnMac Version 4.4.1 > uname -a Darwin Jaimes-MacBook-Pro.local 19.6.0 Darwin Kernel Version 19.6.0: Thu Jun 18 20:49:00 PDT 2020; root:xnu-6153.141.1~1/RELEASE_X86_64 x86_64 > lsb_release -a > wine --version wine-4.12.1 > POL_WINEVERSION > WINEPREFIX /Users/jaimeknoch/Library/PlayOnMac//wineprefix/Steam > Distribution 10.15.6 (19.6.0) > glxinfo \| grep rendering > glxinfo \| grep renderer > OpenGL libs (Direct rendering testing) [10/13/20 09:40:45] - Running wine- cmd /c echo %ProgramFiles% (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python) 000b:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 000d:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0010:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0012:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0014:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0012:err:ole:marshal_object couldn't get IPSFactory buffer for interface {00000131-0000-0000-c000-000000000046} 0012:err:ole:marshal_object couldn't get IPSFactory buffer for interface {6d5140c1-7436-11ce-8034-00aa006009fa} 0012:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hres=0x80004002 0012:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, 80004002 0012:err:ole:get_local_server_stream Failed: 80004002 0014:err:ole:marshal_object couldn't get IPSFactory buffer for interface {00000131-0000-0000-c000-000000000046} 0014:err:ole:marshal_object couldn't get IPSFactory buffer for interface {6d5140c1-7436-11ce-8034-00aa006009fa} 0014:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hres=0x80004002 0014:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, 80004002 0014:err:ole:get_local_server_stream Failed: 80004002 0017:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0017:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet 0017:err:mscoree:LoadLibraryShim error reading registry key for installroot 0017:err:mscoree:LoadLibraryShim error reading registry key for installroot 0017:err:mscoree:LoadLibraryShim error reading registry key for installroot 0017:err:mscoree:LoadLibraryShim error reading registry key for installroot 0017:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 1) 0017:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 1) 0010:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0010:fixme:dwmapi:DwmIsCompositionEnabled 0000000007A91518 0010:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0019:fixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x3d7d3de, context 0x544050, init_notify 0, handle 0x8b1f9e0): stub 0028:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 002d:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0035:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet 0035:err:mscoree:LoadLibraryShim error reading registry key for installroot 0035:err:mscoree:LoadLibraryShim error reading registry key for installroot 0035:err:mscoree:LoadLibraryShim error reading registry key for installroot 0035:err:mscoree:LoadLibraryShim error reading registry key for installroot 0035:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 1) 0035:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 1) 0033:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0033:fixme:dwmapi:DwmIsCompositionEnabled 061F3018 0033:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0037:fixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x2ceb608, context 0x2a2920, init_notify 0, handle 0x70bfbc4): stub wine: configuration in '/Users/jaimeknoch/Library/PlayOnMac//wineprefix/Steam' has been updated. C:\Program Files (x86) [10/13/20 09:41:16] - ----- Starting function POL_Install_corefonts ----- [10/13/20 09:41:16] - ----- Starting function POL_Internal_InstallFonts ----- [10/13/20 09:42:09] - ----- Ending function POL_Internal_InstallFonts ----- [10/13/20 09:42:09] - ----- Ending function POL_Install_corefonts ----- [10/13/20 09:42:10] - ----- Starting function POL_Install_corefonts ----- [10/13/20 09:42:10] - ----- Starting function POL_Internal_InstallFonts ----- [10/13/20 09:42:10] - ----- Ending function POL_Internal_InstallFonts ----- [10/13/20 09:42:10] - ----- Ending function POL_Install_corefonts ----- [10/13/20 09:42:11] - Running wine- regedit /Users/jaimeknoch/Library/PlayOnMac//tmp/override-dll.reg (Working directory : /Users/jaimeknoch/Library/PlayOnMac/tmp) [10/13/20 09:42:11] - Content of /Users/jaimeknoch/Library/PlayOnMac//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*dwrite"="" ----------- 000b:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 000d:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0010:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0017:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 001d:err:plugplay:process_IOService_Device object 0x9003 001d:err:plugplay:process_IOService_Device object 0x8e07 001d:err:plugplay:process_IOService_Device Unable to create plug in interface for USB deviceobject 0x8e0b 001f:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. [10/13/20 09:42:15] - Running wine- SteamSetup.exe (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c) 0027:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0025:fixme:shell:SHAutoComplete stub 0031:fixme:hnetcfg:fw_apps_get__NewEnum 0015A7D8, 0032F94C 0031:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0015A850, L"C:\\Program Files (x86)\\Steam\\steam.exe" 0031:fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files (x86)\\Steam\\steam.exe", 0x00000001, 00000000, 0032F938): stub 0031:fixme:hnetcfg:fw_app_put_Name 0015A850, L"Steam" 0031:fixme:hnetcfg:fw_app_put_Enabled 0015A850, -1 0031:fixme:hnetcfg:fw_apps_Add 0015A6F0, 0015A850 0031:fixme:hnetcfg:netfw_rules_get__NewEnum 0015ABF0, 0032F944 0031:fixme:advapi:RegisterEventSourceW ((null),L"Steam Client Service"): stub 0031:fixme:advapi:ReportEventW (0xcafe4242,0x0001,0x0000,0xc0000001,0x0,0x0001,0x00000000,0x32f54c,0x0): stub 0031:err:eventlog:ReportEventW L"Failed to add firewall exception for C:\\Program Files (x86)\\Steam\\steam.exe" 0031:fixme:advapi:DeregisterEventSource (0xcafe4242) stub 0031:fixme:hnetcfg:fw_apps_get__NewEnum 00113588, 0032F94C 0031:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0015AC28, L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0031:fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe", 0x00000001, 00000000, 0032F938): stub 0031:fixme:hnetcfg:fw_app_put_Name 0015AC28, L"Steam Web Helper" 0031:fixme:hnetcfg:fw_app_put_Enabled 0015AC28, -1 0031:fixme:hnetcfg:fw_apps_Add 00113588, 0015AC28 0031:fixme:hnetcfg:netfw_rules_get__NewEnum 001138D0, 0032F944 0031:fixme:advapi:RegisterEventSourceW ((null),L"Steam Client Service"): stub 0031:fixme:advapi:ReportEventW (0xcafe4242,0x0001,0x0000,0xc0000001,0x0,0x0001,0x00000000,0x32f54c,0x0): stub 0031:err:eventlog:ReportEventW L"Failed to add firewall exception for C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0031:fixme:advapi:DeregisterEventSource (0xcafe4242) stub 0031:fixme:service:SERV_QueryServiceObjectSecurity 0x15b418 4 0x32f788 512 0x32f9c4 - semi-stub 0031:fixme:service:SetServiceObjectSecurity 0x15b418 4 0x32f988 0031:fixme:ver:GetCurrentPackageId (0x32fd04 0x0): stub [10/13/20 09:43:59] - Running wine- regedit /Users/jaimeknoch/Library/PlayOnMac//tmp/override-dll.reg (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c) [10/13/20 09:43:59] - Content of /Users/jaimeknoch/Library/PlayOnMac//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*gameoverlayrenderer"="" ----------- [10/13/20 09:44:00] - Running wine- winepath -u C:\\users\\crossover\\Desktop (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c) /Users/jaimeknoch/Library/PlayOnMac//wineprefix/Steam/dosdevices/c:/users/crossover/Desktop [10/13/20 09:44:23] - Running wine- Steam.exe (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files (x86)/Steam) [10/13/20 09:44:26] - Running wine- Steam.exe (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files (x86)/Steam) [2020-10-13 09:44:27] Startup - updater built May 21 2018 14:21:49 [2020-10-13 09:44:27] Verifying installation... [2020-10-13 09:44:27] Unable to read and verify install manifest C:\Program Files (x86)\Steam\package\steam_client_win32.installed [2020-10-13 09:44:27] Verification complete [2020-10-13 09:44:27] Downloading update... [2020-10-13 09:44:27] Checking for available updates... [2020-10-13 09:44:38] Package file tenfoot_misc_all.zip.1ca83d76835b4613170f5cead778b176b11f2b0c missing or incorrect size [2020-10-13 09:44:38] Package file tenfoot_dicts_all.zip.33245b7d523f68418283e93b0572508fa127ee8f missing or incorrect size [2020-10-13 09:44:38] Package file tenfoot_fonts_all.zip.vz.7673e4cd32b6752bc621d8bc1a7118a9af19b64a_12077027 missing or incorrect size [2020-10-13 09:44:38] Package file tenfoot_ambientsounds_all.zip.89b80bcfdd11b2b99257ddbbdc374e2df54e2738 missing or incorrect size [2020-10-13 09:44:38] Package file tenfoot_sounds_all.zip.vz.ffef2b2fc386819a842ea79484b966a937c2ca7e_1209792 missing or incorrect size [2020-10-13 09:44:38] Package file tenfoot_images_all.zip.vz.4e9a101f45f3ed44e5465ce414b5349c3548c920_31340363 missing or incorrect size [2020-10-13 09:44:38] Package file tenfoot_all.zip.vz.ecf24728851242648e69a680d4c17561b55d9c42_2267308 missing or incorrect size [2020-10-13 09:44:38] Package file friendsui_all.zip.vz.5bef01586d75b3f00c3770821e9aed6fb21cf74e_2384836 missing or incorrect size [2020-10-13 09:44:38] Package file steamui_websrc_all.zip.vz.a7318cc8a1b0f8e07d5b1c318b7858c51609e751_2573770 missing or incorrect size [2020-10-13 09:44:38] Package file resources_misc_all.zip.vz.4a1fa88d21b005b67a41a9a0fc6044ae1fa46791_2225211 missing or incorrect size [2020-10-13 09:44:38] Package file resources_music_all.zip.vz.7a62e15083d4a65668f0d1fa58ad8c1b99fb5ace_3708050 missing or incorrect size [2020-10-13 09:44:38] Package file resources_hidpi_all.zip.vz.66e6d0c4758df08e7a52aeca5d75f7cf2d243268_56612 missing or incorrect size [2020-10-13 09:44:38] Package file resources_all.zip.vz.64d7384e19f02a34b754573b0ed046612a8b6fb3_1304057 missing or incorrect size [2020-10-13 09:44:38] Package file strings_en_all.zip.9b75f7e790d727aef865ca7c4f4091450804b825 missing or incorrect size [2020-10-13 09:44:38] Package file strings_all.zip.vz.4702e947f0706a71e2c87fc984a9d134c881d599_1921592 missing or incorrect size [2020-10-13 09:44:38] Package file public_all.zip.vz.dd95dafb59aea89a5a003ebf1c5b33be6f8e2f9b_3972339 missing or incorrect size [2020-10-13 09:44:38] Package file bins_codecs_win32.zip.vz.568108d774a036c6684c0a1f78a33ec2e8044b4c_2547912 missing or incorrect size [2020-10-13 09:44:38] Package file bins_misc_win32.zip.vz.260058a1809322c0f7ddfdc40abb99f474b32e01_14947585 missing or incorrect size [2020-10-13 09:44:38] Package file bins_cef_win32_win7.zip.vz.b77decbd21f3732d5519c3e49424c86adca24930_58061660 missing or incorrect size [2020-10-13 09:44:38] Package file bins_webhelpers_win32_win7.zip.vz.cc734e3ea4a13ff779dc5863c91e4a86219b59a3_1351709 missing or incorrect size [2020-10-13 09:44:38] Package file bins_win32.zip.vz.2e61b84b9439ce1e7e1973b0496b5c31ff655c5f_19466961 missing or incorrect size [2020-10-13 09:44:38] Package file steam_win32.zip.vz.75a0bc75a54b230edd6d2c2d6d755f1391b7618e_1272212 missing or incorrect size [2020-10-13 09:44:38] Downloading update (2,135 of 191,628 KB)... [2020-10-13 09:44:38] Downloading update (4,064 of 191,628 KB)... [2020-10-13 09:44:39] Downloading update (6,433 of 191,628 KB)... [2020-10-13 09:44:39] Downloading update (8,603 of 191,628 KB)... [2020-10-13 09:44:39] Downloading update (10,996 of 191,628 KB)... [2020-10-13 09:44:39] Downloading update (13,039 of 191,628 KB)... [2020-10-13 09:44:40] Downloading update (15,422 of 191,628 KB)... [2020-10-13 09:44:40] Downloading update (17,553 of 191,628 KB)... [2020-10-13 09:44:40] Downloading update (19,633 of 191,628 KB)... [2020-10-13 09:44:40] Downloading update (21,973 of 191,628 KB)... [2020-10-13 09:44:41] Downloading update (24,165 of 191,628 KB)... [2020-10-13 09:44:41] Downloading update (26,382 of 191,628 KB)... [2020-10-13 09:44:41] Downloading update (28,834 of 191,628 KB)... [2020-10-13 09:44:41] Downloading update (31,091 of 191,628 KB)... [2020-10-13 09:44:42] Downloading update (33,266 of 191,628 KB)... [2020-10-13 09:44:42] Downloading update (35,470 of 191,628 KB)... [2020-10-13 09:44:42] Downloading update (38,436 of 191,628 KB)... [2020-10-13 09:44:43] Downloading update (40,631 of 191,628 KB)... [2020-10-13 09:44:43] Downloading update (43,113 of 191,628 KB)... [2020-10-13 09:44:43] Downloading update (44,804 of 191,628 KB)... [2020-10-13 09:44:43] Downloading update (47,038 of 191,628 KB)... [2020-10-13 09:44:44] Downloading update (48,931 of 191,628 KB)... [2020-10-13 09:44:44] Downloading update (50,373 of 191,628 KB)... [2020-10-13 09:44:44] Downloading update (52,183 of 191,628 KB)... [2020-10-13 09:44:44] Downloading update (52,444 of 191,628 KB)... [2020-10-13 09:44:45] Downloading update (54,641 of 191,628 KB)... [2020-10-13 09:44:45] Downloading update (56,763 of 191,628 KB)... [2020-10-13 09:44:45] Downloading update (59,151 of 191,628 KB)... [2020-10-13 09:44:45] Downloading update (61,163 of 191,628 KB)... [2020-10-13 09:44:46] Downloading update (63,511 of 191,628 KB)... [2020-10-13 09:44:46] Downloading update (64,856 of 191,628 KB)... [2020-10-13 09:44:46] Downloading update (66,713 of 191,628 KB)... [2020-10-13 09:44:46] Downloading update (68,761 of 191,628 KB)... [2020-10-13 09:44:47] Downloading update (71,202 of 191,628 KB)... [2020-10-13 09:44:47] Downloading update (73,422 of 191,628 KB)... [2020-10-13 09:44:47] Downloading update (76,006 of 191,628 KB)... [2020-10-13 09:44:48] Downloading update (78,331 of 191,628 KB)... [2020-10-13 09:44:48] Downloading update (80,543 of 191,628 KB)... [2020-10-13 09:44:48] Downloading update (81,802 of 191,628 KB)... [2020-10-13 09:44:48] Downloading update (83,399 of 191,628 KB)... [2020-10-13 09:44:49] Downloading update (84,841 of 191,628 KB)... [2020-10-13 09:44:49] Downloading update (87,162 of 191,628 KB)... [2020-10-13 09:44:49] Downloading update (88,306 of 191,628 KB)... [2020-10-13 09:44:49] Downloading update (88,861 of 191,628 KB)... [2020-10-13 09:44:50] Downloading update (90,941 of 191,628 KB)... [2020-10-13 09:44:50] Downloading update (93,139 of 191,628 KB)... [2020-10-13 09:44:50] Downloading update (94,652 of 191,628 KB)... [2020-10-13 09:44:50] Downloading update (95,389 of 191,628 KB)... [2020-10-13 09:44:51] Downloading update (95,888 of 191,628 KB)... [2020-10-13 09:44:51] Downloading update (97,684 of 191,628 KB)... [2020-10-13 09:44:51] Downloading update (99,791 of 191,628 KB)... [2020-10-13 09:44:51] Downloading update (102,066 of 191,628 KB)... [2020-10-13 09:44:52] Downloading update (104,392 of 191,628 KB)... [2020-10-13 09:44:52] Downloading update (106,696 of 191,628 KB)... [2020-10-13 09:44:52] Downloading update (109,042 of 191,628 KB)... [2020-10-13 09:44:52] Downloading update (110,981 of 191,628 KB)... [2020-10-13 09:44:53] Downloading update (113,383 of 191,628 KB)... [2020-10-13 09:44:53] Downloading update (115,658 of 191,628 KB)... [2020-10-13 09:44:53] Downloading update (117,444 of 191,628 KB)... [2020-10-13 09:44:53] Downloading update (119,011 of 191,628 KB)... [2020-10-13 09:44:54] Downloading update (120,459 of 191,628 KB)... [2020-10-13 09:44:54] Downloading update (122,800 of 191,628 KB)... [2020-10-13 09:44:54] Downloading update (125,150 of 191,628 KB)... [2020-10-13 09:44:54] Downloading update (127,800 of 191,628 KB)... [2020-10-13 09:44:55] Downloading update (130,110 of 191,628 KB)... [2020-10-13 09:44:55] Downloading update (132,052 of 191,628 KB)... [2020-10-13 09:44:55] Downloading update (134,041 of 191,628 KB)... [2020-10-13 09:44:56] Downloading update (135,134 of 191,628 KB)... [2020-10-13 09:44:56] Downloading update (137,262 of 191,628 KB)... [2020-10-13 09:44:56] Downloading update (139,544 of 191,628 KB)... [2020-10-13 09:44:56] Downloading update (141,618 of 191,628 KB)... [2020-10-13 09:44:57] Downloading update (143,775 of 191,628 KB)... [2020-10-13 09:44:57] Downloading update (146,017 of 191,628 KB)... [2020-10-13 09:44:57] Downloading update (148,092 of 191,628 KB)... [2020-10-13 09:44:57] Downloading update (150,439 of 191,628 KB)... [2020-10-13 09:44:58] Downloading update (152,623 of 191,628 KB)... [2020-10-13 09:44:58] Downloading update (154,655 of 191,628 KB)... [2020-10-13 09:44:58] Downloading update (156,740 of 191,628 KB)... [2020-10-13 09:44:58] Downloading update (159,198 of 191,628 KB)... [2020-10-13 09:44:59] Downloading update (161,276 of 191,628 KB)... [2020-10-13 09:44:59] Downloading update (163,275 of 191,628 KB)... [2020-10-13 09:44:59] Downloading update (164,694 of 191,628 KB)... [2020-10-13 09:44:59] Downloading update (165,776 of 191,628 KB)... [2020-10-13 09:45:00] Downloading update (166,841 of 191,628 KB)... [2020-10-13 09:45:00] Downloading update (168,197 of 191,628 KB)... [2020-10-13 09:45:00] Downloading update (170,009 of 191,628 KB)... [2020-10-13 09:45:01] Downloading update (172,047 of 191,628 KB)... [2020-10-13 09:45:01] Downloading update (173,846 of 191,628 KB)... [2020-10-13 09:45:01] Downloading update (175,475 of 191,628 KB)... [2020-10-13 09:45:01] Downloading update (176,344 of 191,628 KB)... [2020-10-13 09:45:02] Downloading update (176,422 of 191,628 KB)... [2020-10-13 09:45:02] Downloading update (177,758 of 191,628 KB)... [2020-10-13 09:45:02] Downloading update (179,639 of 191,628 KB)... [2020-10-13 09:45:02] Downloading update (179,895 of 191,628 KB)... [2020-10-13 09:45:03] Downloading update (180,284 of 191,628 KB)... [2020-10-13 09:45:03] Downloading update (182,102 of 191,628 KB)... [2020-10-13 09:45:03] Downloading update (183,562 of 191,628 KB)... [2020-10-13 09:45:03] Downloading update (185,203 of 191,628 KB)... [2020-10-13 09:45:04] Downloading update (185,208 of 191,628 KB)... [2020-10-13 09:45:04] Downloading update (185,946 of 191,628 KB)... [2020-10-13 09:45:04] Downloading update (187,568 of 191,628 KB)... [2020-10-13 09:45:04] Downloading update (188,945 of 191,628 KB)... [2020-10-13 09:45:05] Downloading update (190,071 of 191,628 KB)... [2020-10-13 09:45:05] Downloading update (191,466 of 191,628 KB)... [2020-10-13 09:45:05] Downloading update (191,628 of 191,628 KB)... [2020-10-13 09:45:05] Download complete. [2020-10-13 09:45:05] uninstalled manifest found in C:\Program Files (x86)\Steam\package\steam_client_win32 (1). [2020-10-13 09:45:05] Extracting package... [2020-10-13 09:45:17] Installing update... [2020-10-13 09:45:19] Failed to clean up after update, continuing... [2020-10-13 09:45:19] Cleaning up... [2020-10-13 09:45:19] Update complete, launching Steam... [2020-10-13 09:45:19] Shutdown CWorkThreadPool::~CWorkThreadPool: work processing queue not empty: 6 items discarded. Failed to initialize volk [10/13/20 09:47:01] - Running wine- Steam.exe (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files (x86)/Steam) 2020-10-13 09:47:09.121 wine64-preloader[2309:3915256] *** WARNING: Method convertPointToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications. 2020-10-13 09:47:09.121 wine64-preloader[2309:3915256] *** WARNING: Method convertPointFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications. IPC client is in my process, could/should be using an in-process pipe.IPC client is in my process, could/should be using an in-process pipe.[2020-10-13 09:45:21] Startup - updater built Oct 6 2020 23:17:19 [2020-10-13 09:45:21] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults [2020-10-13 09:45:21] Using the following download hosts for Public, Realm steamglobal [2020-10-13 09:45:21] 1. http://client-download.steampowered.com, /client/, Realm 'steamglobal', weight was 100, source = 'baked in' [2020-10-13 09:45:21] 2. http://media.steampowered.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' [2020-10-13 09:45:21] Verifying installation... [2020-10-13 09:45:22] Verification complete [2020-10-13 09:45:28] Background update loop checking for update. . . [2020-10-13 09:45:28] Checking for available updates... [2020-10-13 09:45:28] Downloading manifest: client-download.steampowered.com/client/steam_client_win32 [2020-10-13 09:45:38] Download skipped: /client/steam_client_win32 version 1602115886, installed version 1602115886, downloaded version 0 [2020-10-13 09:45:38] Nothing to do [2020-10-13 09:49:13] Shutdown [10/13/20 09:49:24] - Running wine- Steam.exe (Working directory : /Users/jaimeknoch/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files (x86)/Steam) 000b:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 000d:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0010:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0017:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 001d:err:plugplay:process_IOService_Device object 0x7003 001d:err:plugplay:process_IOService_Device object 0x7107 001d:err:plugplay:process_IOService_Device Unable to create plug in interface for USB deviceobject 0x710b 001f:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0025:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0009:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0009:fixme:shcore:SetCurrentProcessExplicitAppUserModelID L"Valve.Steam.Client": stub 0009:fixme:ntdll:EtwEventRegister ({47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c40, 0x3f04c208, 0x3f04c200) stub. 0009:fixme:ntdll:EtwEventRegister ({58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c40, 0x3f04c240, 0x3f04c238) stub. 0009:fixme:ntdll:EtwEventRegister ({3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c40, 0x3f04c1d0, 0x3f04c1c8) stub. 0009:fixme:ntdll:EtwEventRegister ({1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c40, 0x3f04c278, 0x3f04c270) stub. 0009:fixme:ntdll:EtwEventRegister ({4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c40, 0x3f04c2b0, 0x3f04c2a8) stub. 0009:fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. 0009:fixme:shcore:SetCurrentProcessExplicitAppUserModelID L"Valve.Steam.Client": stub 0009:fixme:imm:ImmGetOpenStatus (00EDBE68): semi-stub 002b:fixme:win:RegisterDeviceNotificationW (hwnd=0x3005c, filter=0x4ccfd34,flags=0x00000000) returns a fake device notification handle! 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:dwmapi:DwmSetWindowAttribute (00010092, 2, 0033DCE4, 4) stub 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (00010092, 0033DCD4) stub 0009:fixme:advapi:StopTraceA (0, "Steam Event Tracing", 0x33ddfc) stub 0009:fixme:advapi:StartTraceA (0x33de88, "Steam Event Tracing", 0x33ddfc) stub 0009:fixme:advapi:OpenTraceA 0x33dbc8: stub 0009:fixme:advapi:EnableTrace (1, 0x10, 4, {22fb2cd6-0e7b-422b-a0c7-2fad1fd0e716}, cafe4242): stub 0009:fixme:advapi:CloseTrace cafe4242: stub 0030:fixme:advapi:ProcessTrace 0x6671f18 1 0x0 0x0: stub 002d:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 002d:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 002d:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0039:fixme:win:RegisterDeviceNotificationA (hwnd=0x8009a, filter=0x709f7d0,flags=0x00000004) returns a fake device notification handle! 003a:fixme:wbemprox:wbem_locator_ConnectServer unsupported flags 003a:fixme:wbemprox:client_security_SetBlanket 6795D6B8, 0564B9A8, 10, 0, (null), 3, 3, 00000000, 0x00000000 003a:fixme:wbemprox:client_security_Release 6795D6B8 0033:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv6 not supported in this platform 0022:fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled 003a:fixme:wbemprox:enum_class_object_Next timeout not supported 0022:fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled 0033:fixme:iphlpapi:NotifyAddrChange (Handle 0x28d064c, overlapped 0x28d0650): stub 0041:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (000100A0, 0033E130) stub 0042:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported 0041:fixme:win:RegisterTouchWindow (0x100ac 00000003): stub 0041:fixme:wgl:macdrv_wglChoosePixelFormatARB unused pfAttribFList 0046:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 0046:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 0046:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000019-0000-0000-c000-000000000046} (unknown) 0046:fixme:shell:CustomDestinationList_BeginList 0x56fb8c0 (0x8b7f8dc {92ca9dcd-5622-4bba-a805-5e9f541bd8c9} 0x8b7f8e8): stub 0033:fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x0000000c 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0049:fixme:win:RegisterTouchWindow (0x300ac 00000003): stub 0049:fixme:wgl:macdrv_wglChoosePixelFormatARB unused pfAttribFList 004c:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 004c:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 004c:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000019-0000-0000-c000-000000000046} (unknown) 004c:fixme:shell:CustomDestinationList_BeginList 0x5958e80 (0x8d9f8dc {92ca9dcd-5622-4bba-a805-5e9f541bd8c9} 0x8d9f8e8): stub 004e:fixme:thread:create_user_shared_data_thread Creating user shared data update thread. 004e:fixme:ver:GetCurrentPackageId (0x22fd10 0x0): stub 0033:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet 0009:fixme:imm:ImmReleaseContext (000100A0, 058DD890): stub Failed to initialize volk 0050:fixme:ver:GetCurrentPackageId (0x32fd04 0x0): stub 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0055:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0055:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0055:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0057:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0057:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0057:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (001400AA, 0033DD24) stub 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (000400B4, 0033D874) stub 0009:fixme:win:RegisterDeviceNotificationA (hwnd=0x400b4, filter=0x33da74,flags=0x00000004) returns a fake device notification handle! 0009:err:ole:CoGetClassObject class {294935ce-f637-4e7c-a41b-ab255460b862} not registered 0009:err:ole:CoGetClassObject class {294935ce-f637-4e7c-a41b-ab255460b862} not registered 0009:err:ole:create_server class {294935ce-f637-4e7c-a41b-ab255460b862} not registered 0009:fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported 0009:err:ole:CoGetClassObject no class object {294935ce-f637-4e7c-a41b-ab255460b862} could be created for context 0x17 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (000300E0, 0033DF90) stub 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0058:fixme:hnetcfg:fw_apps_get__NewEnum 0536CE60, 0A26F864 0058:fixme:hnetcfg:fw_app_put_ProcessImageFileName 05A60560, L"C:\\Program Files (x86)\\Steam\\Steam.exe" 0058:fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files (x86)\\Steam\\Steam.exe", 0x00000001, 00000000, 0A26F850): stub 0058:fixme:hnetcfg:fw_app_put_Name 05A60560, L"Steam" 0058:fixme:hnetcfg:fw_app_put_Enabled 05A60560, -1 0058:fixme:hnetcfg:fw_apps_Add 0536CE60, 05A60560 0058:fixme:hnetcfg:netfw_rules_get__NewEnum 05A60530, 0A26F860 0058:fixme:hnetcfg:fw_apps_get__NewEnum 0536CE60, 0A26F864 0058:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0529BCD0, L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0058:fixme:mpr:WNetGetUniversalNameW (L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe", 0x00000001, 00000000, 0A26F850): stub 0058:fixme:hnetcfg:fw_app_put_Name 0529BCD0, L"Steam Web Helper" 0058:fixme:hnetcfg:fw_app_put_Enabled 0529BCD0, -1 0058:fixme:hnetcfg:fw_apps_Add 0536CE60, 0529BCD0 0058:fixme:hnetcfg:netfw_rules_get__NewEnum 05B595E8, 0A26F860 005a:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 005a:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 005a:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000019-0000-0000-c000-000000000046} (unknown) 005a:fixme:shell:CustomDestinationList_BeginList 0x571f560 (0xad4f8dc {92ca9dcd-5622-4bba-a805-5e9f541bd8c9} 0xad4f8e8): stub 2020-10-13 09:49:55.940 wine64-preloader[2946:3920119] *** WARNING: Method convertPointToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications. 2020-10-13 09:49:55.940 wine64-preloader[2946:3920119] *** WARNING: Method convertPointFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications. 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0033:fixme:winsock:WS_setsockopt SO_SNDBUF ignoring request to disable send buffering 0053:fixme:bcrypt:key_asymmetric_init not implemented on Mac 0052:fixme:bcrypt:key_asymmetric_init not implemented on Mac 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 005e:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 005e:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 005e:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0060:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0060:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0060:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (000300A0, 0033DE98) stub 0009:err:ole:RevokeDragDrop invalid hwnd 00010112 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0062:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0062:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0062:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0064:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0064:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0064:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=0000000000000000): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=3): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=1): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=0): stub 0025:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=0000000000000000, edge=2): stub 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0066:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0066:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0066:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0068:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0068:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0068:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 006a:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 006a:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 006a:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 006c:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 006c:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 006c:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 006e:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 006e:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 006e:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0070:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0070:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0070:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0072:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0072:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0072:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0074:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0074:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0074:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0076:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0076:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0076:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0078:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0078:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0078:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 007a:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 007a:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 007a:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 007c:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 007c:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 007c:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 007e:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 007e:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 007e:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0080:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0080:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0080:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0082:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0082:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0082:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0084:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0084:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0084:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0086:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0086:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 0086:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files (x86)\\Steam\\logs\\cef_log.txt" 0088:err:module:im RéponsesDimanche 18 Octobre 2020 à 10:34
Dimanche 18 Octobre 2020 à 10:55
Jeudi 29 Octobre 2020 à 15:09
Edité par JumeBug |
||
mastahk | Lundi 5 Octobre 2020 à 22:56 | ||
mastahk
|
MessagesCannot get Steam to run, will crash etc. and when runninh not show library or store. Running Mac os 10.15.7 Réponses |
||
BlackScreenIssue | Dimanche 4 Octobre 2020 à 7:19 | ||
BlackScreenIssue
|
MessagesI have been trying to run Skyrim via Steam through playonmac (v 4.4.1) but whenever I click "Play" from the games title screen, a black screen comes up (with audio working). I have tried uninstalling and reintalling steam and Skyrim as well as uninstalling and reinstalling playonmac. I'm running Catalina OSX (10.15) , but even downgraded to High Seirra (10.13) to see if that would resolve it. No matter what I do, same issue (black screen after clicking "Play, with sound). I am running on a late 2017 MacBook pro (2.8 GHz Quad-Core Intel Core i7, 16 GB 2133 MHz LPDDR3, Radeon Pro 555 2 GB & Intel HD Graphics 630 1536 MB). Please help Réponses |
||
Ulysses219 | Mercredi 23 September 2020 à 18:52 | ||
Ulysses219
|
MessagesI have a problem where I can get steam to work with the "wine steam.exe -no-browser +open steam://open/minigameslist" argument. I have also tried to install other games, and they are working just fine RéponsesEdité par Ulysses219 |
||
MacGamersExist | Vendredi 28 Aoüt 2020 à 18:27 | ||
MacGamersExist
|
MessagesOS : macOS 11 Big Sur Beta 5 (yes) PlayOnMac Version : 4.4.1
Edit: updated images + typo
I've got the same black screen at launch, but then I hit a fatal error "DWrite.dll is missing" when I tried to launch Big Picture. So, I enabled the dwrite.dll library as well as the gameoverlayrenderer.dll in the Wine configuration, and managed to get rid of the black screen. Almost everything seems to work, but weirdly enough Steam does not want to connect to the internet for all the assets and the friendlist, whereas it's ok for downloading games. Moreover, there is no problem to download, install and play games ! RéponsesLundi 31 Aoüt 2020 à 15:09
Edité par MacGamersExist |
||
Dadu042 | Lundi 10 Aoüt 2020 à 11:59 | ||
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI've try to fix the 'black center of the window' issue without success. Differences@@ -1,24 +1,23 @@ -#!/bin/bash - +#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog -# Wine version used : a lot -# Distribution used to test : Debian Testing +# Wine version used : Please refer to https://appdb.winehq.org/objectManager.php?sClass=application&iId=1163 +# Distribution used to test : Xubuntu 18.04 amd64 # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # -# FRENCH: Ce script est partculier, il permet d'installer Steam sur autant +# FRENCH: Ce script est particulier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. -# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que -# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, -# par contre il est difficile de le désinstaller. -# On installe donc seulement gecko qui est indispensable, et on évite le reste. +# Il faut donc être vigilent, et mettre le moins de paquets possible, afin que +# l'utilisateur puisse les réinstaller à sa guise. +# Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. +# On installe donc seulement Gecko qui est indispensable, et on évite le reste. # ############################################################## - + # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext @@ -26,18 +25,30 @@ # wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 +# [Dadu042] (2020-08-10 10-00) +# [CHANGED] Wine 4.21 -> 5.0.1 +# [CHANGED] POL_SetupWindow_VMS moved. +# [CHANGED] Comments + +# KNOWN ISSUES : +# - (2020-08) Wine amd64 4.21, 5.0.1, 5.12: the center of the Steam window is black (top and bottom menus does appear). Tried: Gecko. +# +# KNOWN ISSUES (FIXED): +# - Wine amd64 5.0.1: X + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Steam" -WINEVERSION="4.21" +WINEVERSION="5.0.1" GAME_VMS="256" - -#starting the script + +# Starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" - + # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" @@ -46,45 +57,48 @@ PREFIX="Steam" fi +# Asking about memory size of graphic card +POL_SetupWindow_VMS "$GAME_VMS" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" + +# Forcing x86 to avoid any possible x64 related bugs +POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix -POL_System_SetArch "x86" # Forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" - + # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" - + # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" + +cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" +POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" # Installing Steam -cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" -POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" - POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" - -# Asking about memory size of graphic card -POL_SetupWindow_VMS "$GAME_VMS" - + + ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix - -# Making shortcut + +# Make shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" - -#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" - - -POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nrun this installer again.')" "$TITLE" - + +# POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" + + +POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive, you can run this installer again.')" "$TITLE" + POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog # Wine version used : Please refer to https://appdb.winehq.org/objectManager.php?sClass=application&iId=1163 # Distribution used to test : Xubuntu 18.04 amd64 # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # # FRENCH: Ce script est particulier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, afin que # l'utilisateur puisse les réinstaller à sa guise. # Note: Il est facile d'installer vcrun2005, par contre il est difficile de le désinstaller. # On installe donc seulement Gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [Quentin Paris] (2018-10-18) # wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 # [Dadu042] (2020-08-10 10-00) # [CHANGED] Wine 4.21 -> 5.0.1 # [CHANGED] POL_SetupWindow_VMS moved. # [CHANGED] Comments # KNOWN ISSUES : # - (2020-08) Wine amd64 4.21, 5.0.1, 5.12: the center of the Steam window is black (top and bottom menus does appear). Tried: Gecko. # # KNOWN ISSUES (FIXED): # - Wine amd64 5.0.1: X [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="5.0.1" GAME_VMS="256" # Starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Forcing x86 to avoid any possible x64 related bugs POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" # Installing Steam POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Make shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" # POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive, you can run this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
kristofm | Jeudi 23 Juillet 2020 à 19:11 | ||
kristofm
|
MessagesI've tried to run Steam on Catalina 10.15.6 It's totally black, I can't see anything. I've tried a couple of settings which I've read on the Crossover forum and should have helped, but unfortunately, none of them worked. It's still the black emptiness. Does anybody have an idea what else should I try? RéponsesMercredi 5 Aoüt 2020 à 21:34
Lundi 10 Aoüt 2020 à 6:49
Vendredi 28 Aoüt 2020 à 18:40
Dimanche 18 Octobre 2020 à 10:54
|
||
pheon | Dimanche 21 Juin 2020 à 19:34 | ||
pheon
|
MessagesI have tried to install Steam, but can't get it to work. I have tried the installers by Quentin PÂRIS and Dadu042 on this page. Each time I get a pop-up window as below. `Error in Main The Debug log file has lines like wine: Read access denied for device L"\\??\\D:\\", FS volume label and serial are not available. wine: Read access denied for device L"\\??\\E:\\", FS volume label and serial are not available. wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial are not available.
When Steam does load, I can't enter my Steam User name, pressing keys has not effect.
Réponses |
||
Dadu042 | Jeudi 30 Avril 2020 à 10:16 | ||
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -21,9 +21,11 @@ # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) -# gettext +# gettext +# [Quentin Paris] (2018-10-18) +# wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) -# Wine 3.17 (outdated) -> 4.21 +# Wine 3.17 (outdated) -> 4.21 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog # Wine version used : a lot # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # # FRENCH: Ce script est partculier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # On installe donc seulement gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [Quentin Paris] (2018-10-18) # wine 2.12-staging -> 3.17 # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="4.21" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # Forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" # Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nrun this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
Dadu042 | Jeudi 30 Avril 2020 à 10:13 | ||
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,40 +1,42 @@ #!/bin/bash # Date : (2010-02-10 16:30) -# Last revision : (2012-07-21 21:00) -# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 +# Last revision : see changelog +# Wine version used : a lot # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # -# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on -# souhaite. +# ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # +# FRENCH: Ce script est partculier, il permet d'installer Steam sur autant +# de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. -# -# On installe donc seulement gecko qui est indispensable, et on évite le reste +# On installe donc seulement gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext +# [Dadu042] (2020-04-30 10-00) +# Wine 3.17 (outdated) -> 4.21 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="3.17" +WINEVERSION="4.21" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" -# Si le prefix existe, on propose d'en faire un autre +# If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" @@ -46,7 +48,7 @@ POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix -POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs +POL_System_SetArch "x86" # Forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies @@ -55,11 +57,11 @@ POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" -#downloading latest Steam +# Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" -#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" +# POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" -#Installing Steam +# Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" @@ -70,17 +72,17 @@ POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam -# Note : semble ne plus être nécéssaire désormais? +# Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut -POL_Shortcut "Steam.exe" "$TITLE" +POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" -#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" +#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" -POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nrun this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : see changelog # Wine version used : a lot # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # ENGLISH: This script is specific, it allow to install Steam for as many prefix the user wishes. # # FRENCH: Ce script est partculier, il permet d'installer Steam sur autant # de préfixes que le souhaite l'utilisateur. # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # On installe donc seulement gecko qui est indispensable, et on évite le reste. # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [Dadu042] (2020-04-30 10-00) # Wine 3.17 (outdated) -> 4.21 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="4.21" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # If the prefix already exist, we can create a new one. if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # Forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" # Downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" # POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" # Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : seems not necessary nowadays ? (2018) POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" "" "" "Game;" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nrun this installer again.')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
lolhope | Mercredi 6 Novembre 2019 à 23:43 | ||
lolhope
|
MessagesHello there, just yesterday I ran Steam with Windows XP on my 2016 Macbook Pro with macOS Mojave no problem, but today after a shutdown it would fail to open greeting me with the message "The Steam application is no longer supported on your device". I changed the wincfg to run the app on Windows 2008 and it worked. I tried it on Windows Vista but received the same message. Now Steam is using the recently updated design that won't really allow me to interact with much, can't even get to the Library since they updated that last week as well. Wondering what made the error appear to begin with and if there is a way to fix this, or even how to get around the updated Steam to download from the Library Réponses |
||
acidkiss | Jeudi 31 Octobre 2019 à 21:24 | ||
acidkiss
|
MessagesCan't launch Steam library anymore since last Steam update. I'm still running *Mojave*. Any help would be greatly appreciated. Thx. Réponses |
||
jazon123 | Jeudi 31 Octobre 2019 à 14:18 | ||
jazon123
|
Messagessince today my steam account does not start anymore MacsOS Mojave, MacBook error message always the same "steam has crashed, for more infos visit playonmac.com" (or similar, I use German version. My steam account works when I start my VM, so thats no a steam issue. Steam is starting but wont show my library, the shop or anything, just black.
can someone help? RéponsesEdité par jazon123 |
||
mindevis | Mercredi 28 Aoüt 2019 à 19:41 | ||
mindevis
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesChanged Wine version 4.14-staging Tested on Kubuntu 19.04 Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="3.17" +WINEVERSION="4.14-staging" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="4.14-staging" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesJeudi 31 Octobre 2019 à 21:25
|
||
matt30bis | Vendredi 28 Décembre 2018 à 8:07 | ||
matt30bis
|
MessagesBonjour, je viens d'installer Kubuntu 18.04.1 sur ma machine. J'ai ensuite installer Play On Linux 4.2.12 et Steam. Mais lorsque je lance Steam je n'ai pas accés à la page du magasin et quand je veux installer un jeu, j'obtiens ce message : «Une erreur s'est produite lors de l'installation de "nom_du_jeu" (serveurs de contenu inaccessible). Le log de POL est le suivant :
[12/28/18 07:47:30] - Running wine-3.17 Steam.exe (Working directory : /home/mathias/.PlayOnLinux/wineprefix/Steam/drive_c/Program Files/Steam) 0021:err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type 0021:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\WineBus": c0000142 0014:err:service:process_send_command service protocol error - failed to write pipe! 000f:fixme:service:scmdatabase_autostart_services Auto-start service L"WineBus" failed to start: 1114 0009:fixme:shell:SetCurrentProcessExplicitAppUserModelID L"Valve.Steam.Client": stub 0009:fixme:ntdll:EtwEventRegister ({47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f007070, 0x3f04a1d8, 0x3f04a1d0) stub. 0009:fixme:ntdll:EtwEventRegister ({58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f007070, 0x3f04a210, 0x3f04a208) stub. 0009:fixme:ntdll:EtwEventRegister ({3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f007070, 0x3f04a1a0, 0x3f04a198) stub. 0009:fixme:ntdll:EtwEventRegister ({1432afee-73b0-42ce-9821-7e134361b433}, 0x3f007070, 0x3f04a248, 0x3f04a240) stub. 0009:fixme:ntdll:EtwEventRegister ({4372afee-73b0-42ce-9821-7e134361b519}, 0x3f007070, 0x3f04a280, 0x3f04a278) stub. 0009:fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. 0009:fixme:shell:SetCurrentProcessExplicitAppUserModelID L"Valve.Steam.Client": stub 002a:fixme:win:RegisterDeviceNotificationW (hwnd=0x20050, filter=0x422fdec,flags=0x00000000) returns a fake device notification handle! 0009:fixme:win:RegisterDeviceNotificationW (hwnd=0x2005c, filter=0x32e604,flags=0x00000004) returns a fake device notification handle! 0009:fixme:imm:ImmGetOpenStatus (0x1b86c0): semi-stub 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\logs\\cef_log.txt" 0009:fixme:dwmapi:DwmSetWindowAttribute (0x10094, 2, 0x32dec4, 4) stub 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (0x10094, 0x32deb4) stub 002c:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 0009:fixme:advapi:StopTraceA (0, "Steam Event Tracing", 0x32e144) stub 0009:fixme:advapi:StartTraceA (0x32e1d0, "Steam Event Tracing", 0x32e144) stub 0009:fixme:advapi:OpenTraceA 0x32df10: stub 0009:fixme:advapi:EnableTrace (1, 0x10, 4, {22fb2cd6-0e7b-422b-a0c7-2fad1fd0e716}, cafe4242): stub 0009:fixme:advapi:CloseTrace cafe4242: stub 002f:fixme:advapi:ProcessTrace 0x4b5df98 1 (nil) (nil): stub 002c:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 002c:err:module:attach_dlls Importing dlls for L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 0009:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0038:fixme:win:RegisterDeviceNotificationA (hwnd=0x1009c, filter=0x717f924,flags=0x00000004) returns a fake device notification handle! 0039:fixme:wbemprox:wbem_locator_ConnectServer unsupported flags 0039:fixme:wbemprox:client_security_SetBlanket 0xf68b9f00, 0x1ee5390, 10, 0, (null), 3, 3, (nil), 0x00000000 0039:fixme:wbemprox:client_security_Release 0xf68b9f00 0017:fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled 0039:fixme:wbemprox:enum_class_object_Next timeout not supported 0017:fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled 0032:fixme:iphlpapi:NotifyAddrChange (Handle 0x208032c, overlapped 0x2080330): stub 0040:err:process:get_process_cpu L"C:\\Program Files\\Steam\\bin\\gldriverquery64.exe" uses unsupported architecture (0000) 0009:fixme:dwmapi:DwmExtendFrameIntoClientArea (0x100a2, 0x32e30c) stub 0042:fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform 0042:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 10 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 10 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 48 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0045:fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x33f888,0x00000000), stub! 0045:fixme:win:RegisterTouchWindow (0x200ae 00000003): stub 0049:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 0049:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000003-0000-0000-c000-000000000046} (unknown) 0049:fixme:shell:CustomDestinationList_QueryInterface not implemented for {00000019-0000-0000-c000-000000000046} (unknown) 0049:fixme:shell:CustomDestinationList_BeginList 0x588f890 (0x833f9fc {92ca9dcd-5622-4bba-a805-5e9f541bd8c9} 0x833fa08): stub 0045:fixme:wgl:X11DRV_wglChoosePixelFormatARB unused pfAttribFList 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0032:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet 0009:fixme:imm:ImmReleaseContext (0x100a2, 0x5863dd8): stub 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0042:fixme:bcrypt:key_asymmetric_verify GnuTLS does not support algorithm 11 with hash len 32 0042:fixme:crypt:CNG_VerifySignature Failed to verify signature: c0000002 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\logs\\cef_log.txt" 0009:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\Program Files\\Steam\\logs\\cef_log.txt" 004f:err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found 004f:err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found 004f:err:module:attach_dlls Importing dlls for L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135 Sauriez?vous d'où peut venir ces problèmes ?
RéponsesVendredi 28 Décembre 2018 à 12:23
|
||
Quentin PÂRIS | Jeudi 18 Octobre 2018 à 0:03 | ||
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="2.12-staging" +WINEVERSION="3.17" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="3.17" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
pitichampi | Vendredi 12 Octobre 2018 à 9:55 | ||
pitichampi
|
MessagesIt works but I encountered a few issues. I did find the solutions by you but also somewhere else so here are them : 1 : List of games displayed but not the store or anything else : 2.12 staging doesn't work anymore. You can use 3.12 or higher version (for me, 3.17 works fine). You need to add this argument : -no-cef-sandbox 2 : Can't download games (content servers unreachable) The best answer can be found there : https://askubuntu.com/questions/1046951/when-downloading-a-windows-steam-game-over-ubuntu-wine-i-get-the-error-content Be aware that you have to use tabs as described in the post (else it will fail).
RéponsesVendredi 12 Octobre 2018 à 10:01
Samedi 13 Octobre 2018 à 19:23
|
||
tom.sharpe | Dimanche 9 September 2018 à 17:14 | ||
tom.sharpe
|
MessagesThere is a problem with this installation that I think many people know about: namely that the Steam store, community, news and other things all just come up black for many users. I know that the standard solution to this problem is to add the argument 'no-cef-sandbox' and change the Windows version to XP in the Wine configuration. This workaround has worked fine for ages, but Steam is going to stop running on XP and Vista on 01/01/2019. Therefore we need a solution that doesn't require the Windows version to be set to anything older than Windows 7 (or potentially some other sneaky solution that avoidable the issue). RéponsesSamedi 6 Octobre 2018 à 21:33
|
||
AsciiWolf | Vendredi 25 Mai 2018 à 17:22 | ||
AsciiWolf
|
|||
mitcoes | Samedi 31 Mars 2018 à 17:08 | ||
mitcoes
|
Messages2 Installers PLEASE Steam32 and Steam64 And if it can be a 3.5 staging version with Steam64, Battlenet, and Origin RéponsesDimanche 16 Décembre 2018 à 16:43
|
||
gerett | Dimanche 21 Janvier 2018 à 1:01 | ||
gerett
|
MessagesJ'avais un problème au lancement de STEAM, l'écran restait noir. Dans les erreurs j'avais : Winebus.sys non trouvé. Il faut l'ajouté dans les bibliothèques. libudev.so non trouvé. Ajouter le paquet libudev-dev résout le problème Ces 2 points ne résolvent pas l'affichage. Après recherches, j'ai trouvé sur le forum STEAM : il faut ajouter "-no-cef-sandbox" comme argument à STEAM L'affichage fonctionne enfin! RéponsesDimanche 21 Janvier 2018 à 4:34
|
||
QBIT | Samedi 20 Janvier 2018 à 23:23 | ||
QBIT
|
MessagesHello, I have This PlayonLinux Version Installed ,I log in in my Steam acoount , but i have no possible to get in my steam its going directly in background and ibecome it not in front no chat , no libary ... pls help i use Ubuntu 16.04
Réponses |
||
countdownto3 | Vendredi 12 Janvier 2018 à 21:31 | ||
countdownto3
|
MessagesThe window loads up and I am able to view my library, but the browser window of the store will not load and stays black. My internet is working just fine, so I don't know what the problem is. RéponsesSamedi 31 Mars 2018 à 13:21
Dimanche 9 September 2018 à 23:28
|
||
ingreenheaven | Lundi 24 Juillet 2017 à 22:26 | ||
ingreenheaven
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe multiplayer games on age of empires (and some other games) were not working with 2.12-staging. This is now fixed with 2.13 release. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="2.12-staging" +WINEVERSION="2.13" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="2.13" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
ingreenheaven | Dimanche 16 Juillet 2017 à 1:23 | ||
ingreenheaven
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe older version of wine doesn't work anymore. 2.12-staging works, but somehow the multiplayer games are not working. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="2.12-staging" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="2.12-staging" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesDimanche 16 Juillet 2017 à 22:41
Lundi 17 Juillet 2017 à 12:41
Lundi 17 Juillet 2017 à 18:41
Mardi 18 Juillet 2017 à 17:46
Mercredi 19 Juillet 2017 à 20:37
Vendredi 21 Juillet 2017 à 7:06
Vendredi 21 Juillet 2017 à 7:46
|
||
ingreenheaven | Mercredi 12 Juillet 2017 à 6:34 | ||
ingreenheaven
|
MessagesThe latest version of steam doesn't work. Not sure what happened. RéponsesJeudi 13 Juillet 2017 à 16:37
Jeudi 13 Juillet 2017 à 16:53
Jeudi 13 Juillet 2017 à 16:59
Jeudi 13 Juillet 2017 à 16:59
Vendredi 14 Juillet 2017 à 1:51
Vendredi 14 Juillet 2017 à 2:07
Vendredi 14 Juillet 2017 à 2:14
Vendredi 14 Juillet 2017 à 2:14
Vendredi 14 Juillet 2017 à 22:25
Dimanche 16 Juillet 2017 à 0:34
|
||
Fivelek | Dimanche 30 Avril 2017 à 3:34 | ||
Fivelek
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI've made an updated version of Tinou's script which uses now Wine 2.4-staging with Windows XP as the Wine's Windows version and a diclaimer that tells how to make the Store and other web things working (steamwebhelper.exe) Differences@@ -1,15 +1,16 @@ #!/bin/bash # Date : (2010-02-10 16:30) -# Last revision : (2012-07-21 21:00) -# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 -# Distribution used to test : Debian Testing +# Last revision : (2017-04-30 03:04 Paris) +# Wine version used : 2.4-staging +# Distribution used to test : Ubuntu 16.04 LTS # Author : Tinou +# Author : Fivelek # Licence : Retail # Only For : http://www.playonlinux.com # -# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on -# souhaite. +# Ce script est particulier, il permet d'installer Steam sur autant de préfixe qu'on +# le souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, @@ -27,7 +28,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="2.4-staging" GAME_VMS="256" #starting the script @@ -49,6 +50,8 @@ POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "winxp" + # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts @@ -79,6 +82,7 @@ #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'To get the Store and other web things working (steamwebhelper.exe), you have to add the argument -cef-no-sandbox in the PlayOnLinux configuration of Steam and ONLY use Windows XP as the Windows version of Wine. You can change the Windows version to play games that requires an higher version of Windows but Steam functionalities that requires the web browser would not work at all.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2017-04-30 03:04 Paris) # Wine version used : 2.4-staging # Distribution used to test : Ubuntu 16.04 LTS # Author : Tinou # Author : Fivelek # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est particulier, il permet d'installer Steam sur autant de préfixe qu'on # le souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="2.4-staging" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "winxp" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'To get the Store and other web things working (steamwebhelper.exe), you have to add the argument -cef-no-sandbox in the PlayOnLinux configuration of Steam and ONLY use Windows XP as the Windows version of Wine. You can change the Windows version to play games that requires an higher version of Windows but Steam functionalities that requires the web browser would not work at all.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesLundi 1 Mai 2017 à 0:55
Lundi 1 Mai 2017 à 13:31
Lundi 1 Mai 2017 à 15:09
Mercredi 3 Mai 2017 à 21:19
Jeudi 4 Mai 2017 à 19:16
Samedi 17 Juin 2017 à 21:02
|
||
marytheidiot | Dimanche 16 Avril 2017 à 22:56 | ||
marytheidiot
|
MessagesI'm sorry if this is the wrong place for this, but how do I change the audio dtiver to alsa? I can see the that the current driver is winepulse.drv, but I can't change it. I'm trying to play Tales of Zestiria but the audio is absolutely terrible and I read online that changing the driver could fix it. Réponses |
||
TungdilGoudhand | Mercredi 1 Mars 2017 à 22:45 | ||
TungdilGoudhand
|
MessagesHi, Steam runs fine but i can't seems to connect with the Chat, and my friends. In age of empires 2 it means i can't be invited to a game, or invite a friend myself. I can, however play a multiplyplayergame. So it's nothing Port-related. It's PLayonlinux on an Ubuntu 16.4 64 Bit Thinkpad.
Thanks in advance. Réponses |
||
ScissorMeWhiskers | Samedi 18 Février 2017 à 12:02 | ||
ScissorMeWhiskers
|
MessagesHi I'm having a problem with steam on mac. Everything works fine, but when a game i installed needs to update it gets stuck at 100% at steam freezes. It freezes even when I close and reopen steam. The only way to fix it is to completely reinstall steam which is pretty annoying seeing as a game on steam updates fairly often. Is there a fix for this? Besides this issue steam on PlayOnMac is working amazing [: I'm running OSX Sierra btw (not sure if it matters or not) Réponses |
||
Jolijt | Vendredi 27 Janvier 2017 à 1:48 | ||
Jolijt
|
MessagesHello, Steam installed well, but when I wanted to play Age of Empires 2 with DLC, it froze at the start of a new game. Setting the Wine version for Steam to 2.0 fixed it. I am new to PlayOnMac and I don't know if I will break the instances of other people by suggesting to set it to 2.0. What should I do? Thanks! Réponses |
||
Zabuza | Dimanche 15 Janvier 2017 à 2:07 | ||
Zabuza
|
MessagesError, what can i do?: 0x100aa6d9: int $3 RéponsesLundi 6 Février 2017 à 21:17
|
||
tsteele | Mardi 10 Janvier 2017 à 0:15 | ||
tsteele
|
MessagesI try to open downloaded games from the steam wine. Before I open the app, playonmac says that there is an error. this is the debug log lemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting [01/09/17 15:59:46] - Running wine-1.7.53-steam_crossoverhack Steam.exe (Working directory : /Users/tylersteele/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files/Steam) [2017-01-09 15:59:50] Startup - updater built Dec 19 2016 18:19:01
Looks like steam didn't shutdown cleanly, scheduling immediate update check
[2017-01-09 15:59:50] Checking for update on startup
[2017-01-09 15:59:50] Checking for available updates...
[2017-01-09 15:59:51] Package file ssa2017_all.zip.c06a903610427aa7038d861c8bb68c18ea06ee5e missing or incorrect size
[2017-01-09 15:59:51] Downloading update (0 of 480 KB)...
[2017-01-09 15:59:51] Downloading update (480 of 480 KB)...
[2017-01-09 15:59:51] Download complete.
[2017-01-09 15:59:51] uninstalled manifest found in C:\Program Files\Steam\package\steam_client_win32 (1).
[2017-01-09 15:59:51] Found pending update
[2017-01-09 15:59:51] Installing update...
[2017-01-09 15:59:51] Extracting package...
[2017-01-09 15:59:58] Installing update...
[2017-01-09 15:59:59] Cleaning up...
[2017-01-09 15:59:59] Update complete, launching Steam...
[2017-01-09 15:59:59] Shutdown
[0109/160000:ERROR:network_change_notifier_win.cc(170)] WSALookupServiceBegin failed with: 8
[01/09/17 16:00:14] - Running wine-1.7.53-steam_crossoverhack Steam.exe (Working directory : /Users/tylersteele/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files/Steam) fixme:ver:GetCurrentPackageId (0x33e490 0x0): stub fixme:process:ProcessIdToSessionId Unsupported for other processes. [0109/160024:WARNING:raw_channel.cc(208)] Shutting down RawChannel with write buffer nonempty
wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._initialize_onexit_table, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting
perezj |
Vendredi 2 Décembre 2016 à 11:38 |
|
perezj
|
MessagesI try to download steam and i can't , i have the message L'adresse n'a pas été reconnue Firefox ne sait pas ouvrir cette adresse car l'un des protocoles suivants (playonlinux) n'est associé à aucun programme ou n'est pas autorisé dans ce contexte. Il est peut-être nécessaire d'installer une autre application pour ouvrir ce type d'adresse. RéponsesVendredi 2 Décembre 2016 à 14:40
|
||
AsciiWolf | Samedi 22 Octobre 2016 à 22:02 | ||
AsciiWolf
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -21,13 +21,14 @@ # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) +# [AsciiWolf] (2016-10-22 20-00) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="1.9.20-staging" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # [AsciiWolf] (2016-10-22 20-00) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.9.20-staging" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesVendredi 28 Octobre 2016 à 3:45
Vendredi 4 Novembre 2016 à 16:08
Dimanche 6 Novembre 2016 à 13:03
Dimanche 6 Novembre 2016 à 22:36
Mercredi 30 Novembre 2016 à 14:30
|
||
AsciiWolf | Dimanche 16 Octobre 2016 à 12:36 | ||
AsciiWolf
|
MessagesCould anyone please update the installer to use more recent version of Wine? Thanks! Réponses |
||
PrBulbasaur | Mardi 27 September 2016 à 18:33 | ||
PrBulbasaur
|
MessagesRebonjour, Steam ne veux pas se connecter au magasin Steam et à la Communauté, mais il arrive tout de même à se connecter au chat avec mes amis. De plus, lorsque je lance GameMaker:Studio avec Steam, celui ci lance le programme d'installation de Microsoft .NET, mais le programme ne se télécharge jamais, comme si il n'y avait pas internet Merci d'avance de votre aide. RéponsesMercredi 5 Octobre 2016 à 14:52
Mardi 25 Octobre 2016 à 19:46
Samedi 7 Janvier 2017 à 15:12
|
||
PrBulbasaur | Dimanche 11 September 2016 à 8:45 | ||
PrBulbasaur
|
MessagesBonjour, j'ai eu un problème avec Steam, le logiciel en lui même fonctionne très bien, mais dès que je veux lancer un jeu (qui est censé fonctionner sous windows) Steam affiche la fenêtre "Lancment de [insérez le nom d'un jeu]" mais ne le lance jamais (j'ai attendu trèèèèès longtemps), et ce pour tout mes jeux Steam. Merci d'avance de votre aide. RéponsesDimanche 11 September 2016 à 8:47
Dimanche 11 September 2016 à 15:30
|
||
Liszur | Dimanche 26 Juin 2016 à 20:45 | ||
Liszur
|
MessagesHy, 0x100aa6d9: int $3 Modules: Module Address Debug info Name (102 modules) PE 400000- 6d6000 Deferred steamwebhelper PE 2d70000- 2e87000 Deferred crashhandler PE 10000000-130eb000 Export libcef ELF 7b800000-7ba6b000 Deferred kernel32<elf> \-PE 7b820000-7ba6b000 \ kernel32 ELF 7bc00000-7bcf0000 Dwarf ntdll<elf> \-PE 7bc10000-7bcf0000 \ ntdll ELF 7bf00000-7bf03000 Deferred <wine-loader> ELF 7d512000-7d58f000 Deferred wininet<elf> \-PE 7d520000-7d58f000 \ wininet ELF 7d58f000-7d600000 Deferred setupapi<elf> \-PE 7d5a0000-7d600000 \ setupapi ELF 7d705000-7d950000 Deferred shell32<elf> \-PE 7d710000-7d950000 \ shell32 ELF 7d9f3000-7da1a000 Deferred mpr<elf> \-PE 7da00000-7da1a000 \ mpr ELF 7da7f000-7da94000 Deferred libtasn1.so.6 ELF 7da94000-7dacb000 Deferred p11-kit-trust.so ELF 7dacb000-7dae1000 Deferred libgpg-error.so.0 ELF 7dae1000-7db43000 Deferred libp11-kit.so.0 ELF 7db4e000-7db63000 Deferred gnome-keyring-pkcs11.so ELF 7db63000-7dbe8000 Deferred libgcrypt.so.11 ELF 7dbe8000-7dcb1000 Deferred libgnutls.so.26 ELF 7dcb1000-7dcea000 Deferred uxtheme<elf> \-PE 7dcc0000-7dcea000 \ uxtheme ELF 7dcea000-7dcf1000 Deferred libxfixes.so.3 ELF 7dcf1000-7dcfc000 Deferred libxcursor.so.1 ELF 7dcfc000-7dd0f000 Deferred libxi.so.6 ELF 7dd0f000-7dd13000 Deferred libxcomposite.so.1 ELF 7dd13000-7dd20000 Deferred libxrandr.so.2 ELF 7dd20000-7dd2c000 Deferred libxrender.so.1 ELF 7dd2c000-7dd33000 Deferred libxxf86vm.so.1 ELF 7dd33000-7dd37000 Deferred libxinerama.so.1 ELF 7dd37000-7dd3e000 Deferred libxdmcp.so.6 ELF 7dd3e000-7dd42000 Deferred libxau.so.6 ELF 7dd42000-7dd68000 Deferred libxcb.so.1 ELF 7dd68000-7deb3000 Deferred libx11.so.6 ELF 7deb3000-7dec8000 Deferred libxext.so.6 ELF 7decb000-7ded4000 Deferred libffi.so.6 ELF 7ded4000-7dee6000 Deferred libtasn1.so.3 ELF 7dee8000-7df7c000 Deferred winex11<elf> \-PE 7def0000-7df7c000 \ winex11 ELF 7df7c000-7dfa0000 Deferred imm32<elf> \-PE 7df80000-7dfa0000 \ imm32 ELF 7dfee000-7e018000 Deferred libexpat.so.1 ELF 7e018000-7e061000 Deferred libfontconfig.so.1 ELF 7e061000-7e08c000 Deferred libpng12.so.0 ELF 7e08c000-7e0a5000 Deferred libz.so.1 ELF 7e0a5000-7e155000 Deferred libfreetype.so.6 ELF 7e155000-7e190000 Deferred ws2_32<elf> \-PE 7e160000-7e190000 \ ws2_32 ELF 7e190000-7e1a9000 Deferred libresolv.so.2 ELF 7e1c9000-7e1f1000 Deferred iphlpapi<elf> \-PE 7e1d0000-7e1f1000 \ iphlpapi ELF 7e1f1000-7e220000 Deferred netapi32<elf> \-PE 7e200000-7e220000 \ netapi32 ELF 7e220000-7e253000 Deferred secur32<elf> \-PE 7e230000-7e253000 \ secur32 ELF 7e253000-7e27d000 Deferred msacm32<elf> \-PE 7e260000-7e27d000 \ msacm32 ELF 7e27d000-7e337000 Deferred winmm<elf> \-PE 7e290000-7e337000 \ winmm ELF 7e337000-7e396000 Deferred oleacc<elf> \-PE 7e340000-7e396000 \ oleacc ELF 7e396000-7e4a2000 Deferred comctl32<elf> \-PE 7e3a0000-7e4a2000 \ comctl32 ELF 7e4a2000-7e4b9000 Deferred wtsapi32<elf> \-PE 7e4b0000-7e4b9000 \ wtsapi32 ELF 7e4b9000-7e4d1000 Deferred userenv<elf> \-PE 7e4c0000-7e4d1000 \ userenv ELF 7e4d1000-7e614000 Deferred oleaut32<elf> \-PE 7e4f0000-7e614000 \ oleaut32 ELF 7e614000-7e69a000 Deferred rpcrt4<elf> \-PE 7e620000-7e69a000 \ rpcrt4 ELF 7e69a000-7e7e0000 Deferred ole32<elf> \-PE 7e6b0000-7e7e0000 \ ole32 ELF 7e7e0000-7e85b000 Deferred shlwapi<elf> \-PE 7e7f0000-7e85b000 \ shlwapi ELF 7e85b000-7e86e000 Deferred psapi<elf> \-PE 7e860000-7e86e000 \ psapi ELF 7e86e000-7e8b2000 Deferred usp10<elf> \-PE 7e870000-7e8b2000 \ usp10 ELF 7e8ca000-7e944000 Deferred advapi32<elf> \-PE 7e8e0000-7e944000 \ advapi32 ELF 7e944000-7ea65000 Deferred gdi32<elf> \-PE 7e950000-7ea65000 \ gdi32 ELF 7ea65000-7ebc3000 Deferred user32<elf> \-PE 7ea80000-7ebc3000 \ user32 ELF 7ebc3000-7ebd6000 Deferred libnss_files.so.2 ELF 7ebd6000-7ebe3000 Deferred libnss_nis.so.2 ELF 7ebe3000-7ebfe000 Deferred libnsl.so.1 ELF 7ebfe000-7ec08000 Deferred libnss_compat.so.2 ELF 7ef8b000-7efe0000 Deferred libm.so.6 ELF 7efe7000-7f000000 Deferred version<elf> \-PE 7eff0000-7f000000 \ version ELF f73d9000-f73de000 Deferred libdl.so.2 ELF f73de000-f7594000 Dwarf libc.so.6 ELF f7594000-f75b1000 Dwarf libpthread.so.0 ELF f75b7000-f75c0000 Deferred librt.so.1 ELF f75d2000-f7788000 Dwarf libwine.so.1 ELF f778a000-f77af000 Deferred ld-linux.so.2 ELF f77b1000-f77b2000 Deferred [vdso].so Threads: process tid prio (all id:s are in hex) 00000008 Steam.exe 00000057 0 00000056 0 0000004d 0 0000004b 0 00000048 0 00000038 0 00000033 0 00000017 0 00000036 0 00000035 0 0000000b 15 00000021 0 00000022 0 0000003b 0 0000003a 0 00000039 0 00000037 1 00000034 0 00000032 0 00000047 0 00000045 0 00000044 0 00000043 0 00000040 0 00000009 0 0000000e services.exe 0000003f 0 0000001d 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001c 0 00000019 0 00000018 0 00000013 0 0000001a plugplay.exe 00000020 0 0000001f 0 0000001b 0 00000023 explorer.exe 00000029 0 00000028 0 00000027 0 00000024 0 00000041 (D) C:\Program Files\Steam\bin\steamwebhelper.exe 00000055 0 00000016 0 00000031 0 00000030 0 0000002f 0 0000002e 0 0000002d 0 0000003e 0 0000001e 0 <== 0000003c 0 0000003d 0 00000025 0 00000026 0 0000002c 0 0000002b 0 0000002a 0 0000000d 0 0000000c 0 00000042 0 00000051 steamwebhelper.exe 0000005b 0 0000005a 0 00000059 0 00000058 0 00000052 0 System information: Wine build: wine-1.8 Platform: i386 Version: Windows 7 Host system: Linux Host version: 4.4.0-24-generic RéponsesDimanche 26 Juin 2016 à 20:46
|
||
Compte supprimé | Mardi 15 Mars 2016 à 20:21 | ||
Compte supprimé
|
MessagesBonjour ! Je tiens a signaler un problême plutôt genant : tous les caractères à l'intérieur de l'application steam en dehors des jeux sont remplacés par des Carrés (comme quand on reçoit pas un smiley ^^). Je n'ai pas de messages d'erreurs et ne peux donc pas en poster un ici. (Ps: pour signaler qu'un programme marche et un autre non sur steam c'est ou ? ^^. Bioshock 1 marche très bien, mais pas dawn of war :/ ou l'image est noir, le son est pourtant là et on vois le curseur changer d'apparence quelques secondes)
Réponses |
||
Pedroguitou | Vendredi 23 Octobre 2015 à 2:37 | ||
Pedroguitou
|
MessagesBonjour. J'espère que je post au bon endroit, mais j'ai un problème avec Steam, je n'arrive pas à lancer le jeu que je viens d'acheter : Blood Bowl 2. Je suis sur MAC OS X YOSEMITE, version 10.10.5 Ma version de POM est la 4.2.9 Ca me dit que c'est peut-être une erreur dans le programme ou un défaut dans Wine. La version de Wine que j'ai installé est la 1.7.53-steam_crossoverhack
Je précise que j'arrive à lancer mon autre jeu steam, à savoir blood bowl chaos edition.
Voici les détails de l'erreur du problème : ( Ce qui est du charabia pour moi ^^ )
Unhandled exception: page fault on execute access to 0x001100b8 in 32-bit code (0x001100b8). Register dump: CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f EIP:001100b8 ESP:0033eb8c EBP:0033ec08 EFLAGS:00010246( R- -- I Z- -P- ) EAX:0014d198 EBX:0033ed88 ECX:001100b8 EDX:0033ed88 ESI:4c3de7cc EDI:0033eb90 Stack dump: 0x0033eb8c: 450f7e54 0014d198 4c3de7cc 0033ed88 0x0033eb9c: 450f778c 00157d58 4c3e7581 001100f0 0x0033ebac: 4c3e7581 00000003 00000000 0033ec08 0x0033ebbc: 40004395 4c3e7581 450f7d54 00000000 0x0033ebcc: ffffffff 00157d58 0033ed88 4c3de7cc 0x0033ebdc: 00157d58 0033ed88 4c3de7cc 0014d198 0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw- Backtrace: =>0 0x001100b8 (0x0033ec08) 1 0x4c3a0023 D3D11CreateDevice+0x332() in d3d11 (0x0033ee34) 2 0x0041250b in bloodbowl2 (+0x1250a) (0x0033efd4) 3 0x00402306 in bloodbowl2 (+0x2305) (0x0033fe14) 4 0x004198a9 in bloodbowl2 (+0x198a8) (0x0033fe60) 5 0x7b8724fc call_process_entry+0xb() in kernel32 (0x0033fe78) 6 0x7b8763db start_process+0x1ca() in kernel32 (0x0033fee8) 7 0x7bca19fc call_thread_func_wrapper+0xb() in ntdll (0x0033fef8) 8 0x7bca4dcb call_thread_func+0x6a() in ntdll (0x0033ffa8) 9 0x7bca19c2 call_thread_entry_point+0x11() in ntdll (0x0033ffc8) 10 0x7bc5f82b start_process+0x2a() in ntdll (0x0033ffe8) 11 0x4000a69d wine_call_on_stack+0x1c() in libwine.1.0.dylib (0x00000000) 12 0x4000a7c1 wine_switch_to_stack+0x30() in libwine.1.0.dylib (0xfeffef28) 13 0x7bc5f366 LdrInitializeThunk+0x465() in ntdll (0xfeffeff8) 14 0x7b872ebd __wine_kernel_init+0x99c() in kernel32 (0xfeffff28) 15 0x7bc600e2 __wine_process_init+0x1a1() in ntdll (0xfeffff88) 16 0x92a19c25 _pthread_body+0x89() in libsystem_pthread.dylib (0xfeffffa8) 17 0x92a19b9b _pthread_start+0xa1() in libsystem_pthread.dylib (0xfeffffc8) 18 0x92a16e32 thread_start+0x21() in libsystem_pthread.dylib (0xfeffffec) 0x001100b8: enter $0x1100,$0x0 Modules: Module Address Debug info Name (243 modules) PE 400000- 524000 Export bloodbowl2 PE 10000000-100c8000 Deferred sdl2 PE 40001000-401bd000 Stabs libwine.1.0.dylib ELF 41b1e000-41bbd000 Deferred advapi32<elf> \-PE 41b20000-41ba5000 \ advapi32 ELF 41bbd000-41bdb000 Deferred version<elf> \-PE 41bc0000-41bd9000 \ version ELF 41d00000-41ec0000 Deferred user32<elf> \-PE 41d10000-41e75000 \ user32 ELF 41ec0000-41f6b000 Deferred shlwapi<elf> \-PE 41ed0000-41f45000 \ shlwapi ELF 41f6b000-41fa0000 Deferred msacm32<elf> \-PE 41f70000-41f9b000 \ msacm32 ELF 41fa0000-41fca000 Deferred imm32<elf> \-PE 41fb0000-41fc5000 \ imm32 ELF 4474f000-448b7000 Deferred gdi32<elf> \-PE 44750000-44848000 \ gdi32 ELF 448b7000-44b6e000 Deferred shell32<elf> \-PE 448c0000-44b2c000 \ shell32 ELF 44b6e000-44c43000 Deferred winmm<elf> \-PE 44b70000-44c32000 \ winmm ELF 44c43000-44dfa000 Deferred ole32<elf> \-PE 44c50000-44db8000 \ ole32 ELF 44dfa000-44eb8000 Deferred rpcrt4<elf> \-PE 44e00000-44e95000 \ rpcrt4 ELF 44eb8000-45059000 Deferred oleaut32<elf> \-PE 44ec0000-45005000 \ oleaut32 PE 45059000-450e6000 Deferred libfreetype.6.dylib ELF 450e6000-4511e000 Deferred dxgi<elf> \-PE 450f0000-4510e000 \ dxgi ELF 4511e000-45329000 Deferred wined3d<elf> \-PE 45120000-4530c000 \ wined3d ELF 45329000-453f2000 Deferred winemac<elf> \-PE 45330000-453c9000 \ winemac PE 480a8000-48127000 Deferred clouddocs PE 4a800000-4aee8000 Deferred appleintelhd5000graphicsgldriver ELF 4c38a000-4c403000 Stabs d3d11<elf> \-PE 4c390000-4c3e8000 \ d3d11 ELF 7a800000-7a962000 Deferred opengl32<elf> \-PE 7a810000-7a922000 \ opengl32 ELF 7b800000-7bab7000 Stabs kernel32<elf> \-PE 7b810000-7ba7b000 \ kernel32 ELF 7bc00000-7bd3f000 Stabs ntdll<elf> \-PE 7bc10000-7bcff000 \ ntdll ELF 7bf00000-7bf04000 Deferred <wine-loader> PE 90008000-900f3000 Deferred libcrypto.0.9.8.dylib PE 900f3000-9013b000 Deferred applejpeg PE 9013b000-9014f000 Deferred sharing PE 90157000-90244000 Deferred libvmisc.dylib PE 90244000-90310000 Deferred backup PE 90310000-90398000 Deferred osservices PE 90398000-90781000 Deferred liblapack.dylib PE 907d5000-907d6000 Deferred liblaunch.dylib PE 907d6000-907df000 Deferred libsystem_dnssd.dylib PE 907df000-90836000 Deferred libc++.1.dylib PE 90945000-90975000 Deferred dictionaryservices PE 90975000-90978000 Deferred loginsupport PE 90978000-90b6f000 Deferred libicucore.a.dylib PE 90b6f000-90b70000 Deferred coreservices PE 90b70000-90cf9000 Deferred audiotoolbox PE 90cf9000-90d08000 Deferred speechrecognitioncore PE 90d08000-90d17000 Deferred opengl PE 90d17000-90d25000 Deferred speechsynthesis PE 90d25000-90d29000 Deferred help PE 90d29000-90d2a000 Deferred libopenscriptingutil.dylib PE 90d2a000-91085000 Deferred libmecabra.dylib PE 910c6000-910d0000 Deferred diskarbitration PE 910d0000-910d1000 Deferred libkeymgr.dylib PE 910d1000-910d6000 Deferred libgif.dylib PE 910d6000-9114d000 Deferred searchkit PE 9119e000-912e3000 Deferred imageio PE 912e3000-91f10000 Deferred appkit PE 91f10000-91fdc000 Deferred discrecording PE 91fdc000-9202e000 Deferred opencl PE 9202e000-92145000 Deferred desktopservicespriv PE 9214a000-9217e000 Deferred coreservicesinternal PE 9217e000-92186000 Deferred speechrecognition PE 92193000-925c7000 Deferred facecore PE 925c7000-925f5000 Deferred protectedcloudstorage PE 925f5000-92613000 Deferred libcrfsuite.dylib PE 92613000-92721000 Deferred libvdsp.dylib PE 929c3000-929d5000 Deferred libbsm.0.dylib PE 929d5000-929fc000 Deferred iconservices PE 929fc000-92a16000 Deferred libsystem_malloc.dylib PE 92a16000-92a1f000 Stabs libsystem_pthread.dylib PE 92a1f000-92a20000 Deferred veclib PE 92a20000-92c10000 Deferred libobjc.a.dylib PE 92c10000-92c13000 Deferred libradiance.dylib PE 92c13000-92c18000 Deferred iosurface PE 92c18000-92c21000 Deferred findmydevice PE 92c21000-92c2b000 Deferred libcopyfile.dylib PE 931c1000-931cc000 Deferred carbonsound PE 931cc000-931ec000 Deferred libsystem_kernel.dylib PE 931ec000-93248000 Deferred libtiff.dylib PE 93248000-93283000 Deferred debugsymbols PE 93283000-93285000 Deferred trustevaluationagent PE 93521000-93549000 Deferred libdispatch.dylib PE 935ea000-935eb000 Deferred applicationservices PE 93663000-93768000 Deferred libjp2.dylib PE 93768000-93780000 Deferred liblinearalgebra.dylib PE 93783000-93790000 Deferred libcommoncrypto.dylib PE 93909000-9390d000 Deferred libdyld.dylib PE 942d4000-942d7000 Deferred libsystem_configuration.dylib PE 942d7000-942d9000 Deferred libsystem_blocks.dylib PE 942d9000-9430e000 Deferred coredaemon PE 9430e000-94364000 Deferred coreaudio PE 94364000-94366000 Deferred libdiagnosticmessagesclient.dyli PE 94366000-943cb000 Deferred ae PE 94cd9000-94d2b000 Deferred libcups.2.dylib PE 94d2b000-94d3f000 Deferred corebluetooth PE 94d3f000-9513b000 Deferred coregraphics PE 9513b000-95144000 Deferred netfs PE 95144000-95155000 Deferred libgl.dylib PE 95155000-95163000 Deferred libbz2.1.0.dylib PE 95163000-95167000 Deferred servicemanagement PE 95167000-95202000 Deferred colorsync PE 95202000-95209000 Deferred libsystem_networkextension.dylib PE 9521f000-95246000 Deferred libxpc.dylib PE 95246000-95281000 Deferred mediakit PE 95281000-95636000 Deferred corefoundation PE 95636000-95643000 Deferred libcsfde.dylib PE 95647000-9564c000 Deferred commonpanels PE 9564c000-956ca000 Deferred iokit PE 956ca000-957bb000 Deferred diskimages PE 957bb000-957bc000 Deferred carbon PE 95865000-95874000 Deferred libz.1.dylib PE 95874000-958a2000 Deferred glrendererfloat PE 96251000-96257000 Deferred print PE 96257000-9641d000 Deferred quartzcore PE 9641d000-96423000 Deferred libcompiler_rt.dylib PE 96423000-964b6000 Deferred coresymbolication PE 964b6000-9650b000 Deferred hiservices PE 97527000-975b5000 Deferred performanceanalysis PE 975b5000-975c5000 Deferred libxar.1.dylib PE 975c5000-976b7000 Deferred libiconv.2.dylib PE 976b7000-976b9000 Deferred libremovefile.dylib PE 976b9000-97725000 Deferred corewifi PE 97725000-97748000 Deferred multitouchsupport PE 9789c000-978e6000 Deferred libfontregistry.dylib PE 978e6000-978f0000 Deferred libsystem_notify.dylib PE 978f0000-97930000 Deferred navigationservices PE 97930000-97934000 Deferred libextension.dylib PE 97934000-97a4b000 Deferred coretext PE 97a4b000-97a89000 Deferred libsystem_network.dylib PE 97a89000-97abd000 Deferred libsystem_m.dylib PE 97abd000-97b5b000 Deferred ink PE 97b5b000-97b5e000 Deferred securityhi PE 97b5e000-97b7a000 Deferred cfopendirectory PE 97bce000-97bf9000 Deferred libxslt.1.dylib PE 97bf9000-97c1e000 Deferred apple80211 PE 97c1e000-97c28000 Deferred applesrp PE 97c28000-97c48000 Deferred libresolv.9.dylib PE 97c49000-97c52000 Deferred fsevents PE 97fd6000-98412000 Deferred vimage PE 98412000-98445000 Deferred gss PE 98445000-9881f000 Deferred hitoolbox PE 98826000-9883b000 Deferred imagecapture PE 9883b000-9884c000 Deferred langanalysis PE 988a6000-98c08000 Deferred foundation PE 98c08000-98c1a000 Deferred libsystem_coretls.dylib PE 98c44000-98c48000 Deferred libpam.2.dylib PE 98c48000-98c50000 Deferred libunwind.dylib PE 98c50000-98cac000 Deferred languagemodeling PE 98cac000-98d53000 Deferred metadata PE 98d76000-98d79000 Deferred libsystem_secinit.dylib PE 9922a000-9926b000 Deferred libglimage.dylib PE 9926b000-992e2000 Deferred securityfoundation PE 992e2000-99309000 Deferred libc++abi.dylib PE 99431000-99432000 Deferred libunc.dylib PE 99432000-99446000 Deferred libcmph.dylib PE 99446000-9953d000 Deferred libxml2.2.dylib PE 995ae000-995db000 Deferred chunkinglibrary PE 995db000-995f6000 Deferred liblzma.5.dylib PE 995f6000-995fd000 Deferred libsystem_trace.dylib PE 995fd000-99610000 Deferred libsasl2.2.dylib PE 99610000-99616000 Deferred libmacho.dylib PE 99616000-99623000 Deferred libkxld.dylib PE 99650000-9966e000 Deferred ubiquity PE 99985000-9998e000 Deferred libcgcms.a.dylib PE 9998e000-99b3d000 Deferred glengine PE 99b3d000-99bd3000 Deferred libsystem_c.dylib PE 99bd3000-99c10000 Deferred remoteviewservices PE 99cca000-99cee000 Deferred libjpeg.dylib PE 99cee000-99de6000 Deferred libfontparser.dylib PE 99de6000-99e5b000 Deferred heimdal PE 99e5b000-99e60000 Deferred tcc PE 99e60000-99ed8000 Deferred ats PE 99f86000-9a285000 Deferred carboncore PE 9a285000-9a2b4000 Deferred libarchive.2.dylib PE 9a2b4000-9a355000 Deferred qd PE 9a355000-9a371000 Deferred openscripting PE 9a371000-9a3de000 Deferred datadetectorscore PE 9a3de000-9a669000 Deferred security PE 9a669000-9a677000 Deferred protocolbuffer PE 9a677000-9a678000 Deferred audiounit PE 9a678000-9a6d6000 Deferred printcore PE 9a6d6000-9a717000 Deferred symbolication PE 9a717000-9a76d000 Deferred htmlrendering PE 9a76d000-9a779000 Deferred netauth PE 9a779000-9a786000 Deferred libgpusupportmercury.dylib PE 9aa0c000-9aa10000 Deferred libutil.dylib PE 9aa10000-9aa13000 Deferred libsystem_coreservices.dylib PE 9aa13000-9aa3d000 Deferred libsystem_info.dylib PE 9aa3d000-9aa7e000 Deferred libauto.dylib PE 9aa7e000-9aa83000 Deferred libcache.dylib PE 9aa83000-9aa85000 Deferred libsystem.b.dylib PE 9aa85000-9aa88000 Deferred libsystem_sandbox.dylib PE 9aa88000-9aa95000 Deferred crashreportersupport PE 9aa95000-9aa97000 Deferred liblangid.dylib PE 9aa97000-9aadb000 Deferred libglu.dylib PE 9aadb000-9ac0a000 Deferred coreui PE 9ac0a000-9ac8a000 Deferred systemconfiguration PE 9ac92000-9ac97000 Deferred libcorevmclient.dylib PE 9ac97000-9af2f000 Deferred coredata PE 9af2f000-9b062000 Deferred uifoundation PE 9b062000-9b07c000 Deferred kerberos PE 9b07c000-9b0e9000 Deferred libcorecrypto.dylib PE 9b0e9000-9b0ee000 Deferred libheimdal-asn1.dylib PE 9b0ee000-9b10e000 Deferred generationalstorage PE 9b423000-9b426000 Deferred efilogin PE 9b426000-9b5b8000 Deferred libsqlite3.dylib PE 9b5b8000-9b769000 Deferred libglprogrammability.dylib PE 9b769000-9b7b9000 Deferred libcurl.4.dylib PE 9b7b9000-9b7c3000 Deferred commonauth PE 9b852000-9b88d000 Deferred ldap PE 9b88d000-9b901000 Deferred corewlan PE 9b901000-9b90f000 Deferred opendirectory PE 9b90f000-9b9bf000 Deferred iobluetooth PE 9b9bf000-9b9c2000 Deferred libquarantine.dylib PE 9bb2f000-9bb39000 Deferred libgfxshared.dylib PE 9bb39000-9bb69000 Deferred corevideo PE 9bb69000-9bc1c000 Deferred libcorestorage.dylib PE 9bc1c000-9bd8e000 Deferred libblas.dylib PE 9bd8e000-9bd91000 Deferred libcvmspluginsupport.dylib PE 9bde5000-9bde6000 Deferred accelerate PE 9bde6000-9be0d000 Deferred libpng.dylib PE 9be0d000-9c100000 Deferred coreimage PE 9c100000-9c109000 Deferred libcldcpuengine.dylib PE 9c121000-9c139000 Deferred libsystem_asl.dylib PE 9c139000-9c140000 Deferred libsystem_platform.dylib PE 9c140000-9c145000 Deferred ioaccelerator PE 9c145000-9c356000 Deferred cfnetwork PE 9c391000-9c493000 Deferred launchservices Threads: process tid prio (all id:s are in hex) 00000008 Steam.exe 00000072 0 00000059 0 0000005a 0 0000005d 0 0000005e 0 00000060 0 00000065 0 0000003a 0 00000039 0 00000067 0 00000051 0 00000041 0 00000040 0 0000003f 0 0000003d 0 0000003c 0 0000003b 0 00000038 0 00000036 0 00000035 0 00000034 0 00000033 0 0000002e 0 0000002d 0 00000009 0 0000000e services.exe 00000020 0 0000001f 0 00000016 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 0000001b 0 0000001a 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000029 0 00000028 0 00000027 0 00000024 0 00000031 steamwebhelper.exe 0000006b 0 00000061 0 0000002a 0 00000050 0 0000004f 0 0000004e 0 0000004d 0 0000004c 0 0000004b 0 0000004a 0 00000049 0 00000048 0 00000018 0 00000019 0 00000025 0 00000026 0 0000000b 0 0000000d 0 0000000c 0 00000047 0 00000046 0 00000045 0 00000042 0 00000032 0 0000005f steamwebhelper.exe 0000007b 0 00000043 0 00000044 0 00000063 0 00000064 0 00000058 0 00000057 0 00000056 0 00000055 0 00000054 0 00000052 0 00000053 0 00000062 0 00000081 (D) C:\Program Files\Steam\steamapps\common\Blood Bowl 2\BloodBowl2.exe 00000082 0 <== System information: Wine build: wine-1.7.53 Platform: i386 Host system: Darwin Unhandled exception: page fault on execute access to 0x001100b8 in 32-bit code (0x001100b8). Register dump: CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f EIP:001100b8 ESP:0033eb8c EBP:0033ec08 EFLAGS:00010246( R- -- I Z- -P- ) EAX:0014d198 EBX:0033ed88 ECX:001100b8 EDX:0033ed88 ESI:4c3de7cc EDI:0033eb90 Stack dump: 0x0033eb8c: 450f7e54 0014d198 4c3de7cc 0033ed88 0x0033eb9c: 450f778c 00157d58 4c3e7581 001100f0 0x0033ebac: 4c3e7581 00000003 00000000 0033ec08 0x0033ebbc: 40004395 4c3e7581 450f7d54 00000000 0x0033ebcc: ffffffff 00157d58 0033ed88 4c3de7cc 0x0033ebdc: 00157d58 0033ed88 4c3de7cc 0014d198 0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw- Backtrace: =>0 0x001100b8 (0x0033ec08) 1 0x4c3a0023 D3D11CreateDevice+0x332() in d3d11 (0x0033ee34) 2 0x0041250b in bloodbowl2 (+0x1250a) (0x0033efd4) 3 0x00402306 in bloodbowl2 (+0x2305) (0x0033fe14) 4 0x004198a9 in bloodbowl2 (+0x198a8) (0x0033fe60) 5 0x7b8724fc call_process_entry+0xb() in kernel32 (0x0033fe78) 6 0x7b8763db start_process+0x1ca() in kernel32 (0x0033fee8) 7 0x7bca19fc call_thread_func_wrapper+0xb() in ntdll (0x0033fef8) 8 0x7bca4dcb call_thread_func+0x6a() in ntdll (0x0033ffa8) 9 0x7bca19c2 call_thread_entry_point+0x11() in ntdll (0x0033ffc8) 10 0x7bc5f82b start_process+0x2a() in ntdll (0x0033ffe8) 11 0x4000a69d wine_call_on_stack+0x1c() in libwine.1.0.dylib (0x00000000) 12 0x4000a7c1 wine_switch_to_stack+0x30() in libwine.1.0.dylib (0xfeffef28) 13 0x7bc5f366 LdrInitializeThunk+0x465() in ntdll (0xfeffeff8) 14 0x7b872ebd __wine_kernel_init+0x99c() in kernel32 (0xfeffff28) 15 0x7bc600e2 __wine_process_init+0x1a1() in ntdll (0xfeffff88) 16 0x92a19c25 _pthread_body+0x89() in libsystem_pthread.dylib (0xfeffffa8) 17 0x92a19b9b _pthread_start+0xa1() in libsystem_pthread.dylib (0xfeffffc8) 18 0x92a16e32 thread_start+0x21() in libsystem_pthread.dylib (0xfeffffec) 0x001100b8: enter $0x1100,$0x0 Modules: Module Address Debug info Name (243 modules) PE 400000- 524000 Export bloodbowl2 PE 10000000-100c8000 Deferred sdl2 PE 40001000-401bd000 Stabs libwine.1.0.dylib ELF 41b1e000-41bbd000 Deferred advapi32<elf> \-PE 41b20000-41ba5000 \ advapi32 ELF 41bbd000-41bdb000 Deferred version<elf> \-PE 41bc0000-41bd9000 \ version ELF 41d00000-41ec0000 Deferred user32<elf> \-PE 41d10000-41e75000 \ user32 ELF 41ec0000-41f6b000 Deferred shlwapi<elf> \-PE 41ed0000-41f45000 \ shlwapi ELF 41f6b000-41fa0000 Deferred msacm32<elf> \-PE 41f70000-41f9b000 \ msacm32 ELF 41fa0000-41fca000 Deferred imm32<elf> \-PE 41fb0000-41fc5000 \ imm32 ELF 4474f000-448b7000 Deferred gdi32<elf> \-PE 44750000-44848000 \ gdi32 ELF 448b7000-44b6e000 Deferred shell32<elf> \-PE 448c0000-44b2c000 \ shell32 ELF 44b6e000-44c43000 Deferred winmm<elf> \-PE 44b70000-44c32000 \ winmm ELF 44c43000-44dfa000 Deferred ole32<elf> \-PE 44c50000-44db8000 \ ole32 ELF 44dfa000-44eb8000 Deferred rpcrt4<elf> \-PE 44e00000-44e95000 \ rpcrt4 ELF 44eb8000-45059000 Deferred oleaut32<elf> \-PE 44ec0000-45005000 \ oleaut32 PE 45059000-450e6000 Deferred libfreetype.6.dylib ELF 450e6000-4511e000 Deferred dxgi<elf> \-PE 450f0000-4510e000 \ dxgi ELF 4511e000-45329000 Deferred wined3d<elf> \-PE 45120000-4530c000 \ wined3d ELF 45329000-453f2000 Deferred winemac<elf> \-PE 45330000-453c9000 \ winemac PE 480a8000-48127000 Deferred clouddocs PE 4a800000-4aee8000 Deferred appleintelhd5000graphicsgldriver ELF 4c38a000-4c403000 Stabs d3d11<elf> \-PE 4c390000-4c3e8000 \ d3d11 ELF 7a800000-7a962000 Deferred opengl32<elf> \-PE 7a810000-7a922000 \ opengl32 ELF 7b800000-7bab7000 Stabs kernel32<elf> \-PE 7b810000-7ba7b000 \ kernel32 ELF 7bc00000-7bd3f000 Stabs ntdll<elf> \-PE 7bc10000-7bcff000 \ ntdll ELF 7bf00000-7bf04000 Deferred <wine-loader> PE 90008000-900f3000 Deferred libcrypto.0.9.8.dylib PE 900f3000-9013b000 Deferred applejpeg PE 9013b000-9014f000 Deferred sharing PE 90157000-90244000 Deferred libvmisc.dylib PE 90244000-90310000 Deferred backup PE 90310000-90398000 Deferred osservices PE 90398000-90781000 Deferred liblapack.dylib PE 907d5000-907d6000 Deferred liblaunch.dylib PE 907d6000-907df000 Deferred libsystem_dnssd.dylib PE 907df000-90836000 Deferred libc++.1.dylib PE 90945000-90975000 Deferred dictionaryservices PE 90975000-90978000 Deferred loginsupport PE 90978000-90b6f000 Deferred libicucore.a.dylib PE 90b6f000-90b70000 Deferred coreservices PE 90b70000-90cf9000 Deferred audiotoolbox PE 90cf9000-90d08000 Deferred speechrecognitioncore PE 90d08000-90d17000 Deferred opengl PE 90d17000-90d25000 Deferred speechsynthesis PE 90d25000-90d29000 Deferred help PE 90d29000-90d2a000 Deferred libopenscriptingutil.dylib PE 90d2a000-91085000 Deferred libmecabra.dylib PE 910c6000-910d0000 Deferred diskarbitration PE 910d0000-910d1000 Deferred libkeymgr.dylib PE 910d1000-910d6000 Deferred libgif.dylib PE 910d6000-9114d000 Deferred searchkit PE 9119e000-912e3000 Deferred imageio PE 912e3000-91f10000 Deferred appkit PE 91f10000-91fdc000 Deferred discrecording PE 91fdc000-9202e000 Deferred opencl PE 9202e000-92145000 Deferred desktopservicespriv PE 9214a000-9217e000 Deferred coreservicesinternal PE 9217e000-92186000 Deferred speechrecognition PE 92193000-925c7000 Deferred facecore PE 925c7000-925f5000 Deferred protectedcloudstorage PE 925f5000-92613000 Deferred libcrfsuite.dylib PE 92613000-92721000 Deferred libvdsp.dylib PE 929c3000-929d5000 Deferred libbsm.0.dylib PE 929d5000-929fc000 Deferred iconservices PE 929fc000-92a16000 Deferred libsystem_malloc.dylib PE 92a16000-92a1f000 Stabs libsystem_pthread.dylib PE 92a1f000-92a20000 Deferred veclib PE 92a20000-92c10000 Deferred libobjc.a.dylib PE 92c10000-92c13000 Deferred libradiance.dylib PE 92c13000-92c18000 Deferred iosurface PE 92c18000-92c21000 Deferred findmydevice PE 92c21000-92c2b000 Deferred libcopyfile.dylib PE 931c1000-931cc000 Deferred carbonsound PE 931cc000-931ec000 Deferred libsystem_kernel.dylib PE 931ec000-93248000 Deferred libtiff.dylib PE 93248000-93283000 Deferred debugsymbols PE 93283000-93285000 Deferred trustevaluationagent PE 93521000-93549000 Deferred libdispatch.dylib PE 935ea000-935eb000 Deferred applicationservices PE 93663000-93768000 Deferred libjp2.dylib PE 93768000-93780000 Deferred liblinearalgebra.dylib PE 93783000-93790000 Deferred libcommoncrypto.dylib PE 93909000-9390d000 Deferred libdyld.dylib PE 942d4000-942d7000 Deferred libsystem_configuration.dylib PE 942d7000-942d9000 Deferred libsystem_blocks.dylib PE 942d9000-9430e000 Deferred coredaemon PE 9430e000-94364000 Deferred coreaudio PE 94364000-94366000 Deferred libdiagnosticmessagesclient.dyli PE 94366000-943cb000 Deferred ae PE 94cd9000-94d2b000 Deferred libcups.2.dylib PE 94d2b000-94d3f000 Deferred corebluetooth PE 94d3f000-9513b000 Deferred coregraphics PE 9513b000-95144000 Deferred netfs PE 95144000-95155000 Deferred libgl.dylib PE 95155000-95163000 Deferred libbz2.1.0.dylib PE 95163000-95167000 Deferred servicemanagement PE 95167000-95202000 Deferred colorsync PE 95202000-95209000 Deferred libsystem_networkextension.dylib PE 9521f000-95246000 Deferred libxpc.dylib PE 95246000-95281000 Deferred mediakit PE 95281000-95636000 Deferred corefoundation PE 95636000-95643000 Deferred libcsfde.dylib PE 95647000-9564c000 Deferred commonpanels PE 9564c000-956ca000 Deferred iokit PE 956ca000-957bb000 Deferred diskimages PE 957bb000-957bc000 Deferred carbon PE 95865000-95874000 Deferred libz.1.dylib PE 95874000-958a2000 Deferred glrendererfloat PE 96251000-96257000 Deferred print PE 96257000-9641d000 Deferred quartzcore PE 9641d000-96423000 Deferred libcompiler_rt.dylib PE 96423000-964b6000 Deferred coresymbolication PE 964b6000-9650b000 Deferred hiservices PE 97527000-975b5000 Deferred performanceanalysis PE 975b5000-975c5000 Deferred libxar.1.dylib PE 975c5000-976b7000 Deferred libiconv.2.dylib PE 976b7000-976b9000 Deferred libremovefile.dylib PE 976b9000-97725000 Deferred corewifi PE 97725000-97748000 Deferred multitouchsupport PE 9789c000-978e6000 Deferred libfontregistry.dylib PE 978e6000-978f0000 Deferred libsystem_notify.dylib PE 978f0000-97930000 Deferred navigationservices PE 97930000-97934000 Deferred libextension.dylib PE 97934000-97a4b000 Deferred coretext PE 97a4b000-97a89000 Deferred libsystem_network.dylib PE 97a89000-97abd000 Deferred libsystem_m.dylib PE 97abd000-97b5b000 Deferred ink PE 97b5b000-97b5e000 Deferred securityhi PE 97b5e000-97b7a000 Deferred cfopendirectory PE 97bce000-97bf9000 Deferred libxslt.1.dylib PE 97bf9000-97c1e000 Deferred apple80211 PE 97c1e000-97c28000 Deferred applesrp PE 97c28000-97c48000 Deferred libresolv.9.dylib PE 97c49000-97c52000 Deferred fsevents PE 97fd6000-98412000 Deferred vimage PE 98412000-98445000 Deferred gss PE 98445000-9881f000 Deferred hitoolbox PE 98826000-9883b000 Deferred imagecapture PE 9883b000-9884c000 Deferred langanalysis PE 988a6000-98c08000 Deferred foundation PE 98c08000-98c1a000 Deferred libsystem_coretls.dylib PE 98c44000-98c48000 Deferred libpam.2.dylib PE 98c48000-98c50000 Deferred libunwind.dylib PE 98c50000-98cac000 Deferred languagemodeling PE 98cac000-98d53000 Deferred metadata PE 98d76000-98d79000 Deferred libsystem_secinit.dylib PE 9922a000-9926b000 Deferred libglimage.dylib PE 9926b000-992e2000 Deferred securityfoundation PE 992e2000-99309000 Deferred libc++abi.dylib PE 99431000-99432000 Deferred libunc.dylib PE 99432000-99446000 Deferred libcmph.dylib PE 99446000-9953d000 Deferred libxml2.2.dylib PE 995ae000-995db000 Deferred chunkinglibrary PE 995db000-995f6000 Deferred liblzma.5.dylib PE 995f6000-995fd000 Deferred libsystem_trace.dylib PE 995fd000-99610000 Deferred libsasl2.2.dylib PE 99610000-99616000 Deferred libmacho.dylib PE 99616000-99623000 Deferred libkxld.dylib PE 99650000-9966e000 Deferred ubiquity PE 99985000-9998e000 Deferred libcgcms.a.dylib PE 9998e000-99b3d000 Deferred glengine PE 99b3d000-99bd3000 Deferred libsystem_c.dylib PE 99bd3000-99c10000 Deferred remoteviewservices PE 99cca000-99cee000 Deferred libjpeg.dylib PE 99cee000-99de6000 Deferred libfontparser.dylib PE 99de6000-99e5b000 Deferred heimdal PE 99e5b000-99e60000 Deferred tcc PE 99e60000-99ed8000 Deferred ats PE 99f86000-9a285000 Deferred carboncore PE 9a285000-9a2b4000 Deferred libarchive.2.dylib PE 9a2b4000-9a355000 Deferred qd PE 9a355000-9a371000 Deferred openscripting PE 9a371000-9a3de000 Deferred datadetectorscore PE 9a3de000-9a669000 Deferred security PE 9a669000-9a677000 Deferred protocolbuffer PE 9a677000-9a678000 Deferred audiounit PE 9a678000-9a6d6000 Deferred printcore PE 9a6d6000-9a717000 Deferred symbolication PE 9a717000-9a76d000 Deferred htmlrendering PE 9a76d000-9a779000 Deferred netauth PE 9a779000-9a786000 Deferred libgpusupportmercury.dylib PE 9aa0c000-9aa10000 Deferred libutil.dylib PE 9aa10000-9aa13000 Deferred libsystem_coreservices.dylib PE 9aa13000-9aa3d000 Deferred libsystem_info.dylib PE 9aa3d000-9aa7e000 Deferred libauto.dylib PE 9aa7e000-9aa83000 Deferred libcache.dylib PE 9aa83000-9aa85000 Deferred libsystem.b.dylib PE 9aa85000-9aa88000 Deferred libsystem_sandbox.dylib PE 9aa88000-9aa95000 Deferred crashreportersupport PE 9aa95000-9aa97000 Deferred liblangid.dylib PE 9aa97000-9aadb000 Deferred libglu.dylib PE 9aadb000-9ac0a000 Deferred coreui PE 9ac0a000-9ac8a000 Deferred systemconfiguration PE 9ac92000-9ac97000 Deferred libcorevmclient.dylib PE 9ac97000-9af2f000 Deferred coredata PE 9af2f000-9b062000 Deferred uifoundation PE 9b062000-9b07c000 Deferred kerberos PE 9b07c000-9b0e9000 Deferred libcorecrypto.dylib PE 9b0e9000-9b0ee000 Deferred libheimdal-asn1.dylib PE 9b0ee000-9b10e000 Deferred generationalstorage PE 9b423000-9b426000 Deferred efilogin PE 9b426000-9b5b8000 Deferred libsqlite3.dylib PE 9b5b8000-9b769000 Deferred libglprogrammability.dylib PE 9b769000-9b7b9000 Deferred libcurl.4.dylib PE 9b7b9000-9b7c3000 Deferred commonauth PE 9b852000-9b88d000 Deferred ldap PE 9b88d000-9b901000 Deferred corewlan PE 9b901000-9b90f000 Deferred opendirectory PE 9b90f000-9b9bf000 Deferred iobluetooth PE 9b9bf000-9b9c2000 Deferred libquarantine.dylib PE 9bb2f000-9bb39000 Deferred libgfxshared.dylib PE 9bb39000-9bb69000 Deferred corevideo PE 9bb69000-9bc1c000 Deferred libcorestorage.dylib PE 9bc1c000-9bd8e000 Deferred libblas.dylib PE 9bd8e000-9bd91000 Deferred libcvmspluginsupport.dylib PE 9bde5000-9bde6000 Deferred accelerate PE 9bde6000-9be0d000 Deferred libpng.dylib PE 9be0d000-9c100000 Deferred coreimage PE 9c100000-9c109000 Deferred libcldcpuengine.dylib PE 9c121000-9c139000 Deferred libsystem_asl.dylib PE 9c139000-9c140000 Deferred libsystem_platform.dylib PE 9c140000-9c145000 Deferred ioaccelerator PE 9c145000-9c356000 Deferred cfnetwork PE 9c391000-9c493000 Deferred launchservices Threads: process tid prio (all id:s are in hex) 00000008 Steam.exe 00000072 0 00000059 0 0000005a 0 0000005d 0 0000005e 0 00000060 0 00000065 0 0000003a 0 00000039 0 00000067 0 00000051 0 00000041 0 00000040 0 0000003f 0 0000003d 0 0000003c 0 0000003b 0 00000038 0 00000036 0 00000035 0 00000034 0 00000033 0 0000002e 0 0000002d 0 00000009 0 0000000e services.exe 00000020 0 0000001f 0 00000016 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 0000001b 0 0000001a 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000029 0 00000028 0 00000027 0 00000024 0 00000031 steamwebhelper.exe 0000006b 0 00000061 0 0000002a 0 00000050 0 0000004f 0 0000004e 0 0000004d 0 0000004c 0 0000004b 0 0000004a 0 00000049 0 00000048 0 00000018 0 00000019 0 00000025 0 00000026 0 0000000b 0 0000000d 0 0000000c 0 00000047 0 00000046 0 00000045 0 00000042 0 00000032 0 0000005f steamwebhelper.exe 0000007b 0 00000043 0 00000044 0 00000063 0 00000064 0 00000058 0 00000057 0 00000056 0 00000055 0 00000054 0 00000052 0 00000053 0 00000062 0 00000081 (D) C:\Program Files\Steam\steamapps\common\Blood Bowl 2\BloodBowl2.exe 00000082 0 <== System information: Wine build: wine-1.7.53 Platform: i386 Host system: Darwin Host version: 14.5.0 Unhandled exception: page fault on execute access to 0x001100b8 in 32-bit code (0x001100b8). Register dump: CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f EIP:001100b8 ESP:0033eb8c EBP:0033ec08 EFLAGS:00010246( R- -- I Z- -P- ) EAX:0014d198 EBX:0033ed88 ECX:001100b8 EDX:0033ed88 ESI:4c3de7cc EDI:0033eb90 Stack dump: 0x0033eb8c: 450f7e54 0014d198 4c3de7cc 0033ed88 0x0033eb9c: 450f778c 00157d58 4c3e7581 001100f0 0x0033ebac: 4c3e7581 00000003 00000000 0033ec08 0x0033ebbc: 40004395 4c3e7581 450f7d54 00000000 0x0033ebcc: ffffffff 00157d58 0033ed88 4c3de7cc 0x0033ebdc: 00157d58 0033ed88 4c3de7cc 0014d198 0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw- Backtrace: =>0 0x001100b8 (0x0033ec08) 1 0x4c3a0023 D3D11CreateDevice+0x332() in d3d11 (0x0033ee34) 2 0x0041250b in bloodbowl2 (+0x1250a) (0x0033efd4) 3 0x00402306 in bloodbowl2 (+0x2305) (0x0033fe14) 4 0x004198a9 in bloodbowl2 (+0x198a8) (0x0033fe60) 5 0x7b8724fc call_process_entry+0xb() in kernel32 (0x0033fe78) 6 0x7b8763db start_process+0x1ca() in kernel32 (0x0033fee8) 7 0x7bca19fc call_thread_func_wrapper+0xb() in ntdll (0x0033fef8) 8 0x7bca4dcb call_thread_func+0x6a() in ntdll (0x0033ffa8) 9 0x7bca19c2 call_thread_entry_point+0x11() in ntdll (0x0033ffc8) 10 0x7bc5f82b start_process+0x2a() in ntdll (0x0033ffe8) 11 0x4000a69d wine_call_on_stack+0x1c() in libwine.1.0.dylib (0x00000000) 12 0x4000a7c1 wine_switch_to_stack+0x30() in libwine.1.0.dylib (0xfeffef28) 13 0x7bc5f366 LdrInitializeThunk+0x465() in ntdll (0xfeffeff8) 14 0x7b872ebd __wine_kernel_init+0x99c() in kernel32 (0xfeffff28) 15 0x7bc600e2 __wine_process_init+0x1a1() in ntdll (0xfeffff88) 16 0x92a19c25 _pthread_body+0x89() in libsystem_pthread.dylib (0xfeffffa8) 17 0x92a19b9b _pthread_start+0xa1() in libsystem_pthread.dylib (0xfeffffc8) 18 0x92a16e32 thread_start+0x21() in libsystem_pthread.dylib (0xfeffffec) 0x001100b8: enter $0x1100,$0x0 Modules: Module Address Debug info Name (243 modules) PE 400000- 524000 Export bloodbowl2 PE 10000000-100c8000 Deferred sdl2 PE 40001000-401bd000 Stabs libwine.1.0.dylib ELF 41b1e000-41bbd000 Deferred advapi32<elf> \-PE 41b20000-41ba5000 \ advapi32 ELF 41bbd000-41bdb000 Deferred version<elf> \-PE 41bc0000-41bd9000 \ version ELF 41d00000-41ec0000 Deferred user32<elf> \-PE 41d10000-41e75000 \ user32 ELF 41ec0000-41f6b000 Deferred shlwapi<elf> \-PE 41ed0000-41f45000 \ shlwapi ELF 41f6b000-41fa0000 Deferred msacm32<elf> \-PE 41f70000-41f9b000 \ msacm32 ELF 41fa0000-41fca000 Deferred imm32<elf> \-PE 41fb0000-41fc5000 \ imm32 ELF 4474f000-448b7000 Deferred gdi32<elf> \-PE 44750000-44848000 \ gdi32 ELF 448b7000-44b6e000 Deferred shell32<elf> \-PE 448c0000-44b2c000 \ shell32 ELF 44b6e000-44c43000 Deferred winmm<elf> \-PE 44b70000-44c32000 \ winmm ELF 44c43000-44dfa000 Deferred ole32<elf> \-PE 44c50000-44db8000 \ ole32 ELF 44dfa000-44eb8000 Deferred rpcrt4<elf> \-PE 44e00000-44e95000 \ rpcrt4 ELF 44eb8000-45059000 Deferred oleaut32<elf> \-PE 44ec0000-45005000 \ oleaut32 PE 45059000-450e6000 Deferred libfreetype.6.dylib ELF 450e6000-4511e000 Deferred dxgi<elf> \-PE 450f0000-4510e000 \ dxgi ELF 4511e000-45329000 Deferred wined3d<elf> \-PE 45120000-4530c000 \ wined3d ELF 45329000-453f2000 Deferred winemac<elf> \-PE 45330000-453c9000 \ winemac PE 480a8000-48127000 Deferred clouddocs PE 4a800000-4aee8000 Deferred appleintelhd5000graphicsgldriver ELF 4c38a000-4c403000 Stabs d3d11<elf> \-PE 4c390000-4c3e8000 \ d3d11 ELF 7a800000-7a962000 Deferred opengl32<elf> \-PE 7a810000-7a922000 \ opengl32 ELF 7b800000-7bab7000 Stabs kernel32<elf> \-PE 7b810000-7ba7b000 \ kernel32 ELF 7bc00000-7bd3f000 Stabs ntdll<elf> \-PE 7bc10000-7bcff000 \ ntdll ELF 7bf00000-7bf04000 Deferred <wine-loader> PE 90008000-900f3000 Deferred libcrypto.0.9.8.dylib PE 900f3000-9013b000 Deferred applejpeg PE 9013b000-9014f000 Deferred sharing PE 90157000-90244000 Deferred libvmisc.dylib PE 90244000-90310000 Deferred backup PE 90310000-90398000 Deferred osservices PE 90398000-90781000 Deferred liblapack.dylib PE 907d5000-907d6000 Deferred liblaunch.dylib PE 907d6000-907df000 Deferred libsystem_dnssd.dylib PE 907df000-90836000 Deferred libc++.1.dylib PE 90945000-90975000 Deferred dictionaryservices PE 90975000-90978000 Deferred loginsupport PE 90978000-90b6f000 Deferred libicucore.a.dylib PE 90b6f000-90b70000 Deferred coreservices PE 90b70000-90cf9000 Deferred audiotoolbox PE 90cf9000-90d08000 Deferred speechrecognitioncore PE 90d08000-90d17000 Deferred opengl PE 90d17000-90d25000 Deferred speechsynthesis PE 90d25000-90d29000 Deferred help PE 90d29000-90d2a000 Deferred libopenscriptingutil.dylib PE 90d2a000-91085000 Deferred libmecabra.dylib PE 910c6000-910d0000 Deferred diskarbitration PE 910d0000-910d1000 Deferred libkeymgr.dylib PE 910d1000-910d6000 Deferred libgif.dylib PE 910d6000-9114d000 Deferred searchkit PE 9119e000-912e3000 Deferred imageio PE 912e3000-91f10000 Deferred appkit PE 91f10000-91fdc000 Deferred discrecording PE 91fdc000-9202e000 Deferred opencl PE 9202e000-92145000 Deferred desktopservicespriv PE 9214a000-9217e000 Deferred coreservicesinternal PE 9217e000-92186000 Deferred speechrecognition PE 92193000-925c7000 Deferred facecore PE 925c7000-925f5000 Deferred protectedcloudstorage PE 925f5000-92613000 Deferred libcrfsuite.dylib PE 92613000-92721000 Deferred libvdsp.dylib PE 929c3000-929d5000 Deferred libbsm.0.dylib PE 929d5000-929fc000 Deferred iconservices PE 929fc000-92a16000 Deferred libsystem_malloc.dylib PE 92a16000-92a1f000 Stabs libsystem_pthread.dylib PE 92a1f000-92a20000 Deferred veclib PE 92a20000-92c10000 Deferred libobjc.a.dylib PE 92c10000-92c13000 Deferred libradiance.dylib PE 92c13000-92c18000 Deferred iosurface PE 92c18000-92c21000 Deferred findmydevice PE 92c21000-92c2b000 Deferred libcopyfile.dylib PE 931c1000-931cc000 Deferred carbonsound PE 931cc000-931ec000 Deferred libsystem_kernel.dylib PE 931ec000-93248000 Deferred libtiff.dylib PE 93248000-93283000 Deferred debugsymbols PE 93283000-93285000 Deferred trustevaluationagent PE 93521000-93549000 Deferred libdispatch.dylib PE 935ea000-935eb000 Deferred applicationservices PE 93663000-93768000 Deferred libjp2.dylib PE 93768000-93780000 Deferred liblinearalgebra.dylib PE 93783000-93790000 Deferred libcommoncrypto.dylib PE 93909000-9390d000 Deferred libdyld.dylib PE 942d4000-942d7000 Deferred libsystem_configuration.dylib PE 942d7000-942d9000 Deferred libsystem_blocks.dylib PE 942d9000-9430e000 Deferred coredaemon PE 9430e000-94364000 Deferred coreaudio PE 94364000-94366000 Deferred libdiagnosticmessagesclient.dyli PE 94366000-943cb000 Deferred ae PE 94cd9000-94d2b000 Deferred libcups.2.dylib PE 94d2b000-94d3f000 Deferred corebluetooth PE 94d3f000-9513b000 Deferred coregraphics PE 9513b000-95144000 Deferred netfs PE 95144000-95155000 Deferred libgl.dylib PE 95155000-95163000 Deferred libbz2.1.0.dylib PE 95163000-95167000 Deferred servicemanagement PE 95167000-95202000 Deferred colorsync PE 95202000-95209000 Deferred libsystem_networkextension.dylib PE 9521f000-95246000 Deferred libxpc.dylib PE 95246000-95281000 Deferred mediakit PE 95281000-95636000 Deferred corefoundation PE 95636000-95643000 Deferred libcsfde.dylib PE 95647000-9564c000 Deferred commonpanels PE 9564c000-956ca000 Deferred iokit PE 956ca000-957bb000 Deferred diskimages PE 957bb000-957bc000 Deferred carbon PE 95865000-95874000 Deferred libz.1.dylib PE 95874000-958a2000 Deferred glrendererfloat PE 96251000-96257000 Deferred print PE 96257000-9641d000 Deferred quartzcore PE 9641d000-96423000 Deferred libcompiler_rt.dylib PE 96423000-964b6000 Deferred coresymbolication PE 964b6000-9650b000 Deferred hiservices PE 97527000-975b5000 Deferred performanceanalysis PE 975b5000-975c5000 Deferred libxar.1.dylib PE 975c5000-976b7000 Deferred libiconv.2.dylib PE 976b7000-976b9000 Deferred libremovefile.dylib PE 976b9000-97725000 Deferred corewifi PE 97725000-97748000 Deferred multitouchsupport PE 9789c000-978e6000 Deferred libfontregistry.dylib PE 978e6000-978f0000 Deferred libsystem_notify.dylib PE 978f0000-97930000 Deferred navigationservices PE 97930000-97934000 Deferred libextension.dylib PE 97934000-97a4b000 Deferred coretext PE 97a4b000-97a89000 Deferred libsystem_network.dylib PE 97a89000-97abd000 Deferred libsystem_m.dylib PE 97abd000-97b5b000 Deferred ink PE 97b5b000-97b5e000 Deferred securityhi PE 97b5e000-97b7a000 Deferred cfopendirectory PE 97bce000-97bf9000 Deferred libxslt.1.dylib PE 97bf9000-97c1e000 Deferred apple80211 PE 97c1e000-97c28000 Deferred applesrp PE 97c28000-97c48000 Deferred libresolv.9.dylib PE 97c49000-97c52000 Deferred fsevents PE 97fd6000-98412000 Deferred vimage PE 98412000-98445000 Deferred gss PE 98445000-9881f000 Deferred hitoolbox PE 98826000-9883b000 Deferred imagecapture PE 9883b000-9884c000 Deferred langanalysis PE 988a6000-98c08000 Deferred foundation PE 98c08000-98c1a000 Deferred libsystem_coretls.dylib PE 98c44000-98c48000 Deferred libpam.2.dylib PE 98c48000-98c50000 Deferred libunwind.dylib PE 98c50000-98cac000 Deferred languagemodeling PE 98cac000-98d53000 Deferred metadata PE 98d76000-98d79000 Deferred libsystem_secinit.dylib PE 9922a000-9926b000 Deferred libglimage.dylib PE 9926b000-992e2000 Deferred securityfoundation PE 992e2000-99309000 Deferred libc++abi.dylib PE 99431000-99432000 Deferred libunc.dylib PE 99432000-99446000 Deferred libcmph.dylib PE 99446000-9953d000 Deferred libxml2.2.dylib PE 995ae000-995db000 Deferred chunkinglibrary PE 995db000-995f6000 Deferred liblzma.5.dylib PE 995f6000-995fd000 Deferred libsystem_trace.dylib PE 995fd000-99610000 Deferred libsasl2.2.dylib PE 99610000-99616000 Deferred libmacho.dylib PE 99616000-99623000 Deferred libkxld.dylib PE 99650000-9966e000 Deferred ubiquity PE 99985000-9998e000 Deferred libcgcms.a.dylib PE 9998e000-99b3d000 Deferred glengine PE 99b3d000-99bd3000 Deferred libsystem_c.dylib PE 99bd3000-99c10000 Deferred remoteviewservices PE 99cca000-99cee000 Deferred libjpeg.dylib PE 99cee000-99de6000 Deferred libfontparser.dylib PE 99de6000-99e5b000 Deferred heimdal PE 99e5b000-99e60000 Deferred tcc PE 99e60000-99ed8000 Deferred ats PE 99f86000-9a285000 Deferred carboncore PE 9a285000-9a2b4000 Deferred libarchive.2.dylib PE 9a2b4000-9a355000 Deferred qd PE 9a355000-9a371000 Deferred openscripting PE 9a371000-9a3de000 Deferred datadetectorscore PE 9a3de000-9a669000 Deferred security PE 9a669000-9a677000 Deferred protocolbuffer PE 9a677000-9a678000 Deferred audiounit PE 9a678000-9a6d6000 Deferred printcore PE 9a6d6000-9a717000 Deferred symbolication PE 9a717000-9a76d000 Deferred htmlrendering PE 9a76d000-9a779000 Deferred netauth PE 9a779000-9a786000 Deferred libgpusupportmercury.dylib PE 9aa0c000-9aa10000 Deferred libutil.dylib PE 9aa10000-9aa13000 Deferred libsystem_coreservices.dylib PE 9aa13000-9aa3d000 Deferred libsystem_info.dylib PE 9aa3d000-9aa7e000 Deferred libauto.dylib PE 9aa7e000-9aa83000 Deferred libcache.dylib PE 9aa83000-9aa85000 Deferred libsystem.b.dylib PE 9aa85000-9aa88000 Deferred libsystem_sandbox.dylib PE 9aa88000-9aa95000 Deferred crashreportersupport PE 9aa95000-9aa97000 Deferred liblangid.dylib PE 9aa97000-9aadb000 Deferred libglu.dylib PE 9aadb000-9ac0a000 Deferred coreui PE 9ac0a000-9ac8a000 Deferred systemconfiguration PE 9ac92000-9ac97000 Deferred libcorevmclient.dylib PE 9ac97000-9af2f000 Deferred coredata PE 9af2f000-9b062000 Deferred uifoundation PE 9b062000-9b07c000 Deferred kerberos PE 9b07c000-9b0e9000 Deferred libcorecrypto.dylib PE 9b0e9000-9b0ee000 Deferred libheimdal-asn1.dylib PE 9b0ee000-9b10e000 Deferred generationalstorage PE 9b423000-9b426000 Deferred efilogin PE 9b426000-9b5b8000 Deferred libsqlite3.dylib PE 9b5b8000-9b769000 Deferred libglprogrammability.dylib PE 9b769000-9b7b9000 Deferred libcurl.4.dylib PE 9b7b9000-9b7c3000 Deferred commonauth PE 9b852000-9b88d000 Deferred ldap PE 9b88d000-9b901000 Deferred corewlan PE 9b901000-9b90f000 Deferred opendirectory PE 9b90f000-9b9bf000 Deferred iobluetooth PE 9b9bf000-9b9c2000 Deferred libquarantine.dylib PE 9bb2f000-9bb39000 Deferred libgfxshared.dylib PE 9bb39000-9bb69000 Deferred corevideo PE 9bb69000-9bc1c000 Deferred libcorestorage.dylib PE 9bc1c000-9bd8e000 Deferred libblas.dylib PE 9bd8e000-9bd91000 Deferred libcvmspluginsupport.dylib PE 9bde5000-9bde6000 Deferred accelerate PE 9bde6000-9be0d000 Deferred libpng.dylib PE 9be0d000-9c100000 Deferred coreimage PE 9c100000-9c109000 Deferred libcldcpuengine.dylib PE 9c121000-9c139000 Deferred libsystem_asl.dylib PE 9c139000-9c140000 Deferred libsystem_platform.dylib PE 9c140000-9c145000 Deferred ioaccelerator PE 9c145000-9c356000 Deferred cfnetwork PE 9c391000-9c493000 Deferred launchservices Threads: process tid prio (all id:s are in hex) 00000008 Steam.exe 00000072 0 00000059 0 0000005a 0 0000005d 0 0000005e 0 00000060 0 00000065 0 0000003a 0 00000039 0 00000067 0 00000051 0 00000041 0 00000040 0 0000003f 0 0000003d 0 0000003c 0 0000003b 0 00000038 0 00000036 0 00000035 0 00000034 0 00000033 0 0000002e 0 0000002d 0 00000009 0 0000000e services.exe 00000020 0 0000001f 0 00000016 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 0000001b 0 0000001a 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000029 0 00000028 0 00000027 0 00000024 0 00000031 steamwebhelper.exe 0000006b 0 00000061 0 0000002a 0 00000050 0 0000004f 0 0000004e 0 0000004d 0 0000004c 0 0000004b 0 0000004a 0 00000049 0 00000048 0 00000018 0 00000019 0 00000025 0 00000026 0 0000000b 0 0000000d 0 0000000c 0 00000047 0 00000046 0 00000045 0 00000042 0 00000032 0 0000005f steamwebhelper.exe 0000007b 0 00000043 0 00000044 0 00000063 0 00000064 0 00000058 0 00000057 0 00000056 0 00000055 0 00000054 0 00000052 0 00000053 0 00000062 0 00000081 (D) C:\Program Files\Steam\steamapps\common\Blood Bowl 2\BloodBowl2.exe 00000082 0 <== System information: Wine build: wine-1.7.53 Platform: i386 Host system: Darwin Host version: 14.5.0 Un immense merci à qui saura m'aider. Bonne journée !
RéponsesVendredi 23 Octobre 2015 à 8:13
Vendredi 23 Octobre 2015 à 13:55
Vendredi 23 Octobre 2015 à 13:59
Vendredi 23 Octobre 2015 à 14:46
Vendredi 23 Octobre 2015 à 16:19
|
||
MTres19 | Jeudi 22 Octobre 2015 à 1:46 | ||
MTres19
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe patch in Wine 1.7.53-steam_crossoverhack apparently is now included in Wine-Staging (See https://www.phoronix.com/scan.php?page=news_item&px=Wine-Staging-1.7.53) and to avoid unnecessary installation of different versions of Wine, it seems that it would probably be best to go with Wine-Staging, since it's more likely to be reused. Just my opinion, though. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="1.7.53-staging" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.53-staging" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
NorahAura | Mardi 20 Octobre 2015 à 23:37 | ||
NorahAura
|
MessagesI am unable to install Rocket League since this update. I removed Steam, updated PlayonMac to the current version, installed Steam and now when I attempt to install Rocket League, it produces the error: "The program steamwebhelper.exe has encountered a serious problem and needs to close."
Réponses |
||
petch | Mardi 20 Octobre 2015 à 21:13 | ||
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUse Wine 1.7.53-steam_crossoverhack to work around bug #39403
Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.33" +WINEVERSION="1.7.53-steam_crossoverhack" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.53-steam_crossoverhack" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
superbigmax | Lundi 19 Octobre 2015 à 21:40 | ||
superbigmax
|
MessagesSince the update from payday 2 on october 17th 2015 the game no longer works on my pc. When I press the play button on steam it displays "preparing to launch payday 2" but the game doesn't launch. The line around my avatar turns green (which means you're ingame) for a few seconds then turns back to blue (which means you're online but not ingame). I use playonlinux 4.2.9 and wine 1.7.50 on ubuntu 15.04. Other games I play with steam still work fine. hardware: Processor: Intel® Core™ i3-4150 CPU @ 3.50GHz × 4. Graphics: Intel® Haswell Also since a few weeks I can't view the store or community page in the steam application anymore but they still work fine on the steam website. I searched multiple forums couldn't find any solutions. I verified the game cache, didn't work. I don't know what to try next, any suggestions? RéponsesMardi 20 Octobre 2015 à 21:14
|
||
someguy | Vendredi 9 Octobre 2015 à 16:59 | ||
someguy
|
MessagesI am running arch linux and the latest POL version. Installed Steam with it but I cannot access any page, just loading and trying to connect. I read somewhere that I should also install Internet Explorer 8, which I did. But this one cannot connect either and therefore does not load any page too. Réponses |
||
Moon_LS | Mardi 22 September 2015 à 21:53 | ||
Moon_LS
|
|||
abcdeeeeff | Lundi 31 Aoüt 2015 à 11:47 | ||
abcdeeeeff
|
MessagesWhen I try to install steam the steam installer has a very little windows, which make it impossible to install it. Screenshot(the window is just in the middle of the screen): Réponses |
||
Smaxwellington | Mercredi 12 Aoüt 2015 à 13:39 | ||
Smaxwellington
|
MessagesHi all, I am having issues running Steam and I hope this is the correct place to post - if not please redirect me to the right place. I'm also not so technically-savvy, so I apologise if I'm missing something in my description of my problem. I have installed Steam using Play on Mac. I am running OS X Yosemite 10.10.3 on a 13-inch MacBook Pro (circa mid-2010). Installation went through successfully, but when I now launch Steam a box appears that says "The program steamwebhelper.exe has encountered a serious problem and needs to close..." Steam then remains open for about 60 seconds and then crashes. Pressing 'Debug' on Play on Mac I get the following log (sorry for the length!). [08/12/15 21:34:50] - Running wine-1.7.49 Steam.exe (Working directory : /Users/vanessaausten/Library/PlayOnMac/wineprefix/Steam_/drive_c/Program Files/Steam) fixme:ver:GetCurrentPackageId (0x33e490 0x0): stub fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. fixme:imm:ImmGetOpenStatus (0x1ebff00): semi-stub fixme:ver:GetCurrentPackageId (0x33e254 0x0): stub fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046} fixme:dwmapi:DwmSetWindowAttribute (0x30056, 2, 0x33e864, 4) stub fixme:ver:GetCurrentPackageId (0x31e400 0x0): stub fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fbec 4 stub fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub fixme:thread:GetThreadPreferredUILanguages 56, 0x33f7b4, 0x0 0x33f7b8 fixme:winsock:WSALookupServiceBeginW (0x33f6a4 0x00000ff0 0x33f6e0) Stub! [0812/213458:ERROR:network_change_notifier_win.cc(173)] WSALookupServiceBegin failed with: 8 fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7ec, overlapped 0x185330): stub fixme:win:RegisterDeviceNotificationW (hwnd=0x2003e, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:win:RegisterDeviceNotificationW (hwnd=0x2003e, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:ver:GetCurrentPackageId (0x33f3e4 0x0): stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f130,0x00000000), stub! fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x43f41870, 0x206a948, 10, 0, (null), 3, 3, 0x0, 0x00000000 fixme:wbemprox:client_security_Release 0x43f41870 fixme:ver:GetCurrentPackageId (0x33fba8 0x0): stub fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x43f41870, 0x2086b90, 10, 0, (null), 3, 3, 0x0, 0x00000000 fixme:wbemprox:client_security_Release 0x43f41870 fixme:hnetcfg:fw_apps_get__NewEnum 0x2086b48, 0x5eef13c fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x2086b48, L"C:\\Program Files\\Steam\\steam.exe" fixme:hnetcfg:fw_app_put_Name 0x2086b48, L"Steam" fixme:hnetcfg:fw_app_put_Enabled 0x2086b48, -1 fixme:hnetcfg:fw_apps_Add 0x2086cb0, 0x2086b48 err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:advapi:StopTraceA (0, "Steam Event Tracing", 0x59ee964) stub fixme:advapi:StartTraceA (0x59ee9f0, "Steam Event Tracing", 0x59ee964) stub fixme:advapi:OpenTraceA 0x59ee7c4: stub fixme:advapi:EnableTrace (1, 0x10, 4, {22fb2cd6-0e7b-422b-a0c7-2fad1fd0e716}, cafe4242): stub fixme:advapi:CloseTrace cafe4242: stub fixme:advapi:ProcessTrace 0x60fa168 1 0x0 0x0: stub fixme:iphlpapi:NotifyAddrChange (Handle 0x31703cc, overlapped 0x31703d0): stub fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION fixme:win:RegisterDeviceNotificationA (hwnd=0x60122, filter=0x68ff12c,flags=0x00000004) returns a fake device notification handle! err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1 fixme:ntdll:NtLockFile I/O completion on lock not implemented yet fixme:ntdll:NtLockFile I/O completion on lock not implemented yet fixme:imm:ImmReleaseContext (0x20120, 0x20fc968): stub fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:RegisterDeviceNotificationA (hwnd=0x2010c, filter=0x33e3e4,flags=0x00000004) returns a fake device notification handle! fixme:d3d:init_driver_info Unhandled OS version 6.3, reporting Win 8. fixme:win:EnumDisplayDevicesW ((null),0,0x33d8b0,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33da50,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),1,0x33da50,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:RegisterDeviceNotificationW (hwnd=0xa00b0, filter=0x79df56c,flags=0x00000000) returns a fake device notification handle! fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:win:RegisterDeviceNotificationW (hwnd=0xf00b0, filter=0x79df56c,flags=0x00000000) returns a fake device notification handle! fixme:file:SetFileCompletionNotificationModes 0x220 1 - stub wine: Unhandled exception 0x80000003 in thread b at address 0x100894f9 (thread 000b), starting debugger... fixme:advapi:RegisterTraceGuidsW (0x100ae390, 0x12483660, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1243c974, (null), (null), 0x12483678): stub fixme:advapi:RegisterTraceGuidsW register trace class {00000000-0000-0000-0000-000000000000} fixme:appbar:SHAppBarMessage unknown msg: 4 fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fbec 4 stub fixme:ver:GetCurrentPackageId (0x33fba8 0x0): stub fixme:appbar:SHAppBarMessage unknown msg: 4 fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval err:ole:RevokeDragDrop invalid hwnd 0x500a0 0x100894f9: int $3 Modules: Module Address Debug info Name (241 modules) PE 400000- 698000 Deferred steamwebhelper PE 26e0000- 27fb000 Deferred crashhandler PE 10000000-125ff000 Export libcef PE 40001000-401bd000 Deferred libwine.1.0.dylib ELF 4079c000-407bb000 Deferred version<elf> \-PE 407a0000-407b8000 \ version ELF 407bb000-407cf000 Deferred psapi<elf> \-PE 407c0000-407ce000 \ psapi ELF 407cf000-407ea000 Deferred userenv<elf> \-PE 407d0000-407e7000 \ userenv ELF 42fd1000-43194000 Deferred user32<elf> \-PE 42fe0000-43149000 \ user32 ELF 43194000-43302000 Deferred gdi32<elf> \-PE 431a0000-43294000 \ gdi32 ELF 43302000-433a6000 Deferred advapi32<elf> \-PE 43310000-4338d000 \ advapi32 ELF 433a6000-43453000 Deferred shlwapi<elf> \-PE 433b0000-4342d000 \ shlwapi ELF 43453000-4361f000 Deferred ole32<elf> \-PE 43460000-435dc000 \ ole32 ELF 4361f000-436e0000 Deferred rpcrt4<elf> \-PE 43620000-436bd000 \ rpcrt4 ELF 436e0000-43899000 Deferred oleaut32<elf> \-PE 436f0000-43844000 \ oleaut32 ELF 43899000-438b1000 Deferred wtsapi32<elf> \-PE 438a0000-438af000 \ wtsapi32 ELF 438b1000-43a2e000 Deferred comctl32<elf> \-PE 438c0000-43a02000 \ comctl32 ELF 43a2e000-43b03000 Deferred winmm<elf> \-PE 43a30000-43af3000 \ winmm ELF 43b03000-43b38000 Deferred msacm32<elf> \-PE 43b10000-43b33000 \ msacm32 ELF 43b38000-43b7e000 Deferred secur32<elf> \-PE 43b40000-43b77000 \ secur32 ELF 43b7e000-43bc0000 Deferred netapi32<elf> \-PE 43b80000-43bb5000 \ netapi32 ELF 43bc0000-43bf3000 Deferred iphlpapi<elf> \-PE 43bd0000-43bed000 \ iphlpapi ELF 43bf3000-43c34000 Deferred ws2_32<elf> \-PE 43c00000-43c2d000 \ ws2_32 ELF 43c34000-43ca3000 Deferred oleacc<elf> \-PE 43c40000-43c8d000 \ oleacc ELF 43ca3000-43cfd000 Deferred usp10<elf> \-PE 43cb0000-43cf7000 \ usp10 PE 43cfd000-43d8a000 Deferred libfreetype.6.dylib ELF 43d8a000-43db4000 Deferred imm32<elf> \-PE 43d90000-43daf000 \ imm32 ELF 43db4000-43e7e000 Deferred winemac<elf> \-PE 43dc0000-43e55000 \ winemac PE 4558d000-4560c000 Deferred clouddocs ELF 46648000-4668b000 Deferred uxtheme<elf> \-PE 46650000-46683000 \ uxtheme ELF 467e2000-46a9d000 Deferred shell32<elf> \-PE 467f0000-46a5a000 \ shell32 ELF 46c2b000-46ccb000 Deferred setupapi<elf> \-PE 46c30000-46ca7000 \ setupapi ELF 46cce000-46d72000 Deferred wininet<elf> \-PE 46cd0000-46d5f000 \ wininet ELF 46d72000-46da0000 Deferred mpr<elf> \-PE 46d80000-46d9b000 \ mpr ELF 7b800000-7babb000 Deferred kernel32<elf> \-PE 7b810000-7ba7f000 \ kernel32 ELF 7bc00000-7bd44000 Stabs ntdll<elf> \-PE 7bc10000-7bd04000 \ ntdll ELF 7bf00000-7bf04000 Deferred <wine-loader> PE 90008000-9000c000 Deferred help PE 900ac000-900d6000 Deferred libsystem_info.dylib PE 900d6000-900da000 Deferred libextension.dylib PE 900da000-900e7000 Deferred libcommoncrypto.dylib PE 9057d000-90589000 Deferred netauth PE 9082a000-90839000 Deferred libz.1.dylib PE 90839000-90855000 Deferred openscripting PE 90855000-9085a000 Deferred libcorevmclient.dylib PE 9085a000-9086e000 Deferred libcmph.dylib PE 9086e000-908c5000 Deferred libc++.1.dylib PE 908d2000-908e7000 Deferred imagecapture PE 908e7000-909e9000 Deferred launchservices PE 909e9000-909f8000 Deferred opengl PE 909f8000-90a18000 Deferred multitouchsupport PE 90b85000-90cb4000 Deferred coreui PE 90cb4000-90d2b000 Deferred securityfoundation PE 90d2b000-90e1d000 Deferred libiconv.2.dylib PE 90e1d000-90e44000 Deferred libpng.dylib PE 90e44000-90e6b000 Deferred iconservices PE 90f11000-90f63000 Deferred opencl PE 90f63000-90f67000 Deferred libdyld.dylib PE 90f67000-91054000 Deferred libvmisc.dylib PE 91054000-91057000 Deferred libsystem_configuration.dylib PE 91057000-91069000 Deferred libbsm.0.dylib PE 910da000-910f8000 Deferred ubiquity PE 910ff000-9118d000 Deferred performanceanalysis PE 91190000-911b8000 Deferred libdispatch.dylib PE 911b8000-911d8000 Deferred libsystem_kernel.dylib PE 912c9000-912ca000 Deferred applicationservices PE 912ca000-9130b000 Deferred libglimage.dylib PE 9136c000-91483000 Deferred desktopservicespriv PE 91483000-91484000 Deferred liblaunch.dylib PE 91808000-92435000 Deferred appkit PE 92435000-924aa000 Deferred heimdal PE 924dc000-928d4000 Deferred coregraphics PE 928d4000-92932000 Deferred printcore PE 93240000-9353f000 Deferred carboncore PE 93555000-938b7000 Deferred foundation PE 938b7000-9394d000 Deferred libsystem_c.dylib PE 9394d000-9395a000 Deferred crashreportersupport PE 9395a000-93a68000 Deferred libvdsp.dylib PE 93a68000-93aa8000 Deferred navigationservices PE 93ab0000-93e0b000 Deferred libmecabra.dylib PE 93e0b000-93f10000 Deferred libjp2.dylib PE 93f15000-93fb3000 Deferred ink PE 93fb3000-94020000 Deferred datadetectorscore PE 94020000-9403e000 Deferred libcrfsuite.dylib PE 9403e000-9406e000 Deferred corevideo PE 9406e000-94099000 Deferred libxslt.1.dylib PE 941c9000-941cb000 Deferred libsystem_blocks.dylib PE 9472e000-94826000 Deferred libfontparser.dylib PE 94826000-94829000 Deferred libquarantine.dylib PE 94829000-94833000 Deferred libcopyfile.dylib PE 9489c000-9489d000 Deferred accelerate PE 9489d000-948a3000 Deferred libmacho.dylib PE 948a3000-948ad000 Deferred libsystem_notify.dylib PE 94957000-949fe000 Deferred metadata PE 94a17000-94a25000 Deferred opendirectory PE 94a25000-94a33000 Deferred speechsynthesis PE 94a33000-94a35000 Deferred libremovefile.dylib PE 94a35000-94a38000 Deferred libsystem_sandbox.dylib PE 94a65000-94a68000 Deferred securityhi PE 94a68000-94a72000 Deferred diskarbitration PE 94a72000-94be4000 Deferred libblas.dylib PE 94be4000-94c25000 Deferred symbolication PE 94c28000-94c3c000 Deferred corebluetooth PE 94c3c000-94c91000 Deferred hiservices PE 94c91000-95046000 Deferred corefoundation PE 95046000-95060000 Deferred libsystem_malloc.dylib PE 950d8000-950d9000 Deferred libopenscriptingutil.dylib PE 950d9000-950df000 Deferred print PE 950df000-9513b000 Deferred libtiff.dylib PE 95145000-9514d000 Deferred speechrecognition PE 951a1000-951df000 Deferred libsystem_network.dylib PE 951df000-951e0000 Deferred coreservices PE 951e0000-951e3000 Deferred libsystem_coreservices.dylib PE 951e3000-95208000 Deferred apple80211 PE 95208000-9520b000 Deferred loginsupport PE 953c6000-953cb000 Deferred libgif.dylib PE 953d4000-954cb000 Deferred libxml2.2.dylib PE 954cb000-954d1000 Deferred libcompiler_rt.dylib PE 954d1000-954fe000 Deferred chunkinglibrary PE 95f56000-95fce000 Deferred ats PE 960b9000-960d5000 Deferred cfopendirectory PE 960d5000-960ed000 Deferred liblinearalgebra.dylib PE 960f0000-960f1000 Deferred libunc.dylib PE 960f1000-960f2000 Deferred carbon PE 960f2000-962e2000 Deferred libobjc.a.dylib PE 962e2000-966cb000 Deferred liblapack.dylib PE 966cb000-96854000 Deferred audiotoolbox PE 96854000-968ef000 Deferred colorsync PE 9693e000-969aa000 Deferred corewifi PE 969aa000-969c2000 Deferred libsystem_asl.dylib PE 96a28000-96a4f000 Deferred libxpc.dylib PE 96bc5000-96bcf000 Deferred commonauth PE 96d7e000-96dc8000 Deferred libfontregistry.dylib PE 96dc8000-96dcf000 Deferred libsystem_trace.dylib PE 96dcf000-96de1000 Deferred libsystem_coretls.dylib PE 96de1000-97060000 Deferred security PE 97060000-970d7000 Deferred searchkit PE 970d7000-9720a000 Deferred uifoundation PE 9720a000-97401000 Deferred libicucore.a.dylib PE 983bb000-983be000 Deferred libcvmspluginsupport.dylib PE 9896d000-98991000 Deferred libjpeg.dylib PE 98991000-989d9000 Deferred applejpeg PE 989d9000-98a4d000 Deferred corewlan PE 98a4d000-98a9f000 Deferred libcups.2.dylib PE 98aa3000-98aff000 Deferred languagemodeling PE 98aff000-98c16000 Deferred coretext PE 98c16000-98c1d000 Deferred libsystem_networkextension.dylib PE 98c1d000-98de3000 Deferred quartzcore PE 98de3000-98e17000 Deferred libsystem_m.dylib PE 98e17000-98e54000 Deferred remoteviewservices PE 98e54000-98e5d000 Deferred libsystem_dnssd.dylib PE 98e5d000-98e64000 Deferred libsystem_platform.dylib PE 98e8e000-98e8f000 Deferred libkeymgr.dylib PE 98e8f000-98e93000 Deferred libpam.2.dylib PE 98e93000-98e9b000 Deferred libunwind.dylib PE 98e9b000-98ecf000 Deferred coreservicesinternal PE 98ecf000-98ed0000 Deferred audiounit PE 98ed0000-98f26000 Deferred coreaudio PE 993cf000-993fe000 Deferred libarchive.2.dylib PE 993fe000-99696000 Deferred coredata PE 99696000-996c9000 Deferred gss PE 996c9000-99749000 Deferred systemconfiguration PE 99749000-99784000 Deferred debugsymbols PE 997c1000-997cf000 Deferred libbz2.1.0.dylib PE 997cf000-99ac2000 Deferred coreimage PE 99ac2000-99acb000 Stabs libsystem_pthread.dylib PE 99acb000-99ad4000 Deferred libcgcms.a.dylib PE 99ad4000-99aee000 Deferred kerberos PE 99aee000-99cfd000 Deferred cfnetwork PE 99d89000-99d9d000 Deferred sharing PE 99eb1000-9a2e5000 Deferred facecore PE 9a2e5000-9a2e7000 Deferred libdiagnosticmessagesclient.dyli PE 9a2e7000-9a2f0000 Deferred fsevents PE 9a2f2000-9a312000 Deferred libresolv.9.dylib PE 9a312000-9a317000 Deferred tcc PE 9a317000-9a381000 Deferred libcorecrypto.dylib PE 9a381000-9a38b000 Deferred libgfxshared.dylib PE 9a38b000-9a38c000 Deferred veclib PE 9a38c000-9a3b3000 Deferred libc++abi.dylib PE 9a40d000-9a40f000 Deferred libsystem.b.dylib PE 9a40f000-9a42f000 Deferred generationalstorage PE 9a42f000-9a434000 Deferred libheimdal-asn1.dylib PE 9a434000-9a870000 Deferred vimage PE 9a87d000-9a88e000 Deferred langanalysis PE 9a88e000-9a92f000 Deferred qd PE 9a92f000-9aabf000 Deferred libsqlite3.dylib PE 9aabf000-9ac04000 Deferred imageio PE 9ac04000-9ac0d000 Deferred netfs PE 9ac30000-9ac40000 Deferred libxar.1.dylib PE 9ac40000-9ac4e000 Deferred protocolbuffer PE 9ac4e000-9ac53000 Deferred commonpanels PE 9ac53000-9acb8000 Deferred ae PE 9acb8000-9ad0e000 Deferred htmlrendering PE 9ad49000-9ad56000 Deferred libkxld.dylib PE 9ad56000-9ad5b000 Deferred iosurface PE 9ae3f000-9aed2000 Deferred coresymbolication PE 9aed2000-9af5a000 Deferred osservices PE 9af5a000-9afd8000 Deferred iokit PE 9afd8000-9b088000 Deferred iobluetooth PE 9bc92000-9bca3000 Deferred libgl.dylib PE 9bcf3000-9bcf5000 Deferred liblangid.dylib PE 9bcf5000-9bdc1000 Deferred backup PE 9bdc1000-9c19b000 Deferred hitoolbox PE 9c19b000-9c19e000 Deferred libradiance.dylib PE 9c2ad000-9c2dd000 Deferred dictionaryservices PE 9c2dd000-9c2e1000 Deferred servicemanagement PE 9c38f000-9c39a000 Deferred carbonsound PE 9c39a000-9c39f000 Deferred libcache.dylib PE 9c39f000-9c3e0000 Deferred libauto.dylib PE 9c3e0000-9c3e3000 Deferred libsystem_secinit.dylib PE 9c3f6000-9c43a000 Deferred libglu.dylib PE 9c446000-9c461000 Deferred liblzma.5.dylib PE 9c461000-9c470000 Deferred speechrecognitioncore 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 0000001c 0 00000019 0 00000018 0 00000013 0 0000001a plugplay.exe 00000020 0 0000001f 0 0000001b 0 00000021 explorer.exe 00000025 0 00000024 0 00000023 0 00000022 0 0000005e steamerrorreporter.exe 0000005f 0 00000031 steamerrorreporter.exe 0000002f 0 00000053 Steam.exe 00000065 0 00000064 0 00000051 0 00000059 0 00000045 0 0000003f 0 0000003e 0 0000003b 0 00000039 0 00000038 0 00000036 0 00000035 0 0000002a 0 00000050 0 0000005b 0 00000056 0 00000055 0 00000052 0 00000066 0 0000002c 0 00000009 0 0000005c 0 00000054 0 00000062 0 00000060 0 00000058 0 00000061 (D) C:\Program Files\Steam\bin\steamwebhelper.exe 00000044 0 00000037 0 0000004d 0 0000004c 0 0000004b 0 0000004a 0 00000048 0 00000017 0 0000000b 0 <== 00000016 0 0000000d 0 0000000c 0 00000034 0 00000032 0 00000049 0 0000002e 0 0000002d 0 0000002b 0 00000028 0 00000027 0 00000026 0 00000033 0 00000046 steamerrorreporter.exe 0000005d 0 00000047 0 System information: Wine build: wine-1.7.49 Platform: i386 Host system: Darwin Host version: 14.3.0 fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fbec 4 stub fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub fixme:thread:GetThreadPreferredUILanguages 56, 0x33f7b4, 0x0 0x33f7b8 fixme:winsock:WSALookupServiceBeginW (0x33f6a4 0x00000ff0 0x33f6e0) Stub! [0812/213544:ERROR:network_change_notifier_win.cc(173)] WSALookupServiceBegin failed with: 8 fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7ec, overlapped 0x1865d0): stub fixme:win:RegisterDeviceNotificationW (hwnd=0x700b6, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:win:RegisterDeviceNotificationW (hwnd=0x700b6, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:ver:GetCurrentPackageId (0x33f3e4 0x0): stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f130,0x00000000), stub! fixme:ver:GetCurrentPackageId (0x33fba8 0x0): stub fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:system:SystemParametersInfoW Unknown action: 116 err:wininet:open_http_connection create_netconn failed: 12029 fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 err:wininet:open_http_connection create_netconn failed: 12029 fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x1865d0): stub Forced create of Win32Event but it already existed
Any help you could give would be greatly appreciated! Regards Smax Réponses |
||
deri82 | Dimanche 5 Juillet 2015 à 8:27 | ||
deri82
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.33" +WINEVERSION="1.7.46" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.46" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
Ayaskull | Mardi 24 Mars 2015 à 17:33 | ||
Ayaskull
|
MessagesHi. The Steam client is running good on my laptop with LinuxMint 17.1. At first I thought that the games would be also running good but I'm having different issues for every game I try to play (basically I can't play anything I've tried). should I try to find an individual solution for each game? I'm a noob so sorry for this question. RéponsesMardi 24 Mars 2015 à 19:42
Mardi 24 Mars 2015 à 21:18
Mercredi 25 Mars 2015 à 16:07
Jeudi 26 Mars 2015 à 14:31
|
||
Minty64 | Mardi 10 Mars 2015 à 17:59 | ||
Minty64
|
MessagesHi, I'm having an issue with installing new prefix's of steam on POL [hope this is in the right spot] an old (before the bug) install of steam does this while a new install of steam does this here is the debug [03/10/15 09:37:19] - Running wine-1.7.33 Steam.exe -no-dwrite (Working directory : /home/jute/.PlayOnLinux/wineprefix/Steam/drive_c/Program Files/Steam) fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. fixme:imm:ImmGetOpenStatus (0x21c770): semi-stub fixme:ver:GetCurrentPackageId (0x32e360 (nil)): stub fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046} err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:ver:GetCurrentPackageId (0x30e5b0 (nil)): stub fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x7cdfcd6c, 0x1e48508, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0x7cdfcd6c fixme:hnetcfg:fw_apps_get__NewEnum 0x1e54f30, 0x5d0e4fc fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x7cdfcd6c, 0x1e54f48, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0x7cdfcd6c fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x1e49800, L"C:\\Program Files\\Steam\\steam.exe" fixme:hnetcfg:fw_app_put_Name 0x1e49800, L"Steam" fixme:hnetcfg:fw_app_put_Enabled 0x1e49800, -1 fixme:hnetcfg:fw_apps_Add 0x1e46cf8, 0x1e49800 err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1 fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled fixme:wbemprox:enum_class_object_Next timeout not supported fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:imm:ImmDisableTextFrameService Stub fixme:thread:GetThreadPreferredUILanguages 56, 0x33f784, (nil) 0x33f788 fixme:winsock:WSALookupServiceBeginW (0x33f670 0x00000ff0 0x33f6ac) Stub! [0310/093720:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8 fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7b8, overlapped 0xb15d68): stub fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle! fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle! [0310/093720:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment. fixme:win:EnumDisplayDevicesW ((null),0,0x33f094,0x00000000), stub! fixme:ver:GetCurrentPackageId (0x270dff4 (nil)): stub fixme:iphlpapi:NotifyAddrChange (Handle 0x2fa014c, overlapped 0x2fa0150): stub fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION fixme:win:RegisterDeviceNotificationA (hwnd=0x100ac, filter=0x67ce4fc,flags=0x00000004) returns a fake device notification handle! fixme:ver:GetCurrentPackageId (0x33fbac (nil)): stub fixme:imm:ImmReleaseContext (0x100b6, 0x1e878c8): stub fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub fixme:gdi:GdiInitializeLanguagePack stub [0310/093721:ERROR:renderer_main.cc(227)] Running without renderer sandbox fixme:module:load_library unsupported flag(s) used (flags: 0x00000800) fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub fixme:gdi:GdiInitializeLanguagePack stub [0310/093721:ERROR:renderer_main.cc(227)] Running without renderer sandbox fixme:module:load_library unsupported flag(s) used (flags: 0x00000800) fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub err:ole:RevokeDragDrop invalid hwnd 0x100b4 err:ole:RevokeDragDrop invalid hwnd 0x100b6 err:ole:RevokeDragDrop invalid hwnd 0x100b8 err:ole:RevokeDragDrop invalid hwnd 0x100ba err:ole:RevokeDragDrop invalid hwnd 0x100bc err:ole:RevokeDragDrop invalid hwnd 0x100be err:ole:RevokeDragDrop invalid hwnd 0x100c0 err:ole:RevokeDragDrop invalid hwnd 0x100c2 fixme:win:UnregisterDeviceNotification (handle=0xcafecafe), STUB! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x2fa0150): stub fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xb15d68): stub fixme:advapi:UnregisterTraceGuids 0: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub [2015-03-10 09:37:19] Startup - updater built Feb 18 2015 15:33:21 [2015-03-10 09:37:19] Verifying installation... [2015-03-10 09:37:20] Verification complete [2015-03-10 09:37:28] Shutdown fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub it happens after steam updates for the first time, this next debug is after it updates and asks if you're a new user or have an existing account [03/10/15 10:56:15] - Running wine-1.7.33 Steam.exe -no-dwrite (Working directory : /home/jute/.PlayOnLinux/wineprefix/Steam/drive_c/Program Files/Steam) fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. fixme:imm:ImmGetOpenStatus (0x21c6f0): semi-stub fixme:ver:GetCurrentPackageId (0x32e360 (nil)): stub fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046} err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:ver:GetCurrentPackageId (0x30e5b0 (nil)): stub fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x7cbfcd6c, 0x1daed18, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0x7cbfcd6c fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:hnetcfg:fw_apps_get__NewEnum 0x1e48178, 0x5d0e4fc fixme:wbemprox:client_security_SetBlanket 0x7cbfcd6c, 0x1daed18, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0x7cbfcd6c fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x1e75450, L"C:\\Program Files\\Steam\\steam.exe" fixme:hnetcfg:fw_app_put_Name 0x1e75450, L"Steam" fixme:hnetcfg:fw_app_put_Enabled 0x1e75450, -1 fixme:hnetcfg:fw_apps_Add 0x1e33010, 0x1e75450 err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1 p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled fixme:wbemprox:enum_class_object_Next timeout not supported fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:imm:ImmDisableTextFrameService Stub fixme:thread:GetThreadPreferredUILanguages 56, 0x33f784, (nil) 0x33f788 fixme:winsock:WSALookupServiceBeginW (0x33f670 0x00000ff0 0x33f6ac) Stub! [0310/105616:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8 fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7b8, overlapped 0xb15d68): stub fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle! fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle! [0310/105616:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment. fixme:win:EnumDisplayDevicesW ((null),0,0x33f094,0x00000000), stub! fixme:ver:GetCurrentPackageId (0x270dff4 (nil)): stub fixme:iphlpapi:NotifyAddrChange (Handle 0x2fa014c, overlapped 0x2fa0150): stub fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION fixme:win:RegisterDeviceNotificationA (hwnd=0x100ac, filter=0x67ce4fc,flags=0x00000004) returns a fake device notification handle! fixme:ver:GetCurrentPackageId (0x33fbac (nil)): stub fixme:imm:ImmReleaseContext (0x100b6, 0x1ed3a38): stub fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub fixme:gdi:GdiInitializeLanguagePack stub [0310/105617:ERROR:renderer_main.cc(227)] Running without renderer sandbox fixme:module:load_library unsupported flag(s) used (flags: 0x00000800) fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub fixme:gdi:GdiInitializeLanguagePack stub [0310/105617:ERROR:renderer_main.cc(227)] Running without renderer sandbox fixme:module:load_library unsupported flag(s) used (flags: 0x00000800) fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub err:ole:RevokeDragDrop invalid hwnd 0x100b4 err:ole:RevokeDragDrop invalid hwnd 0x100b6 err:ole:RevokeDragDrop invalid hwnd 0x100b8 err:ole:RevokeDragDrop invalid hwnd 0x100ba err:ole:RevokeDragDrop invalid hwnd 0x100bc err:ole:RevokeDragDrop invalid hwnd 0x100be err:ole:RevokeDragDrop invalid hwnd 0x100c0 err:ole:RevokeDragDrop invalid hwnd 0x100c2 fixme:win:UnregisterDeviceNotification (handle=0xcafecafe), STUB! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x2fa0150): stub [0310/105626:ERROR:ipc_channel_win.cc(371)] pipe error: 676 [0310/105626:ERROR:ipc_channel_win.cc(405)] pipe error: 233 fixme:advapi:UnregisterTraceGuids 0: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xb15d68): stub fixme:advapi:UnregisterTraceGuids 0: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub [2015-03-10 10:56:16] Startup - updater built Feb 18 2015 15:33:21 [2015-03-10 10:56:16] Verifying installation... [2015-03-10 10:56:16] Verification complete [2015-03-10 10:56:27] Shutdown RéponsesMardi 10 Mars 2015 à 18:18
Mardi 10 Mars 2015 à 18:55
Mardi 10 Mars 2015 à 19:39
Samedi 14 Mars 2015 à 15:44
Samedi 14 Mars 2015 à 17:54
|
||
RobLoach | Mercredi 21 Janvier 2015 à 17:24 | ||
RobLoach
|
MessagesQuestion... Should this be updated to use: POL_Call POL_Install_steam And then consolidate the additional changes into POL_Install_steam? RéponsesMercredi 21 Janvier 2015 à 18:42
|
||
kaboom9530 | Jeudi 15 Janvier 2015 à 19:29 | ||
kaboom9530
|
MessagesGreeting fellow users. I installed Steam on POL, but I am never able to log in. I was able to do it before in the past, but now I'm stuck on the login box loading to log me in. I have left my computer on for over ten minutes and still no connection to Steam. I have tried uninstalling and reinstalling, still no luck.I ran the program in debug, I see this: filter=0xd1ce4ec,flags=0x00000004) returns a fake device notification handle! Does anyone have any suggestions for fixing this problem? Thank you. RéponsesJeudi 15 Janvier 2015 à 19:36
Jeudi 15 Janvier 2015 à 20:10
Jeudi 15 Janvier 2015 à 20:10
|
||
zenforic | Mardi 6 Janvier 2015 à 6:08 | ||
zenforic
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHi, this program runs great, although, to fix the community page issue automatically and such, I recommend this slight modification. If you don't want to use it it's fine just a suggestion. The changes are in the "Installing mandatory dependencies" section, and reasons are commented in there. Differences@@ -22,6 +22,8 @@ # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext +# [zenforic] (2015-01-05) +# added fix for community/game search section. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -53,6 +55,9 @@ POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB +POL_Call POL_Install_ie8 #fixes the glitchy browsing/non-working search bar in community +POL_Call POL_Install_flashplayer #fixes other glitches +POL_Call POL_Install_AdobeAir #slihtly speeds up dropdowns (e.g. for birthdate selections) POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext # [zenforic] (2015-01-05) # added fix for community/game search section. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.33" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Call POL_Install_ie8 #fixes the glitchy browsing/non-working search bar in community POL_Call POL_Install_flashplayer #fixes other glitches POL_Call POL_Install_AdobeAir #slihtly speeds up dropdowns (e.g. for birthdate selections) POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMardi 6 Janvier 2015 à 6:12
|
||
petch | Jeudi 1 Janvier 2015 à 21:54 | ||
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRe-disable game overlay http://www.playonmac.com/en/topic-12737-Issue_Final_Fantasy_VII_Steam_.html Differences@@ -70,14 +70,14 @@ POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam -# Note : semble ne plus être nécéssaire désormais -#POL_Wine_OverrideDLL "" "gameoverlayrenderer" +# Note : semble ne plus être nécéssaire désormais? +POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" -POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" +#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.33" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais? POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMardi 10 Mars 2015 à 23:01
|
||
RobLoach | Samedi 13 Décembre 2014 à 20:55 | ||
RobLoach
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThis updates to use the latest version of WINE. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.22" +WINEVERSION="1.7.33" GAME_VMS="256" #starting the script Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.33" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
diziet | Vendredi 3 Octobre 2014 à 4:38 | ||
diziet
|
Messagesin the past week after a steam update i was no longer able to view the store and community pages properly, after looking on winehq.org i found the following: [BEST SOLLUTION]To be able to see text Add in terminal after installing steam : wine reg add 'HKCU\Software\Valve\Steam' /v DWriteEnable /t REG_DWORD /d 00000000 doing this fixed my problem viewing all the steam pages, i'm not sure what this does but maybe you need to add this to the installer? diziet Réponses |
||
Quentin PÂRIS | Samedi 16 Aoüt 2014 à 20:41 | ||
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFont problem fixed Differences@@ -53,6 +53,7 @@ POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB +POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" @@ -64,7 +65,6 @@ POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" -POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" @@ -72,7 +72,6 @@ ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" -POL_Wine_OverrideDLL "" "dwrite" ## End Fix # Making shortcut Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.22" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMardi 2 September 2014 à 6:39
Edité par Tinou |
||
Quentin PÂRIS | Lundi 4 Aoüt 2014 à 17:38 | ||
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -30,17 +30,6 @@ WINEVERSION="1.7.22" GAME_VMS="256" -# Select the good install file -if [ "$POL_LANG" == "fr" ]; then -STEAM_EXEC="SteamInstall_French.msi" -elif [ "$POL_LANG" == "de" ]; then -STEAM_EXEC="SteamInstall_German.msi" -elif [ "$POL_LANG" == "es" ]; then -STEAM_EXEC="SteamInstall_Spanish.msi" -else -STEAM_EXEC="SteamInstall.msi" -fi - #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" @@ -66,11 +55,14 @@ #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" -POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" +#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" -POL_Wine msiexec /i "$STEAM_EXEC" /q +POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" + +POL_Wine_WaitBefore "$TITLE" +POL_Wine "SteamSetup.exe" POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.22" GAME_VMS="256" #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Function_FontsSmoothRGB #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" #POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" POL_Wine_OverrideDLL "" "dwrite" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
||
Quentin PÂRIS | Mardi 22 Juillet 2014 à 11:38 | ||
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -85,6 +85,9 @@ # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" + + POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.22" GAME_VMS="256" # Select the good install file if [ "$POL_LANG" == "fr" ]; then STEAM_EXEC="SteamInstall_French.msi" elif [ "$POL_LANG" == "de" ]; then STEAM_EXEC="SteamInstall_German.msi" elif [ "$POL_LANG" == "es" ]; then STEAM_EXEC="SteamInstall_Spanish.msi" else STEAM_EXEC="SteamInstall.msi" fi #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Function_FontsSmoothRGB #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Wine msiexec /i "$STEAM_EXEC" /q POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" POL_Wine_OverrideDLL "" "dwrite" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesDimanche 3 Aoüt 2014 à 3:44
Lundi 4 Aoüt 2014 à 11:00
Lundi 4 Aoüt 2014 à 13:01
Lundi 4 Aoüt 2014 à 15:29
Lundi 4 Aoüt 2014 à 16:10
Lundi 4 Aoüt 2014 à 16:11
Lundi 4 Aoüt 2014 à 16:32
Lundi 4 Aoüt 2014 à 16:34
Lundi 4 Aoüt 2014 à 16:52
Lundi 4 Aoüt 2014 à 16:54
Lundi 4 Aoüt 2014 à 16:59
Lundi 4 Aoüt 2014 à 17:11
Lundi 4 Aoüt 2014 à 17:18
Lundi 4 Aoüt 2014 à 17:21
Lundi 4 Aoüt 2014 à 17:38
Lundi 4 Aoüt 2014 à 17:52
Lundi 4 Aoüt 2014 à 17:55
Lundi 4 Aoüt 2014 à 17:56
Lundi 4 Aoüt 2014 à 18:04
Lundi 4 Aoüt 2014 à 18:27
Lundi 4 Aoüt 2014 à 18:49
Lundi 4 Aoüt 2014 à 19:32
Samedi 9 Aoüt 2014 à 22:06
Samedi 16 Aoüt 2014 à 21:20
Vendredi 26 September 2014 à 16:42
|
||
Quentin PÂRIS | Dimanche 20 Juillet 2014 à 1:00 | ||
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.5.25" +WINEVERSION="1.7.22" GAME_VMS="256" # Select the good install file Nouveau code source#!/bin/bash # Date : (2010-02-10 16:30) # Last revision : (2012-07-21 21:00) # Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 # Distribution used to test : Debian Testing # Author : Tinou # Licence : Retail # Only For : http://www.playonlinux.com # # Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on # souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, # par contre il est difficile de le désinstaller. # # On installe donc seulement gecko qui est indispensable, et on évite le reste # ############################################################## # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" WINEVERSION="1.7.22" GAME_VMS="256" # Select the good install file if [ "$POL_LANG" == "fr" ]; then STEAM_EXEC="SteamInstall_French.msi" elif [ "$POL_LANG" == "de" ]; then STEAM_EXEC="SteamInstall_German.msi" elif [ "$POL_LANG" == "es" ]; then STEAM_EXEC="SteamInstall_Spanish.msi" else STEAM_EXEC="SteamInstall.msi" fi #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" # Si le prefix existe, on propose d'en faire un autre if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE" PREFIX="$APP_ANSWER" else PREFIX="Steam" fi # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" # Installing mandatory dependencies POL_Wine_InstallFonts POL_Function_FontsSmoothRGB #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" POL_Wine msiexec /i "$STEAM_EXEC" /q POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" POL_Wine_OverrideDLL "" "dwrite" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesLundi 18 Aoüt 2014 à 22:14
|
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