Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.astro.louisville.edu/software/astroimagej/astroimagej_20120722/A_README_AIJ
Дата изменения: Tue Aug 14 10:13:07 2012
Дата индексирования: Mon Oct 1 20:42:53 2012
Кодировка:

Поисковые слова: arp 220
August 14, 2012
===============


The files in this directory are for installing AstroImageJ on Linux, Mac, and
Windows platforms. For Linux or other Unix installations note the recommended
X11 resource change below.



Linux
=====

Download

AstroImageJ_2.0_beta_20120722_linux.tar.gz (provides AstroImageJ)
AstroImageJ_script.tar.gz (provides a startup script for AstroImageJ)

As root user

cd /usr/local

If you already have ImageJ and/or AstroImageJ installed in /usr/local change
their names to a backup name such as

mv AstroImageJ AstroImageJ_old
mv ImageJ ImageJ_old

Untar the archives

tar xvzf AstroImageJ_2.0.tar.gz

Untar the script "astroimagej"

cd /usr/local/bin
tar xvzf AstroImageJ_Script.tar.gz

Following the usual Linux convention, only lower case letters are used for the
command line scripts. You may prefer to name it "aij" if you use the command
line often.


Additional note about 64-bit Linux and 32-bit Linux
====================================================


AstroImageJ will run with either the Sun or OpenJDK version 6 or higher of Java.
For OpenSuse we find that the 12.1 default OS installation with OpenJDK 6 and a
3.1 series kernel works fine. However, the prior 11.4 version with a 2.6 series
kernel may fail for large memory machines, especially if they have had a long
uptime. In that case, if installing a up-to-date distribution is not an option,
we recommend running AstroImageJ with the 32-bit JRE that is included in the
ImageJ 32-bit package distributed by NIH.

Copy the 32-bit jre subdirectory from ImageJ to AstroImageJ and modify the
astroimagej script in /usr/local/bin/ to

#!/bin/sh
cd /usr/local/AstroImageJ/
./jre/bin/java -Xmx3072m -jar ij.jar
exit

The memory limitation with 32-bit java is less than 4 GB, and about 3 GB as
shown is the maximum practical limit. With 64-bit java, the limit is
approximately 12 GB.



Windows
=======

Download and unzip AstroImageJ_2.0_beta_20120722_windows.zip


Mac
===

Download and unzip AstroImageJ_2.0_beta_20120722_mac.zip



All Platforms
=============

Please see AstroImageJ_User_Guide_1.0.0.pdf for
instructions in its use. A new guide will be available soon.


X11
===

The KDE and Gnome window managers for recent distributions of Linux allow the
user to control the double click timeout. However, they do not convey this to
X11, so Java applications and many other programs that rely on X may default to
a 200 millisecond timeout that is apparently too short. The solution is to add
the following line to either /etc/X11/Xresources (the system wide default in
OpenSuse) or on a user basis to .Xresources in each user's home directory:


! ===========================================================================
! Local Modifications
! ===========================================================================

*multiClickTime: 500

The change will take effect after X is started the next time.