diff --git a/content/software/app-lab/tutorials/03.cli/apps-lab-cli.md b/content/software/app-lab/tutorials/03.cli/apps-lab-cli.md index 56bdfa2277..db020d187a 100644 --- a/content/software/app-lab/tutorials/03.cli/apps-lab-cli.md +++ b/content/software/app-lab/tutorials/03.cli/apps-lab-cli.md @@ -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] @@ -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 configurations and updates on 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 allows clients to connect to the board over a local 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. @@ -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. \ No newline at end of file +You can also visit the [Arduino® UNO Q](/hardware/uno-q) hardware page for details on the board.