Linux x86 Installation
To install and run ImageJ, download the Linux x86 .tar.gz file, extract the ImageJ directory, change to the ImageJ directory, and execute the 'run' script. Here is an example: This installation includes Sun's Java Runtime Environment 1.3.1 and the complete ImageJ source code (in the src.zip).gunzip ij123-x86.tar.gz tar xvf ij123-x86.tar cd ImageJ ./run
Memory makes 256MB available to ImageJ../jre/bin/java -Xmx256m -cp ij.jar ij.ImageJ
Upgrades
Sharing ImageJ and the JRE Compiling Pluginscd /usr/local/ImageJ ./jre/bin/java -Xmx128m -cp ij.jar -Dplugins.dir=/home/wayne ij.ImageJ The Plugins/Compile and Run command uses the javac compile contained in tools.jar. The Java 1.3.1 runtime included with the Linux distribution of ImageJ includes tools.jar in ImageJ/jre/lib/ext. Users of the Java SDK will need to add tools.jar to the command line. Here is an example: java -Xmx200m -cp ij.jar:\usr\local\jdk1.4\lib\tools.jar ij.ImageJ |