Select the platform to install under:
Windows 9x/Me/NT/2000/2003/XP
Linux/Solaris/AIX/HP-UX/Unix
Use the following instructions to install iPP on Windows 9x/Me/NT/2000/2003/XP.
- Install Java JDK version 1.1.x or later.
- Extract setup_ipp.jar file.
c:
cd \
jar -xvf path\setup_ipp.jar
path
|
the directory containing setup_ipp.jar.
|
- Define environment variables in c:\autoexec.bat file.
Using c:\ipp\install\win32\vars.bat as a template:
- Modify JAVA_EXE, as needed
set JAVA_EXE=path\bin\java.exe
Normally path is the base directory where Java was installed.
- Define CLASSPATH
set CLASSPATH=c:\ipp\classes;%CLASSPATH%
- Define PATH
set PATH=c:\ipp\bin\win32;%PATH%
- Restart the computer.
top of page
Use the following instructions to install iPP on
Linux/Solaris/AIX/HP-UX/Unix.
- Install Java JDK version 1.1.x or later.
- Login on account where iPP will be installed.
- Extract setup_ipp.jar file.
cd /
jar -xvf path/setup_ipp.jar
path
|
the directory containing setup_ipp.jar.
|
- If not in root directory, move ipp to root directory.
mv ipp /
- Make executables, as needed
cd /ipp/bin/linux
chmod u+x,g+x makepp
./makepp
- Define environment variables in user's login script.
Using /ipp/install/linux/pp.sh as a template:
- Define JAVA_EXE, as needed
set JAVA_EXE=path/bin/java
Normally path is the base directory where Java was installed.
- Define CLASSPATH
export CLASSPATH="/ipp/classes:${CLASSPATH}"
- Update PATH
export PATH="/ipp/bin/linux:${PATH}"
- Logout and log back in.
|