CS 6560 Operating System Design
Installation Procedures
- OOOS Installation on UNIX
- Put this into your .login file (after the "set path" command): source ~billard/setjava1.5
- To get "free" OOOS software: cp -rf /home/faculty/billard/public_html/os/apps .
-
- this is the easiest installation, and the last resort if unable to run on home PC
- OOOS Installation in the School PC Lab
- Browse to http://www.mcs.csueastbay.edu/~billard/os/cs6560.html
- Select Installation Procedures [this current page]
- Save this file to C:\\Documents and Settings\\ss126s??\\My Documents: apps.zip
- In DOS, cd to My Documents on C: drive
- In DOS, unzip apps
- In DOS, cd apps
- Set the CLASSPATH and access to a Java compiler: 6560.bat
- OOOS Installation on a home PC
- Get a Java SE JDK 6: http://developers.sun.com/downloads/new.jsp
- To get "free" OOOS software: apps.zip
- Make a 6560.bat in DOS:
- Set the path to your Java installation directory: path=< your Java installation path >\bin;%path%
- Set your classpath: set CLASSPATH=.;..
- Run your bat file: 6560.bat
- if you have problems with CLASSPATH, then undo the package structure:
- remove all import ooos from apps/*.java
- remove all package ooos from apps/ooos/*.java
- copy apps/ooos/*.java to apps/
- remove apps/ooos
- Java Compilation
- cd apps
- cd ooos
- javac PCB.java [after coding]
- continue with other sources