Using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
abdu
Level 2
Level 2
Posts: 20
Joined: Mon Jul 05, 2021 7:43 pm

Using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages

Post by abdu »

Anyone kind enough solve this

Code: Select all

warning: You are using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages. If you encounter problems, please retest in a clean 32-bit WINEPREFIX before reporting a bug.
------------------------------------------------------
Using winetricks 20220411 - sha256sum: 69856050cfe9d97902dfd68c1ad42a10a4be0fe76660744126d7e3ed75610495 with wine-8.13 and WINEARCH=win64
Help explain what it is and how to perfect installation configuration to no warning
Thiis launched: maktabah shamilah, but something err/hangs when the app. downloading data

Code: Select all

 011c:err:winediag:gnutls_process_attach failed to load libgnutls, no support for encryption
011c:err:winediag:process_attach failed to load libgnutls, no support for pfx import/export
011c:err:winediag:process_attach Failed to load libgnutls, secure connections will not be available.
011c:err:secur32:SECUR32_initSchannelSP no schannel support, expect problems
011c:err:winediag:ntlm_check_version ntlm_auth was not found. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
011c:err:ntlm:ntlm_LsaApInitializePackage no NTLM support, expect problems
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
011c:fixme:netprofm:list_manager_GetConnectivity 00D497A0, 03B40F9C
011c:fixme:file:NtLockFile I/O completion on lock not implemented yet
011c:fixme:win:RegisterPowerSettingNotification (00040044,{02731015-4510-4526-99e6-e5a17ebd1aea},0): stub
011c:err:module:import_dll Library Qt5Pdf.dll (which is needed by L"C:\\shamela4_4\\1442.041\\lib\\PySide2\\plugins\\imageformats\\qpdf.dll") not found
011c:err:module:import_dll Library Qt5Svg.dll (which is needed by L"C:\\shamela4_4\\1442.041\\lib\\PySide2\\plugins\\imageformats\\qsvg.dll") not found
011c:err:vulkan:wine_vk_init Failed to load libvulkan.so.1.
011c:err:wgl:init_opengl Failed to load libGL: libGL.so.1: cannot open shared object file: No such file or directory
011c:err:wgl:init_opengl OpenGL support is disabled.
011c:err:d3d:wined3d_caps_gl_ctx_create Failed to find a suitable pixel format.
011c:err:d3d:wined3d_adapter_gl_init Failed to get a GL context for adapter 00A29888.
011c:fixme:system:EnableNonClientDpiScaling (000400A0): stub
011c:fixme:file:server_get_file_info Unsupported info class e
011c:fixme:file:server_get_file_info Unsupported info class e
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages

Post by jkfloris »

It's just a warning.
It's there because there are Winetricks that only work in a 32-bit prefix or that only install the 32-bit DLL files.

Code: Select all

011c:err:winediag:gnutls_process_attach failed to load libgnutls, no support for encryption
...
011c:err:winediag:ntlm_check_version ntlm_auth was not found. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
...
011c:err:wgl:init_opengl Failed to load libGL: libGL.so.1: cannot open shared object file: No such file or directory
Make sure you have installed the packages that provide libgnutls, ntlm_auth and libGL.so.1
On Debian/ Ubuntu: libgnutls30:{amd64,i386}, winbind and libgl1:{amd64,i386}
abdu
Level 2
Level 2
Posts: 20
Joined: Mon Jul 05, 2021 7:43 pm

Re: Using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages

Post by abdu »

How they're different names on Arch
is ntlm_auh Python?

$ sudo pacman --noconfirm --needed -Ss ntlm
world/python-ntlm-auth 1.5.0-7
Creates NTLM authentication structures
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit versions of packages

Post by jkfloris »

For a complete list, visit https://archlinux.org/packages/multilib/x86_64/wine/.
The missing parts are:
ntlm_auth is in the samba package
libgnutls is in gnutls and lib32-gnutls
libgl1 is in libglvnd and lib32-libglvnd
Locked