wine 2.4 No Windows95 compatibility?

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
ve2pkt
Level 1
Level 1
Posts: 8
Joined: Wed Aug 31, 2016 4:34 am

wine 2.4 No Windows95 compatibility?

Post by ve2pkt »

Good day,
I have not used wine for a while, but just notices version 2.4 (Staging) has no windows98 or 95. I am using a very old program and the only compatibility I had was using version of windows95.

What should I do? downgrade to a prior version, if so, where can I get it?

Thanks.
DarkPlayer
Level 2
Level 2
Posts: 23
Joined: Sun Mar 13, 2016 11:15 am

Re: wine 2.4 No Windows95 compatibility?

Post by DarkPlayer »

The problem is that you created a 64 bit prefix, but the first Windows version supporting 64 bit is XP/Win 2003. In order to imitate older versions, you have to create a 32 bit only prefix:

Code: Select all

WINEPREFIX=~/.wine-win95 WINEARCH=win32 winecfg
Now you should be able to select Windows 95.

In order to start programs in this prefix, you will always need to use the environment variable WINEPREFIX=~/.wine-win95.
kirang
Newbie
Newbie
Posts: 1
Joined: Wed Jul 05, 2017 3:12 pm

Re: wine 2.4 No Windows95 compatibility?

Post by kirang »

DarkPlayer wrote:The problem is that you created a 64 bit prefix, but the first Windows version supporting 64 bit is XP/Win 2003. In order to imitate older versions, you have to create a 32 bit only prefix:

Code: Select all

WINEPREFIX=~/.wine-win95 WINEARCH=win32 winecfg
Now you should be able to select Windows 95.

In order to start programs in this prefix, you will always need to use the environment variable WINEPREFIX=~/.wine-win95.
Hello,
How do I always use the environment variable WINEPREFIX=~/.wine-win95?
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: wine 2.4 No Windows95 compatibility?

Post by Bob Wya »

kirang wrote: Hello,
How do I always use the environment variable WINEPREFIX=~/.wine-win95?

Code: Select all

echo 'export WINEPREFIX="${HOME}/.wine-win95"' >>"${HOME}/.bashrc"
In this case you would need to run:

Code: Select all

unset -v WINEPREFIX
to use the default WINEPREFIX (~/.wine)

Bob
Locked