英伟达Xavier NX 开发系列之如何系统克隆

To clone a Jetson device and flash

// 如何克隆英伟达Jetson系列的设备系统和烧录

1. Copy system.img from the filesystem partition you want to flash from. Enter this command:

// 短接Recovery+GND两个引脚,给Jetson device (Xavier NX)上电,通过专用烧录的usb口连 // 接到烧录开发电脑(Ubuntu~18.04)上,如果是虚拟机的话请确保设备是连接到虚拟机里的       // Ubuntu中。然后执行如下命令:

$ sudo ./flash.sh -r -k APP -G mmcblk0p1

我实际操作的命令:

sudo ./flash.sh -r -k APP -G clone-xavier-nx-20240222 jetson-xavier-nx-devkit-emmc mmcblk0p1

Where:

determines the names of the copies.

// 为 clone-xavier-nx-20240222 克隆出的文件

specifies the configuration of the target device.

//和上篇博客提到一样,为jetson-xavier-nx-devkit-emmc,详细自行查

你可能感兴趣的:(NVIDIA,开发,linux,驱动开发,arm开发)