Is it possible convert windows file to Linux( from exe. To Linux?
sudo chown -R root:root my-app-package dpkg-deb --build my-app-package Use code with caution.
Create ~/pkg//DEBIAN/control with minimal fields: how to convert exe to deb
The DEBIAN directory holds the package's metadata, and the usr/ , etc/ , opt/ directories mirror where files will be placed on your system relative to the root ( / ). For example, a file placed in usr/local/bin/myapp.exe inside the package will be installed to /usr/local/bin/myapp.exe .
chmod +x myapp/usr/local/bin/myapp-launcher Is it possible convert windows file to Linux( from exe
sudo apt install debhelper build-essential fakeroot
If your goal is simply to run the app rather than distribute it as a package, consider these simpler methods: Run your Windows application with Wine:
sudo apt install wine dpkg-buildpackage
This technique gives you the best of both worlds: the vast library of Windows software and the stability of Debian package management.
Run your Windows application with Wine: