Versions Compared

Key

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

...

  1. Take a mini USB Cable and connect one end of the mini USB cable  to console port of the router and other end of the cable to your MAC/PC USB port.
  2. The chipset CP210x from Silicon Labs requires special drivers before you can connect.

    1. Download the driver here and install it
    2. Check your devices,you will see two new ones (SLAB...)

      sebastiankoch@~$ls -lah /dev/cu.*
      crw-rw-rw-1root  wheel   17,   9May 1815:03/dev/cu.SLAB_USBtoUART
      crw-rw-rw-1root  wheel   17,  11May 1815:09/dev/cu.SLAB_USBtoUART5
      ...


    3. Now you can directly connect to the console through /dev/cu.SLAB_USBtoUART5

      sebastiankoch@~$screen /dev/cu.SLAB_USBtoUART5


    4. The connection can be closed by CTRL + A, K

...

Code Block
languagetext
titlePackage.yaml file
linenumberstrue
descriptor-schema-version: "2.0"
info:
  name: Atomiton A-Stack
  description: "IOx Atomiton A-Stack Thing Computing Runtime"
  version: "1.0"
  author-link: "http://www.atomiton.com"
  author-name: "Atomiton Inc"
app:
  # Indicate app type (vm, paas, lxc etc.,)
  type: paas
  resources:
      profile: c1.large
	  disk: 50
      network:
        -
          interface-name: eth0
          ports:
            tcp:
            - 8080
  startup: 
    runtime: java-se-embedded-cp3
    runtime-version: 1.8
    runtime-options: 
      classpath: $CAF_APP_PATH/
      java-options: -Djava.net.preferIPv4Stack=true -jar $CAF_APP_PATH/atomiton.tqlengine.jar
    target: 
      x.jar

...