# System Verification

After connecting via SSH, run the following checks to confirm the system is operating correctly.

### 1. System Information

```bash
uname -a
```

Expected output includes the kernel version and target architecture (`aarch64`).

```bash
cat /etc/os-release
```

Confirms the Ubuntu version.

### 2. JetPack / L4T Version

```bash
cat /etc/nv_tegra_release
```

Or using the Jetson stats tool if installed:

```bash
jetson_release
```

### 3. NVIDIA Jetson Hardware Detection

```bash
sudo tegrastats
```

This shows live CPU, GPU, and memory usage. Press `Ctrl+C` to exit. If `tegrastats` returns output, the Jetson compute module is functioning correctly.

### 4. USB Connection Check (from host PC)

```bash
ping 192.168.55.1
```

Expected: replies with low latency (\~1 ms). If there is no reply, revisit [Host PC Setup](#host-pc-setup).

### 5. Storage

```bash
df -h
```

Verify available disk space on the root filesystem.

### 6. Airvolute Scripts & Logs

The home directory contains useful scripts, logs, and system utilities provided by Airvolute:

```bash
ls ~/airvolute/
```

\[TODO: list key scripts/logs available in \~/airvolute/ and briefly describe their purpose]


---

# Agent Instructions: 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://docs.airvolute.com/hidden-wip/dcs2-getting-started/system-verification.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.
