Skip to content

Update to Proton 10#17

Draft
BreiteSeite wants to merge 22 commits into
glennvl:update-winefrom
Zwift-on-Linux:update-wine
Draft

Update to Proton 10#17
BreiteSeite wants to merge 22 commits into
glennvl:update-winefrom
Zwift-on-Linux:update-wine

Conversation

@BreiteSeite

@BreiteSeite BreiteSeite commented May 24, 2026

Copy link
Copy Markdown

Hey hey,

so i got a bit nerdsniped by this whole updating wine thing.

I hacked together more or less a POC to completely replace debian + wine with archlinux+proton (valve)+umu-launcher.

It works on my machine, however the code is obv. not in any finished state.

Here are some quick thoughts:

Why ArchLinux

Way more up-to-date packages than debian (current mesa (debian 13 uses mesa 25.0.7, from more or less exactly a year ago, archlinux has the latest (currently 26.1.1, 5 days old)) for example) and also steamos uses archlinux and that's basically where proton lives and gets developed (and run). Also it natively provides the umu-launcher package.

Why Proton

  • Proton enables us to in the future upstream our protonfixes for zwift, meaning it can be installed/run OOTB without the docker setup (umu basically containerizes it anyways).
  • Proton is basically wine + a lot of fixes for games - so exactly what we want IMHO
  • Proton has additional features, like using FSR even for games that don't support it
  • and very actively maintained (has Valve backing).

(I used the cachyos fork, as it applies even more fixes and also provides binaries for x86_64v3 (for future updates).)

Benefits

  1. Zwift Launcher works OOTB and renders correctly (tbh i'm not entirely sure it uses EGL, but i'd assume heavily it does as it's default in wine 11 and proton 11 is based on wine 11)
  2. Possibility to upstream protonfixes (and officially create a gameid for zwift) and have more possible contributors

This means the following stuff can be removed:

  1. RunFromProcess -> Zwift Launcher correctly launches zwift
  2. Manual WebView installation -> winetricks/protontricks (it even shows a GUI when installing deps)
  3. Zwift Update logic -> done by Zwift Launcher
  4. Zwift login logic (as launcher works correctly, it handles everything, including saving creds) (might wanna keep it for convienience to switch between multiple zwift accounts on a single-user machine though)
  5. Zwift Setup Download -> ZwiftSetup/Launcher self-updates and can just be put in the container image
  6. wget etc (we could use a builder container for that)
  7. DLL overrides: they actually prevented the zwift launcher from working

Misc

What can be cherry-picked already

No need to install WebView by hand. Just run winetricks webview2 and it does it for you (plus it applies additional

Upstream Protonfixes

Obv. next TODOS

  • Parameterizes proton installation / stable proton path?
  • Put Zwift Setup into the container image
  • Better utilize caches (~/{.cache,.wine.,.local,...}. right now i think winetricks runs for every launch (as only some specific parts are volume mounted and container is always destroyed. Obv. not production ready like this.
  • simplify update/run logik, now that all the zwiftlauncher workarounds can be removed
  • better handling of caching volumes
  • remove duplicated env vars (this made refactoring harder multiple times, like multiple declarations of ZWIFT_HOME etc
  • discuss if "manual" update logic should still be maintained (or if this will be now delegated to the zwift launcher like every other installation
  • more manual tests, esp performance and xwayland, x11, wayland wm
  • As mentioned in another PR, maybe we could skip webview and the whole lib32 packages if we run the ZwiftSetup silently? Seems to be the only 32bit binary no benefit, umu-launcher pulls in lib32-vulkan-* packages, we might install the "correct" ones anyways.

As i'm too poor to have an NVIDIA GPU, maybe you can check it out and try it on your machine. I have some left-overs in the Dockerfile which i'm pretty sure can be removed but i don't know.

If there is a general interest in going that direction, i'd sink more hours into this. (i already spent quite some time on this).

Known Issues

  • Wayland support is broken. As wine itself prefers x11, i'd consider this fine for now.
    • cachos-proton-11 -> inconsistent frametimes/pacing (v3 variant doesn't help)
    • (currently used!) ge-proton 10-34 -> breaks wayland (xrandr error), seems to be known
    • ge-proton10-33 -> can not install webview2 via winetricks (unknown verb error, maybe add manual patch for it? Or wait it out (as im lazy, i'm currently trying to wait it out). Wayland maybe broken anyways, for the launcher,

@BreiteSeite BreiteSeite marked this pull request as draft May 24, 2026 13:08
Comment thread src/Dockerfile
RUN adduser --disabled-password --gecos '' user \
RUN useradd -m user \
&& echo "/usr/local/nvidia/lib" >> /etc/ld.so.conf.d/nvidia.conf \
&& echo "/usr/local/nvidia/lib64" >> /etc/ld.so.conf.d/nvidia.conf

@BreiteSeite BreiteSeite May 24, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd assume this (nvidia specific stuff) can be deleted? I expect mesa/archlinux to handle this already?

Comment thread src/entrypoint.sh

readonly WINE_USER_HOME="/home/user/.wine/drive_c/users/user"
readonly ZWIFT_HOME="/home/user/.wine/drive_c/Program Files (x86)/Zwift"
readonly WINE_USER_HOME="/home/user/Games/umu/umu-zwift/drive_c/users/user"

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Default Path from umu-launcher/proton for games.

Comment thread src/protonfixes_zwift.py
def main() -> None:
util.protontricks('corefonts dotnet48 d3dcompiler_47 webview2')

util.regedit_add('HKCU\\Software\\Wine\\Drivers', name='Graphics', value='x11,wayland')

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we certain this is still necessary? From what i've seen this looks like this was the way to opt-in when wayland was very experimental but maybe not necessary anymore?

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed not needed anymore, just tried both wayland and x11 without setting that registry key.

Comment thread src/update_zwift.sh Outdated
msgbox info "Enabling Wayland support"
wine reg.exe add 'HKCU\Software\Wine\Drivers' /v Graphics /d x11,wayland || return 1

if [[ ${WINE_DISABLE_EGL} -eq 1 ]]; then

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure how to do that in protonfixes. I assume by reading the env vars in python and then dynamically doing that. However, if EGL works, i'd argue we should just drop it.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only added that so I could experiment locally with EGL and GLX. No need to keep it once EGL is working.

Comment thread src/zwift.sh Outdated
@BreiteSeite BreiteSeite changed the title Draft: Use Arch + Proton-GE Update to Proton 11 May 24, 2026
@BreiteSeite

Copy link
Copy Markdown
Author

Also would be highly interested in @netbrain's opinions

@BreiteSeite

BreiteSeite commented May 24, 2026

Copy link
Copy Markdown
Author

So i successfully ran:

  • Zwift Launcher (multiple times)
  • Zwift Setup
  • eglgears_wayland
  • eglgears_x11
  • glxgears

Also the image seems to be smaller:

localhost/zwift                latest              abc9fc463591  39 minutes ago     5.62 GB
docker.io/netbrain/zwift       latest              d34f89415fb4  10 days ago     11.8 GB

Comment thread src/Dockerfile Outdated
ENV LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:/usr/lib/i386-linux-gnu:/usr/local/nvidia/lib:/usr/local/nvidia/lib64
# ENV LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:/usr/lib/i386-linux-gnu:/usr/local/nvidia/lib:/usr/local/nvidia/lib64

ADD --chown=user:user https://cdn.zwift.com/app/ZwiftSetup.exe /home/user/ZwiftSetup.exe

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tbf, i added this here, but after thinking about it, i'm not entirely sure about the legal situation here, given we would suddenly redistribute zwifts setup binary via docker images/container registry

@netbrain

Copy link
Copy Markdown

This is very interesting, but a very large refactor, will probably break the game for many. Ill look into it in greater detail this week. I have been way too busy and also have the flu, so I don't trust myself to do a proper review right now.

@BreiteSeite

BreiteSeite commented May 26, 2026

Copy link
Copy Markdown
Author

Hey @netbrain - first, hope u feel better soon :)

no worries, i think this is something that doesn't need to be rushed (besides the pain from keeping a bigger PR around for a while).

It's a draft anyway and needs some local testing beforehand, so no need for a "big review" right now. Will convert away from draft if it's ready (or split into multiple non-draft PRs depending on how we go about all these changes).

We can also definitely split this up in smaller PRs about the changes to keep it less breaking, it's just removing a lot of the launcher hacks was kinda easier than to rewrite and i think the less code to maintain the better. Even the update check for the docker container can be replaced by the --pull argument when doing podman/docker run.

Also i have some trouble navigating the bash scripts, for me the whole structure seems kinda unintuitive and weird and i think also some bugs are in that - for example it checks for gamemode on the host, to decide to run gamemode in the container?

Otherwise it's very nice actually with how the commands are built (tbh i would refactor this into a single function that's used for running, building etc.) - i would gladely help with that, but i honestly hate bash scripting and avoid when i can :D

Looking forward to more feedback and help on this. :) Thank you!

@BreiteSeite BreiteSeite changed the title Update to Proton 11 Update to Proton 10 May 26, 2026
@glennvl glennvl force-pushed the update-wine branch 3 times, most recently from 54c28c5 to b237e2e Compare June 1, 2026 11:12
Comment thread src/protonfixes_zwift.py
from protonfixes import util

def main() -> None:
util.protontricks('corefonts dotnet48 d3dcompiler_47 webview2')

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fyi the webview2 verb was added to winetricks after the latests release. But it's probably fine to use a commit from master for winetricks.

@glennvl glennvl force-pushed the update-wine branch 9 times, most recently from 2c20166 to 8b4f77f Compare June 3, 2026 16:42
@glennvl glennvl force-pushed the update-wine branch 2 times, most recently from 112fc5c to 1d8e972 Compare June 10, 2026 10:16
@glennvl

glennvl commented Jun 10, 2026

Copy link
Copy Markdown
Owner

As i'm too poor to have an NVIDIA GPU, maybe you can check it out and try it on your machine. I have some left-overs in the Dockerfile which i'm pretty sure can be removed but i don't know.

I had a quick try, cloned your repo, checked out your branch and ran VERBOSITY=3 ./src/build-image.sh as I would usually do. And I'm getting System.PlatformNotSupportedException: Video driver not supported errors.

(expand for full output)

System.PlatformNotSupportedException: Video driver  not supported
   at Xalia.Sdl.WindowingSystem.Create() in D:\a\xalia\xalia\xalia\Sdl\WindowingSystem.cs:line 33
   at Xalia.Sdl.WindowingSystem.get_Instance() in D:\a\xalia\xalia\xalia\Sdl\WindowingSystem.cs:line 41
   at Xalia.Ui.UiMain..ctor() in D:\a\xalia\xalia\xalia\Ui\UiMain.cs:line 54
   at Xalia.MainClass.<Init>d__1.MoveNext() in D:\a\xalia\xalia\xalia\MainClass.cs:line 45
glenn@glenn-main-pc:~/Documents/Projects/breiteseite-zwift-linux(update-wine)$ VERBOSITY=3 ./src/build-image.sh 
[!] Easily Zwift on linux!
[!] https://github.com/netbrain/zwift
[21:55:46|*] Preparing to build Zwift image
[21:55:46|*] Looking for container tool
[21:55:46|✓] Found container tool: podman
[21:55:46|*] Image will be called localhost/zwift
[21:55:46|*] Using X11 window manager
[21:55:46|*] Building image localhost/zwift
[1/2] STEP 1/19: FROM quay.io/archlinux/archlinux:multilib-devel AS wine-base
Trying to pull quay.io/archlinux/archlinux:multilib-devel...
Getting image source signatures
Copying blob 1dc8517f8feb done   | 
Copying blob bab30de131db done   | 
Copying config d4da5d2819 done   | 
Writing manifest to image destination
[1/2] STEP 2/19: ARG PROTON_PATH
--> 5e3cdc6dd6b8
[1/2] STEP 3/19: ARG PROTON_INSTALL_DIR
--> 947466a8c130
[1/2] STEP 4/19: ARG PROTON_URL
--> 9bc02baf5b06
[1/2] STEP 5/19: RUN pacman-key --init && pacman-key --populate archlinux && pacman -Syu --noconfirm
==> Generating pacman master key. This may take some time.
gpg: Generating pacman keyring master key...
gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/219007D46498ECFB189C3B37884307BCA5BE4756.rev'
gpg: Done
==> Updating trust database...
gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
gpg: (use option "--allow-weak-key-signatures" to override)
gpg: marginals needed: 3  completes needed: 1  trust model: pgp
gpg: depth: 0  valid:   2  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 2u
gpg: depth: 1  valid:   5  signed:  86  trust: 0-, 0q, 0n, 5m, 0f, 0u
gpg: depth: 2  valid:  74  signed:  18  trust: 74-, 0q, 0n, 0m, 0f, 0u
gpg: next trustdb check due at 2026-10-21
==> Appending keys from archlinux.gpg...
==> Locally signing trusted keys in keyring...
  -> Locally signed 5 keys.
==> Importing owner trust values...
==> Updating trust database...
gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
gpg: (use option "--allow-weak-key-signatures" to override)
gpg: marginals needed: 3  completes needed: 1  trust model: pgp
gpg: depth: 0  valid:   2  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 2u
gpg: depth: 1  valid:   5  signed:  86  trust: 0-, 0q, 0n, 5m, 0f, 0u
gpg: depth: 2  valid:  74  signed:  18  trust: 74-, 0q, 0n, 0m, 0f, 0u
gpg: next trustdb check due at 2026-10-21
:: Synchronizing package databases...
 core downloading...
 extra downloading...
 multilib downloading...
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...

Package (1)             Old Version  New Version  Net Change  Download Size

core/pacman-mirrorlist  20260406-1   20260610-1     0.00 MiB       0.01 MiB

Total Download Size:   0.01 MiB
Total Installed Size:  0.03 MiB
Net Upgrade Size:      0.00 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 pacman-mirrorlist-20260610-1-any downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
:: Processing package changes...
upgrading pacman-mirrorlist...
--> 50808fd5a5e2
[1/2] STEP 6/19: RUN pacman -S --needed --noconfirm umu-launcher      wget tar     {lib32-,}{nvidia-utils,vulkan-{radeon,intel}}
warning: tar-1.35-2 is up to date -- skipping
resolving dependencies...
:: There are 11 providers available for ttf-font:
:: Repository extra
   1) gnu-free-fonts  2) noto-fonts  3) ttf-bitstream-vera  4) ttf-croscore  5) ttf-dejavu  6) ttf-droid  7) ttf-ibm-plex  8) ttf-input  9) ttf-input-nerd  10) ttf-liberation  11) ttf-roboto

