M E N U
Content
Introduction
Release Notes
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Referance Manual
Legal
Feedback
|
Select the platform to install under:
Windows 95/NT
Linux/Unix
Use the following instructions to install iPP on Windows 95/NT.
- Install Java JDK 1.x
Follow JavaSoft's instructions for installing Java JDK 1.x.
- Unzip downloaded file(s)
Follow 3rd Party instructions for extracting files from a zip file using folder names.
Normally extract to c:\
- Define environmental variables in c:\autoexec.bat file.
Using c:\ipp\install\win32\vars.bat as a template:
- Define JAVA_HOME
set JAVA_HOME=path
Normally path is c:\java
- Modify JAVA_EXE, as needed
set JAVA_EXE=%JAVA_HOME%\bin\java.exe
- Define CLASSPATH
set CLASSPATH=path;%CLASSPATH%
Normally path is
c:\ipp\classes\ipp.zip
- Define PATH
set PATH=path;%PATH%
Normally path is c:\ipp\bin
top of page
Use the following instructions to install iPP on Linux/Unix.
- Install Java JDK 1.x
Follow JavaSoft's instructions for installing Java JDK 1.x.
- login as root.
- Unzip downloaded file(s).
gzip -d filename
- Untar resultant file(s).
tar -xvpf filename
- If not in root directory, move ipp to root directory.
mv ipp /
- Define environmental variables in /etc/profile.d/pp.sh script.
Using /ipp/install/linux/etc/profile.d/pp.sh as a template:
- Define JAVA_EXE, as needed
set JAVA_EXE=$JAVA_HOME/bin/java
- Define CLASSPATH
export CLASSPATH="./:path:${CLASSPATH}"
Normally path is
/ipp/classes/ipp.zip
- Update PATH
export PATH="./:path:${PATH}"
Normally path is /ipp/bin
- copy /ipp/install/linux/etc/profile.d/pp.sh
to /etc/profile.d/pp.sh
cp /ipp/install/linux/etc/profile.d/pp.sh /etc/profile.d/pp.sh
- Define environmental variables in /etc/profile.d/pp.csh script.
Using /ipp/install/linux/etc/profile.d/pp.csh as a template:
- Define JAVA_EXE, as needed
setenv JAVA_EXE $JAVA_HOME/bin/java
- Define CLASSPATH
setenv CLASSPATH "./:path:${CLASSPATH}"
Normally path is
/ipp/classes/ipp.zip
- Update PATH
setenv PATH "./:path:${PATH}"
Normally path is /ipp/bin
- copy /ipp/install/linux/etc/profile.d/pp.csh
to /etc/profile.d/pp.csh
cp /ipp/install/linux/etc/profile.d/pp.csh /etc/profile.d/pp.csh
- Update /ipp/bin/pp.exe, as needed
- Update JAVA_HOME, as needed
set JAVA_HOME=path
Normally path is /java
- Update JAVA_EXE, as needed
export JAVA_EXE=$JAVA_HOME/bin/java
- Make executables, as needed
cd /ipp/bin
makepp
|