Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The binaries for both Maven and Karaf can be downloaded as tar archives, where installation entails extracting them to the desired location. For example, if your archives were downloaded to ~/Downloads, and you wish to install Maven and Karaf into ~/Applications:

Excerpt Include
ONOS from Scratch
ONOS from Scratch

Code Block
languagetext
$ cd; mkdir Downloads Applications
$ cd Downloads
$ wget http://download.nextag.com/apache/karaf/3.0.3/apache-karaf-3.0.3.tar.gz
$ wget http://archive.apache.org/dist/maven/maven-3/3.3.1/binaries/apache-maven-3.3.1-bin.tar.gz
$ tar -zxvf apache-karaf-3.0.3.tar.gz -C ../Applications/
$ tar -zxvf apache-maven-3.3.1-bin.tar.gz -C ../Applications/ 

...