Enter a number (default=1): 
looking for conflicting packages...

Package (211)                               New Version        Net Change  Download Size

extra/adwaita-cursors                       50.0-1              11.41 MiB       0.35 MiB
extra/adwaita-fonts                         50.0-1               7.29 MiB       2.13 MiB
extra/adwaita-icon-theme                    50.0-1               1.19 MiB       0.20 MiB
extra/adwaita-icon-theme-legacy             46.2-3               2.23 MiB       2.17 MiB
extra/alsa-lib                              1.2.16-1             1.75 MiB       0.51 MiB
extra/alsa-plugins                          1:1.2.12-5           0.38 MiB       0.08 MiB
extra/alsa-topology-conf                    1.2.5.1-4            0.33 MiB       0.01 MiB
extra/alsa-ucm-conf                         1.2.16-2             0.67 MiB       0.13 MiB
extra/appstream                             1.1.2-1             17.13 MiB       2.26 MiB
extra/at-spi2-core                          2.60.4-1             4.04 MiB       0.58 MiB
extra/avahi                                 1:0.9rc4-1           2.00 MiB       0.43 MiB
extra/bubblewrap                            0.11.2-1             0.09 MiB       0.04 MiB
extra/cairo                                 1.18.4-1             1.59 MiB       0.61 MiB
extra/dav1d                                 1.5.3-1              1.78 MiB       0.63 MiB
extra/dconf                                 0.49.0-1             0.45 MiB       0.10 MiB
extra/default-cursors                       3-1                  0.00 MiB       0.00 MiB
extra/desktop-file-utils                    0.28-1               0.18 MiB       0.04 MiB
extra/duktape                               2.7.0-7              0.78 MiB       0.17 MiB
extra/egl-gbm                               1.1.3-1              0.03 MiB       0.01 MiB
extra/egl-wayland                           4:1.1.21-1           0.10 MiB       0.04 MiB
extra/egl-wayland2                          1.0.1-1              0.09 MiB       0.04 MiB
extra/egl-x11                               1.0.5-1              0.15 MiB       0.04 MiB
extra/eglexternalplatform                   1.2.1-1              0.02 MiB       0.01 MiB
extra/fontconfig                            2:2.18.1-1           1.20 MiB       0.38 MiB
extra/freetype2                             2.14.3-1             1.66 MiB       0.52 MiB
extra/fribidi                               1.0.16-2             0.24 MiB       0.07 MiB
extra/fuse-common                           3.18.2-1             0.00 MiB       0.00 MiB
extra/fuse3                                 3.18.2-1             0.48 MiB       0.13 MiB
extra/gdk-pixbuf2                           2.44.6-2             2.96 MiB       0.48 MiB
extra/giflib                                6.1.3-1              0.33 MiB       0.10 MiB
extra/glib-networking                       1:2.80.1-1           0.65 MiB       0.14 MiB
extra/glycin                                2.1.1-1             17.50 MiB       3.78 MiB
extra/gnu-free-fonts                        20120503-9           6.65 MiB       3.19 MiB
extra/gperftools                            2.18.1-1             2.01 MiB       0.49 MiB
extra/graphene                              1.10.8-2             0.98 MiB       0.10 MiB
extra/graphite                              1:1.3.15-1           0.20 MiB       0.08 MiB
extra/gsettings-desktop-schemas             50.1-1               6.08 MiB       0.79 MiB
extra/gsettings-system-schemas              50.1-1               0.02 MiB       0.01 MiB
extra/gssdp                                 1.6.5-1              0.24 MiB       0.06 MiB
extra/gst-plugins-bad-libs                  1.28.3-1            14.72 MiB       3.18 MiB
extra/gst-plugins-base-libs                 1.28.3-1            12.83 MiB       2.45 MiB
extra/gstreamer                             1.28.3-1            11.91 MiB       2.11 MiB
extra/gtest                                 1.17.0-2             1.63 MiB       0.38 MiB
extra/gtk-update-icon-cache                 1:4.22.4-1           0.04 MiB       0.02 MiB
extra/gtk3                                  1:3.24.52-1         52.96 MiB       8.83 MiB
extra/gtk4                                  1:4.22.4-1          51.53 MiB       9.14 MiB
extra/gupnp                                 1:1.6.10-1           0.70 MiB       0.13 MiB
extra/gupnp-igd                             1.6.0-2              0.11 MiB       0.03 MiB
extra/harfbuzz                              14.2.1-1             4.77 MiB       1.25 MiB
extra/hicolor-icon-theme                    0.18-1               0.05 MiB       0.01 MiB
extra/highway                               1.4.0-1             10.04 MiB       1.19 MiB
extra/iso-codes                             4.20.1-1            22.30 MiB       3.60 MiB
extra/jbigkit                               2.1-8                0.16 MiB       0.05 MiB
extra/json-glib                             1.10.8-1             1.01 MiB       0.17 MiB
extra/lcms2                                 2.19.1-1             0.69 MiB       0.23 MiB
multilib/lib32-alsa-lib                     1.2.16-1             1.06 MiB       0.39 MiB
multilib/lib32-alsa-plugins                 1.2.12-1             0.27 MiB       0.06 MiB
multilib/lib32-brotli                       1.1.0-1              0.86 MiB       0.33 MiB
multilib/lib32-bzip2                        1.0.8-4              0.07 MiB       0.03 MiB
multilib/lib32-curl                         8.20.0-7             0.94 MiB       0.41 MiB
multilib/lib32-e2fsprogs                    1.47.4-1             0.52 MiB       0.22 MiB
multilib/lib32-expat                        2.8.1-1              0.19 MiB       0.07 MiB
multilib/lib32-gmp                          6.3.0-2              0.76 MiB       0.27 MiB
multilib/lib32-gnutls                       3.8.13-3             2.20 MiB       0.82 MiB
multilib/lib32-icu                          78.3-1              37.64 MiB      10.86 MiB
multilib/lib32-json-c                       0.18-2               0.08 MiB       0.03 MiB
multilib/lib32-keyutils                     1.6.3-4              0.02 MiB       0.01 MiB
multilib/lib32-krb5                         1.22.2-1             2.16 MiB       0.78 MiB
multilib/lib32-libdisplay-info              0.3.0-1              0.21 MiB       0.08 MiB
multilib/lib32-libdrm                       2.4.134-1            0.36 MiB       0.14 MiB
multilib/lib32-libelf                       0.195-1              0.81 MiB       0.31 MiB
multilib/lib32-libffi                       3.5.2-1              0.04 MiB       0.02 MiB
multilib/lib32-libgcrypt                    1.12.2-1             1.12 MiB       0.49 MiB
multilib/lib32-libglvnd                     1.7.0-1              1.33 MiB       0.20 MiB
multilib/lib32-libgpg-error                 1.61-1               0.16 MiB       0.07 MiB
multilib/lib32-libidn2                      2.3.8-1              0.12 MiB       0.05 MiB
multilib/lib32-libldap                      2.6.13-1             0.40 MiB       0.16 MiB
multilib/lib32-libnghttp2                   1.69.0-1             0.16 MiB       0.06 MiB
multilib/lib32-libnghttp3                   1.16.0-1             0.16 MiB       0.07 MiB
multilib/lib32-libngtcp2                    1.23.0-1             0.49 MiB       0.19 MiB
multilib/lib32-libpciaccess                 0.19-1               0.04 MiB       0.02 MiB
multilib/lib32-libpsl                       0.21.5-1             0.07 MiB       0.05 MiB
multilib/lib32-libssh2                      1.11.1-1             0.28 MiB       0.11 MiB
multilib/lib32-libtasn1                     4.21.0-1             0.08 MiB       0.04 MiB
multilib/lib32-libunistring                 1.4.2-1              1.86 MiB       0.55 MiB
multilib/lib32-libx11                       1.8.13-1             1.28 MiB       0.61 MiB
multilib/lib32-libxau                       1.0.12-1             0.01 MiB       0.01 MiB
multilib/lib32-libxcb                       1.17.0-1             1.03 MiB       0.19 MiB
multilib/lib32-libxcrypt                    4.5.2-1              0.17 MiB       0.07 MiB
multilib/lib32-libxcrypt-compat             4.5.2-1              0.18 MiB       0.07 MiB
multilib/lib32-libxdmcp                     1.1.5-1              0.02 MiB       0.01 MiB
multilib/lib32-libxext                      1.3.7-1              0.07 MiB       0.03 MiB
multilib/lib32-libxml2                      2.15.3-1             1.16 MiB       0.48 MiB
multilib/lib32-libxshmfence                 1.3.3-1              0.01 MiB       0.01 MiB
multilib/lib32-libxss                       1.2.5-1              0.01 MiB       0.01 MiB
multilib/lib32-libxxf86vm                   1.1.5-2              0.02 MiB       0.01 MiB
multilib/lib32-llvm-libs                    1:22.1.6-1         168.42 MiB      42.28 MiB
multilib/lib32-lm_sensors                   1:3.6.2-2            0.05 MiB       0.02 MiB
multilib/lib32-mesa                         1:26.1.2-1          53.08 MiB      13.12 MiB
multilib/lib32-ncurses                      6.6-2                0.57 MiB       0.22 MiB
multilib/lib32-nettle                       4.0-2                0.59 MiB       0.33 MiB
multilib/lib32-nspr                         4.39-1               0.27 MiB       0.11 MiB
multilib/lib32-nss                          3.124-1              3.15 MiB       1.14 MiB
multilib/lib32-openssl                      1:3.6.3-1            5.48 MiB       2.07 MiB
multilib/lib32-p11-kit                      0.26.2-1             3.10 MiB       0.43 MiB
multilib/lib32-spirv-tools                  1:1.4.350.0-1        6.41 MiB       1.69 MiB
multilib/lib32-sqlite                       3.53.2-1             1.57 MiB       0.76 MiB
multilib/lib32-systemd                      260.2-1              2.69 MiB       0.87 MiB
multilib/lib32-vulkan-icd-loader            1.4.350.0-1          0.61 MiB       0.15 MiB
multilib/lib32-vulkan-mesa-implicit-layers  1:26.1.2-1           0.12 MiB       0.05 MiB
multilib/lib32-wayland                      1.25.0-1             0.17 MiB       0.05 MiB
multilib/lib32-xcb-util-keysyms             0.4.1-2              0.01 MiB       0.01 MiB
multilib/lib32-xz                           5.8.3-1              0.21 MiB       0.10 MiB
multilib/lib32-zlib                         1.3.2-1              0.09 MiB       0.05 MiB
multilib/lib32-zstd                         1.5.7-2              0.88 MiB       0.32 MiB
extra/libadwaita                            1:1.9.1-1            5.16 MiB       0.79 MiB
extra/libcloudproviders                     0.4.0-1              0.32 MiB       0.05 MiB
extra/libcolord                             1.4.8-1              1.24 MiB       0.18 MiB
extra/libcups                               2:2.4.19-1           0.77 MiB       0.27 MiB
extra/libdaemon                             0.14-6               0.06 MiB       0.02 MiB
extra/libdatrie                             0.2.14-1             0.49 MiB       0.11 MiB
extra/libdeflate                            1.25-1               0.14 MiB       0.06 MiB
extra/libdisplay-info                       0.3.0-1              0.39 MiB       0.12 MiB
extra/libdrm                                2.4.134-1            1.28 MiB       0.35 MiB
core/libedit                                20260512_3.1-1       0.27 MiB       0.11 MiB
extra/libepoxy                              1.5.10-3             2.64 MiB       0.30 MiB
extra/libfyaml                              0.9.6-2              1.27 MiB       0.45 MiB
extra/libglvnd                              1.7.0-3              3.34 MiB       0.32 MiB
extra/libgudev                              238-3                0.38 MiB       0.04 MiB
extra/libjpeg-turbo                         3.1.4.1-1            2.43 MiB       0.57 MiB
extra/libjxl                                0.11.2-2             9.65 MiB       2.18 MiB
extra/libnice                               0.1.23-1             1.81 MiB       0.31 MiB
extra/libpciaccess                          0.19-1               0.06 MiB       0.02 MiB
extra/libpipewire                           1:1.6.6-1            2.00 MiB       0.50 MiB
extra/libpng                                1.6.58-1             0.58 MiB       0.25 MiB
extra/libproxy                              0.5.12-1             0.10 MiB       0.03 MiB
extra/librsvg                               2:2.62.3-1          10.26 MiB       2.37 MiB
extra/libsoup3                              3.6.6-2              1.96 MiB       0.39 MiB
extra/libstemmer                            3.1.1-1              0.64 MiB       0.15 MiB
extra/libthai                               0.1.30-1             1.24 MiB       0.26 MiB
extra/libtiff                               4.7.1-2              1.26 MiB       0.38 MiB
extra/libunwind                             1.8.2-1              0.29 MiB       0.13 MiB
extra/libva                                 2.23.0-1             0.98 MiB       0.20 MiB
extra/libwebp                               1.6.0-2              1.04 MiB       0.32 MiB
extra/libx11                                1.8.13-1             9.78 MiB       2.00 MiB
extra/libxau                                1.0.12-1             0.02 MiB       0.01 MiB
extra/libxcb                                1.17.0-1             3.87 MiB       0.97 MiB
extra/libxcomposite                         0.4.7-1              0.02 MiB       0.01 MiB
core/libxcrypt-compat                       4.5.2-1              0.18 MiB       0.07 MiB
extra/libxcursor                            1.2.3-1              0.07 MiB       0.03 MiB
extra/libxdamage                            1.1.7-1              0.02 MiB       0.01 MiB
extra/libxdmcp                              1.1.5-2              0.13 MiB       0.03 MiB
extra/libxext                               1.3.7-1              0.30 MiB       0.10 MiB
extra/libxfixes                             6.0.2-1              0.04 MiB       0.01 MiB
extra/libxft                                2.3.9-1              0.13 MiB       0.06 MiB
extra/libxi                                 1.8.3-1              0.49 MiB       0.15 MiB
extra/libxinerama                           1.1.6-1              0.02 MiB       0.01 MiB
extra/libxkbcommon                          1.13.2-1             1.05 MiB       0.27 MiB
extra/libxkbcommon-x11                      1.13.2-1             0.10 MiB       0.03 MiB
extra/libxmlb                               0.3.27-1             1.21 MiB       0.15 MiB
extra/libxrandr                             1.5.5-1              0.07 MiB       0.03 MiB
extra/libxrender                            0.9.12-1             0.09 MiB       0.03 MiB
extra/libxshmfence                          1.3.3-1              0.02 MiB       0.01 MiB
extra/libxss                                1.2.5-1              0.03 MiB       0.01 MiB
extra/libxtst                               1.2.5-1              0.11 MiB       0.03 MiB
extra/libxv                                 1.0.13-1             0.06 MiB       0.03 MiB
extra/libxxf86vm                            1.1.7-1              0.03 MiB       0.02 MiB
extra/llvm-libs                             22.1.6-1           163.72 MiB      40.97 MiB
extra/lm_sensors                            1:3.6.2-1            0.48 MiB       0.13 MiB
extra/lsb-release                           2.0.r55.a25a4fc-1    0.02 MiB       0.01 MiB
extra/lsof                                  4.99.6-1             0.36 MiB       0.14 MiB
core/lzo                                    2.10-5               0.38 MiB       0.09 MiB
extra/mesa                                  1:26.1.2-1          52.57 MiB      13.20 MiB
core/nspr                                   4.39-1               0.71 MiB       0.20 MiB
core/nss                                    3.124-1              5.24 MiB       1.69 MiB
extra/orc                                   0.4.42-1             1.36 MiB       0.31 MiB
extra/pango                                 1:1.57.1-1           2.33 MiB       0.42 MiB
extra/pipewire                              1:1.6.6-1            2.96 MiB       0.69 MiB
extra/pixman                                0.46.4-1             0.74 MiB       0.28 MiB
extra/python-cbor2                          6.1.2-1              0.92 MiB       0.33 MiB
extra/python-pyzstd                         0.19.1-3             0.31 MiB       0.05 MiB
extra/python-six                            1.17.0-3             0.12 MiB       0.03 MiB
extra/python-urllib3                        2.7.0-1              1.43 MiB       0.24 MiB
extra/python-xlib                           0.33-6               2.07 MiB       0.29 MiB
extra/python-xxhash                         3.7.0-1              0.06 MiB       0.02 MiB
extra/shared-mime-info                      2.4-3                4.58 MiB       0.60 MiB
extra/spirv-tools                           1:1.4.350.0-1        7.94 MiB       2.05 MiB
extra/tinysparql                            3.11.1-1             3.88 MiB       1.05 MiB
core/usbutils                               019-1                0.37 MiB       0.11 MiB
extra/vmaf                                  3.1.0-1              6.53 MiB       0.41 MiB
extra/vulkan-icd-loader                     1.4.350.0-1          0.61 MiB       0.16 MiB
extra/vulkan-mesa-implicit-layers           1:26.1.2-1           0.12 MiB       0.05 MiB
extra/wayland                               1.25.0-1             0.84 MiB       0.14 MiB
extra/xcb-proto                             1.17.0-4             1.03 MiB       0.13 MiB
extra/xcb-util-keysyms                      0.4.1-5              0.02 MiB       0.01 MiB
extra/xdg-desktop-portal                    1.22.0-1             1.83 MiB       0.44 MiB
extra/xdg-desktop-portal-gtk                1.15.3-1             0.42 MiB       0.10 MiB
extra/xdg-user-dirs                         0.20-1               0.17 MiB       0.05 MiB
extra/xkeyboard-config                      2.47-1              10.23 MiB       0.86 MiB
extra/xorg-xprop                            1.2.8-1              0.05 MiB       0.03 MiB
extra/xorg-xrandr                           1.5.4-1              0.07 MiB       0.04 MiB
extra/xorgproto                             2025.1-1             1.47 MiB       0.24 MiB
extra/zenity                                4.2.2-1              5.03 MiB       2.65 MiB
multilib/lib32-nvidia-utils                 610.43.02-1        546.07 MiB     112.72 MiB
multilib/lib32-vulkan-intel                 1:26.1.2-1          42.11 MiB       4.74 MiB
multilib/lib32-vulkan-radeon                1:26.1.2-1          17.58 MiB       3.38 MiB
extra/nvidia-utils                          610.43.02-2        883.72 MiB     300.20 MiB
multilib/umu-launcher                       1.4.0-1              1.18 MiB       0.36 MiB
extra/vulkan-intel                          1:26.1.2-1          42.17 MiB       4.80 MiB
extra/vulkan-radeon                         1:26.1.2-1          17.55 MiB       3.38 MiB
extra/wget                                  1.25.0-5             5.70 MiB       0.69 MiB

