Difference between revisions of "How to install & execute"

From AMTech WikiDocs
Jump to: navigation, search
(Manual installation of initial components and prerequesites)
(Manual installation of initial components and prerequesites)
Line 1: Line 1:
 
== Os and core components ==
 
== Os and core components ==
 
=== Manual installation of initial components and prerequesites ===
 
=== Manual installation of initial components and prerequesites ===
* Installs Ubuntu OS on a Raspberry Pi
+
* Installs Ubuntu OS on a Raspberry PI
 
: <code>https://ubuntu-mate.org/raspberry-pi/</code>
 
: <code>https://ubuntu-mate.org/raspberry-pi/</code>
 +
* Boot PI and update packages:
 +
: <code>sudo apt-get update</code>
 +
: <code>sudo apt-get dist-upgrade</code>
 
* Install java 7 (if LLRPReader is needed)
 
* Install java 7 (if LLRPReader is needed)
 
: <code>sudo add-apt-repository ppa:webupd8team/java</code>
 
: <code>sudo add-apt-repository ppa:webupd8team/java</code>

Revision as of 16:17, 9 May 2016

Os and core components

Manual installation of initial components and prerequesites

  • Installs Ubuntu OS on a Raspberry PI
https://ubuntu-mate.org/raspberry-pi/
  • Boot PI and update packages:
sudo apt-get update
sudo apt-get dist-upgrade
  • Install java 7 (if LLRPReader is needed)
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
and then:
sudo apt-get install -y nodejs
  • Allow nodejs program to bind to ports under 1024
sudo setcap 'cap_net_bind_service=+ep' /usr/bin/nodejs
  • Installs and configures Bluetooth core libraries
sudo apt-get install bluetooth bluez libbluetooth-dev libudev-dev

M2MBridge installation

  • Install git:
sudo apt-get install git
git clone https://github.com/AMTechMX/M2MBridge.git
  • Delete unneeded plugins from /.../M2MBridge/plugins/xxx (optional)
  • Install packages for m2mBridge core and plug-ins (https://docs.npmjs.com/cli/install:)
  • Execute npm install --save at:
    • M2MBridge directory
    • Each plugin directory
    LLRPReader plugin depends on java module and you should use the following options in the the npm install call:
    GYP_DEFINES="armv7l=0 javalibdir=/usr/lib/jvm/java-7-oracle/jre/lib/arm/server/" CCFLAGS='-march=armv7' CXXFLAGS='-march=armv7' npm install
  • If you get this error; var cwd = process.cwd(); Error: No such file or directory #200
https://github.com/foreverjs/forever/issues/200

M2MBridge execution

  • Customize the bridge configuration bridgeConfig,json, defining the templateId with the bridge instance from DAP to clone Cloud Configuration
  • Execute node m2mbridge.js (located in the M2MBridge directory)

The ansible way