天天看点

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

Getting Started with Jetson Nano 2GB Developer Kit

https://developer.nvidia.com/embedded/learn/get-started-jetson-nano-2gb-devkit#prepare

sd格式化软件 镜像软件和镜像烧录软件

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

https://www.sdcard.org/downloads/formatter/eula_windows/SDCardFormatterv5_WinEN.zip

https://developer.download.nvidia.cn/assets/embedded/downloads/jetson-nano-2gb-jp441-sd-card-image/jetson-nano-2gb-jp441-sd-card-image.zip?--brli8tRiidONJnlbW6C61RUL8cAlRWGbbRobHA86Rk3QjmrSJDg6-J7eGzfvOOx9SbMQQye-Fgd1yAG5O9jtTvXgb6uoKfHSpWRECs9GWpLrRtVnhKCd1DAZH4NlrsalKSWvaeCehMxM-0VFOKvjB2g0-xm16sN3w8eMvA-XIw5di7lNnBp7KSOs9meXsRm-ddjcuYq0fW6quX1KMD-dK_yHM

https://github-production-release-asset-2e65be.s3.amazonaws.com/45055693/d5363d00-f6b0-11ea-91fa-c8415b1987df?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20201104%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20201104T113505Z&X-Amz-Expires=300&X-Amz-Signature=34980bb49556f6faae38110d3ea6a5c6137d05a06f82a37a41738cd63ca5773e&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=45055693&response-content-disposition=attachment%3B%20filename%3DbalenaEtcher-Setup-1.5.109.exe&response-content-type=application%2Foctet-stream

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

下载 中心

https://developer.nvidia.com/embedded/downloads#?search=Developer%20Kit%20User%20Guide

https://developer.nvidia.com/embedded/jetpack

插入SD卡 并开始供电引导

https://developer.nvidia.com/embedded/learn/get-started-jetson-nano-2gb-devkit#setup

这里我没有使用hdmi显示器

Headless Operation

Headless mode is handy when you don’t have a display around (or for some special purposes). After setting up in headless mode, you can use the developer kit either via network connection or simply by connecting it to another computer with a Micro USB cable.

If no display is attached to the developer kit during first boot, the initial configuration process will be headless. You will need to complete initial setup via serial application (e.g., puTTY) on another computer connected to the developer kit’s Micro-USB port.

Refer to instructions here for headless mode setup.

micro USB线接到开发板

开发板插入网线

开发板供电

查看笔记本电脑串口号 准备用putty通过串口连接   COM3   115200

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit
JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

时区香港

默认UTC

lonzhang admin78x

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

启用SWAP

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit
JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

安装完成后会重启

重新用putty登录

JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

可以看到登录成功

下一步

随心所欲

祝贺您设置了Jetson Nano 2GB开发人员套件!

以下指南将帮助您了解有关开发人员工具包的更多信息并设置理想的开发人员环境:

  • Jetson 2GB开发人员工具包用户指南 硬件介绍和相机安装测试

    此页面包含有关开发人员工具包的所有输入和输出以及如何使用它们的更多详细信息。

  • 入门指南
    • 您的第一个Jetson容器
    • https://developer.nvidia.com/embedded/jetson-cloud-native

      了解什么是容器,以及如何在开发人员工具包上下载和使用它们。

    • docker pull nvcr.io/nvidia/l4t-base:r32.4.4
    • sudo docker run -it --rm --net=host --runtime nvidia  -e DISPLAY=$DISPLAY -v /tmp/.X11-unix/:/tmp/.X11-unix nvcr.io/nvidia/l4t-base:r32.4.4
                 
    • JETSON NANO 2G使用笔记1-开箱 装系统-headless模式。无桌面。无显示器Getting Started with Jetson Nano 2GB Developer Kit

https://github.com/NVIDIA/nvidia-docker/wiki/NVIDIA-Container-Runtime-on-Jetson

# Allow containers to communicate with Xorg
$ sudo xhost +si:localuser:root
$ sudo docker run --runtime nvidia --network host -it -e DISPLAY=$DISPLAY -v /tmp/.X11-unix/:/tmp/.X11-unix nvcr.io/nvidia/l4t-base:r32.3.1

[email protected]:/# apt-get update && apt-get install -y --no-install-recommends make g++
[email protected]:/# cp -r /usr/local/cuda/samples /tmp
[email protected]:/# cd /tmp/samples/5_Simulations/nbody
[email protected]:/# make
[email protected]:/# ./nbody
           
    • 设置VNC

      无头模式不必只意味着命令行。了解如何从另一台计算机与开发人员工具包的Linux桌面进行交互。

    • 连接蓝牙音频

      了解如何将开发者套件与蓝牙设备连接。

  • NVIDIA AI教程和课程
    • Hello AI World您好

      开始探索AI的经典方法

    • JetBot

      动手,开源AI机器人平台

    • Jetson AI基础知识课程

      通过本实用课程开始学习AI

  • 杰森社区
    • 从最新的Jetson社区项目中获得启发。尝试以下出色的项目开始:
      • 时移模块可有效理解视频
      • 使用Nvidia Jetson和Microsoft Azure进行智能视频分析
      • 识别手语
      • 实时人体姿态估计
      • AI温度计
  • 杰森论坛
    • 在Jetson Nano论坛上提问并回答问题
  • 杰森维基
    • 不要错过Jetson Zoo,其中包含有关安装各种开源附件包和机器学习,计算机视觉,机器人技术等框架的说明。

继续阅读