Total Download Size:    649.58 MiB
Total Installed Size:  2493.14 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 nvidia-utils-610.43.02-2-x86_64 downloading...
 lib32-nvidia-utils-610.43.02-1-x86_64 downloading...
 lib32-llvm-libs-1:22.1.6-1-x86_64 downloading...
 llvm-libs-22.1.6-1-x86_64 downloading...
 mesa-1:26.1.2-1-x86_64 downloading...
 lib32-mesa-1:26.1.2-1-x86_64 downloading...
 lib32-icu-78.3-1-x86_64 downloading...
 gtk4-1:4.22.4-1-x86_64 downloading...
 gtk3-1:3.24.52-1-x86_64 downloading...
 vulkan-intel-1:26.1.2-1-x86_64 downloading...
 lib32-vulkan-intel-1:26.1.2-1-x86_64 downloading...
 glycin-2.1.1-1-x86_64 downloading...
 iso-codes-4.20.1-1-any downloading...
 vulkan-radeon-1:26.1.2-1-x86_64 downloading...
 lib32-vulkan-radeon-1:26.1.2-1-x86_64 downloading...
 gnu-free-fonts-20120503-9-any downloading...
 gst-plugins-bad-libs-1.28.3-1-x86_64 downloading...
 zenity-4.2.2-1-x86_64 downloading...
 gst-plugins-base-libs-1.28.3-1-x86_64 downloading...
 librsvg-2:2.62.3-1-x86_64 downloading...
 appstream-1.1.2-1-x86_64 downloading...
 libjxl-0.11.2-2-x86_64 downloading...
 adwaita-icon-theme-legacy-46.2-3-any downloading...
 adwaita-fonts-50.0-1-any downloading...
 gstreamer-1.28.3-1-x86_64 downloading...
 lib32-openssl-1:3.6.3-1-x86_64 downloading...
 spirv-tools-1:1.4.350.0-1-x86_64 downloading...
 libx11-1.8.13-1-x86_64 downloading...
 lib32-spirv-tools-1:1.4.350.0-1-x86_64 downloading...
 nss-3.124-1-x86_64 downloading...
 harfbuzz-14.2.1-1-x86_64 downloading...
 highway-1.4.0-1-x86_64 downloading...
 lib32-nss-3.124-1-x86_64 downloading...
 tinysparql-3.11.1-1-x86_64 downloading...
 libxcb-1.17.0-1-x86_64 downloading...
 lib32-systemd-260.2-1-x86_64 downloading...
 xkeyboard-config-2.47-1-any downloading...
 lib32-gnutls-3.8.13-3-x86_64 downloading...
 gsettings-desktop-schemas-50.1-1-any downloading...
 libadwaita-1:1.9.1-1-x86_64 downloading...
 lib32-krb5-1.22.2-1-x86_64 downloading...
 lib32-sqlite-3.53.2-1-x86_64 downloading...
 pipewire-1:1.6.6-1-x86_64 downloading...
 wget-1.25.0-5-x86_64 downloading...
 dav1d-1.5.3-1-x86_64 downloading...
 cairo-1.18.4-1-x86_64 downloading...
 lib32-libx11-1.8.13-1-x86_64 downloading...
 shared-mime-info-2.4-3-x86_64 downloading...
 at-spi2-core-2.60.4-1-x86_64 downloading...
 libjpeg-turbo-3.1.4.1-1-x86_64 downloading...
 lib32-libunistring-1.4.2-1-x86_64 downloading...
 freetype2-2.14.3-1-x86_64 downloading...
 alsa-lib-1.2.16-1-x86_64 downloading...
 libpipewire-1:1.6.6-1-x86_64 downloading...
 gperftools-2.18.1-1-x86_64 downloading...
 lib32-libgcrypt-1.12.2-1-x86_64 downloading...
 lib32-libxml2-2.15.3-1-x86_64 downloading...
 gdk-pixbuf2-2.44.6-2-x86_64 downloading...
 libfyaml-0.9.6-2-x86_64 downloading...
 xdg-desktop-portal-1.22.0-1-x86_64 downloading...
 avahi-1:0.9rc4-1-x86_64 downloading...
 lib32-p11-kit-0.26.2-1-x86_64 downloading...
 pango-1:1.57.1-1-x86_64 downloading...
 vmaf-3.1.0-1-x86_64 downloading...
 lib32-curl-8.20.0-7-x86_64 downloading...
 libsoup3-3.6.6-2-x86_64 downloading...
 lib32-alsa-lib-1.2.16-1-x86_64 downloading...
 fontconfig-2:2.18.1-1-x86_64 downloading...
 libtiff-4.7.1-2-x86_64 downloading...
 gtest-1.17.0-2-x86_64 downloading...
 umu-launcher-1.4.0-1-x86_64 downloading...
 adwaita-cursors-50.0-1-any downloading...
 libdrm-2.4.134-1-x86_64 downloading...
 lib32-brotli-1.1.0-1-x86_64 downloading...
 python-cbor2-6.1.2-1-x86_64 downloading...
 lib32-nettle-4.0-2-x86_64 downloading...
 libwebp-1.6.0-2-x86_64 downloading...
 libglvnd-1.7.0-3-x86_64 downloading...
 lib32-zstd-1.5.7-2-x86_64 downloading...
 orc-0.4.42-1-x86_64 downloading...
 libnice-0.1.23-1-x86_64 downloading...
 lib32-libelf-0.195-1-x86_64 downloading...
 libepoxy-1.5.10-3-x86_64 downloading...
 python-xlib-0.33-6-any downloading...
 pixman-0.46.4-1-x86_64 downloading...
 libxkbcommon-1.13.2-1-x86_64 downloading...
 lib32-gmp-6.3.0-2-x86_64 downloading...
 libcups-2:2.4.19-1-x86_64 downloading...
 libthai-0.1.30-1-x86_64 downloading...
 libpng-1.6.58-1-x86_64 downloading...
 python-urllib3-2.7.0-1-any downloading...
 xorgproto-2025.1-1-any downloading...
 lcms2-2.19.1-1-x86_64 downloading...
 lib32-e2fsprogs-1.47.4-1-x86_64 downloading...
 lib32-ncurses-6.6-2-x86_64 downloading...
 lib32-libglvnd-1.7.0-1-x86_64 downloading...
 adwaita-icon-theme-50.0-1-any downloading...
 nspr-4.39-1-x86_64 downloading...
 libva-2.23.0-1-x86_64 downloading...
 lib32-libngtcp2-1.23.0-1-x86_64 downloading...
 lib32-libxcb-1.17.0-1-x86_64 downloading...
 libcolord-1.4.8-1-x86_64 downloading...
 duktape-2.7.0-7-x86_64 downloading...
 json-glib-1.10.8-1-x86_64 downloading...
 vulkan-icd-loader-1.4.350.0-1-x86_64 downloading...
 lib32-libldap-2.6.13-1-x86_64 downloading...
 lib32-vulkan-icd-loader-1.4.350.0-1-x86_64 downloading...
 libxmlb-0.3.27-1-x86_64 downloading...
 libxi-1.8.3-1-x86_64 downloading...
 libstemmer-3.1.1-1-x86_64 downloading...
 lsof-4.99.6-1-x86_64 downloading...
 wayland-1.25.0-1-x86_64 downloading...
 lib32-libdrm-2.4.134-1-x86_64 downloading...
 glib-networking-1:2.80.1-1-x86_64 downloading...
 fuse3-3.18.2-1-x86_64 downloading...
 lm_sensors-1:3.6.2-1-x86_64 downloading...
 alsa-ucm-conf-1.2.16-2-any downloading...
 xcb-proto-1.17.0-4-any downloading...
 gupnp-1:1.6.10-1-x86_64 downloading...
 libunwind-1.8.2-1-x86_64 downloading...
 libdisplay-info-0.3.0-1-x86_64 downloading...
 libedit-20260512_3.1-1-x86_64 downloading...
 lib32-libssh2-1.11.1-1-x86_64 downloading...
 lib32-nspr-4.39-1-x86_64 downloading...
 libdatrie-0.2.14-1-x86_64 downloading...
 usbutils-019-1-x86_64 downloading...
 dconf-0.49.0-1-x86_64 downloading...
 xdg-desktop-portal-gtk-1.15.3-1-x86_64 downloading...
 graphene-1.10.8-2-x86_64 downloading...
 libxext-1.3.7-1-x86_64 downloading...
 lib32-xz-5.8.3-1-x86_64 downloading...
 giflib-6.1.3-1-x86_64 downloading...
 lzo-2.10-5-x86_64 downloading...
 alsa-plugins-1:1.2.12-5-x86_64 downloading...
 graphite-1:1.3.15-1-x86_64 downloading...
 lib32-libdisplay-info-0.3.0-1-x86_64 downloading...
 lib32-libgpg-error-1.61-1-x86_64 downloading...
 libxcrypt-compat-4.5.2-1-x86_64 downloading...
 lib32-libxcrypt-compat-4.5.2-1-x86_64 downloading...
 lib32-expat-2.8.1-1-x86_64 downloading...
 lib32-libxcrypt-4.5.2-1-x86_64 downloading...
 fribidi-1.0.16-2-x86_64 downloading...
 lib32-libnghttp3-1.16.0-1-x86_64 downloading...
 lib32-libnghttp2-1.69.0-1-x86_64 downloading...
 lib32-alsa-plugins-1.2.12-1-x86_64 downloading...
 libdeflate-1.25-1-x86_64 downloading...
 gssdp-1.6.5-1-x86_64 downloading...
 libxft-2.3.9-1-x86_64 downloading...
 lib32-wayland-1.25.0-1-x86_64 downloading...
 python-pyzstd-0.19.1-3-x86_64 downloading...
 lib32-libpsl-0.21.5-1-x86_64 downloading...
 vulkan-mesa-implicit-layers-1:26.1.2-1-x86_64 downloading...
 lib32-libidn2-2.3.8-1-x86_64 downloading...
 lib32-vulkan-mesa-implicit-layers-1:26.1.2-1-x86_64 downloading...
 jbigkit-2.1-8-x86_64 downloading...
 lib32-zlib-1.3.2-1-x86_64 downloading...
 libcloudproviders-0.4.0-1-x86_64 downloading...
 xdg-user-dirs-0.20-1-x86_64 downloading...
 libgudev-238-3-x86_64 downloading...
 desktop-file-utils-0.28-1-x86_64 downloading...
 bubblewrap-0.11.2-1-x86_64 downloading...
 egl-x11-1.0.5-1-x86_64 downloading...
 egl-wayland2-1.0.1-1-x86_64 downloading...
 xorg-xrandr-1.5.4-1-x86_64 downloading...
 lib32-libtasn1-4.21.0-1-x86_64 downloading...
 egl-wayland-4:1.1.21-1-x86_64 downloading...
 lib32-json-c-0.18-2-x86_64 downloading...
 libxv-1.0.13-1-x86_64 downloading...
 libxcursor-1.2.3-1-x86_64 downloading...
 libxkbcommon-x11-1.13.2-1-x86_64 downloading...
 lib32-bzip2-1.0.8-4-x86_64 downloading...
 libproxy-0.5.12-1-x86_64 downloading...
 libxrender-0.9.12-1-x86_64 downloading...
 libxtst-1.2.5-1-x86_64 downloading...
 python-six-1.17.0-3-any downloading...
 gupnp-igd-1.6.0-2-x86_64 downloading...
 libxrandr-1.5.5-1-x86_64 downloading...
 libxdmcp-1.1.5-2-x86_64 downloading...
 lib32-libxext-1.3.7-1-x86_64 downloading...
 xorg-xprop-1.2.8-1-x86_64 downloading...
 lib32-lm_sensors-1:3.6.2-2-x86_64 downloading...
 libpciaccess-0.19-1-x86_64 downloading...
 libdaemon-0.14-6-x86_64 downloading...
 lib32-libffi-3.5.2-1-x86_64 downloading...
 lib32-libpciaccess-0.19-1-x86_64 downloading...
 gtk-update-icon-cache-1:4.22.4-1-x86_64 downloading...
 python-xxhash-3.7.0-1-x86_64 downloading...
 libxxf86vm-1.1.7-1-x86_64 downloading...
 libxss-1.2.5-1-x86_64 downloading...
 libxfixes-6.0.2-1-x86_64 downloading...
 alsa-topology-conf-1.2.5.1-4-any downloading...
 hicolor-icon-theme-0.18-1-any downloading...
 egl-gbm-1.1.3-1-x86_64 downloading...
 libxcomposite-0.4.7-1-x86_64 downloading...
 libxau-1.0.12-1-x86_64 downloading...
 lib32-libxdmcp-1.1.5-1-x86_64 downloading...
 libxinerama-1.1.6-1-x86_64 downloading...
 lib32-libxxf86vm-1.1.5-2-x86_64 downloading...
 lsb-release-2.0.r55.a25a4fc-1-any downloading...
 lib32-keyutils-1.6.3-4-x86_64 downloading...
 xcb-util-keysyms-0.4.1-5-x86_64 downloading...
 eglexternalplatform-1.2.1-1-any downloading...
 libxdamage-1.1.7-1-x86_64 downloading...
 lib32-libxss-1.2.5-1-x86_64 downloading...
 lib32-libxau-1.0.12-1-x86_64 downloading...
 gsettings-system-schemas-50.1-1-any downloading...
 lib32-xcb-util-keysyms-0.4.1-2-x86_64 downloading...
 libxshmfence-1.3.3-1-x86_64 downloading...
 lib32-libxshmfence-1.3.3-1-x86_64 downloading...
 fuse-common-3.18.2-1-x86_64 downloading...
 default-cursors-3-1-any downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
