https://bugs.winehq.org/show_bug.cgi?id=56079
Bug ID: 56079 Summary: "Tahl": Uncover the Evil Within "C drive disk space is 1116M byte(s) lack error" during install Product: Wine Version: 9.0-rc3 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: cedric.dewijs@eclipso.eu Distribution: ---
Tahl can't be installed. it gives this error during install: C drive disk space is 1116M byte(s) lack error
To reproduce: $ rm -rf ~/wine-tmp/ $ mkdir ~/wine-tmp $ export WINEPREFIX=~/wine-tmp $ cd ~/wine-tmp $ unzip ~/Downloads/Tahl-Uncover-the-Evil-Within_Win_KO_ISO-Version.zip Archive: /home/jose/Downloads/Tahl-Uncover-the-Evil-Within_Win_KO_ISO-Version.zip inflating: Tahl.iso $ fuseiso Tahl.iso cd/ $ cd cd/ $ wine SETUP.EXE Now the error "C drive disk space is 1116M byte(s) lack error" comes up.
Software: $ wine --version wine-9.0-rc3f rom this aur PKGBUILD: https://bugs.winehq.org/attachment.cgi?id=75744 $ uname -a Linux cedric-work-laptop 6.6.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 21 Dec 2023 19:01:01 +0000 x86_64 GNU/Linux Running lxde on Xorg
Hardware: $ lscpi 03:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Navi 22 [Radeon RX 6700/6700 XT/6750 XT / 6800M/6850M XT] (rev c3) 07:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne [Radeon Vega Series / Radeon Vega Mobile Series] (rev c4) $ xrandr --listproviders Providers: number : 2 Provider 0: id: 0x44 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 4 outputs: 2 associated providers: 1 name:modesetting Provider 1: id: 0x124 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 1 associated providers: 1 name:modesetting
https://bugs.winehq.org/show_bug.cgi?id=56079
--- Comment #1 from Cedric cedric.dewijs@eclipso.eu --- Forgot to mention the download location: https://www.myabandonware.com/game/tahl-uncover-the-evil-within-e54#download
https://bugs.winehq.org/show_bug.cgi?id=56079
Bernhard Übelacker bernhardu@mailbox.org changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bernhardu@mailbox.org
--- Comment #2 from Bernhard Übelacker bernhardu@mailbox.org --- This installer calls GetDiskFreeSpaceA short before the MessageBoxA. When following where the free disk space is retrieved one gets to this location which limits the returned value depending on the windows version: https://gitlab.winehq.org/wine/wine/-/blob/b89d9f3145545e335278001d2a3c8992a...
And indeed, setting windows version to ME makes the installer no longer show this message. Unfortunately later the installer tries to do a CreateFileA("D:\SETUP\..\LOCAL\.") which fails, maybe due to readonly directories, and crashes. I copied the CD content to c:, fixed permissions with. find cdrom0 -type d -print0 | xargs -0 chmod 755 find cdrom0 -type f -print0 | xargs -0 chmod 644 Then I could install from the resulting directory. And start the game, but the player seems not moveable.
But in the end setting windows version to ME would fix showing this bugs error.