You are not logged in.

#1 2015-03-15 14:36:08

x_user
Member
Registered: 2015-03-13
Posts: 60

emulating windows98 through wine[SOLVED]

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

#2 2015-03-15 15:53:33

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: emulating windows98 through wine[SOLVED]

What's the output of

pacman -Qs wine
uname -a

Works for me on my 32-bit Arch with [testing] repos enabled.

Offline

#3 2015-03-15 16:52:43

x_user
Member
Registered: 2015-03-13
Posts: 60

Re: emulating windows98 through wine[SOLVED]

"wine" packages provide this you directly ? Or something additional package ?

Offline

#4 2015-03-15 19:23:33

brebs
Member
Registered: 2007-04-03
Posts: 3,742

Re: emulating windows98 through wine[SOLVED]

x_user wrote:

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

#5 2015-03-15 21:30:15

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: emulating windows98 through wine[SOLVED]

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 tongue


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#6 2015-03-15 21:43:51

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,076

Re: emulating windows98 through wine[SOLVED]

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

#7 2015-03-15 23:14:50

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: emulating windows98 through wine[SOLVED]

V1del wrote:

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 smile 'WINEARCH=win32 winecfg' shows all the options brebs highlighted before.


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#8 2015-03-16 09:50:31

x_user
Member
Registered: 2015-03-13
Posts: 60

Re: emulating windows98 through wine[SOLVED]

Yes, "WINEARCH=win32 WINEPREFIX=/my/patch/to/wine winecfg" - working as well smile Solved

Offline

Board footer

Powered by FluxBB