:: Processing package changes...
installing desktop-file-utils...
installing hicolor-icon-theme...
installing libpng...
installing freetype2...
Optional dependencies for freetype2
    harfbuzz: Improved autohinting [pending]
installing bubblewrap...
installing fontconfig...
Creating fontconfig configuration...
Rebuilding fontconfig cache...
installing xcb-proto...
installing xorgproto...
installing libxdmcp...
installing libxau...
installing libxcb...
installing libx11...
installing libxext...
installing libxrender...
installing lzo...
installing pixman...
installing cairo...
installing libjpeg-turbo...
Optional dependencies for libjpeg-turbo
    java-runtime>11: for TurboJPEG Java wrapper
installing jbigkit...
installing libdeflate...
installing libwebp...
Optional dependencies for libwebp
    libwebp-utils: WebP conversion and inspection tools
installing libtiff...
Optional dependencies for libtiff
    freeglut: for using tiffgt
installing lcms2...
installing giflib...
installing libunwind...
installing gperftools...
installing gtest...
Optional dependencies for gtest
    python: gmock generator [installed]
installing highway...
installing libjxl...
Optional dependencies for libjxl
    java-runtime: for JNI bindings
installing dav1d...
Optional dependencies for dav1d
    dav1d-doc: HTML documentation
installing graphite...
Optional dependencies for graphite
    graphite-docs: Documentation
