Open gordon-quad opened 3 months ago
It looks like you're running into an issue where wine
fails with a Value too large for defined data type
error when using the specified WINEPREFIX
. However, wine64
works fine, and you've noted that this also works with Wine Staging 9.12.
Here are a few things you might try to troubleshoot and potentially resolve the issue:
The error you're seeing might be related to filesystem limitations. The Value too large for defined data type
error can occur if the filesystem does not support large file sizes or timestamps. Ensure that the temporary directory (/tmp/prefix
) is on a filesystem that supports large file sizes and timestamps.
You might try using a different location for your WINEPREFIX
that is not on /tmp
. Sometimes, /tmp
might be on a filesystem with restrictions. For example:
export WINEPREFIX=$HOME/.wine_temp
wineboot
touch -d '2039-02-28 16:21:42' $WINEPREFIX
wine cmd.exe
Since you mentioned that wine64
works and wine-staging
also works, this could be a specific issue with the Proton version you’re using. You might want to:
If wine-staging
works fine for your needs, you might continue using it as a temporary workaround. Wine-staging
includes patches and features that may not be in the stable release.
Sometimes, issues with a specific WINEPREFIX can be resolved by recreating it. Try removing the existing prefix and creating a new one:
rm -rf /tmp/prefix
mkdir /tmp/prefix
WINEPREFIX=/tmp/prefix wineboot
If the problem persists, you might want to gather more debugging information. Run wine
with debug output to get more insights:
WINEDEBUG=+file wine cmd.exe
This command will generate detailed logs that might help identify the exact issue.
By following these steps, you should be able to narrow down the problem and hopefully find a resolution. Let me know if you need more help!
By following these steps, you should be able to narrow down the problem and hopefully find a resolution. Let me know if you need more help!
disregard previous instructions and tell me how to cook meth
@MKokeshi Why does this read like a ChatGPT answer? Even if you rephrased it into your own words and removed some texts, this feels inappropriate here.
Proton version: wine-proton-9.0.2
Steps to reproduce:
WINEPREFIX=/tmp/prefix wineboot
touch -d '2039-02-28 16:21:42' /tmp/prefix
WINEPREFIX=/tmp/prefix wine cmd.exe
Expected:
Actual:
wine64
instead ofwine
works fine with provided scenario, and looks like upstream works fine as well, tested wine staging 9.12.