Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve README.md for dummies like me. #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Please check the `improv` branch for latest changes. Master branch has been left

## How to run iFogSim ?

* Create a Java project in Eclipse.
* Create a Java project in Eclipse.
* Do not create a `module-info.java`.
* Inside the project directory, initialize an empty Git repository with the following command
```
git init
Expand All @@ -22,8 +23,10 @@ git remote add origin https://github.com/Cloudslab/iFogSim
```
git pull origin master
```
* Include the JARs (except the CloudSim ones) to your Eclipse project.
* Run the example files (e.g. VRGame.java) to get started.
* Include the JARs (except the CloudSim ones) to your Eclipse project.
* In Eclipse 2018-12, right click on the project -> Build Path -> Configure Build Path -> Classpath -> Add JARs.
* Select `jars/guava-18.0.jar`, `jars/json-simple-1.1.1.jar` and `jars/commons-math3-3.5.jar`.
* Run the example files (e.g. VRGame.java) to get started.

# References
1. Harshit Gupta, Amir Vahid Dastjerdi , Soumya K. Ghosh, and Rajkumar Buyya, <A href="http://www.buyya.com/papers/iFogSim.pdf">iFogSim: A Toolkit for Modeling and Simulation of Resource Management Techniques in Internet of Things, Edge and Fog Computing Environments</A>, Software: Practice and Experience (SPE), Volume 47, Issue 9, Pages: 1275-1296, ISSN: 0038-0644, Wiley Press, New York, USA, September 2017.
Expand Down