Unrailed - CommandMC/EpicLinux GitHub Wiki
Unrailed requires d3dcompiler_47. Run these commands to install it (modify the 1st line to point to your Wineprefix, and the 2nd one to point to your Wine's bin
folder
export WINEPREFIX=/path/to/wineprefix/here
export PATH=/path/to/wine/bin/folder:$PATH
# Download d3dcompiler dlls and extract them to the right folder
curl -L https://github.com/CommandMC/EpicLinux/raw/main/d3dcompiler_47/d3dcompiler_47.zip -o d3dcompiler_47.zip
unzip -o d3dcompiler_47.zip -d $WINEPREFIX/drive_c/windows
rm d3dcompiler_47.zip
# Add the DLL to Wine's DLLOverrides
curl -L https://github.com/CommandMC/EpicLinux/raw/main/d3dcompiler_47/override.reg -o override.reg
wine regedit override.reg
rm override.reg