installing harfbuzz...
Optional dependencies for harfbuzz
    harfbuzz-utils: utilities
installing fribidi...
installing libdatrie...
installing libthai...
installing libxft...
installing pango...
installing librsvg...
installing glycin...
Optional dependencies for glycin
    libheif: Load .avif, .heic and .heif
installing shared-mime-info...
installing gdk-pixbuf2...
Optional dependencies for gdk-pixbuf2
    libheif: Load .avif, .heic and .heif
    libopenraw: Load .arw, .cr2, .crw, .dng, .erf, .mrw, .nef, .orf, .pef and .raf
    libwmf: Load .apm and .wmf
installing gnu-free-fonts...
installing adwaita-fonts...
installing adwaita-icon-theme-legacy...
installing adwaita-cursors...
installing adwaita-icon-theme...
installing dconf...
installing gsettings-system-schemas...
installing gsettings-desktop-schemas...
installing libxfixes...
installing libxi...
installing libxtst...
installing xorg-xprop...
installing at-spi2-core...
installing graphene...
installing gstreamer...
Optional dependencies for gstreamer
    python: gst-plugins-doc-cache-generator [installed]
installing iso-codes...
installing libpciaccess...
installing libdrm...
Optional dependencies for libdrm
    cairo: needed for modetest tool [installed]
installing libxshmfence...
installing libxxf86vm...
installing libedit...
installing llvm-libs...
installing lm_sensors...
Optional dependencies for lm_sensors
    rrdtool: for logging with sensord
    perl: for sensor detection and configuration convert [installed]
installing spirv-tools...
installing default-cursors...
Optional dependencies for default-cursors
    adwaita-cursors: default cursor theme [installed]
installing wayland...
installing mesa...
Optional dependencies for mesa
    opengl-man-pages: for the OpenGL API man pages
installing eglexternalplatform...
installing egl-wayland...
installing egl-wayland2...
installing egl-gbm...
installing egl-x11...
installing nvidia-utils...
Optional dependencies for nvidia-utils
    nvidia-settings: configuration tool
    xorg-server: Xorg support
    xorg-server-devel: nvidia-xconfig
    opencl-nvidia: OpenCL support
installing libglvnd...
installing libgudev...
installing libxv...
installing orc...
installing gst-plugins-base-libs...
installing duktape...
installing libproxy...
installing glib-networking...
installing libsoup3...
Optional dependencies for libsoup3
    samba: Windows Domain SSO
installing gssdp...
Optional dependencies for gssdp
    gtk4: gssdp-device-sniffer [pending]
installing gupnp...
Optional dependencies for gupnp
    python: gupnp-binding-tool [installed]
installing gupnp-igd...
installing libnice...
Optional dependencies for libnice
    gstreamer: "nice" GStreamer plugin [installed]
installing libva...
Optional dependencies for libva
    intel-media-driver: backend for Intel GPUs (>= Broadwell)
    libva-intel-driver: backend for Intel GPUs (<= Haswell)
    libva-mesa-driver: backend for AMD and NVIDIA GPUs [installed]
installing xkeyboard-config...
installing libxkbcommon...
Optional dependencies for libxkbcommon
    libxkbcommon-x11: xkbcli interactive-x11 [pending]
    wayland: xkbcli interactive-wayland [installed]
installing libxkbcommon-x11...
installing vulkan-icd-loader...
Optional dependencies for vulkan-icd-loader
    vulkan-driver: packaged vulkan driver [installed]
installing vmaf...
installing gst-plugins-bad-libs...
installing gtk-update-icon-cache...
installing libcloudproviders...
installing libcolord...
installing libdaemon...
installing avahi...
Optional dependencies for avahi
    gtk3: avahi-discover, avahi-discover-standalone, bshell, bssh, bvnc [pending]
    libevent: libevent bindings [installed]
    nss-mdns: NSS support for mDNS
    python-dbus: avahi-bookmarks, avahi-discover
    python-gobject: avahi-bookmarks, avahi-discover
    python-twisted: avahi-bookmarks
installing libcups...
installing libepoxy...
installing libxcursor...
installing libxdamage...
installing libxinerama...
installing libxrandr...
installing json-glib...
installing libstemmer...
installing tinysparql...
installing libxcomposite...
installing gtk3...
Optional dependencies for gtk3
    evince: Default print preview command
installing fuse-common...
installing fuse3...
installing libpipewire...
installing pipewire...
Created symlink '/etc/systemd/user/sockets.target.wants/pipewire.socket' → '/usr/lib/systemd/user/pipewire.socket'.
Optional dependencies for pipewire
    gst-plugin-pipewire: GStreamer plugin
    pipewire-alsa: ALSA configuration
    pipewire-audio: Audio support
    pipewire-docs: Documentation
    pipewire-ffado: FireWire support
    pipewire-jack-client: PipeWire as JACK client
    pipewire-jack: JACK replacement
    pipewire-libcamera: Libcamera support
    pipewire-onnx: ONNX filter support
    pipewire-pulse: PulseAudio replacement
    pipewire-roc: ROC streaming
    pipewire-session-manager: Session manager
    pipewire-v4l2: V4L2 interceptor
    pipewire-x11-bell: X11 bell
    pipewire-zeroconf: Zeroconf support
    realtime-privileges: realtime privileges with rt module
    rtkit: realtime privileges with rtkit module
installing xdg-desktop-portal...
Optional dependencies for xdg-desktop-portal
    gamemode: GameMode portal
    geoclue: Location portal
    rtkit: Realtime portal
    xdg-desktop-portal-impl: Portal backends [pending]
installing xdg-desktop-portal-gtk...
Optional dependencies for xdg-desktop-portal-gtk
    evince: Print preview
installing gtk4...
Optional dependencies for gtk4
    evince: Default print preview command
installing libfyaml...
installing libxmlb...
installing appstream...
installing libadwaita...
installing zenity...
installing lsb-release...
installing nspr...
installing nss...
installing usbutils...
Optional dependencies for usbutils
    coreutils: for lsusb.py usage [installed]
    python: for lsusb.py usage [installed]
    sh: for usb-devices [installed]
installing xorg-xrandr...
installing lsof...
installing xdg-user-dirs...
Created symlink '/etc/systemd/user/graphical-session-pre.target.wants/xdg-user-dirs.service' → '/usr/lib/systemd/user/xdg-user-dirs.service'.
installing libxcrypt-compat...
installing python-six...
installing python-xlib...
installing python-xxhash...
installing python-pyzstd...
installing python-cbor2...
installing python-urllib3...
Optional dependencies for python-urllib3
    python-brotli: Brotli support
    python-brotlicffi: Brotli support
    python-h2: HTTP/2 support
    python-pysocks: SOCKS support
installing lib32-libxcrypt...
installing lib32-libxcrypt-compat...
installing lib32-libxdmcp...
installing lib32-libxau...
installing lib32-libxcb...
installing lib32-libx11...
installing lib32-libxext...
installing lib32-expat...
installing lib32-zlib...
installing lib32-libpciaccess...
installing lib32-libdrm...
installing lib32-bzip2...
installing lib32-brotli...
installing lib32-e2fsprogs...
installing lib32-keyutils...
installing lib32-openssl...
Optional dependencies for lib32-openssl
    ca-certificates [installed]
installing lib32-libldap...
installing lib32-krb5...
installing lib32-libunistring...
installing lib32-libidn2...
installing lib32-libnghttp2...
installing lib32-libnghttp3...
installing lib32-gmp...
installing lib32-nettle...
installing lib32-libffi...
installing lib32-libtasn1...
installing lib32-p11-kit...
installing lib32-zstd...
installing lib32-gnutls...
installing lib32-libngtcp2...
installing lib32-libpsl...
installing lib32-libssh2...
installing lib32-curl...
installing lib32-json-c...
installing lib32-xz...
installing lib32-libelf...
installing lib32-libxshmfence...
installing lib32-libxxf86vm...
installing lib32-ncurses...
installing lib32-icu...
installing lib32-libxml2...
installing lib32-llvm-libs...
installing lib32-lm_sensors...
installing lib32-spirv-tools...
installing lib32-wayland...
installing lib32-mesa...
Optional dependencies for lib32-mesa
    opengl-man-pages: for the OpenGL API man pages
installing lib32-nvidia-utils...
Optional dependencies for lib32-nvidia-utils
    lib32-opencl-nvidia
installing lib32-libglvnd...
installing libxss...
installing lib32-libxss...
installing alsa-topology-conf...
installing alsa-ucm-conf...
installing alsa-lib...
installing alsa-plugins...
Optional dependencies for alsa-plugins
    dbus: for maemo plugin [installed]
    ffmpeg: for pcm_a52 plugin
    jack: for pcm_jack plugin
    libavtp: for pcm_aaf plugin
    libsamplerate: for rate_samplerate plugin
    libpulse: for conf_pulse, ctl_pulse and pcm_pulse plugins
    speexdsp: for pcm_speex and rate_speexrate plugins
installing lib32-alsa-lib...
installing lib32-alsa-plugins...
Optional dependencies for lib32-alsa-plugins
    lib32-dbus: for maemo plugin
    lib32-jack: for pcm_jack plugin
    lib32-libavtp: for pcm_aaf plugin
    lib32-libsamplerate: for rate_samplerate plugin
    lib32-libpulse: for conf_pulse, ctl_pulse and pcm_pulse plugins
    lib32-speexdsp: for pcm_speex and rate_speexrate plugins
installing lib32-libgpg-error...
installing lib32-nspr...
installing lib32-sqlite...
installing lib32-nss...
installing lib32-vulkan-icd-loader...
Optional dependencies for lib32-vulkan-icd-loader
    lib32-vulkan-driver: packaged vulkan driver [installed]
installing libdisplay-info...
installing lib32-libdisplay-info...
installing lib32-libgcrypt...
installing lib32-systemd...
installing vulkan-mesa-implicit-layers...
installing lib32-vulkan-mesa-implicit-layers...
installing xcb-util-keysyms...
installing lib32-xcb-util-keysyms...
installing vulkan-radeon...
Optional dependencies for vulkan-radeon
    vulkan-mesa-layers: additional vulkan layers
installing lib32-vulkan-radeon...
Optional dependencies for lib32-vulkan-radeon
    lib32-vulkan-mesa-layers: additional vulkan layers
installing vulkan-intel...
Optional dependencies for vulkan-intel
    vulkan-mesa-layers: additional vulkan layers
installing lib32-vulkan-intel...
Optional dependencies for lib32-vulkan-intel
    lib32-vulkan-mesa-layers: additional vulkan layers
installing umu-launcher...
Optional dependencies for umu-launcher
    python-truststore: Verify certificates using OS trust stores
