Skip to content

DeadmanXXXII/Wine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Wine

Linux subsystem for windows

Comprehensive List of Wine Commands

Wine-Specific Commands

  • Check Wine version:

    wine --version
  • Configure Wine settings:

    winecfg
  • Install a Windows application with Wine:

    wine setup.exe
  • Run a Windows application with Wine:

    wine application.exe
  • Uninstall a Windows application with Wine:

    wine uninstaller
  • View Wine logs:

    wine application.exe &> wine.log
  • Run a Windows application as a different Windows version:

    WINEPREFIX=~/.wine winecfg
  • Set environment variables for Wine:

    WINEPREFIX=~/.wine WINEARCH=win64 wine application.exe
  • List all installed Windows applications in Wine:

    wine uninstaller
  • Update Wine to the latest version (for WineHQ builds):

    sudo apt update
    sudo apt upgrade --install winehq-stable
  • Create a new Wine prefix:

    WINEPREFIX=~/newwineprefix winecfg
  • Remove a Wine prefix:

    rm -rf ~/wineprefix
  • Run a Windows executable with Wine in 32-bit mode:

    WINEARCH=win32 wine application.exe
  • Run a Windows executable with Wine in 64-bit mode:

    WINEARCH=win64 wine application.exe
  • Verify Wine installation and configuration:

    wine --check
  • Run Wine in debug mode:

    WINEDEBUG=+relay wine application.exe
  • Install a DLL with Winetricks:

    winetricks dllname
  • Create a Wine virtual desktop:

    winecfg

General Wine-Related Tasks

Wine Configuration and Management

  • Install Winetricks:

    sudo apt install winetricks
  • Update Winetricks:

    winetricks --self-update
  • List available Winetricks components:

    winetricks --list-all
  • Remove a Wine component:

    winetricks --uninstall component

Troubleshooting Wine Applications

  • Check Wine application compatibility:

    https://appdb.winehq.org/
  • Check Wine logs for errors:

    wine application.exe &> wine.log
  • Reset Wine configuration:

    rm -rf ~/.wine

Wine Application Management

  • List installed applications:

    wine uninstaller
  • Modify Wine application settings:

    winecfg
  • Run Wine in different desktop environments:

    WINEPREFIX=~/.wine wine application.exe

File Management with Wine

  • Access Wine virtual drive from Linux:

    cd ~/.wine/drive_c/
  • Create shortcuts for Windows applications:

    ln -s ~/.wine/drive_c/Path/To/Application.exe ~/Desktop/Application

Wine and Wine Staging

  • Install Wine Staging (development version):

    sudo apt update
    sudo apt install --install-recommends winehq-staging
  • Switch between Wine stable and Wine Staging:

    sudo apt install --install-recommends winehq-stable
    sudo apt install --install-recommends winehq-staging

Miscellaneous

  • Generate a Wine crash report:

    WINEDEBUG=+seh wine application.exe
  • Run Wine in virtual desktop mode:

    winecfg
  • Configure Wine for specific Windows applications:

    winecfg
  • Generate a debug log for Wine:

    WINEDEBUG=+debug wine application.exe &> debug.log

Wine System Integration

  • Access Windows system directories from Wine:

    cd ~/.wine/drive_c/Windows/System32
  • Access Windows user profiles from Wine:

    cd ~/.wine/drive_c/Users/YourUsername

This list provides a broad range of commands and utilities for managing Wine and running Windows applications on Linux through Wine. It includes installation, configuration, troubleshooting, and integration commands.

About

Linux subsystem for windows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published