Table of Contents

Install and setup Java

mkdir -p ~/software/zipped/java ~/software/unZipped

http://www.java.com/en/download/linux_manual.jsp → scroll to the bottom → click link under “Linux x64” → jre-8u291-linux-x64.tar.gz

Move the tar.gz file into ~/software/zipped/java

cd ~/software/unZipped
tar xzvf ~/software/zipped/java/jre-8u291-linux-x64.tar.gz -C .
# For Java
export PATH=$HOME/software/unZipped/jre1.8.0_291/bin:$PATH

run jnlp files

use javaws

sudo apt-get install icedtea-netx
javaws foo.jnlp

where is jconsole

It comes as part of java installation. Sample location C:\Program Files\Java\jdk1.8.0_161\bin\jconsole.exe

What is the difference between jmc and jconsole

jconsole is light weight compared to jmc.