[BUG] Wine - unable to find wine executable: the wine32 package probably needs to be installed. (Install wine32)
wine 에러발생 시 해결사항
error wine32
64bit 사용 시 wine 32 를 따로 설치해줘야함.
#> wine
unable to find wine executable: the wine32 package probably needs to be installed.
dpkg 에서 i386 아키텍쳐 추가
add architecture i386
#> apt-cache search wine32
wine32 - Windows API implementation - 32-bit binary loader
wine32-dev-tools - Windows API implementation - 32-bit developer tools
#> apt-get install wine32
#> wine
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit
error wine32
64bit 사용 시 wine 32 를 따로 설치해줘야함.
#> wine
unable to find wine executable: the wine32 package probably needs to be installed.
dpkg 에서 i386 아키텍쳐 추가
add architecture i386
#> dpkg --add-architecture i386
#> apt-get update
#> apt-cache search wine32
wine32 - Windows API implementation - 32-bit binary loader
wine32-dev-tools - Windows API implementation - 32-bit developer tools
#> apt-get install wine32
#> wine
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit