web-dev-qa-db-ja.com

dotnetをインストールできません

私がするたびに

winetricks dotnet20

インストールウィンドウが表示され、次にヒットすると、クラッシュします。

これが端末の表示です

l@l-Aspire-5515:~$ winetricks dotnet20
Executing w_do_call dotnet20
Executing load_dotnet20
Executing w_do_call remove_mono
Executing load_remove_mono
------------------------------------------------------
Mono does not appear to be installed.
------------------------------------------------------
Executing w_do_call fontfix
Executing load_fontfix
Setting Windows version to win2k
Executing winetricks_early_wine regedit C:\windows\Temp\_dotnet20\set-winver.reg
Current wine does not have wine bug 10467, so not applying workaround
Current wine does not have wine bug 30845, so not applying workaround
Current wine does not have wine bug 30845, so not applying workaround
Executing wine dotnetfx.exe
fixme:advapi:DecryptFileA "C:\\users\\l\\Temp\\IXP000.TMP\\" 00000000
fixme:advapi:LsaOpenPolicy ((null),0x33f31c,0x00000001,0x33f344) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:storage:create_storagefile Storage share mode not implemented.
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x451d7c
------------------------------------------------------
Note: command 'wine dotnetfx.exe' returned status 5.  Aborting.
------------------------------------------------------
l@l-Aspire-5515:

私は何をすべきか?

3
Magicguy

2つのバージョン wine/wine-monoをインストールしましたか?

私は同じ問題を抱えていて、次の手順を実行しました。

  1. Wineで始まる以前のパッケージをすべてアンインストールします

    Sudo apt-get remove 'wine*'
    
  2. を使用してapt-repositoryを追加します

    Sudo add-apt-repository ppa:ubuntu-wine/ppa
    
  3. リポジトリからWine 1.7をインストールします。

    Sudo apt-get update && Sudo apt-get install wine1.7
    

    次のコマンドを実行します。

    winetricks dotnet20
    

必要なファイルをダウンロードして、正しくインストールするには。

3
Mostafa Nazari
rm ~/.wine -rf && apt-get install mono-complete wine:i386 -y && winetricks dotnet20

表示されます。それはubuntu 14.04 AMD64で動作します。

ご参考までに。インストールしただけです

ワイン:i386

Wine:i386をインストールする前にこれを行うことができます。

 yes |  apt-get remove wine
0
jake

Wine 1.7をインストールした後:

export WINEARCH=win32
export WINEPREFIX=~/.problematic
winecfg

@ yes @を2回言う。やっぱり仕事。

0
Vsevolod Gromov

ntlm_authのインストールを試行します:

Sudo apt-get install winbind

.NETが機能するntlm_authを必要とするため。

関連する:

0
kenorb