Skip to content

Instantly share code, notes, and snippets.

@arikw
Last active September 23, 2021 12:33
Show Gist options
  • Save arikw/713ccf00d0c7a5e637548cfad7b5d51e to your computer and use it in GitHub Desktop.
Save arikw/713ccf00d0c7a5e637548cfad7b5d51e to your computer and use it in GitHub Desktop.
Fedora snippets
# change the following variables:
export SRC=/home/arik/.config/microsoft-edge-beta-original;
export DEST=/home/arik/.config/microsoft-edge-beta;
# remove access to all non current user
chmod go-rwx $DEST/*;
# copy file permissions
cd $SRC;
find * -exec sh -c 'eval $(stat -c "chmod %a $DEST/%N" "$0")' {} \;

Installing Office 2013 with Wine 6.15 on Fedora 34

PlayOnLinux Configurations

Install components:

  • mxsxml6
  • riched20
  • Microsoft Core Fonts
  • gdiplus
  • dotnet20
  • dotnet20SP1
  • usp10
  • FontsSmoothRGB Display:
  • Direct Draw Renderer: opengl Wine > Configure Wine:
  • Applications > Windows Version: "Windows 7"
  • Libraries: *msxml6 (native,builtin) *riched20 (native, builtin) *usp10 (native, builtin) corefonts (native) dotnet20 (native) mscorwks (native) Registry:
  • HKEY_CURRENT_USER/Software/Wine/MaxVersionGL (DWORD): 30002 (hexa)

Problems:

After a short while, the screen gets scrambled and the following is logged: 0144:err:d3d:swapchain_blit_gdi Failed to blit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment