rdk-x5-quickstart

RDK X5 新手快速入门:从开箱到第一个 AI 应用的完整流程,包括首次烧录镜像、首次启动、首次连接网络、运行第一个 YOLO 检测 demo。Use when the user is a beginner, first-time user, just unboxed the board, asks '怎么开始/入门/第一次', or needs the initial image flashing guide. Do NOT use for re-flashing an existing board or firmware upgrade (use rdk-x5-system), advanced system management (use rdk-x5-system), specific AI algorithms (use rdk-x5-ai-detect), or TROS development (use rdk-x5-tros).

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "rdk-x5-quickstart" with this command: npx skills add katherineedwards2475/rdk-x5-quickstart

RDK X5 Quickstart — 快速入门

从开箱到运行第一个 AI 应用。

Step 1: 烧录系统镜像

  1. 地瓜机器人官网 下载最新 RDK OS 镜像
  2. 使用 balenaEtcher 或 dd 烧录到 microSD 卡(≥16GB):
sudo dd if=rdk_os_image.img of=/dev/sdX bs=4M status=progress && sync
  1. 插入 SD 卡到 RDK X5

Step 2: 首次启动

  1. 接上电源(Type-C 5V/3A 或 12V DC)
  2. 默认账号:root / rootsunrise / sunrise
  3. 系统启动后自动获取 IP(有线 DHCP)

Step 3: 连接网络

# 查看 IP(有线)
ip addr show eth0

# 连接 WiFi
sudo nmcli device wifi connect "你的WiFi名" password "你的密码"

# 确认联网
ping -c 2 baidu.com

Step 4: 确认系统版本

rdkos_info
cat /etc/version

Step 5: 更新系统(推荐)

sudo apt update && sudo apt upgrade -y

Step 6: 运行第一个 AI Demo

方式 A: Python 脚本(最简单)

cd /app/pydev_demo/07_yolov5_sample
python3 test_yolov5.py

终端输出检测结果。

方式 B: TROS + 摄像头 + Web 展示(推荐)

  1. 接上 USB 或 MIPI 摄像头
  2. 运行:
source /opt/tros/humble/setup.bash
ros2 launch dnn_node_example dnn_node_example.launch.py \
  dnn_example_config_file:=config/yolov5sworkconfig.json \
  dnn_example_image_width:=640 dnn_example_image_height:=480
  1. 浏览器打开 http://<RDK_IP>:8000 查看实时检测画面

Step 7: 下一步探索

想做什么使用哪个 Skill
管理摄像头rdk-x5-camera
运行更多 AI 算法rdk-x5-ai-detect
控制 GPIO/舵机rdk-x5-gpio
监控系统状态rdk-x5-monitor
使用 ROS2 开发rdk-x5-tros
运行 /app 示例rdk-x5-app
系统备份/升级rdk-x5-system

排查故障

现象原因解决
无法启动(无串口输出)SD 卡未正确烧录重新烧录镜像;换一张 SD 卡
启动后无法 SSHIP 未知用串口登录查看 IP;或连接显示器
apt update 失败无网络或 DNS 问题ping 8.8.8.8;检查网线/WiFi
摄像头无画面未接摄像头或设备节点错误ls /dev/video* 确认设备存在

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Rdk X5 Ai Detect

在 RDK X5 的 10TOPS BPU 上运行单个 AI 推理算法:YOLO 目标检测、图像分类、语义分割、人脸识别、手势识别、人体关键点、开放词汇检测(DOSOD/YOLO-World)、双目深度估计、语音识别、端侧轻量 LLM(≤2B 参数量化模型)。Use when the user wants to...

Registry SourceRecently Updated
071
Profile unavailable
Automation

Rdk X5 Tros

使用 RDK X5 上的 TogetheROS.Bot (tros.b) Humble 框架:启动 43 个预装 ROS2 算法包、管理 ROS2 话题/节点/服务、构建摄像头+AI+输出(Web/语音/HDMI)集成 pipeline、创建自定义 ROS2 工作空间。Use when the user ment...

Registry SourceRecently Updated
075
Profile unavailable
Automation

Rdk X5 System

修改和管理 RDK X5 系统配置:查看系统版本/硬件信息/系统日志、rdk-backup 一键备份与恢复、apt OTA 升级、miniboot 固件更新、CPU/BPU 频率调节与温度阈值设置、config.txt 配置修改、实时内核切换、systemd 开机自启动、存储扩容。Use when the use...

Registry SourceRecently Updated
073
Profile unavailable