meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wine:start [2020/04/14 12:53] niziakwine:start [2020/04/16 12:50] (current) niziak
Line 11: Line 11:
  
 ====== Issues ====== ====== Issues ======
 +
 +===== slow appliacatio nstartup ====
 +
 +I have irfanview associated to graphic files.
 +With every click on graphic file, nothing happens. Disck IO activity goes to 100% level for few seconds, and then irfan view window appear.
 +Utility ''iotop'' shows disc usage by ''winemenubuilder.exe''. Tracing syscals with ''strace -f /usr/lib/wine/wine winemenubuilder.exe'' shows lots of operation on
 +fonts directory:
 +<code>
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/opentype/noto/NotoSansCJK-Medium.ttc", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Medium.ttc", {st_mode=S_IFREG|0644, st_size=17769928, ...}) = 0
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Medium.ttc", {st_mode=S_IFREG|0644, st_size=17769928, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/opentype/noto/NotoSansCJK-Medium.ttc", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Medium.ttc", {st_mode=S_IFREG|0644, st_size=17769928, ...}) = 0
 +...
 +[pid 2518271] stat64("/usr/share/fonts/truetype/noto/NotoSansLaoUI-SemiCondensedBlack.ttf", {st_mode=S_IFREG|0644, st_size=34156, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", {st_mode=S_IFREG|0644, st_size=18748872, ...}) = 0
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", {st_mode=S_IFREG|0644, st_size=18748872, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", {st_mode=S_IFREG|0644, st_size=18748872, ...}) = 0
 +[pid 2518271] stat64("/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", {st_mode=S_IFREG|0644, st_size=18748872, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc", O_RDONLY) = 11
 +...
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/truetype/noto/NotoSans-MediumItalic.ttf", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/truetype/noto/NotoSans-MediumItalic.ttf", {st_mode=S_IFREG|0644, st_size=482768, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/truetype/noto/NotoSansCham-Regular.ttf", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/truetype/noto/NotoSansCham-Regular.ttf", {st_mode=S_IFREG|0644, st_size=30208, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/truetype/noto/NotoSerifKhmer-Light.ttf", O_RDONLY) = 11
 +[pid 2518271] stat64("/usr/share/fonts/truetype/noto/NotoSerifKhmer-Light.ttf", {st_mode=S_IFREG|0644, st_size=147496, ...}) = 0
 +[pid 2518271] openat(AT_FDCWD, "/usr/share/fonts/truetype/noto/NotoSerifHebrew-CondensedBlack.ttf", O_RDONLY) = 11
 +</code>
 +
 +=== Solutions 1 ===
 +[[https://forums.linuxmint.com/viewtopic.php?t=229100|Wine slow to start? - try this:]]
 +[[https://ubuntuforums.org/showthread.php?t=1567533|[SOLVED] Wine is really slow]]
 +<code bash>
 +wineboot --update
 +</code>
 +=== Solution 2 ===
 +[[https://wiki.winehq.org/FAQ#How_can_I_prevent_Wine_from_changing_the_filetype_associations_on_my_system_or_adding_unwanted_menu_entries.2Fdesktop_links.3F]]
 +
 +In winecfg: before running the installer, run winecfg. Go to the Libraries tab and type winemenubuilder.exe into the "New overrides" box (it is not in the dropdown list). Click add, then select it from the "Existing overrides" box. Click "Edit" and select "Disable" from the list, then click "OK".
 +
 +Alternative: select builtin
 +
  
 ===== version mismatch ===== ===== version mismatch =====