installing wget...
Optional dependencies for wget
    ca-certificates: HTTPS downloads [installed]
:: Running post-transaction hooks...
( 1/15) Creating system user accounts...
Failed to connect to audit log, ignoring: Invalid argument
Creating group 'avahi' with GID 969.
Creating user 'avahi' (Avahi mDNS/DNS-SD daemon) with UID 969 and GID 969.
Creating group 'nvidia-persistenced' with GID 143.
Creating user 'nvidia-persistenced' (NVIDIA Persistence Daemon) with UID 143 and GID 143.
( 2/15) Reloading system manager configuration...
  Skipped: Current root is not booted.
( 3/15) Reloading user manager configuration...
  Skipped: Current root is not booted.
( 4/15) Updating the MIME type database...
( 5/15) Reloading device manager configuration...
  Skipped: Current root is not booted.
( 6/15) Arming ConditionNeedsUpdate...
( 7/15) Updating fontconfig configuration...
( 8/15) Updating the appstream cache...
✔ Metadata cache was updated successfully.
( 9/15) Reloading system bus configuration...
  Skipped: Current root is not booted.
(10/15) Updating fontconfig cache...
(11/15) Updating GIO module cache...
(12/15) Compiling GSettings XML schema files...
(13/15) Probing GTK3 input method modules...
(14/15) Updating icon theme caches...
(15/15) Updating the desktop file MIME type cache...
--> 68fb0c9a6ded
[1/2] STEP 7/19: RUN pacman -S --needed --noconfirm mesa-utils vulkan-tools
resolving dependencies...
looking for conflicting packages...

Package (3)         New Version  Net Change  Download Size

extra/libdecor      0.2.5-1        0.16 MiB       0.04 MiB
extra/mesa-utils    9.0.0-7        0.76 MiB       0.15 MiB
extra/vulkan-tools  1.4.350.0-1    1.89 MiB       0.45 MiB

Total Download Size:   0.64 MiB
Total Installed Size:  2.82 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 vulkan-tools-1.4.350.0-1-x86_64 downloading...
 mesa-utils-9.0.0-7-x86_64 downloading...
 libdecor-0.2.5-1-x86_64 downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
:: Processing package changes...
installing libdecor...
Optional dependencies for libdecor
    gtk3: gtk3 support [installed]
installing mesa-utils...
installing vulkan-tools...
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
--> f24f39121778
[1/2] STEP 8/19: RUN pacman -Scc

Cache directory: /var/cache/pacman/pkg/

Database directory: /var/lib/pacman/
:: Do you want to remove ALL files from cache? [y/N] :: Do you want to remove unused repositories? [Y/n] --> 14ed5e96f89c
[1/2] STEP 9/19: RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen
Generating locales...
  en_US.UTF-8... done
Generation complete.
--> 376a86793a10
[1/2] STEP 10/19: RUN useradd -m  user
--> ef19b054f9f4
[1/2] STEP 11/19: RUN echo "/usr/local/nvidia/lib" >> /etc/ld.so.conf.d/nvidia.conf  && echo "/usr/local/nvidia/lib64" >> /etc/ld.so.conf.d/nvidia.conf
--> 58a2d159f9c7
[1/2] STEP 12/19: COPY pulse-client.conf /etc/pulse/client.conf
--> 48ff0d4317f3
[1/2] STEP 13/19: USER user
--> 74988cab6efd
[1/2] STEP 14/19: WORKDIR /home/user
--> faf653633706
[1/2] STEP 15/19: ADD --chown=user:user https://cdn.zwift.com/app/ZwiftSetup.exe ZwiftSetup.exe
--> da04f58993bf
[1/2] STEP 16/19: ENV PROTONPATH=${PROTON_PATH}
--> ec8a5e53e111
[1/2] STEP 17/19: RUN mkdir -p ".local/share/Steam/compatibilitytools.d/"
--> 97689758758d
[1/2] STEP 18/19: RUN curl -L ${PROTON_URL} | tar -x -z -C ${PROTON_INSTALL_DIR} -f -
  % Total    % Received % Xferd  Average Speed  Time    Time    Time   Current
                                 Dload  Upload  Total   Spent   Left   Speed
  0      0   0      0   0      0      0      0                              0
100 492.6M 100 492.6M   0      0 88.35M      0   00:05   00:05         93.97M
--> fd3fcbee33c5
[1/2] STEP 19/19: RUN ln -s "$(find ${PROTON_INSTALL_DIR} -mindepth 1 -maxdepth 1 -type d)" "${PROTON_PATH}"
--> ea0f60b29ff8
[2/2] STEP 1/17: FROM ea0f60b29ff8f83ef4449d02325b30c1112b8482eb65339737751ab77ed13f7d
[2/2] STEP 2/17: ARG PROTON_PATH
--> ef5492afd117
[2/2] STEP 3/17: ENV NVIDIA_VISIBLE_DEVICES=all
--> d5549544e11a
[2/2] STEP 4/17: ENV NVIDIA_DRIVER_CAPABILITIES=all
--> 56bffed5d493
[2/2] STEP 5/17: ENV WINEDEBUG=err-all,fixme-all
--> 28bcc3512bd6
[2/2] STEP 6/17: ENV PROTONPATH=${PROTON_PATH}
--> acca83e04a32
[2/2] STEP 7/17: ENV GAMEID=umu-zwift
--> 8796bd322873
[2/2] STEP 8/17: LABEL org.opencontainers.image.authors="Kim Eik <kim@heldig.org>"
--> af031ca74fc1
[2/2] STEP 9/17: LABEL org.opencontainers.image.title="netbrain/zwift"
--> 3d3a8cca1602
[2/2] STEP 10/17: LABEL org.opencontainers.image.description="Easily zwift on linux"
--> 4f000e1f2958
[2/2] STEP 11/17: LABEL org.opencontainers.image.url="https://github.com/netbrain/zwift"
--> 3173a777fe89
[2/2] STEP 12/17: COPY --chmod=755 entrypoint.sh /bin/entrypoint
--> 7f3a0b78734e
[2/2] STEP 13/17: COPY --chmod=755 update_zwift.sh /bin/update_zwift.sh
--> 3450679d44b1
[2/2] STEP 14/17: COPY --chmod=755 run_zwift.sh /bin/run_zwift.sh
--> 2468910e23ff
[2/2] STEP 15/17: COPY --chmod=755 zwift-auth.sh /bin/zwift-auth
--> 94df8eb1f9ba
[2/2] STEP 16/17: COPY --chown=user:user protonfixes_zwift.py /home/user/.config/protonfixes/localfixes/umu-zwift.py
--> 0ee95992105d
[2/2] STEP 17/17: ENTRYPOINT ["entrypoint"]
[2/2] COMMIT zwift
--> ba7d72afd005
Successfully tagged localhost/zwift:latest
ba7d72afd005e80534f24a7954cd4867ef38b5a0c03aafd61dd35708ae348ebe
[21:57:35|✓] Successfully built image localhost/zwift
[21:57:35|*] Launching temporary container to install Zwift
[podman|19:57:37|*] Installing Zwift...
[podman|19:57:37|*] Downloading and installing Zwift
INFO: umu-launcher version 1.4.0 (3.14.5 (main, May 10 2026, 18:26:20) [GCC 16.1.1 20260430])
CRITICAL: steamrt3 validation failed
CRITICAL: Could not find sniper_platform_* in '/home/user/.local/share/umu/steamrt3'
INFO: Setting up Unified Launcher for Windows Games on Linux...
/usr/lib/python3.14/site-packages/urllib3/_request_methods.py:182: FutureWarning: URLs without a scheme (ie 'https://') are deprecated and will raise an error in urllib3 v3.0. To avoid this FutureWarning ensure all URLs start with 'https://' or 'http://'. Read more in this issue: https://github.com/urllib3/urllib3/issues/2920
  return self.urlopen(method, url, **extra_kw)
