How can I create a linux installer for java desktop application? for an instance if we want to install netbeans on ubuntu there is a download which is named as "netbeans-6.8-ml-java-linux.sh" so how can i create "mydesktopapp-linux.sh" i have the properly working .jar file i want to distribute my java desktop app. Can anyone help me?
|
feedback
|
|
I recommend you to have a look at IzPack. IzPack is a one-stop solution for packaging, distributing and deploying applications. It is fully cross-platform and generates a single installer. As such, it is an alternative to native solutions such as platform-specific installers and package managers. There are many other alternatives, but IMO IzPack is as good as they get and is completely free. If your app targets only Unix/Linux hosts you might consider creating native packages like RPM, DEB, etc... | |||||
feedback
|
|
On Linux/Unix, the Like the As mentioned already by raj, a simple
command could be the minimal contents to launch your app from the jar. You can then make your launch script arbitrarily complex in order to deal with different locations of the | |||||||||||
feedback
|
|
simple.. open the .sh file, type ..
now doubleclick the .sh file to run ur application | |||
feedback
|
|
You should take a look at InstallJammer. Not only can it build a cross-distro installer that would be easy for newbies to use, it can also register itself with the native RPM or DEB package manager so that the user can uninstall through the common system. | |||
feedback
|
|
Introduction to shell archives This might work for you as well:
| ||||
|
feedback
|
|
In addition to makeself and the other tools mentioned in the thread, I suggest taking a look at my tool, BitRock InstallBuilder It is capable of creating self-contained executables that can be downloaded and launched but unlike some of the other tools do not require a self-extraction step. That means the installers start faster and no extra disk space is wasted. It is commercial, but reasonably priced (and we have significant discounts for solo developers and smaller companies) | |||
|
feedback
|