Gaming¶
Issues¶
NTFS Drives¶
Steam games installed on NTFS drives (drives formatted by Windows) may not start when playing on Linux. These drives need to be mounted with the filesystem type ntfs-3g
.
Example entry in /etc/fstab
:
# <file system> <dir> <type> <options> <dump> <pass>
/dev/nvme0n1p3 /run/media/octopod/cube ntfs-3g umask=0077,gid=1000,uid=1000 0 1
Async Shader Compiling¶
DXVK (the DirectX to Vulkan API conversion driver) can cause games to stutter as the shaders need to be compiled. This can be done asynchronously using this DXVK async patch: https://github.com/Sporif/dxvk-async
Instructions: 1. Download the pre-patched DXVK binaries from here. 2. Run the included script. This will replace the binaries in the current WINE installation, backing up the old versions.
3. Set the environment variableDXVK_ASYNC
to 1
.
Games may have graphical errors as they won't draw things if the shader for them hasn't been compiled yet.