> For the complete documentation index, see [llms.txt](https://dev.solid-run.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.solid-run.com/solidsense/hardware-quick-start-guides/solidsense-n8-compact-quick-start-guide/solidsense-n8-compact-redpesk.md).

# SolidSense N8 Compact - redpesk

## Revision and Notes

| **Date**    | **Owner** | **Revision** | **Notes**       |
| ----------- | --------- | ------------ | --------------- |
| 06 Mar 2022 |           | 1.0          | Initial release |

## Introduction

### What is redpesk?

![](/files/C0XFIAEvG4821S3UcXZE)

redpesk is a secure embedded all-in-one Linux software platform dedicated to Industrial IoT. It offers an easy-to-use pre-integrated CI/CD factory with more than 2,500 binary packages and a set of basic “ready-to-go” components that nearly every system requires.

* For more information, please visit [redpesk](https://docs.redpesk.bzh/docs/en/master/getting_started/docs/overview.html).

## redpesk Image Download

Create a directory for downloading image:

```
mkdir ~/redpeskimage
cd ~/redpeskimage
```

Download the image by using:

```
wget -r -nd -nc --no-parent -A "redpesk*smack*" 'https://download.redpesk.bzh/redpesk-lts/arz-1.0-update/images/smack/minimal/aarch64/solidrun-edge-gateways/latest'
```

* For more images releases, please visit [redpesk images](https://docs.redpesk.bzh/docs/en/master/redpesk-os/boards/docs/boards/download-images.html).

## Writing the image to your SD card

To flash your SD card, unxz the compressed file and use dd:

```
unxz redpesk*.raw.xz
IMAGE=$(ls redpesk*.raw)
sudo dd if=$IMAGE of=/dev/sdX bs=4M status=progress
```

{% hint style="info" %}
**Note:** Plug a micro SD into your Linux PC, the following assumes that the micro SD is added as /dev/sdX and all it’s partitions are unmounted.
{% endhint %}

## Connect to the SolidSense N8 IoT Compact

### **SolidSense N8 IoT Compact Block Diagram**

![](/files/ecq2Zorwg2p4nvHucgzQ)

### Hardware interfaces

![](/files/omCtck00GexvGCF2BLgl)

* You can visit our [guide](/solidsense/hardware-quick-start-guides/solidsense-n8-compact-quick-start-guide.md) to get more information about the SolidSense N8 IoT Compact.

### Step-By-Step

* Plug in the SD Card into the board.
* Power on the board.
* Before powering up the board, make sure you have configured the boot media to microSD by setting the S1 switch on the boot source selector to **ON**:

|          |              |              |
| -------- | ------------ | ------------ |
|          | **Switch 1** | **Switch 2** |
| **SD**   | ON           | ON           |
| **eMMC** | OFF          | ON           |

* Connect the USB-UART cable following the three pins beside the SD card socket

![](/files/S3cfCP02rQHhI9IwFwx1)

Open your serial console, restart your device and you should be able to see the following.

![](/files/WePiO7vlIj6VjCDsDLwQ)

* In order to be able to log in , please insert “root” as a username and password.
* use `dmesg` to see the name of the USB plugged

```
[    4.514489] usb 1-6: FTDI USB Serial Device converter now attached to ttyUSB0 
```

* use picocom

```
 sudo picocom  -b 115200 /dev/ttyUSB0
```

* Getting the address of the board to be able to use a ssh connectionConnect an Ethernet cable between computer and SolidSense

```
 #on board
 ip -c a
 # on computer
 ssh root@<ip_board>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.solid-run.com/solidsense/hardware-quick-start-guides/solidsense-n8-compact-quick-start-guide/solidsense-n8-compact-redpesk.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
