Convert Exe To Deb Link | How To
(Optional) Place a .png icon file inside myapp-package/usr/share/pixmaps/myapp.png to give your application a visual identity in the Linux app menu. Step 4: Create the Execution Script
The DEBIAN folder holds control scripts. The opt/myapp will contain your EXE and Wine runtime files.
: A popular, free tool to run a complete Windows OS as a separate window on your Linux desktop. virt-manager how to convert exe to deb link
Inside myapp_deb/usr/local/bin/ , create a file named myapp :
If you are trying to package software you developed for Linux: (Optional) Place a
cp -r wine-prefix/drive_c/Program\ Files/YourApp/* deb_package/opt/wine-apps/your-app/
Move your Windows executable into the /opt directory of your package workspace: cp setup.exe my-app-1.0/opt/my-app/ Use code with caution. : A popular, free tool to run a
sudo dpkg --add-architecture i386 sudo apt update sudo apt install wine wine32 wine64 sudo apt install build-essential debhelper devscripts
sudo dpkg -i mypackage.deb
Follow the prompts. checkinstall will create a .deb package for you.

