installing wine-mono with wine 1.9.5
installing wine-mono with wine 1.9.5
Hi
I'm struggling with wine-mono for some time.
I've put wine-mono-4.6.0.msi in /usr/share/wine/mono/ as wineHQ wiki suggest
yet every time I get "err:mscoree:CLRRuntimeInfo_GetRuntimeHost Wine Mono is not installed"
I`m running 1.9.5 wine on 64bit multilib slackware if it's of any matter
Any help?
I'm struggling with wine-mono for some time.
I've put wine-mono-4.6.0.msi in /usr/share/wine/mono/ as wineHQ wiki suggest
yet every time I get "err:mscoree:CLRRuntimeInfo_GetRuntimeHost Wine Mono is not installed"
I`m running 1.9.5 wine on 64bit multilib slackware if it's of any matter
Any help?
Re: installing wine-mono with wine 1.9.5
The wiki says:
Where is Wine installed on your system?/usr/share/wine/mono, or possibly some substitution for /usr if Wine was installed to a different location.
Re: installing wine-mono with wine 1.9.5
it is installed under /usr
like /usr/bin/, /usr/lib/ and so on
like /usr/bin/, /usr/lib/ and so on
Re: installing wine-mono with wine 1.9.5
Have you tried a clean wineprefix?
Re: installing wine-mono with wine 1.9.5
Yep, first thing I tried was from clean wineprefix, yet the app i'm trying won't start on bare wine.
The first error i get clearly points to XNA framework, after getting it mono request bumps up.
well, i'm trying to run "Magicka", and mono is not mentioned in appDB (https://appdb.winehq.org/objectManager. ... &iId=22627)
thou since it should be installed by wine automatically ..
The first error i get clearly points to XNA framework, after getting it mono request bumps up.
well, i'm trying to run "Magicka", and mono is not mentioned in appDB (https://appdb.winehq.org/objectManager. ... &iId=22627)
thou since it should be installed by wine automatically ..
Re: installing wine-mono with wine 1.9.5
Have you tried installing whatever version of .NET this game requires? If the answer is yes, and you used winetricks, then that's why wine-mono is not installed: it has to be uninstalled before installing native .NET, and winetricks does that for you.The first error i get clearly points to XNA framework, after getting it mono request bumps up.
An easy way to check if it is installed is to runthou since it should be installed by wine automatically ..
Code: Select all
wine uninstaller
Re: installing wine-mono with wine 1.9.5
There is only Wine Gecko (32-bit) on the list.
Is wine-mono a system-wide installation?
If not, i tried both, wineprefix witn .net and without one, with same outcome.
Is wine-mono a system-wide installation?
If not, i tried both, wineprefix witn .net and without one, with same outcome.
Re: installing wine-mono with wine 1.9.5
What does
show?
Code: Select all
wine64 uninstaller
Re: installing wine-mono with wine 1.9.5
It is empty in there
Re: installing wine-mono with wine 1.9.5
If wine-mono is not installed on your system, Wine should download it for you when it creates a new wineprefix. You should get a popup message about that. Do you get one? Post terminal output from creating a new wineprefix.
Are you using a distro package or did you build Wine yourself?
Are you using a distro package or did you build Wine yourself?
Re: installing wine-mono with wine 1.9.5
Log from creating a new wineprefix
http://pastebin.com/KKfRf4mZ
I build wine myself and could mess something up, yet, some apps do work on this build
Here is build script I used http://pastebin.com/mESVnriT
I'll try binary package provided in downloads
http://pastebin.com/KKfRf4mZ
I build wine myself and could mess something up, yet, some apps do work on this build
Here is build script I used http://pastebin.com/mESVnriT
I'll try binary package provided in downloads
Re: installing wine-mono with wine 1.9.5
Hmmm. That's a very short build script. Very, very short.randmax wrote:Log from creating a new wineprefix
http://pastebin.com/KKfRf4mZ
I build wine myself and could mess something up, yet, some apps do work on this build
Here is build script I used http://pastebin.com/mESVnriT
I'll try binary package provided in downloads

Here's a link to a folder of my wine build scripts for Gentoo (that are in the 3rd party Layman repositories for Gentoo). They are pretty readable - despite there being some (external) BASH functions to do the heavy lifting (Gentoo's so called eclass's)...
All you have to do is search for the phrase mono in the ebuild and you'd see that your Slack build script is missing a tonne of steps... Like (for starters) downloading the actual mono .msi installer!
This bit:
Code: Select all
MV="4.5.6"
...
mono? ( https://dl.winehq.org/wine/wine-mono/${MV}/wine-mono-${MV}.msi )
This bit:
Code: Select all
$(use_enable mono mscoree)
This bit:
Code: Select all
if use mono ; then
insinto /usr/share/wine/mono
doins "${DISTDIR}"/wine-mono-${MV}.msi
fi
- Put all (non-specific) files into the directory /usr/share/wine/mono
- Install the previously downloaded mono installer .msi file version "${MV}"=4.5.6 into this directory.

Bob
Re: installing wine-mono with wine 1.9.5
The current wine-mono version is 4.6.0, and the original post that it was in /usr/share/wine/mono.Bob Wya wrote: If mono support is enabled:
- Put all (non-specific) files into the directory /usr/share/wine/mono
- Install the previously downloaded mono installer .msi file version "${MV}"=4.5.6 into this directory.
One thing did just occur to me: in building 1.9.5 in a WoW64 setup, as your script does, you would have run into https://bugs.winehq.org/show_bug.cgi?id=40253, and the 32 bit side of the build would have failed. That's now fixed in git, so try with that.randmax wrote:I build wine myself and could mess something up, yet, some apps do work on this build
Here is build script I used http://pastebin.com/mESVnriT
Re: installing wine-mono with wine 1.9.5
Thanks!! I'll fix that this afternoon...dimesio wrote: The current wine-mono version is 4.6.0, and the original post that it was in /usr/share/wine/mono.