INFO: Downloading steamrt3 (latest), please wait...
INFO: SteamLinuxRuntime_sniper.tar.xz: SHA256 is OK
INFO: Verifying integrity of sniper_platform_3.0.20260608.242788...
INFO: sniper_platform_3.0.20260608.242788: mtree is OK
INFO: Using steamrt3 (latest)
INFO: Running 'GE-Proton10-34' using runtime 'sniper'
INFO: Running 'steamrt3' using runtime 'host'
ProtonFixes[125] INFO: Running protonfixes on "GE-Proton10-34", build at 2026-03-23 03:55:11+00:00.
ProtonFixes[125] INFO: Running checks
ProtonFixes[125] INFO: All checks successful
ProtonFixes[125] WARN: Game title not found in CSV
ProtonFixes[125] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: No store specified, using UMU database
ProtonFixes[125] INFO: Using early stage global defaults for UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: No store specified, using UMU database
ProtonFixes[125] INFO: Using early stage local protonfix for UNKNOWN (umu-zwift)
Proton: Upgrading prefix from None to GE-Proton10-34 (/home/user/Games/umu/umu-zwift/)
ProtonFixes[125] INFO: Running protonfixes on "GE-Proton10-34", build at 2026-03-23 03:55:11+00:00.
ProtonFixes[125] INFO: Running checks
ProtonFixes[125] INFO: All checks successful
ProtonFixes[125] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: No store specified, using UMU database
ProtonFixes[125] INFO: Using main stage global defaults for UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: No store specified, using UMU database
ProtonFixes[125] INFO: Using main stage local protonfix for UNKNOWN (umu-zwift)
ProtonFixes[125] INFO: Checking if winetricks "corefonts dotnet48 d3dcompiler_47 webview2" is installed
ProtonFixes[125] INFO: Installing winetricks corefonts dotnet48 d3dcompiler_47 webview2
ProtonFixes[125] DEBUG: Using winetricks command: ['winetricks', '--unattended', 'corefonts', 'dotnet48', 'd3dcompiler_47', 'webview2']
ProtonFixes[125] INFO: Using winetricks verb "corefonts dotnet48 d3dcompiler_47 webview2"
Executing cd /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/protonfixes/files/bin
------------------------------------------------------
winetricks latest version check update disabled
------------------------------------------------------
Using winetricks 20260125-next - sha256sum: ebd82af5ef35c008d4b48936f45fec4aabc919f57c4097839af34b7c604d9739 with wine-10.0 (Staging) and WINEARCH=win64
Executing w_do_call corefonts
Executing load_corefonts 
Executing w_do_call andale
Executing load_andale 
Executing mkdir -p /home/user/.cache/winetricks/corefonts
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/andale32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  193k  100  193k    0     0   322k      0 --:--:-- --:--:-- --:--:--  322k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_andale /home/user/.cache/winetricks/corefonts/andale32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_andale\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_andale\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_andale/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_90ad6a9f_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_andale\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_andale\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_andale/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_f6204652_129.reg
Executing w_do_call arial
Executing load_arial 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/arial32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  541k  100  541k    0     0   850k      0 --:--:-- --:--:-- --:--:--  850k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/arialb32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  164k  100  164k    0     0   271k      0 --:--:-- --:--:-- --:--:--  271k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial /home/user/.cache/winetricks/corefonts/arial32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_304f5183_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_964415d4_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_1f616c49_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_16f0ad00_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_afb17c0c_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_4cd1fddd_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_dae52f18_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_f89c822c_129.reg
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial /home/user/.cache/winetricks/corefonts/arialb32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_66d0267b_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_arial\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_arial/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_8067e78b_129.reg
Executing w_do_call comicsans
Executing load_comicsans 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/comic32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  240k  100  240k    0     0   448k      0 --:--:-- --:--:-- --:--:--  448k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_comicsans /home/user/.cache/winetricks/corefonts/comic32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_comicsans/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_b59fdb6f_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_comicsans/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_487ea6dc_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_comicsans/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_39bed46a_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_comicsans\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_comicsans/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_1a737988_129.reg
Executing w_do_call courier
Executing load_courier 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/courie32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  631k  100  631k    0     0   679k      0 --:--:-- --:--:-- --:--:--  679k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier /home/user/.cache/winetricks/corefonts/courie32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_7c2c4123_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_891b54d0_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_18981059_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_d5235b9d_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_ca9299dd_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_54cc9ff7_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_2add04a3_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_courier\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_courier/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_323957ce_129.reg
Executing w_do_call georgia
Executing load_georgia 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/georgi32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  383k  100  383k    0     0   724k      0 --:--:-- --:--:-- --:--:--  724k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia /home/user/.cache/winetricks/corefonts/georgi32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_7c0d8b91_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_537b121d_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_d2a59526_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_5996c7ae_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_4c1b3afe_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_d73b8d5d_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_7ad937dd_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_georgia\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_georgia/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_d7f60a67_129.reg
Executing w_do_call impact
Executing load_impact 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/impact32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  169k  100  169k    0     0   305k      0 --:--:-- --:--:-- --:--:--  305k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_impact /home/user/.cache/winetricks/corefonts/impact32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_impact\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_impact\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_impact/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_85408d52_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_impact\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_impact\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_impact/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_83bd4a0f_129.reg
Executing w_do_call times
Executing load_times 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/times32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  646k  100  646k    0     0  1100k      0 --:--:-- --:--:-- --:--:-- 1100k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times /home/user/.cache/winetricks/corefonts/times32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_c7df04fe_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_882d004f_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_a7b0a685_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_9523176f_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_d6a6cd95_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_54e8fd8d_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_e1819b6c_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_times\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_times/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_12e799de_129.reg
Executing w_do_call trebuchet
Executing load_trebuchet 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/trebuc32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  348k  100  348k    0     0   643k      0 --:--:-- --:--:-- --:--:--  643k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet /home/user/.cache/winetricks/corefonts/trebuc32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_8000236b_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_66ed7d3c_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_e03e6b06_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_4defd6cc_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_9d24ff53_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_9539cec7_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_c0ce2062_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_trebuchet\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_trebuchet/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_0d13f97a_129.reg
Executing w_do_call verdana
Executing load_verdana 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master//verdan32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  343k  100  343k    0     0   607k      0 --:--:-- --:--:-- --:--:--  607k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana /home/user/.cache/winetricks/corefonts/verdan32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_1ae856a5_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_3b8c6ecc_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_9a3fa42a_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_dd6ee781_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_55447381_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_35f4f98b_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_fa2a389b_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_verdana\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_verdana/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_a88367ad_129.reg
Executing w_do_call webdings
Executing load_webdings 
Executing cd /home/user/.cache/winetricks/corefonts
Downloading https://github.com/pushcx/corefonts/raw/master/webdin32.exe to /home/user/.cache/winetricks/corefonts
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  180k  100  180k    0     0   328k      0 --:--:-- --:--:-- --:--:--  328k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cabextract -q -d /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_webdings /home/user/.cache/winetricks/corefonts/webdin32.exe
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_webdings\_register-font.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_webdings\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_webdings/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_405b24a4_129.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_webdings\_register-font.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_webdings\_register-font.reg
Executing cp /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/temp/_webdings/_register-font.reg /tmp/winetricks.rZWybT9F/_reg_70fc14d8_129.reg
Executing w_do_call dotnet48
Executing load_dotnet48 
------------------------------------------------------
warning: This package (dotnet48) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
------------------------------------------------------
Executing mkdir -p /home/user/.cache/winetricks/dotnet48
Executing cd /home/user/.cache/winetricks/dotnet48
Downloading https://download.visualstudio.microsoft.com/download/pr/7afca223-55d2-470a-8edc-6a1739ae3252/abd170b4b0ec15ad0222a809b761a036/ndp48-x86-x64-allos-enu.exe to /home/user/.cache/winetricks/dotnet48
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 69.3M  100 69.3M    0     0  44.7M      0  0:00:01  0:00:01 --:--:-- 44.7M
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing w_do_call remove_mono internal
Executing load_remove_mono internal
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
regsvr32: Successfully unregistered DLL 'C:\windows\\Microsoft.NET\Framework\v4.0.30319\diasymreader.dll'
regsvr32: Successfully unregistered DLL 'C:\windows\\Microsoft.NET\Framework64\v4.0.30319\diasymreader.dll'
reg: Unable to find the specified registry key
reg: Unable to find the specified registry key
reg: Unable to find the specified registry key
reg: Unable to find the specified registry key
Executing rm -f /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/syswow64/mscoree.dll
Executing rm -f /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/system32/mscoree.dll
Executing w_do_call dotnet40
Executing load_dotnet40 
------------------------------------------------------
warning: This package (dotnet40) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
------------------------------------------------------
------------------------------------------------------
warning: dotnet40 does not yet fully work or install on wine.  Caveat emptor.
------------------------------------------------------
Executing mkdir -p /home/user/.cache/winetricks/dotnet40
Executing cd /home/user/.cache/winetricks/dotnet40
Downloading https://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe to /home/user/.cache/winetricks/dotnet40
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 48.1M  100 48.1M    0     0  35.6M      0  0:00:01  0:00:01 --:--:-- 35.6M
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing w_do_call remove_mono internal
Executing load_remove_mono internal
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
win10
Executing w_do_call winxp
Executing load_winxp 
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine winecfg -v winxp64
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing cd /home/user/.cache/winetricks/dotnet40
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine dotNetFx40_Full_x86_x64.exe /q /c:install.exe /q
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Preparing: C:\10cb9a2e3456bd4499\netfx_Core_x64.msi...
Preparing: C:\10cb9a2e3456bd4499\netfx_Core_x86.msi...
Preparing: C:\10cb9a2e3456bd4499\netfx_Extended_x64.msi...
Preparing: C:\10cb9a2e3456bd4499\netfx_Extended_x86.msi...
Preparing: C:\10cb9a2e3456bd4499\RGB9RAST_x64.msi...
Preparing: C:\10cb9a2e3456bd4499\RGB9Rast_x86.msi...
Preparing: C:\10cb9a2e3456bd4499\header.bmp...
Preparing: C:\10cb9a2e3456bd4499\SplashScreen.bmp...
Preparing: C:\10cb9a2e3456bd4499\watermark.bmp...
Preparing: C:\10cb9a2e3456bd4499\DisplayIcon.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Print.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate1.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate2.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate3.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate4.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate5.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate6.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate7.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Rotate8.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Save.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\Setup.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\stop.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\SysReqMet.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\SysReqNotMet.ico...
Preparing: C:\10cb9a2e3456bd4499\Graphics\warn.ico...
Preparing: C:\10cb9a2e3456bd4499\1033\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1042\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1041\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1037\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1025\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1035\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1030\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1044\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1043\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1040\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1029\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1031\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1036\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1032\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1038\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\2052\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1028\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\3076\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1055\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1053\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\3082\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\2070\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1046\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1049\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\1045\LocalizedData.xml...
Preparing: C:\10cb9a2e3456bd4499\Client\Parameterinfo.xml...
Preparing: C:\10cb9a2e3456bd4499\Extended\Parameterinfo.xml...
Preparing: C:\10cb9a2e3456bd4499\ParameterInfo.xml...
Preparing: C:\10cb9a2e3456bd4499\Strings.xml...
Preparing: C:\10cb9a2e3456bd4499\UiInfo.xml...
Preparing: C:\10cb9a2e3456bd4499\Client\UiInfo.xml...
Preparing: C:\10cb9a2e3456bd4499\Extended\UiInfo.xml...
Preparing: C:\10cb9a2e3456bd4499\SetupUi.xsd...
Preparing: C:\10cb9a2e3456bd4499\DHtmlHeader.html...
Preparing: C:\10cb9a2e3456bd4499\1033\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1025\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1028\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1030\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1031\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1029\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1036\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1035\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1032\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1038\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1037\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1040\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1041\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1042\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1044\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1043\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1046\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1045\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1055\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1053\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\2052\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\1049\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\3082\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\2070\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\3076\eula.rtf...
Preparing: C:\10cb9a2e3456bd4499\Setup.exe...
Preparing: C:\10cb9a2e3456bd4499\SetupUtility.exe...
Preparing: C:\10cb9a2e3456bd4499\SetupEngine.dll...
Preparing: C:\10cb9a2e3456bd4499\1025\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1033\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1029\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1030\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1035\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1031\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1036\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1032\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1028\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\2052\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\3076\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1042\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1041\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1037\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1044\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1053\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1055\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1040\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1045\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1046\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1049\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1038\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\2070\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\3082\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\1043\SetupResources.dll...
Preparing: C:\10cb9a2e3456bd4499\SetupUi.dll...
Preparing: C:\10cb9a2e3456bd4499\sqmapi.dll...
Preparing: C:\10cb9a2e3456bd4499\Windows6.0-KB956250-v6001-x64.msu...
Preparing: C:\10cb9a2e3456bd4499\Windows6.0-KB956250-v6001-x86.msu...
Preparing: C:\10cb9a2e3456bd4499\Windows6.1-KB958488-v6001-x64.msu...
Preparing: C:\10cb9a2e3456bd4499\Windows6.1-KB958488-v6001-x86.msu...
Preparing: C:\10cb9a2e3456bd4499\netfx_Core.mzz...
Preparing: C:\10cb9a2e3456bd4499\netfx_Extended.mzz...
wine client error:48c: write: Bad file descriptor
Using native override for following DLLs: mscoree
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_dotnet40\override-dll.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_dotnet40\override-dll.reg
reg: The operation completed successfully
reg: The operation completed successfully
reg: The operation completed successfully
reg: The operation completed successfully
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine winecfg -v win10
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine winecfg -v win7
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
------------------------------------------------------
warning: Running /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wineserver -w. This will hang until all wine processes in prefix=/home/user/Games/umu/umu-zwift/pfx terminate
------------------------------------------------------
Executing cd /home/user/.cache/winetricks/dotnet48
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine ndp48-x86-x64-allos-enu.exe /sfxlang:1027 /q /norestart
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Preparing: C:\b16fba242c69355d3ccc\Windows6.1-KB4019990-x64.cab...
Preparing: C:\b16fba242c69355d3ccc\netfx_core_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\netfx_core_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\netfx_extended_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\netfx_extended_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx451\netfx_Full_GDR_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx452\netfx_Full_GDR_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx451\netfx_Full_GDR_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx452\netfx_Full_GDR_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx451\netfx_Full_LDR_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx452\netfx_Full_LDR_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx451\netfx_Full_LDR_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx452\netfx_Full_LDR_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx45\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx46\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx461\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx462\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx47\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx471\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx472\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\netfx_Full_x64.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx45\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx46\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx461\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx47\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx471\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx462\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\NetFx472\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\netfx_Full_x86.msi...
Preparing: C:\b16fba242c69355d3ccc\header.bmp...
Preparing: C:\b16fba242c69355d3ccc\SplashScreen.bmp...
Preparing: C:\b16fba242c69355d3ccc\watermark.bmp...
Preparing: C:\b16fba242c69355d3ccc\DisplayIcon.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Print.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate1.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate10.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate2.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate3.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate4.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate5.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate6.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate7.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate8.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Rotate9.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Save.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\Setup.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\stop.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\SysReqMet.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\SysReqNotMet.ico...
Preparing: C:\b16fba242c69355d3ccc\Graphics\warn.ico...
Preparing: C:\b16fba242c69355d3ccc\1025\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\2052\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1028\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1029\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1030\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1031\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1032\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1033\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\3082\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1035\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1036\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1037\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1038\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1040\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1041\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1042\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1043\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1044\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1045\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1046\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\2070\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1049\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1053\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\1055\LocalizedData.xml...
Preparing: C:\b16fba242c69355d3ccc\ParameterInfo.xml...
Preparing: C:\b16fba242c69355d3ccc\Strings.xml...
Preparing: C:\b16fba242c69355d3ccc\UiInfo.xml...
Preparing: C:\b16fba242c69355d3ccc\SetupUi.xsd...
Preparing: C:\b16fba242c69355d3ccc\DHtmlHeader.html...
Preparing: C:\b16fba242c69355d3ccc\1030\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1029\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1028\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1025\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1033\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1031\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1032\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1040\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1035\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1036\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1038\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1037\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1043\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1045\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1042\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1041\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1044\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1053\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1046\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1049\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\2070\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\1055\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\2052\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\3082\eula.rtf...
Preparing: C:\b16fba242c69355d3ccc\Setup.exe...
Preparing: C:\b16fba242c69355d3ccc\SetupUtility.exe...
Preparing: C:\b16fba242c69355d3ccc\SetupEngine.dll...
Preparing: C:\b16fba242c69355d3ccc\1028\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\2052\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1025\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1033\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1029\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1030\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1031\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\3082\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1032\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1042\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1041\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1037\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1044\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1053\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1035\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1046\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1040\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1055\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1049\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1045\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\2070\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1036\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1038\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\1043\SetupResources.dll...
Preparing: C:\b16fba242c69355d3ccc\SetupUi.dll...
Preparing: C:\b16fba242c69355d3ccc\sqmapi.dll...
Preparing: C:\b16fba242c69355d3ccc\netfx_Full.mzz...
wine client error:5c4: write: Bad file descriptor
wine client error:5cc: write: Bad file descriptor
wine client error:56c: write: Bad file descriptor
wine client error:698: write: Bad file descriptor
wine client error:760: write: Bad file descriptor
wine client error:80: write: Bad file descriptor
wine client error:27c: write: Bad file descriptor
wine client error:218: write: Bad file descriptor
wine client error:304: write: Bad file descriptor
wine client error:44c: write: Bad file descriptor
wine client error:46c: write: Bad file descriptor
wine client error:5cc: write: Bad file descriptor
wine client error:600: write: Bad file descriptor
wine client error:680: write: Bad file descriptor
wine client error:304: write: Bad file descriptor
wine client error:540: write: Bad file descriptor
wine client error:234: write: Bad file descriptor
wine client error:79c: write: Bad file descriptor
Using native override for following DLLs: mscoree
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_dotnet48\override-dll.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_dotnet48\override-dll.reg
Executing touch /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/dotnet48.installed.workaround
Executing w_do_call d3dcompiler_47
Executing load_d3dcompiler_47 
Executing mkdir -p /home/user/.cache/winetricks/d3dcompiler_47
Executing cd /home/user/.cache/winetricks/d3dcompiler_47
Downloading https://raw.githubusercontent.com/mozilla/fxc2/master/dll/d3dcompiler_47_32.dll to /home/user/.cache/winetricks/d3dcompiler_47
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 3572k  100 3572k    0     0  9840k      0 --:--:-- --:--:-- --:--:-- 9813k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cp -f /home/user/.cache/winetricks/d3dcompiler_47/d3dcompiler_47_32.dll /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/syswow64/d3dcompiler_47.dll
Executing cd /home/user/.cache/winetricks/d3dcompiler_47
Downloading https://raw.githubusercontent.com/mozilla/fxc2/master/dll/d3dcompiler_47.dll to /home/user/.cache/winetricks/d3dcompiler_47
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 4244k  100 4244k    0     0  9916k      0 --:--:-- --:--:-- --:--:-- 9916k
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cp -f /home/user/.cache/winetricks/d3dcompiler_47/d3dcompiler_47.dll /home/user/Games/umu/umu-zwift/pfx/dosdevices/c:/windows/system32/d3dcompiler_47.dll
Using native override for following DLLs: d3dcompiler_47
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_d3dcompiler_47\override-dll.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_d3dcompiler_47\override-dll.reg
Executing w_do_call webview2
Executing load_webview2 
Executing mkdir -p /home/user/.cache/winetricks/webview2
Executing cd /home/user/.cache/winetricks/webview2
Downloading https://go.microsoft.com/fwlink/p/?LinkId=2124703 to /home/user/.cache/winetricks/webview2
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 1649k  100 1649k    0     0  1306k      0  0:00:01  0:00:01 --:--:-- 10.1M
Executing cd /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift
Executing cd /home/user/.cache/winetricks/webview2
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine MicrosoftEdgeWebview2Setup.exe /silent /install
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
wine client error:210: ------------------------------------------------------
warning: Working around wine bug 53925 -- Setting edgeupdate service to manual startup
------------------------------------------------------
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_webview2\edgeupdate-service.reg
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_webview2\edgeupdate-service.reg
/home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/protonfixes/files/bin/pgrep: line 202: cd: /mnt/Storage/Projects/Development/proton/build/obj-protonfixes-x86_64/procps-ng: No such file or directory
/home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/protonfixes/files/bin/pgrep: line 202: x86_64-linux-gnu-gcc: command not found
------------------------------------------------------
warning: Working around wine bug 58921 -- Setting Windows 7 mode
------------------------------------------------------
Setting msedgewebview2.exe to win7 mode
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine C:\windows\syswow64\regedit.exe /S C:\windows\Temp\_webview2\set-winver.reg
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
Executing /home/user/.local/share/Steam/compatibilitytools.d/GE-Proton10-34/files/bin/wine64 C:\windows\regedit.exe /S C:\windows\Temp\_webview2\set-winver.reg
ProtonFixes[125] DEBUG: Killing hanging wine processes
ProtonFixes[125] INFO: Checking if winetricks "corefonts dotnet48 d3dcompiler_47 webview2" is installed
ProtonFixes[125] WARN: Not recorded as installed: winetricks corefonts dotnet48 d3dcompiler_47 webview2, forcing!
ProtonFixes[125] INFO: Winetricks complete
ProtonFixes[125] INFO: Adding key: HKCU\Software\Wine\Drivers
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
reg: The operation completed successfully
Proton: /home/user/ZwiftSetup.exe
Proton: Executable a unix path, launching with /unix option.
steam-runtime-launcher-service[12700]: E: Can't find session bus: Cannot spawn a message bus without a machine-id: Unable to load /var/lib/dbus/machine-id or /etc/machine-id: Failed to open file “/var/lib/dbus/machine-id”: No such file or directory
steam-runtime-launcher-service[12700]: W: Failed to start IPC server, running wrapped command instead
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
System.PlatformNotSupportedException: Video driver  not supported
   at Xalia.Sdl.WindowingSystem.Create() in D:\a\xalia\xalia\xalia\Sdl\WindowingSystem.cs:line 33
   at Xalia.Sdl.WindowingSystem.get_Instance() in D:\a\xalia\xalia\xalia\Sdl\WindowingSystem.cs:line 41
   at Xalia.Ui.UiMain..ctor() in D:\a\xalia\xalia\xalia\Ui\UiMain.cs:line 54
   at Xalia.MainClass.<Init>d__1.MoveNext() in D:\a\xalia\xalia\xalia\MainClass.cs:line 45
