Changes between Version 23 and Version 24 of expansion/gw16168


Ignore:
Timestamp:
08/17/2026 08:16:00 PM (4 days ago)
Author:
Tim Harvey
Comment:

minor updates (fixing typos and better usage of journalctl)

Legend:

Unmodified
Added
Removed
Modified
  • expansion/gw16168

    v23 v24  
    192192{{{#!bash
    193193# show service status
    194 systemctl status rt-sdk-ara2.service --no-pager -l 
    195 # view detailed service logs
    196 journalctl -u rt-sdk-ara2.service
     194systemctl status rt-sdk-ara2.service --no-pager -l
     195# view detailed service logs for the current boot and follow the journal
     196journalctl --boot --follow --unit rt-sdk-ara2.service
    197197# verify proxy is running (critical)
    198198ps -eaf | grep proxy_ara240
     
    328328
    329329files:
    330  - /usr/share/eiq/aaf-connector/server_config.json (config file)
    331330 - /usr/share/eiq/aaf-connector/install.sh (install script)
    332331 - /usr/share/python-wheels/eiq_aaf_connector-2.1-py3-none-any.whl (python wheel)
     332 - /usr/share/eiq/aaf-connector/server_config.json (config file)
     333 - /etc/systemd/system/eiq-aaf-connector.service (created from install script)
    333334
    334335The install script creates a systemd eiq-aaf-connector.service:
     
    354355# show service status
    355356systemctl status eiq-aaf-connector.service --no-pager -l
    356 # view detailed service logs
    357 journalctl -u eiq-aaf-connector.service
     357# view detailed service logs for the current boot and follow the journal
     358journalctl --boot --follow --unit eiq-aaf-connector.service
    358359# verify process exists
    359360ps -ef | grep aaf-connector
     
    365366{{{#!bash
    366367# make sure curl and jq are installed (jq allows easy interaction with json data)
    367 apt install -y curl jq 
     368apt install -y curl jq
    368369# list of models
    369370curl -X 'GET' \
     
    393394
    394395
    395 [=examples]
     396[=#examples]
    396397== Examples
    397398Here are some Ara example applications put together by Gateworks
     
    470471Compile:
    471472{{{#!bash
    472 apt update && apt install build-essentials
     473apt update && apt install build-essential
    473474gcc ara_status.c -I/usr/include/sdk_ara/ -L/usr/lib/ -laraclient_aarch64 -o ara_status
    474475}}}
     
    492493
    493494Steps:
    494  1. We need to install the C libs for GSTreamer and build utilities:
     495 1. We need to install the C libs for GStreamer and build utilities:
    495496{{{#!bash
    496497apt-get install -y \