rdk_robot_dev_agent/获取RDK板卡系统和硬件信息的命令.md

16 lines
511 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 获取RDK板卡系统和硬件信息相关命令
- 获取当前开发板型号命令:
rdkos_info 2>/dev/null | grep -A 1 '^\[Hardware Model\]:'
- 获取当前板子IP地址命令
ifconfig | awk '/^[a-z]/ {interface=$1} /inet / && $2 !~ /^127\./ {print interface": "$2}'
- 获取当前开发板tros版本信息命令
apt show tros-humble 2>/dev/null | grep -E "^Version:|^APT-Manual-Installed:"
- 获取当前开发板ubuntu版本信息命令
lsb_release -a 2>/dev/null | grep "^Description:"