regsvr32: Successfully registered DLL 'C:\windows\system32\XAudio2_7.dll'
[podman|20:00:52|*] Updating Zwift from version 0.0.0 to 1.114.0
[podman|20:00:52|*] Starting Zwift launcher using wine
INFO: umu-launcher version 1.4.0 (3.14.5 (main, May 10 2026, 18:26:20) [GCC 16.1.1 20260430])
/usr/lib/python3.14/site-packages/urllib3/_request_methods.py:182: FutureWarning: URLs without a scheme (ie 'https://') are deprecated and will raise an error in urllib3 v3.0. To avoid this FutureWarning ensure all URLs start with 'https://' or 'http://'. Read more in this issue: https://github.com/urllib3/urllib3/issues/2920
  return self.urlopen(method, url, **extra_kw)
INFO: steamrt3 is up to date
INFO: Running 'GE-Proton10-34' using runtime 'sniper'
INFO: Running 'steamrt3' using runtime 'host'
ProtonFixes[12956] INFO: Running protonfixes on "GE-Proton10-34", build at 2026-03-23 03:55:11+00:00.
ProtonFixes[12956] INFO: Running checks
ProtonFixes[12956] INFO: All checks successful
ProtonFixes[12956] WARN: Game title not found in CSV
ProtonFixes[12956] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: No store specified, using UMU database
ProtonFixes[12956] INFO: Using early stage global defaults for UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: No store specified, using UMU database
ProtonFixes[12956] INFO: Using early stage local protonfix for UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: Running protonfixes on "GE-Proton10-34", build at 2026-03-23 03:55:11+00:00.
ProtonFixes[12956] INFO: Running checks
ProtonFixes[12956] INFO: All checks successful
ProtonFixes[12956] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: No store specified, using UMU database
ProtonFixes[12956] INFO: Using main stage global defaults for UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: Non-steam game UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: No store specified, using UMU database
ProtonFixes[12956] INFO: Using main stage local protonfix for UNKNOWN (umu-zwift)
ProtonFixes[12956] INFO: Checking if winetricks "corefonts dotnet48 d3dcompiler_47 webview2" is installed
ProtonFixes[12956] INFO: Adding key: HKCU\Software\Wine\Drivers
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
reg: The operation completed successfully
Proton: /home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift/ZwiftLauncher.exe
Proton: Executable a unix path, launching with /unix option.
steam-runtime-launcher-service[13044]: E: Can't find session bus: Cannot spawn a message bus without a machine-id: Unable to load /var/lib/dbus/machine-id or /etc/machine-id: Failed to open file “/var/lib/dbus/machine-id”: No such file or directory
steam-runtime-launcher-service[13044]: W: Failed to start IPC server, running wrapped command instead
wineserver: NTSync up and running!
Failed to open /etc/machine-id, error No such file or directory.
System.PlatformNotSupportedException: Video driver  not supported
   at Xalia.Sdl.WindowingSystem.Create() in D:\a\xalia\xalia\xalia\Sdl\WindowingSystem.cs:line 33
   at Xalia.Sdl.WindowingSystem.get_Instance() in D:\a\xalia\xalia\xalia\Sdl\WindowingSystem.cs:line 41
   at Xalia.Ui.UiMain..ctor() in D:\a\xalia\xalia\xalia\Ui\UiMain.cs:line 54
   at Xalia.MainClass.<Init>d__1.MoveNext() in D:\a\xalia\xalia\xalia\MainClass.cs:line 45
[podman|20:00:55|✗] Failed to start Zwift launcher using wine!
[podman|20:00:55|✗] Failed to update Zwift!
[podman|20:00:55|*] Removing installation artifacts
rm: cannot remove '/home/user/Games/umu/umu-zwift/drive_c/Program Files (x86)/Zwift/ZwiftSetup.exe': No such file or directory
[22:00:55|✗] Failed to install Zwift in container! 😭
[22:00:55|*] Checking for temporary container
[22:00:55|✓] Removed temporary container

@BreiteSeite

BreiteSeite commented Jun 10, 2026

Copy link
Copy Markdown
Author

Hey, thanks for trying this out. I guess i can't really help here very well, as i have no nvidia card and researching the error seems to bring up a lot of threads from people with nvidia cards. You can try this fix if you want.

Edit: i just saw that this is not a fix but what enables it to reproduce it. Maybe try setting it explicitly to something else, like wayland? https://wiki.libsdl.org/SDL2/FAQUsingSDL#linux

@BreiteSeite

Copy link
Copy Markdown
Author

I also found workarounds by trying to explicitly unsetting the env: basecamp/omarchy#1047 (comment) ¯_(ツ)_/¯ although i'm not sure if it is set anywhere at all inside the container (or outside).

@glennvl glennvl force-pushed the update-wine branch 2 times, most recently from 99eb9de to 4e2e9d8 Compare June 25, 2026 14:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants