You are not logged in.
Hey,
What package i need for emulating windows98 through my wine ? Becouse now i dont have win98 in winecfg.
Last edited by x_user (2015-03-16 09:50:42)
Offline
What's the output of
pacman -Qs wine
uname -aWorks for me on my 32-bit Arch with [testing] repos enabled.
Offline
"wine" packages provide this you directly ? Or something additional package ?
Offline
Becouse now i dont have win98 in winecfg.
Are you sure? In wine 1.7.38's programs/winecfg/appdefaults.c there's quite a selection:
} win_versions[] =
{
{ "win81", "Windows 8.1", 6, 3, 0x2580,VER_PLATFORM_WIN32_NT, " ", 0, 0, "WinNT"},
{ "win8", "Windows 8", 6, 2, 0x23F0,VER_PLATFORM_WIN32_NT, " ", 0, 0, "WinNT"},
{ "win2008r2", "Windows 2008 R2", 6, 1, 0x1DB1,VER_PLATFORM_WIN32_NT, "Service Pack 1", 1, 0, "ServerNT"},
{ "win7", "Windows 7", 6, 1, 0x1DB1,VER_PLATFORM_WIN32_NT, "Service Pack 1", 1, 0, "WinNT"},
{ "win2008", "Windows 2008", 6, 0, 0x1772,VER_PLATFORM_WIN32_NT, "Service Pack 2", 2, 0, "ServerNT"},
{ "vista", "Windows Vista", 6, 0, 0x1772,VER_PLATFORM_WIN32_NT, "Service Pack 2", 2, 0, "WinNT"},
{ "win2003", "Windows 2003", 5, 2, 0xECE, VER_PLATFORM_WIN32_NT, "Service Pack 2", 2, 0, "ServerNT"},
#ifdef _WIN64
{ "winxp64", "Windows XP", 5, 2, 0xECE, VER_PLATFORM_WIN32_NT, "Service Pack 2", 2, 0, "WinNT"},
#else
{ "winxp", "Windows XP", 5, 1, 0xA28, VER_PLATFORM_WIN32_NT, "Service Pack 3", 3, 0, "WinNT"},
{ "win2k", "Windows 2000", 5, 0, 0x893, VER_PLATFORM_WIN32_NT, "Service Pack 4", 4, 0, "WinNT"},
{ "winme", "Windows ME", 4, 90, 0xBB8, VER_PLATFORM_WIN32_WINDOWS, " ", 0, 0, ""},
{ "win98", "Windows 98", 4, 10, 0x8AE, VER_PLATFORM_WIN32_WINDOWS, " A ", 0, 0, ""},
{ "win95", "Windows 95", 4, 0, 0x3B6, VER_PLATFORM_WIN32_WINDOWS, "", 0, 0, ""},
{ "nt40", "Windows NT 4.0", 4, 0, 0x565, VER_PLATFORM_WIN32_NT, "Service Pack 6a", 6, 0, "WinNT"},
{ "nt351", "Windows NT 3.51", 3, 51, 0x421, VER_PLATFORM_WIN32_NT, "Service Pack 5", 5, 0, "WinNT"},
{ "win31", "Windows 3.1", 3, 10, 0, VER_PLATFORM_WIN32s, "Win32s 1.3", 0, 0, ""},
{ "win30", "Windows 3.0", 3, 0, 0, VER_PLATFORM_WIN32s, "Win32s 1.3", 0, 0, ""},
{ "win20", "Windows 2.0", 2, 0, 0, VER_PLATFORM_WIN32s, "Win32s 1.3", 0, 0, ""}Offline
At least when using winecfg (on x86-64), the oldest supported OS version is Windows XP. I remember seeing something about support for older systems being dropped, but I might have dreamt about it ![]()
R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K
Offline
Which makes sense as you are using the 64bit version of wine/windows which never existed for earlier than XP. The options are still there though if you make a WIN32 prefix so you should look into that
PS: That's literally what the code snippet brebs posted hints at, if WIN64 only show options that have both versions ELSE show all the legacy 32bit variants.
Last edited by V1del (2015-03-16 08:19:08)
Offline
Which makes sense as you are using the 64bit version of wine/windows which never existed for earlier than XP. The options are still there though if you make a WIN32 prefix so you should look into that
Right on the money
'WINEARCH=win32 winecfg' shows all the options brebs highlighted before.
R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K
Offline
Yes, "WINEARCH=win32 WINEPREFIX=/my/patch/to/wine winecfg" - working as well
Solved
Offline