Como instalar o wine com o .NET framework em vez do mono?

3

Estou usando o fedora 23 e quero instalar o .NET framework 4 no wine.

baseado em aqui , eu tenho que remover mono primeiro. Mas quando eu corro o seguinte comando recebo resultados sem sucesso.

$ wine uninstaller --remove '{E45D8920-A758-4088-B6C6-31DBB276992E}'
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
fixme:winediag:start_process Wine Staging 1.7.55 is a testing version containing experimental patches.
fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org.
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias -210, std (d/m/y): 22/09/2015, dlt (d/m/y): 22/03/2015
uninstaller: The application with GUID '{E45D8920-A758-4088-B6C6-31DBB276992E}' was not found

A remoção do pacote mono-vinho também remove os principais pacotes vinho .

Por favor, diga-me como posso remover mono?

    
por Matin Lotfaliee 11.12.2015 / 07:57

1 resposta

2

A maneira mais fácil de instalar o .NET 4.0 é usar o mais novo script Winetricks :

$ wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
$ sh winetricks dotnet40

Além disso, se você tiver um vinho de 64 bits instalado, precisará usar o .NET 4.5 mais recente ( dotnet45 ) em vez de 4.0.

    
por 14.12.2015 / 03:29