install dotnetfx35 on wine 64 bit

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
behruz
Newbie
Newbie
Posts: 2
Joined: Sat Oct 15, 2011 7:57 am

install dotnetfx35 on wine 64 bit

Post by behruz »

hi i install fifa12 on wine 1.3.30 in open suse 11.4 64 bit now i want run fifaconfig.exe with this command

Code: Select all

wine fifaconfig.exe
output command above

Code: Select all

wine: Install Mono for Windows to run .NET 2.0 applications
now where is mono for install
another quastion when i can install dotnetfx35 on wine output like this

Code: Select all

fixme:clusapi:GetNodeClusterState ((null),0x33ec24) stub!
fixme:advapi:DecryptFileA "c:\\fab7ab1e38c5d0299f8235\\" 00000000
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2011, dlt (d/m/y): 22/03/2011
fixme:clusapi:GetNodeClusterState ((null),0x33ec24) stub!
fixme:advapi:DecryptFileA "c:\\3cfc8e48537aafc5b6b61d06b4\\" 00000000
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2011, dlt (d/m/y): 22/03/2011
err:ntlm:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path.
err:ntlm:SECUR32_initNTLMSP Usually, you can find it in the winbind package of your distribution.
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
at last how i can install dotnetfx35 with winetrick on wine 64 bit
User avatar
dimesio
Moderator
Moderator
Posts: 13205
Joined: Tue Mar 25, 2008 10:30 pm

Re: install dotnetfx35 on wine 64 bit

Post by dimesio »

behruz wrote: now where is mono for install
Use winetricks to install it.

Code: Select all

err:ntlm:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path.
err:ntlm:SECUR32_initNTLMSP Usually, you can find it in the winbind package of your distribution.
Do what it says; install winbind. You do that through your package manager; if you're not sure what package it's in, ask on your distro's support forum.
at last how i can install dotnetfx35 with winetrick on wine 64 bit
You need to create a 32 bit wineprefix with WINEARCH=win32. That's needed for all .NET versions.

BTW, don't install both Mono and .NET into the same wineprefix.
behruz
Newbie
Newbie
Posts: 2
Joined: Sat Oct 15, 2011 7:57 am

Post by behruz »

Thnx for answer but i cant understand this line 32 bit wineprefix with WINEARCH=win32. That's needed for all .NET versions
how i create wineprefix 32 bit and if i install mono not nessecery install net 3.5 on wine
sorry for my english
User avatar
dimesio
Moderator
Moderator
Posts: 13205
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

behruz wrote:Thnx for answer but i cant understand this line 32 bit wineprefix with WINEARCH=win32. That's needed for all .NET versions
how i create wineprefix 32 bit and if i install mono not nessecery install net 3.5 on wine
sorry for my english

Code: Select all

WINEARCH=win32 WINEPREFIX=/path/to/wineprefix wine /path/to/installer
Substitute the actual paths to the wineprefix and the installer.

For more info on creating wineprefixes: http://wiki.winehq.org/FAQ#head-faf9617 ... 522d490faf
Locked