Skip to content

Instantly share code, notes, and snippets.

@felipeborges
Last active December 20, 2015 22:49
Show Gist options
  • Save felipeborges/6207896 to your computer and use it in GitHub Desktop.
Save felipeborges/6207896 to your computer and use it in GitHub Desktop.
Installing Java3D on Fedora (tested on Fedora 19)

How to install java3d on Fedora

First of all, make sure you have Oracle's Java installed. (installing Java is outside the scope of this tutorial).

  1. First of all, start by downloading the java3d linux binaries on http://java3d.java.net/binary-builds.html

  2. Secondly, unzip it:

unzip j3d-*-linux-i586.zip 
  1. Enter the unzipped directory by issuing the command:
cd j3d-[TAB]
  1. Unzip the j3d-jre.zip package:
unzip j3d-jre.zip
  1. Perform the following copy operations as root:
cp lib/ext/*.jar /usr/lib/jvm/java-[JAVA-VERSION-HERE]/jre/lib/ext/

and

cp lib/i386/libj3dcore-ogl.so /usr/lib/jvm/java-[JAVA-VERSION-HERE]/jre/lib/i386/
  1. You're done!
PS.: :%s/i386/amd64/g if you have downloaded j3d-*-linux-amd64.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment