Quick answers to the most common problems users encounter.
The installer may ask for your password several times. This is normal - just enter it each time.
Tip: You can allow sudo to work without password for a session:
sudo -v # Enter password once, valid for 15 minutesWinpatable needs ~30GB total:
- Installation: 5GB
- Wine environment: 5GB
- Applications: 10-50GB
Solution:
# Check available space
df -h
# Free up space on your drive
rm -rf ~/Downloads/*.iso # Remove old ISO filesIf installation fails during download:
# Try again (it will resume)
./install.sh
# Or manually install components
winpatable setup-wineSolution 1 - Check PATH:
# See if command is installed
ls /usr/local/bin/winpatable
# Add to PATH if needed
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrcSolution 2 - Use full path:
/usr/local/bin/winpatable detectThis usually means your GPU drivers aren't installed yet.
# Install GPU drivers
winpatable install-gpu-drivers
# Verify installation worked
nvidia-smi # for NVIDIA
rocm-smi # for AMD
glxinfo # for IntelCheck 1 - File exists:
# Verify installer path
ls ~/Downloads/office_installer.exeCheck 2 - Use correct path:
# Make sure path has no spaces in quotes
winpatable install-app office --installer ~/Downloads/office_installer.exeCheck 3 - Wine is working:
wine --version # Should show Wine versionWhen an app complains about missing DLLs:
# Reinstall Wine dependencies
winpatable setup-wine
# Or specific DLLs
WINEPREFIX=~/.winpatable winetricks dotnet48Step 1 - Check logs:
WINEDEBUG=+all wine "C:\Program Files\App\app.exe" 2>&1 | head -50Step 2 - Try compatibility mode:
# In Wine registry
WINEPREFIX=~/.winpatable wine regedit
# Navigate to: HKEY_CURRENT_USER\Software\Wine\AppDefaults\app.exe
# Add: Version = Windows 10Step 3 - Disable features:
export STAGING_SHARED_MEMORY=0
export DXVK_HUD=offQuick Fix:
- Close other applications
- Disable desktop effects
- Use SSD instead of HDD
Check GPU Usage:
# NVIDIA - watch GPU load
nvidia-smi dmon
# AMD - watch GPU utilization
watch -n 1 rocm-smi --showuseTry different video renderers:
# Use OpenGL (sometimes more stable)
export PROTON_USE_WINED3D=1
# Or DXVK (usually faster)
export PROTON_USE_WINED3D=0
# Then launch app
wine app.exeCheck ALSA (sound system):
# Test audio
aplay /usr/share/sounds/freedesktop/stereo/complete.oga
# In Wine, set audio driver
WINEPREFIX=~/.winpatable wine control.exe
# Multimedia > Audio tab > select correct driver# Check CUDA installation
nvidia-smi
# Should show CUDA capability version
# If not, reinstall CUDA
sudo apt install cuda-toolkit-12-3# Check AMD drivers
rocm-smi
# Verify HIP support
hipconfig -full# Check i915 driver
lsmod | grep i915
# Install Intel GPU tools
sudo apt install intel-gpu-toolsApplication data is stored in Wine prefix:
# Backup entire environment
cp -r ~/.winpatable ~/.winpatable.backup
# Or just application folder
cp -r ~/.winpatable/drive_c/Users ~/backup_usersYes! But it's complex. Better to use symbolic link:
# Backup current
cp -r ~/.winpatable ~/backup
# Create new location
mkdir /mnt/large-drive/winpatable
# Move data
mv ~/.winpatable/* /mnt/large-drive/winpatable/
# Create symlink
ln -s /mnt/large-drive/winpatable ~/.winpatable# Show Wine debug info
export WINE DEBUG=+all
# Show DXVK info
export DXVK_HUD=memory
# Show Proton info
export PROTON_LOG=1
# Run app
wine app.exeWarning: This deletes all installed applications
# Backup first!
cp -r ~/.winpatable ~/.winpatable.backup
# Remove and recreate
rm -rf ~/.winpatable/drive_c
wineboot --initIf you're still stuck:
-
Generate debug info:
winpatable detect > ~/winpatable_debug.txt
-
Check Wine AppDB: https://appdb.winehq.org/
-
Report issue on GitHub with:
- Output from
winpatable detect - Error messages
- Which application
- What you're trying to do
- Output from
# System
winpatable detect # Check system
winpatable list-apps # See apps
# Setup
winpatable quick-start # Full setup
winpatable setup-wine # Just Wine setup
winpatable install-gpu-drivers # Just GPU setup
# Applications
winpatable install-app office --installer path/to/file.exe
# Information
winpatable performance-tuning # Tips
winpatable --help # All commandsRemember: Winpatable is stable for the supported applications (Office, Premiere Pro, Vegas, 3DS Max).
For other applications:
- Check Wine AppDB for compatibility
- See if there's a Proton config
- Try older app versions (sometimes more compatible)
- Ask in Wine/Proton communities
Most issues are GPU driver related - make sure your drivers are up to date!
Need more help? See the full APPLICATION_GUIDES.md or open an issue on GitHub.