http://bugs.winehq.org/show_bug.cgi?id=58696
Bug ID: 58696 Summary: Profi cash 12 (32-Bit German Banking Software) crashes during starting among Linux Mint Product: WineHQ.org Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: www-unknown Assignee: wine-bugs@winehq.org Reporter: michael.howland@kabelbw.de Distribution: ---
Created attachment 79293 --> http://bugs.winehq.org/attachment.cgi?id=79293 Wine debugger mistake details
Profi cash version 12 is a 32-Bit German Banking Software. It is crashing during starting in a Wine 9.0 box among Linux Mint. Wine tricks is also installed. I think the mistakes have to do with Microsofts .Net Runtime environment. I could install the above mentioned software without a mistake message under Wine 9.0. .Net package is also installed. The previous main Version of Profi cash was version 11. Profi cash version 11 runs in a Wine 9.0 box on the same computer. The only two things which are not doing is printing and working with a reiner sct (smartcard reader) via USB. But I can live with that. I think the reason is, that Wine is just a box for a Windows program and not a complete Windows environment. If so, that would be fine. By the way Profi cash Version 11 needs no .Net Runtime environment to run. The development of Version 11 is terminated. New features and amendments by law or regulations will be only technically implemented in Version 12. Hope someone can help me. Best regards.
http://bugs.winehq.org/show_bug.cgi?id=58696
joaopa jeremielapuree@yahoo.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jeremielapuree@yahoo.fr
--- Comment #1 from joaopa jeremielapuree@yahoo.fr --- Is it this software https://www.vr-dienste.de/aktuelles/neu-profi-cash-version-12/?
http://bugs.winehq.org/show_bug.cgi?id=58696
Andrew Nguyen arethusa26@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|www-unknown |-unknown Product|WineHQ.org |Wine Version|unspecified |9.0
http://bugs.winehq.org/show_bug.cgi?id=58696
--- Comment #2 from michael.howland@kabelbw.de --- (In reply to joaopa from comment #1)
Is it this software https://www.vr-dienste.de/aktuelles/neu-profi-cash-version-12/?
Hello joaopa, yes. You can also download the software from: https://atruvia.de/profi-cash
Atruvia AG, Fiduciastraße 20,D-76227 Karlsruhe (Germany) is the name of the data center of the cooperative banking group in germany called Volksbanken und Raiffeisenbanken. Compared with France (Banque Populaire et Credit Agricole) Atruvia AG is also the developer of the software Profi cash. Thank you in advance for your assistance. Greetings Michael
http://bugs.winehq.org/show_bug.cgi?id=58696
--- Comment #3 from Andrew Nguyen arethusa26@gmail.com --- Created attachment 79329 --> http://bugs.winehq.org/attachment.cgi?id=79329 Profi cash 12 debug output
The wine-9.0 version is rather old; please upgrade to at least the latest stable version (wine-10.0).
With the latest version of Wine from Git (wine-10.15-125-gfc70990d579), after installing Profi cash 12, if I don't start it immediately from the installer, then it's likely to hang on startup with a deadlock.
As a workaround, I found that it's possible to successfully launch and use Profi cash 12 when I install it in a clean WINEARCH=win32 Wine prefix with dotnet48 installed using winetricks. When run, the Profi cash 12 installer will warn about the Windows version being set to win7, but it should be able to install successfully, and from my cursory testing, the application does seem to present a UI and allow basic functions.
Commands used to install Profi cash 12 in a clean Wine prefix with example WINEPREFIX value:
WINEARCH=win32 WINEPREFIX=~/proficash12 ./winetricks -q dotnet48 WINEPREFIX=~/proficash12 wine profi_cash_12_installer.exe
http://bugs.winehq.org/show_bug.cgi?id=58696
Andrew Nguyen arethusa26@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Keywords| |download Summary|Profi cash 12 (32-Bit |Profi cash 12 (32-Bit |German Banking Software) |German Banking Software) |crashes during starting |may hang in critical |among Linux Mint |section wait on startup Status|UNCONFIRMED |NEW URL| |https://web.archive.org/web | |/20250914090219/https://www | |.vr-updates.de/gad/man/prof | |i_cash_12_installer.exe
--- Comment #4 from Andrew Nguyen arethusa26@gmail.com --- Confirming the issue.
http://bugs.winehq.org/show_bug.cgi?id=58696
--- Comment #5 from Esme Povirk madewokherd@gmail.com --- Looks like it might be a deadlock between Mono's loader lock and WPF's WpfSharedBamlSchemaContext._syncObject.
Mono probably shouldn't ever run user code with the loader lock held, because that makes it impossible to avoid situations like this.
http://bugs.winehq.org/show_bug.cgi?id=58696
--- Comment #6 from Esme Povirk madewokherd@gmail.com --- It's really hard to get good info on deadlocks. I may need to write some tools.