Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have a speed-reading program I purchased with uses dotnet2. However, dotnet2 doesn't run on 64 bit wine. How would I install dotnet2?

share|improve this question

1 Answer

You can have multiple wine prefix on your machine, each running as a separate wine. So you can make a 32 bits prefix and install dotnet2 in it:

This will create a new wineprefix (.wine32 in your home) and configure it as 32 bits:

WINEARCH=win32 WINEPREFIX=~/.win32 winecfg

You can use it this way combined with winetricks to configure WINEARCH, create the prefix and install dotnet 2.0 in one command:

env WINEARCH=win32 WINEPREFIX=~/.wine32 winetricks dotnet20

or only:

env WINEPREFIX=~/.wine32 winetricks dotnet20

if you already set the WINEARCH and created the WINEPREFIX with the 1st command above.

share|improve this answer
Thanks. . . How would you install the program to that prefix? – KI4JGT Dec 26 '12 at 4:19
WINEPREFIX=~/.wine32 wine setupprogram.exe – laurent Dec 26 '12 at 4:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.