-
Notifications
You must be signed in to change notification settings - Fork 16
/
readme.txt
82 lines (53 loc) · 2.81 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
Table of Contents
-----------------
1. Directory structure of the CloudSim Toolkit
2. Software requirements: Java version 1.6 or newer
3. Installation and running the CloudSim Toolkit
4. Running the CloudSim examples
5. Learning CloudSim
6. Compiling CloudSim: using Ant
1. Directory structure of the CloudSim Toolkit
----------------------------------------------
cloudsim/ -- top level CloudSim directory
docs/ -- CloudSim API Documentation
examples/ -- CloudSim examples
jars/ -- CloudSim jar archives
sources/ -- CloudSim source code
tests/ -- CloudSim unit tests
2. Software requirements: Java version 1.6 or newer
---------------------------------------------------
CloudSim has been tested and ran on Sun's Java version 1.6.0 or newer.
Older versions of Java are not compatible.
If you have non-Sun Java version, such as gcj or J++, they may not be compatible.
You also need to install Ant to compile CloudSim (explained in more details later).
3. Installation and running the CloudSim Toolkit
------------------------------------------------
You just need to unpack the CloudSim file to install.
If you want to remove CloudSim, then remove the whole cloudsim directory.
You do not need to compile CloudSim source code. The JAR files are
provided to compile and to run CloudSim applications:
* jars/cloudsim-<VERSION>.jar -- contains the CloudSim class files
* jars/cloudsim-<VERSION>-sources.jar -- contains the CloudSim source code files
* jars/cloudsim-examples-<VERSION>.jar -- contains the CloudSim examples class files
* jars/cloudsim-examples-<VERSION>-sources.jar -- contains the CloudSim examples source code files
4. Running the CloudSim examples
--------------------------------
Please read how to run the CloudSim examples in examples.txt
5. Learning CloudSim
--------------------
To understand how to use CloudSim, please go through the examples provided
in the examples/ directory.
6. Compiling CloudSim: using Ant
--------------------------------
This release contains a simple buildfile for compiling CloudSim classes.
You need to have ant installed (http://ant.apache.org/).
Ant can be used in both Windows and Unix/Linux environment.
Usage:
* Being in the CloudSim root directory (cloudsim/), type 'ant' to compile all
cloudsim source files, put them into the classes/ directory and to create
a cloudsim-new.jar file in the jars/ directory
* Being in the CloudSim root directory (cloudsim/), type 'ant clean' to delete
all the compiled classes and the classes/ directory itself. The generated
cloudsim-new.jar is not deleted.
Note:
* You need to set up PATH for ant in Windows and/or Unix.