top of page

Red Hat Linux Enterprise 7

My Own Red Hat Linux Enterprise 7 Documentation.

 

INSTALLATION GUIDE

Recommended:

         LVM

         XFS File Sys

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

INSTALL ONOS 

1. Download requirement tools
$ sudo apt-get install git curl zip python-minimal openssh-server

 

2. Download ONOS latest version

$ git clone https://gerrit.onosproject.org/onos

3. Execute bash_profile

$ . ~/onos/tools/dev/bash_profile

$ $echo $KARAF_ROOT

$ $echo $ONOS_ROOT

4. Register PATH at .bashrc

$ nano ~/.bashrc

*Put at the end of file

. ~/onos/tools/dev/bash_profile

$ . ~/.bashrc

5. Run this commands to download ONOS requirement

$ onos-setup-ubuntu-devenv
 

6. Compile ONOS

$ cd onos

$ mci

6. Run Buck (Latest version using buck)

$ buck build onos

*After finish close terminal

7. Test run ONOS (Run this command at new terminal)

*At different terminal

$ buck run onos-local

*At different terminal

$ onos localhost

8. Open ONOS GUI Web-browser

http://127.0.0.1:8181/onos/ui/

User: karaf

Password: karaf

Done.

bottom of page