How To Convert Exe — To Deb
How To Convert Exe — To Deb
sudo dpkg -i my-windows-app_1.0.0_all.deb
Example with winetricks:
If you just want to run the program without the hassle of manual packaging, use these specialized tools: how to convert exe to deb
#!/bin/bash wine /usr/local/bin/myprogram.exe "$@" sudo dpkg -i my-windows-app_1
: The underlying technology that allows many Windows applications to run directly on Linux. how to convert exe to deb
Create /usr/bin/:
#!/bin/bash cd /opt/myapp wine myapp.exe "$@"