Linux Tutorials

Opening JNLP Files on Linux – Ubuntu, Debian, Fedora & Arch

open jnlp files on linux
how to open jnlp files on linux

JNLP, or Java Network Launch Protocol, makes it possible to run a Java application on your computer using files and resources stored on a remote web server. Tools like Java Web Start and the Java Plug-in act as JNLP clients because they let you open and run these remote Java programs directly on your desktop.

Original content from computingforgeeks.com - post 23516

The usual method for accessing a server’s iLO or IPMI console is by downloading and launching a JNLP file from the server’s web interface. Since I’m using a Linux desktop, I needed to find a tool that could open and run this file properly. In this guide, we will install IcedTea-Web which is a free software implementation of Java Web Start and the Java web browser plugin.

[ebook product=”2″ theme=”dark”]

Installing JNLP tools on Linux

Install On Ubuntu / Ubuntu

sudo apt update && sudo apt install default-jdk
sudo apt install icedtea-netx icedtea-plugin

Install on Fedora / CentOS

### CentOS ###
sudo yum install epel-release
sudo yum install java-21-openjdk java-21-openjdk-devel
sudo yum install icedtea-web
### Fedora ###
sudo dnf install java-21-openjdk java-21-openjdk-devel
sudo dnf install icedtea-web

Install on Arch / Manjaro

sudo pacman -S icedtea-web

Open JNLP file on Linux

After installation, you can execute a JNLP file using the command line:

javaws file.jnlp

An alternative way of executing a JNLP file by double-clicking.

Also check:

Keep reading

Upgrade Ubuntu 24.04 to Ubuntu 26.04 LTS (Step by Step) Ubuntu Upgrade Ubuntu 24.04 to Ubuntu 26.04 LTS (Step by Step) UFW Firewall Commands with Examples on Ubuntu 24.04 / 22.04 Security UFW Firewall Commands with Examples on Ubuntu 24.04 / 22.04 Ubuntu 26.04 LTS (Resolute Raccoon): New Features, Changes, and What to Know Ubuntu Ubuntu 26.04 LTS (Resolute Raccoon): New Features, Changes, and What to Know Install PostgreSQL 19 on Ubuntu, Debian, Rocky Linux & AlmaLinux AlmaLinux Install PostgreSQL 19 on Ubuntu, Debian, Rocky Linux & AlmaLinux Install OrientDB on Ubuntu 26.04 / 24.04 / 22.04 Databases Install OrientDB on Ubuntu 26.04 / 24.04 / 22.04 How To Install PostgreSQL 13 on Debian 12/11/10 Databases How To Install PostgreSQL 13 on Debian 12/11/10

3 thoughts on “Opening JNLP Files on Linux – Ubuntu, Debian, Fedora & Arch”

Leave a Comment

Press ESC to close