web-dev-qa-db-fra.com

"La commande 'wine netframework3.exe' a renvoyé le statut 53. Abandon." lors de l'installation de 'dotnet30' dans winetricks

c'est la première fois que j'utilise askubuntu, alors ne me tape pas dessus

actuellement j'utilise ubuntu 16.04 via crouton sur un Chromebook; J'essaie d'installer le composant Windows dotnet30 via winetricks pour un programme appelé brawlbox. Je ne sais pas quelle partie du journal je dois mettre, alors voici le tout:

Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
Executing w_do_call dotnet30
Executing load_dotnet30
Executing w_do_call remove_mono
Executing load_remove_mono
------------------------------------------------------
Mono does not appear to be installed.
------------------------------------------------------
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
------------------------------------------------------
If install fails, set /proc/sys/kernel/yama/ptrace_scope to 0.  See http://bugs.winehq.org/show_bug.cgi?id=30410
------------------------------------------------------
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
Executing w_do_call dotnet20
dotnet20 already installed, skipping
------------------------------------------------------
Installing .net 3.0 runtime takes 3 minutes on a very fast machine, and the Finished dialog may hide in the taskbar.
------------------------------------------------------
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
Setting Windows version to winxp
Executing winetricks_early_wine regedit C:\windows\Temp\_dotnet30\set-winver.reg
/home/user/Desktop/winetricks: 1770: test: Illegal number: wine-2.0.1
------------------------------------------------------
Working around wine bug 30845 -- Using native fusion...
------------------------------------------------------
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
Executing wine netframework3.exe
fixme:clusapi:GetNodeClusterState ((null),0x32ebc4) stub!
fixme:advapi:DecryptFileA ("d:\\9c506c6b50fece7ce3465c89ed\\", 00000000): stub
err:virtual:map_file_into_view failed to set 00000007 protection on file map, noexec filesystem?
err:module:import_dll Loading library dlmgr.dll (which is needed by L"d:\\9c506c6b50fece7ce3465c89ed\\setup.exe") failed (error c000007b).
err:module:LdrInitializeThunk Main exe initialization for L"d:\\9c506c6b50fece7ce3465c89ed\\setup.exe" failed, status c0000135
------------------------------------------------------
Note: command 'wine netframework3.exe' returned status 53.  Aborting.
------------------------------------------------------
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
fixme:msvcrt:__clean_type_info_names_internal (0x64083a50) stub
(xenial)user@localhost:~/Desktop$ Sudo apt-get update

J'ai cherché partout le sens de "statut 53", mais je n'ai rien trouvé. est-il possible de corriger cela?

1

Essayer:

cd /usr/bin
Sudo rm ./winetricks
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks

Sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/Release.key
Sudo apt-key add Release.key
Sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
Sudo apt-get update
Sudo apt-get install --install-recommends winehq-stable

Supprimez ensuite le préfixe Wine (cela supprimera toutes les applications installées dans Wine):

rm -r ~/.wine

Créez un nouveau préfixe 32 bits:

WINEARCH=win32 wineboot

Exécutez ensuite à nouveau la commande Winetricks:

winetricks dotnet35

(dotnet35 installera également .NET 3.0)

0
QwertyChouskie