Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 29 additions & 4 deletions content/software/app-lab/tutorials/03.cli/apps-lab-cli.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Arduino App Lab CLI: Manage Apps from the Command Line'
title: 'Arduino App CLI: Manage Apps from the Command Line'
description: Learn how to use the Arduino App Lab CLI, the command line interface for launching Apps on the UNO Q board.
author: Karl Söderby
tags: [UNO Q, Linux, CLI]
Expand Down Expand Up @@ -172,14 +172,39 @@ This will list all available Apps (including examples), and their status:

## Set Board Name

To set a board name using the `arduino-app-cli`, we can use the `set-name` command. Note that this requires additional permissions, so we need to use `sudo`.
To set a board name using the `arduino-app-cli`, we can use the `set-name` command.

```sh
sudo arduino-app-cli board set-name "my-board"
arduino-app-cli board set-name "my-board"
```

This will change the name of the board, which will take effect after resetting the board.

## System configuration and updates

The `system` command allows you to manage system configuration and updates your board.

To check for updates, run:

```sh
arduino-app-cli system update
```
This will prompt you to install any available updates.

To enable or disable the network mode, use:

```sh
arduino-app-cli system network enable/disable
```

Network mode will enable ssh and allow to connect to the board over the network.

Finally, you can gain back some storage space by cleaning up unused containers and images by running:

```sh
arduino-app-cli system cleanup
```

## Bricks

Currently, it is only possible to list available Bricks and specific details for each Brick.
Expand All @@ -204,4 +229,4 @@ This article covers some important commands & usage of the `arduino-app-cli`, wh
More documentation for the Arduino App Lab is available at:
- [Arduino App Lab Documentation](https://docs.arduino.cc/software/app-lab/)

You can also visit the [Arduino® UNO Q](/hardware/uno-q) hardware page for details on the board.
You can also visit the [Arduino® UNO Q](/hardware/uno-q) hardware page for details on the board.