Wine Mono – Run .NET 2.0 Applications for Windows

monowine

I am trying to run application for Windows on Ubuntu 11.10

I tried

wine /path/to/file.exe

Error is:

wine: Install Mono for Windows to run .NET 2.0 applications.

I have mono(seems to be not Mono for windows)

mono /path/to/file.exe

gives me error:

The assembly mscorlib.dll was not found or could not be loaded.
It should have been installed in the `/usr/lib/mono/2.0/mscorlib.dll' directory.

What do I need to do?

Best Answer

try installing mono for windows or try .NET for windows with winetricks. In a shell try:

winetricks dotnet20

and

winetricks mono28
Related Question