msys2 install

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
riton41
Newbie
Newbie
Posts: 1
Joined: Mon Apr 12, 2021 10:28 am

msys2 install

Post by riton41 »

Hello,
I am trying to install msys2 on wine 6.6 without success. I am getting the following error:
Thank you for your help


wine64 msys2-x86_64-20210228.exe
0034:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0034:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0064:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0064:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
006c:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
006c:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
002c:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
002c:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0024:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0024:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00c8:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00c8:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00d0:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00d0:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
INTEL-MESA: warning: Performance support disabled, consider sysctl dev.i915.perf_stream_paranoid=0

0024:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
0024:fixme:console:GetConsoleProcessList (000000000021FC90,2): stub
0024:fixme:win:RegisterPowerSettingNotification (0000000000020058,{02731015-4510-4526-99e6-e5a17ebd1aea},0): stub
0024:fixme:nls:get_dummy_preferred_ui_language (0x8 000000000021F7C8 000000000021F7F0 000000000021F7CC) returning a dummy value (current locale)
0024:fixme:nls:get_dummy_preferred_ui_language (0x8 000000000021F7C8 000000000021F7F0 000000000021F7CC) returning a dummy value (current locale)
0024:fixme:font:freetype_set_outline_text_metrics failed to read full_nameW for font L"Ani"!
0024:fixme:font:get_nearest_charset TCI failing on 20000000
0024:fixme:font:get_nearest_charset returning DEFAULT_CHARSET face->fs.fsCsb[0] = 20000000 file = L"Z:\\usr\\share\\fonts\\truetype\\fonts-gujr-extra\\aakar-medium.ttf"
0024:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
0024:fixme:system:EnableNonClientDpiScaling (0000000000020068): stub
0024:fixme:dwmapi:DwmExtendFrameIntoClientArea (0000000000020068, 000000000021F590) stub
0024:fixme:uxtheme:SetWindowThemeAttribute (0000000000020068,1,000000000021F5B8,8): stub
0024:fixme:dwmapi:DwmDefWindowProc stub
0024:fixme:explorerframe:taskbar_list_SetProgressValue iface 0000000000324540, hwnd 0000000000020068, ullCompleted 64, ullTotal 64 stub!
0024:fixme:explorerframe:taskbar_list_SetProgressState iface 0000000000324540, hwnd 0000000000020068, flags 0 stub!
0024:fixme:explorerframe:taskbar_list_SetOverlayIcon iface 0000000000324540, hwnd 0000000000020068, hIcon 0000000000000000, pszDescription (null) stub!
0024:fixme:nls:get_dummy_preferred_ui_language (0x8 000000000021B0C8 000000000021B0F0 000000000021B0CC) returning a dummy value (current locale)
0024:fixme:nls:get_dummy_preferred_ui_language (0x8 000000000021B0C8 000000000021B0F0 000000000021B0CC) returning a dummy value (current locale)
0024:fixme:explorerframe:taskbar_list_SetOverlayIcon iface 0000000000324B80, hwnd 0000000000020068, hIcon 0000000000000000, pszDescription (null) stub!
0124:err:ole:com_get_class_object apartment not initialised
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: msys2 install

Post by jkfloris »

Two things you could try:

Code: Select all

0024:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
- Install the winbind package

- Install the Microsoft corefonts

Code: Select all

# With winetricks:
winetricks corefonts

# On Ubuntu/ Mint/ Debian/ etc. you can use
sudo apt install ttf-mscorefonts-installer
Locked