Skip to content
Advertisement

How to install JavaPackage on ubuntu

I came across a debian application by the name JavaPackage which can create a debian installation file (.deb) form a java binary (.tar.gz) which you can then install using dpkg -i application_name.deb. With Ubuntu being a debian-based linux distribution, it is possible that it can be installed on ubuntu as well.

How do I go about installing it on Ubuntu/Kubuntu 16.04.2 LTS?

Advertisement

Answer

java-package is available in the official ubuntu repositories. All you need to do is update the repository with the latest version then install it as shown below:

    sudo apt-get update
    sudo apt-get install java-package
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement